.menu-btn {
  position: absolute;
  z-index: 10;
  right: 35px;
  top: 35px;
  cursor: pointer;
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}

.menu-btn .btn-line {
  width: 28px;
  height: 3px;
  margin: 0 0 5px 0;
  background: #000;
}

.close {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.close .btn-line:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(5px, 5px);
          transform: rotate(45deg) translate(5px, 5px);
}

.close .btn-line:nth-child(2) {
  display: none;
}

.close .btn-line:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.menu {
  position: fixed;
  top: 0;
  width: 100%;
  opacity: 0.9;
  visibility: hidden;
}

.menu.show {
  visibility: visible;
}

.menu-brand, .menu-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  float: left;
  width: 50%;
  height: 100vh;
  overflow: hidden;
}

.menu-nav {
  margin: 0;
  padding: 0;
  background: #f2f2f2;
  list-style-type: none;
  -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}

.menu-nav.show {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.menu-brand {
  background: #fff;
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}

.menu-brand.show {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.menu-brand .portrait {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: solid 3px #a11531;
}

.menu .nav-item {
  -webkit-transform: translate3d(0, -100vh, 0);
          transform: translate3d(0, -100vh, 0);
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}

.menu .nav-item.show {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.menu .nav-item.current > a {
  color: #a11531;
}

.menu .nav-link {
  display: inline-block;
  position: relative;
  font-size: 30px;
  text-transform: uppercase;
  padding: 1rem 0;
  font-weight: 300;
  color: #000;
  text-decoration: none;
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}

.menu .nav-link:hover {
  color: #a11531;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  background: #fff;
  color: #000;
  height: 100%;
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.5;
}

body#bg-img {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(251, 251, 251, 0.753))), url(../img/bg.jpg);
  background: linear-gradient(rgba(251, 251, 251, 0.753)), url(../img/bg.jpg);
  background-attachment: fixed;
  background-size: cover;
}

#bg-img2#bg-img2 {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(251, 251, 251, 0.75))), url(../img/cellphone-codes-coding-92904.jpg);
  background: linear-gradient(rgba(251, 251, 251, 0.75)), url(../img/cellphone-codes-coding-92904.jpg);
  background-attachment: fixed;
  background-size: cover;
}

#bg-img3#bg-img3 {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(251, 251, 251, 0.918))), url(../img/artist-black-and-white-chord-1288489.jpg);
  background: linear-gradient(rgba(251, 251, 251, 0.918)), url(../img/artist-black-and-white-chord-1288489.jpg);
  background-attachment: fixed;
  background-size: cover;
}

#bg-img4#bg-img4 {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(251, 251, 251, 0.75))), url(../img/daylight-environment-forest-459225.jpg);
  background: linear-gradient(rgba(251, 251, 251, 0.75)), url(../img/daylight-environment-forest-459225.jpg);
  background-attachment: fixed;
  background-size: cover;
}

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

h1.lg-heading,
h2.lg-heading,
h3.lg-heading {
  font-size: 6rem;
}

h1.sm-heading,
h2.sm-heading,
h3.sm-heading {
  margin-bottom: 2rem;
  padding: 0.2rem 1rem;
  background: -webkit-gradient(linear, left top, right top, from(#da4453), color-stop(10%, #89216b));
  background: linear-gradient(90deg, #da4453 0%, #89216b 10%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-box-shadow: 0 0 5px #1a1919;
          box-shadow: 0 0 5px #1a1919;
}

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

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

.txt-secondary {
  color: #a11531;
}

main {
  padding: 4rem;
  min-height: calc(100vh - 60px);
}

main#home {
  overflow: hidden;
}

main#home h1 {
  margin-top: 20vh;
}

main#about .lg-heading {
  padding: 15px;
}

main#about .sm-heading {
  -webkit-box-shadow: none;
          box-shadow: none;
}

main#work .lg-heading {
  padding: 15px;
}

main#work .sm-heading {
  -webkit-box-shadow: none;
          box-shadow: none;
}

main#contact .lg-heading {
  padding: 15px;
}

main#contact .sm-heading {
  -webkit-box-shadow: none;
          box-shadow: none;
}

main .icons {
  margin-top: 1rem;
}

main .icons a {
  font-size: 60px;
  padding: 0.4rem;
}

main .icons a:hover {
  font-size: 70px;
  color: #a11531;
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}

.nav-item:nth-child(1) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.nav-item:nth-child(2) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.nav-item:nth-child(3) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.nav-item:nth-child(4) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

.about-info {
  display: -ms-grid;
  display: grid;
  grid-gap: 30px;
      grid-template-areas: 'bio-img bio bio' 'job-1 job-2 job-3';
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
}

.about-info .bio-img {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: bio-img;
  margin: auto;
  border-radius: 50%;
  border: 3px solid #a11531;
}

.about-info .bio {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-area: bio;
  font-size: 1.5rem;
}

.about-info .bio h3 {
  font-size: 3rem;
  border-bottom: 2px solid #1a1919;
}

.about-info .bio p {
  text-align: justify;
}

.about-info .job-1 {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: job-1;
}

.about-info .job-2 {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: job-2;
}

.about-info .job-2 .edu {
  padding: 0 0 0 40px;
}

.about-info .job-3 {
  -ms-grid-row: 2;
  -ms-grid-column: 3;
  grid-area: job-3;
}

.about-info ul {
  list-style-type: none;
}

.about-info .job {
  margin: 3rem 0;
  padding: 10px;
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
  background: -webkit-gradient(linear, left top, right top, from(#c3cfe2), color-stop(120%, #f5f7fa));
  background: linear-gradient(90deg, #c3cfe2 0%, #f5f7fa 120%);
  padding: 0.5rem;
  border-bottom: 2px solid #1a1919;
  -webkit-box-shadow: 0 0 5px #1a1919;
          box-shadow: 0 0 5px #1a1919;
}

.about-info .job ul,
.about-info .job p {
  letter-spacing: 0.25em;
  text-shadow: 0 0 0.9px #1a1919;
}

.about-info .job h3 {
  border-bottom: #a11531 1px solid;
  font-size: 1.3rem;
  background: -webkit-gradient(linear, left top, right top, from(#da4453), color-stop(1%, #89216b));
  background: linear-gradient(90deg, #da4453 0%, #89216b 1%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.about-info .job:hover {
  background: transparent;
  -webkit-box-shadow: 5px 5px 0px #111111;
          box-shadow: 5px 5px 0px #111111;
  border-left: 2px solid #1a1919;
  border-top: 2px solid #1a1919;
}

.projects {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}

.projects img {
  padding: 5px;
  width: 100%;
  border: 3px solid #1a1919;
}

.projects img:hover {
  opacity: 0.5;
  border-color: #a11531;
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}

.projects .item h3 {
  color: #a11531;
}

.projects .item p {
  color: #0b0bcf;
}

.btn, .btn-dark, .btn-light {
  text-align: center;
  font-size: 20px;
  display: block;
  padding: 0.5rem 1rem;
  border: 0;
  margin-bottom: 0.3rem;
}

.btn:hover, .btn-dark:hover, .btn-light:hover {
  background: #a11531;
  color: #fff;
}

.btn-dark {
  background: #1a1919;
  color: #f5f7fa;
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}

.btn-light {
  background: #cfd9df;
  color: #1a1919;
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}

.main-footer {
  text-align: center;
  padding: 1rem;
  -webkit-box-shadow: 0 0 5px #1a1919;
          box-shadow: 0 0 5px #1a1919;
  color: set-color-text(#fff);
  height: 60px;
}

.boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1rem;
  cursor: pointer;
}

.boxes div {
  -webkit-box-shadow: 0 0 5px #a11531;
          box-shadow: 0 0 5px #a11531;
  font-size: 2rem;
  border: 3px #1a1919 solid;
  padding: 1.5rem 3rem;
  margin-bottom: 3rem;
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}

.boxes div:hover {
  padding: 0.5rem 1.5rem;
  background: #a11531;
  color: #fff;
}

.boxes div:hover span {
  color: #fff;
}

.boxes iframe {
  padding: 1.5rem;
  -webkit-box-shadow: 0 0 5px #a11531;
          box-shadow: 0 0 5px #a11531;
}

@media screen and (min-width: 1171px) {
  .projects {
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
  }
}

@media screen and (min-width: 769) and (max-width: 1170px) {
  .projects {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 768px) {
  main {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  main .lg-heading {
    line-height: 1;
    margin-bottom: 1rem;
  }
  ul.menu-nav,
  div.menu-brand {
    float: none;
    width: 100%;
    min-height: 0;
  }
  ul.menu-nav.show,
  div.menu-brand.show {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  ul.menu-nav {
    height: 75vh;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
    font-size: 24px;
  }
  div.menu-brand {
    height: 25vh;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  div.menu-brand .portrait {
    width: 150px;
    height: 150px;
  }
  .about-info {
        grid-template-areas: 'bio-img' 'bio' 'job-1' 'job-2' 'job-3';
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    place-items: center;
  }
  .about-info .job {
    width: 80%;
    text-align: center;
  }
  .about-info .job ul {
    padding: 0;
  }
  .about-info .job-2 .edu {
    padding: 0;
  }
  .projects {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 500px) {
  main#home h1 {
    font-size: 4rem;
    margin-top: 10vh;
  }
  .projects {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
  }
}
/*# sourceMappingURL=style.css.map */