/*!
 * Typography
 */
/*!
 * Breakpoints
 */
/*!
 * Color palette
 */
.about-hero__wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
  padding-top: 0px !important;
  padding-bottom: 0px !important;
  margin-top: -80px;
}
@media (min-width: 769px) {
  .about-hero__wrapper {
    padding: 90px 20px;
  }
}
@media (min-width: 1201px) {
  .about-hero__wrapper {
    padding: 120px 20px;
  }
}
.about-hero__fold {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  height: 100vh;
}
.about-hero__animation {
  position: relative;
  right: -185%;
}
@media (min-width: 769px) {
  .about-hero__animation {
    flex: 6;
    right: 0;
  }
}
.about-hero__animation-logo {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: -10vh;
  right: 80px;
}
@media (min-width: 1441px) {
  .about-hero__animation-logo {
    top: -20vh;
  }
}
.about-hero__animation-logo-layer {
  position: absolute;
  right: 0;
  max-width: none;
}
.about-hero__animation-logo-layer.layer-1 {
  width: 1063px;
  height: 1092px;
  right: 29px;
  animation: 2s ease 5s 1 fadeIn backwards;
}
.about-hero__animation-logo-layer.layer-2 {
  width: 1063px;
  height: 1092px;
  right: 29px;
  animation: 2s ease 3s 1 fadeIn backwards;
}
.about-hero__animation-blueprint {
  position: absolute;
  z-index: -2;
  width: 100%;
  height: 100%;
  top: -10vh;
  right: 80px;
}
@media (min-width: 1441px) {
  .about-hero__animation-blueprint {
    top: -20vh;
  }
}
.about-hero__animation-blueprint-layer {
  position: absolute;
  right: 0;
  max-width: none;
}
.about-hero__animation-blueprint-layer.layer-1 {
  width: 1092px;
  height: 1092px;
  animation: 2s ease 1s 1 fadeIn backwards;
}
.about-hero__animation-blueprint-layer.layer-2 {
  width: 1035px;
  height: 1035px;
  right: 29px;
  top: 57px;
  animation: 2s ease 3.5s 1 fadeIn backwards;
}
.about-hero__animation-blueprint-layer.layer-3 {
  width: 862px;
  height: 862px;
  right: 115px;
  top: 121px;
  animation: 2s ease 4s 1 fadeIn backwards;
}
.about-hero__animation-blueprint-layer.layer-4 {
  width: 803px;
  height: 803px;
  right: 145px;
  top: 180px;
  animation: 2s ease 1.5s 1 fadeIn backwards;
}
.about-hero__animation-blueprint-layer.layer-5 {
  width: 180px;
  height: 180px;
  right: 456px;
  top: 0px;
  animation: 2s ease 0s 1 fadeIn backwards;
}
.about-hero__animation-blueprint-layer.layer-6 {
  width: 72px;
  height: 72px;
  right: 168px;
  top: 201px;
  animation: 2s ease 2.5s 1 fadeIn backwards;
}
.about-hero__animation-blueprint-layer.layer-7 {
  width: 110px;
  height: 110px;
  right: 492px;
  top: 981px;
  animation: 2s ease 4s 1 fadeIn backwards;
}
.about-hero__caption {
  text-align: center;
}
@media (min-width: 769px) {
  .about-hero__caption {
    flex: 6;
    text-align: left;
  }
}
.about-hero__caption-title {
  margin: 0;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 40px;
  animation: 2s ease 0.5s 1 fadeAndSlide backwards;
}
@media (min-width: 769px) {
  .about-hero__caption-title {
    font-size: 48px;
    letter-spacing: -1px;
    line-height: 50px;
  }
}
@media (min-width: 1441px) {
  .about-hero__caption-title {
    font-size: 60px;
    letter-spacing: -1.5px;
    line-height: 60px;
  }
}
.about-hero__caption-subtitle {
  margin: 60px 0 0 0;
  color: #9999A7;
  font-size: 18px;
  letter-spacing: -0.1px;
  line-height: 30px;
  animation: 2s ease 1s 1 fadeAndSlide backwards;
}
.about-hero__caption-icon {
  position: absolute;
  bottom: 60px;
  color: #FF495C;
  font-size: 32px;
  animation: 0.5s ease infinite arrowAnimation;
}
.about-hero__content {
  padding-bottom: 120px;
  font-size: 16px;
  letter-spacing: -0.1px;
  line-height: 30px;
}
@media (min-width: 769px) {
  .about-hero__content {
    width: 50%;
    margin: 0 0 0 50%;
  }
}
.about-hero__content p {
  margin: 0 0 30px 0;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeAndSlide {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    top: 0px;
    transform: translateY(0px);
  }
}
@keyframes arrowAnimation {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0px);
  }
}
