* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.home {
  background: linear-gradient(to top, rgba(39, 39, 39, 0.9), rgba(39, 39, 39, 0.3)), url("../images/Toxedo.jpg") center center;
  background-size: cover;
  height: 100%;
  padding-top: 40vh;
  margin-top: -50px;
  overflow: hidden;
  align-items: center;
  text-align: center;
}
.home_name {
  font-size: 5rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #fff;
}
.home_name--last {
  color: #ff5202;
  font-weight: 700;
}
.home h2 {
  margin-top: -10px;
}
.home-header {
  margin-top: 50px;
}

.menu-btn {
  position: absolute;
  z-index: 1;
  right: 1rem;
  top: 1rem;
  height: 20px;
  width: 28px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.menu-btn_burger {
  position: absolute;
  right: 0;
  top: 0.5rem;
  width: 28px;
  height: 3px;
  background: #fff;
  transition: all 0.5s ease-in-out;
}
.menu-btn_burger::before {
  content: "";
  position: absolute;
  top: -8px;
  width: 28px;
  height: 3px;
  background: #fff;
  transition: all 0.5s ease-in-out;
}
.menu-btn_burger::after {
  content: "";
  position: absolute;
  top: 8px;
  width: 20px;
  height: 3px;
  background: #fff;
  transition: all 0.5s ease-in-out;
}
.menu-btn_burger.open {
  transform: rotate(720deg);
  background-color: transparent;
}
.menu-btn_burger.open::before {
  transform: rotate(45deg) translate(5px, 8px);
}
.menu-btn_burger.open::after {
  width: 28px;
  transform: rotate(-45deg) translate(3px, -7px);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  opacity: 0.9;
  visibility: hidden;
}
.nav.open {
  visibility: visible;
}
.nav .menu-nav {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
  background: #272727;
  list-style-type: none;
  padding-right: 1rem;
  transform: translateY(-100%);
  transition: all 0.5s ease-in-out;
}
.nav .menu-nav.open {
  transform: translateY(0);
}
.nav .menu-nav_item {
  transform: translateX(100vw);
  transition: all 0.5s ease-in-out;
}
.nav .menu-nav_item.open {
  transform: translateX(0);
}
.nav .menu-nav_item.active > a {
  color: #ff5202;
}
.nav .menu-nav_link {
  display: inline-block;
  font-size: 2rem;
  text-transform: uppercase;
  padding: 2rem 0;
  font-weight: 300;
  transition: all 0.5s ease-in-out;
}
.nav .menu-nav_link:hover {
  color: #ff5202;
}

.menu-nav_item:nth-child(1) {
  transition-delay: 0.25s;
}

.menu-nav_item:nth-child(2) {
  transition-delay: 0.35s;
}

.menu-nav_item:nth-child(3) {
  transition-delay: 0.45s;
}

.menu-nav_item:nth-child(4) {
  transition-delay: 0.55s;
}

.about {
  padding-bottom: 2rem;
}
.about_bio-image {
  height: 50vh;
  width: 100%;
  background: linear-gradient(to top, rgba(39, 39, 39, 0.8), rgba(39, 39, 39, 0.2)), url("../images/on-desktop-resized.jpg") center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.about_bio-image p {
  margin-bottom: 2rem;
}
.about .about_bio {
  width: 80%;
  text-align: center;
}
.about .about_bio .text-secondary {
  padding-bottom: 1rem;
}
.about .jobs {
  width: 60vw;
  margin: 2rem auto 0 auto;
  grid-template-columns: 1fr;
  grid-gap: 2rem;
}
.about .jobs_job {
  background: rgb(64.5, 64.5, 64.5);
  padding: 0.5rem;
  border-bottom: 5px solid #ff5202;
  margin-bottom: 1rem;
}
.about .jobs_job_header {
  background: #272727;
  padding: 5px;
  margin-bottom: 5px;
}
.about .jobs_job h2, .about .jobs_job h3 {
  margin: 0.5rem 0;
}
.about .jobs_job h6 {
  margin: 0.3rem 0;
}
.about .skills {
  place-items: center;
  place-content: center;
  margin-top: 5rem;
}
.about .skills table {
  width: 60vw;
  border: 3px solid #ff5202;
  text-align: center;
}
.about .skills table th {
  background-color: #ff5202;
  color: #272727;
  font-size: 2rem;
  padding: 10px;
}
.about .skills table td {
  height: 5rem;
  padding: 15px;
  border-bottom: 2px solid #ff5202;
  font-size: larger;
}
.about .skills table td:hover {
  color: #ff5202;
  scale: 1.05;
  border-bottom-width: 1rem;
  transition: all 0.5s ease-in-out;
}
.about .social-icons {
  display: flex;
  flex-direction: column;
}
.about footer {
  transform: rotate(270deg) translate(3rem, 5rem);
}

.projects {
  padding-bottom: 2rem;
}
.projects_bio-image {
  height: 30vh;
  width: 100%;
  background: linear-gradient(to right, #272727, rgba(39, 39, 39, 0.5)), url("../images/computerUser.jpg") center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.projects_bio-image .text-secondary {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.projects_items {
  display: grid;
  width: 60vw;
  margin: 2rem auto 0 auto;
  grid-template-columns: 1fr;
  grid-gap: 2rem;
}
.projects_item {
  position: relative;
  border-bottom: 5px solid #ff5202;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 2rem;
  background: linear-gradient(to right, #272727, rgba(39, 39, 39, 0.5)), url("../images/computerUser.jpg") center center;
}
.projects_item_description {
  color: rgb(64.5, 64.5, 64.5);
  text-shadow: 1px 1px 1px wheat;
  font-weight: bold;
  position: absolute;
  margin-top: 70%;
  margin-left: 1rem;
  height: 50%;
  place-content: center;
  place-items: center;
}
.projects_item img {
  height: 20rem;
  width: 100%;
}
.projects_item::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  height: 100%;
  width: 100%;
  background: #ff5202;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.projects_item:hover::after {
  top: 0;
  opacity: 0.9;
}
.projects_item:hover .projects_btn {
  opacity: 1;
}
.projects_btns {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  align-items: center;
  text-align: center;
  margin-top: 45%;
}
.projects_btn {
  opacity: 0;
  color: #000;
  transition: all 0.5s ease-in-out;
}
.projects_btn:hover {
  color: #fff;
}
.projects .social-icons {
  display: flex;
  flex-direction: column;
}
.projects footer {
  transform: rotate(270deg) translate(3rem, 5rem);
}

.contact {
  background: linear-gradient(to top, rgba(39, 39, 39, 0.9), rgba(39, 39, 39, 0.3)), url("../images/computerUser.jpg") center center;
  background-size: cover;
  height: 100%;
  padding-top: 40vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
}
.contact_list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 2rem;
  font-size: 1.5rem;
}
.contact .social-icons {
  position: initial;
  margin-top: 2rem;
}

@media screen and (min-width: 768px) {
  .menu-btn {
    visibility: hidden;
  }
  .nav {
    visibility: visible;
  }
  .nav .menu-nav {
    display: block;
    transform: translateY(0);
    height: 100%;
    background: transparent;
    text-align: right;
  }
  .nav .menu-nav_item {
    display: inline;
    padding-right: 1.5rem;
  }
  .nav .menu-nav_link {
    font-size: 1.5rem;
  }
  .home {
    margin-top: 0px;
  }
  /*.about_bio{
    //font-size: 1.5rem;
  }*/
  .projects_bio-image {
    height: 40vh;
  }
  .projects_items {
    grid-template-columns: repeat(2, 3fr);
  }
  .projects .text-secondary {
    font-size: 3rem;
  }
  .contact-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .projects_items {
    grid-template-columns: repeat(3, 1fr);
  }
  .contact-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1600px) {
  .projects_bio-image {
    height: 50vh;
  }
}
body {
  background: #272727;
  color: #fff;
  height: 100vh;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1;
}

h1, h2, h3 {
  font-weight: 400;
}

a {
  color: #fff;
  text-decoration: none;
}

.text-secondary {
  color: #ff5202;
}

header {
  position: fixed;
  z-index: 2;
  width: 100%;
  padding: 1rem;
}

main {
  height: 100%;
  width: 100%;
}
main .social-icons {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
}
main .social-icons a {
  padding: 0.4rem;
  transition: all 0.5s ease-in-out;
}
main .social-icons a:hover {
  color: #ff5202;
}

footer {
  font-size: 1rem;
  position: fixed;
  bottom: 0.4rem;
  right: 1rem;
  padding: 1rem;
  text-align: right;
  color: #fff;
}/*# sourceMappingURL=main.css.map */