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

.home {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  padding-top: 40vh;
  overflow: hidden;
  align-items: center;
  text-align: center;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  background-size: cover;
}
.home__text--box {
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  border-bottom: 1px solid #fff;
  margin-bottom: 1rem;
}
.home__text1 {
  width: 80%;
  text-align: center;
}
.home__text2 {
  padding-bottom: 1rem;
  font-size: 1rem;
}
.home__text2--email {
  color: #ED6A5A;
}

.menu-brand {
  position: absolute;
  z-index: 1;
  top: 1rem;
  left: 1.5rem;
  height: 100%;
  filter: brightness(0) invert(1);
  /* &:hover {
      filter:none;
  } */
}
.menu-brand__image {
  max-height: 1.5rem;
}

.menu-btn {
  position: absolute;
  z-index: 1;
  right: 1rem;
  top: 1.3rem;
  height: 20px;
  width: 28px;
  transition: all 0.4s ease-in-out;
}
.menu-btn__burger {
  position: absolute;
  right: 0;
  top: 0.5rem;
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 1.5px;
  transition: all 0.4s ease-in-out;
}
.menu-btn__burger::before {
  content: "";
  position: absolute;
  top: -8px;
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 1.5px;
  transition: all 0.4s ease-in-out;
}
.menu-btn__burger::after {
  content: "";
  position: absolute;
  top: 8px;
  width: 20px;
  height: 3px;
  background: #fff;
  border-radius: 1.5px;
  transition: all 0.4s ease-in-out;
}
.menu-btn__burger.open {
  transform: rotate(720deg);
  background: 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);
}
.menu-btn:hover .menu-btn__burger {
  background: #ED6A5A;
}
.menu-btn:hover .menu-btn__burger.open {
  background: transparent;
}
.menu-btn:hover .menu-btn__burger::after {
  background: #ED6A5A;
}
.menu-btn:hover .menu-btn__burger::before {
  background: #ED6A5A;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  opacity: 0.98;
  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: #545252;
  list-style-type: none;
  padding-right: 1rem;
  transform: translateY(-100%);
  transition: all 0.4s ease-in-out;
}
.nav .menu-nav.open {
  transform: translateY(0);
}
.nav .menu-nav__item {
  transform: translateX(100vw);
  transition: all 0.4s ease-in-out;
}
.nav .menu-nav__item.open {
  transform: translateX(0);
}
.nav .menu-nav__item.active > a {
  color: #ED6A5A;
}
.nav .menu-nav__link {
  display: inline-block;
  font-size: 2rem;
  padding: 2rem 0;
  font-weight: 300;
  transition: all 0.4s ease-in-out;
}
.nav .menu-nav__link:hover {
  color: #ED6A5A;
}

.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;
}

@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.2rem;
    padding: 1.5rem 0;
  }
  .about__bio {
    font-size: 1.5rem;
  }
  .services__bio {
    font-size: 1.5rem;
  }
  .services__items {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .services__items {
    grid-template-columns: repeat(3, 1fr);
  }
  .contact__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1600px) {
  .services_bio-image {
    height: 50vh;
  }
}
#canvas-basic {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

body {
  background: #545252;
  color: #fff;
  height: 100%;
  font-family: museo-sans-rounded, sans-serif;
  line-height: 1;
  font-weight: 300;
}

h1, h2, h3 {
  font-weight: 300;
  padding-bottom: 0.5rem;
}

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

.text-secondary {
  color: #ED6A5A;
}

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

main {
  height: 100%;
  width: 100%;
  /* .social-icons {
      position: fixed;
      bottom: 1rem;
      left: 1rem;

      a {
          padding: 0.4rem;
          @include transition-ease;

          &:hover {
              color: $secondary-color;
          }
      }
  } */
}

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