* {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100%;
  background-color: #f9f9f5;
  font-weight: 400;
  padding-left: 5%;
  padding-right: 5%;
  overflow: hidden !important;
}

header {
  height: 20vh;
  opacity: 1;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  padding-left: 5%;
  z-index: 100;
  padding-right: 5%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
header .nav-logo-container {
  width: 100%;
  position: absolute;
  left: 0;
  display: flex;
  justify-content: center;
}
header .nav-logo-container .main-logo {
  text-align: center;
  opacity: 0;
}
header .nav-links {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  opacity: 0;
  text-decoration: none;
  animation: showNavLinks 1.2s ease-in-out 6.5s forwards;
  z-index: 30;
}
header .nav-links:hover {
  color: #000;
}

@keyframes rotateE {
  0% {
    transform: rotate(-90deg);
    width: auto;
    height: auto;
    opacity: 1;
  }
  30% {
    transform: rotate(-90deg);
    width: auto;
    height: auto;
    opacity: 1;
  }
  50% {
    transform: rotate(300deg);
    width: auto;
    height: auto;
  }
  90% {
    opacity: 1;
    transform: rotate(360deg);
    width: auto;
    height: auto;
  }
  98% {
    opacity: 1;
    transform: rotate(360deg);
    width: auto;
    height: auto;
  }
  100% {
    transform: rotate(360deg);
    opacity: 0;
    width: 1px;
    height: 1px;
  }
}
@keyframes slideInFromLeft {
  0% {
    opacity: 1;
    width: auto;
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes deleteOverflow {
  0% {
    opacity: 1;
  }
  80% {
    width: 500px;
    overflow: hidden;
  }
  99% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    width: 100%;
    overflow: auto;
  }
}
@keyframes showMain {
  0% {
    opacity: 1;
    width: 395px;
    justify-content: space-between;
  }
  10% {
    opacity: 1;
    width: 395px;
  }
  30% {
    opacity: 1;
    width: 100%;
    justify-content: space-between;
  }
  73% {
    opacity: 1;
    width: 100%;
    justify-content: space-between;
  }
  90% {
    opacity: 1;
    width: 395px;
  }
  99% {
    justify-content: space-between;
  }
  100% {
    opacity: 1;
    width: 395px;
    justify-content: center;
  }
}
@keyframes showCenterText {
  0% {
    opacity: 0;
    width: 100%;
  }
  1% {
    width: 100vw;
    opacity: 0;
  }
  5% {
    opacity: 1;
    width: 100vw;
  }
  100% {
    opacity: 1;
    width: 100vw;
  }
}
@keyframes autowriting {
  0% {
    width: 15px;
    opacity: 0;
  }
  2% {
    width: 15px;
    opacity: 0;
  }
  4% {
    width: 15px;
    opacity: 1;
  }
  30% {
    width: 100vw;
  }
  80% {
    width: 100vw;
  }
  96% {
    width: 15px;
    opacity: 1;
  }
  98% {
    width: 15px;
    opacity: 0;
  }
  100% {
    width: 15px;
    opacity: 0;
  }
}
@keyframes autowritingBottom {
  0% {
    width: 15px;
    opacity: 0;
  }
  2% {
    width: 15px;
    opacity: 0;
  }
  4% {
    width: 15px;
    opacity: 1;
  }
  30% {
    width: 100vw;
  }
  80% {
    width: 100vw;
  }
  96% {
    width: 15px;
    opacity: 1;
  }
  98% {
    width: 15px;
    opacity: 0;
  }
  100% {
    width: 15px;
    opacity: 0;
  }
}
@keyframes showNavAndScaleLogo {
  0% {
    transform: scale(1);
    justify-content: center;
  }
  20% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-40vh) scale(0.8);
    width: 395px;
  }
}
@keyframes scaleLogoNav {
  99% {
    opacity: 1;
  }
  100% {
    width: 60px;
    opacity: 1;
  }
}
@keyframes scaleLogoNavBottom {
  99% {
    opacity: 1;
  }
  100% {
    width: 146px;
    opacity: 1;
  }
}
@keyframes showNavLinks {
  0% {
    opacity: 0;
  }
  2% {
    opacity: 1;
    transform: translateY(-20px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes showMainMobile {
  0% {
    opacity: 1;
    width: 395px;
  }
  100% {
    opacity: 1;
    width: 395px;
    justify-content: center;
  }
}
@keyframes mobileUpper {
  0% {
    background: transparent;
  }
  20% {
    transform: translateX(140px) translateY(-80px);
  }
  80% {
    transform: translateX(140px) translateY(-80px);
  }
}
@keyframes mobileUpper600 {
  0% {
    background: transparent;
  }
  20% {
    transform: translateX(90px) translateY(-80px);
  }
  80% {
    transform: translateX(90px) translateY(-80px);
  }
}
@keyframes mobileLower {
  0% {
    background: transparent;
  }
  20% {
    transform: translateX(-51px) translateY(80px);
  }
  80% {
    transform: translateX(-51px) translateY(80px);
  }
}
main {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
main .animations-container {
  width: 100vw;
  height: 56px;
  position: absolute;
  text-align: center;
  display: flex;
  justify-content: center;
}
@media (max-width: 600px) {
  main .animations-container {
    height: 40px;
  }
}
main .animations-container .e-letter {
  text-align: center;
  height: 1px;
  width: 1px;
  transform: rotate(-90deg);
  animation: rotateE 1.5s ease-out 0.2s forwards;
}
main .animations-container .show-animation-logo-con {
  width: 1px;
  overflow: hidden;
  opacity: 0;
  display: flex;
  animation: deleteOverflow 0.3s ease-out 1.7s forwards;
  justify-content: center;
}
main .animations-container .show-animation-logo-con .main-logo-animation {
  opacity: 1;
  transform: translateX(130px);
  animation: slideInFromLeft 0.3s ease-out 1.7s forwards;
}
main .main-content-container {
  opacity: 0;
  display: flex;
  position: relative;
  justify-content: center;
  animation: showMain 4.4s ease-in-out 1.99s forwards, showNavAndScaleLogo 1s ease-in-out 6.2s forwards;
  align-items: center;
  width: 385px;
  height: 60px;
}
@media (max-width: 1100px) {
  main .main-content-container {
    animation: showMainMobile 4.4s ease-in-out 1.99s forwards, showNavAndScaleLogo 1s ease-in-out 6.2s forwards;
  }
}
main .main-content-container .upper-photo {
  width: 113px;
  animation: scaleLogoNav 0.6s ease-in-out 6.2s forwards;
  z-index: 5;
  background-color: #f9f9f5;
}
@media (max-width: 1100px) {
  main .main-content-container .upper-photo {
    animation: mobileUpper 4.4s ease-in-out 1.99s forwards, scaleLogoNav 0.6s ease-in-out 6.2s forwards;
  }
}
@media (max-width: 600px) {
  main .main-content-container .upper-photo {
    animation: mobileUpper600 4.4s ease-in-out 1.99s forwards, scaleLogoNav 0.6s ease-in-out 6.2s forwards;
    width: 81px;
  }
}
main .main-content-container .lower-photo {
  width: 282px;
  animation: scaleLogoNavBottom 0.6s ease-in-out 6.2s forwards;
  z-index: 5;
  background-color: #f9f9f5;
}
@media (max-width: 1100px) {
  main .main-content-container .lower-photo {
    animation: mobileLower 4.4s ease-in-out 1.99s forwards, scaleLogoNavBottom 0.6s ease-in-out 6.2s forwards;
  }
}
@media (max-width: 600px) {
  main .main-content-container .lower-photo {
    width: 201px;
  }
}
main .autowriting-text-container {
  position: absolute;
  opacity: 0;
  width: 100vw;
  display: flex;
  max-width: 100vw;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  left: 0;
  animation: showCenterText 0.7s ease-out 2.5s forwards;
}
main .autowriting-text-container .main-content-line-1, main .autowriting-text-container .main-content-line-2 {
  font-size: 24px;
  width: 0px;
  overflow: hidden;
  margin: 0;
  white-space: nowrap;
  text-align: center;
  line-height: 23px;
}
@media (max-width: 1300px) {
  main .autowriting-text-container .main-content-line-1, main .autowriting-text-container .main-content-line-2 {
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  main .autowriting-text-container .main-content-line-1, main .autowriting-text-container .main-content-line-2 {
    font-size: 14px;
  }
}
main .autowriting-text-container .main-content-line-1 {
  animation: autowriting 3.4s ease-out 2.5s forwards;
}
main .autowriting-text-container .main-content-line-2 {
  animation: autowritingBottom 3s ease-out 2.7s forwards;
}