.container {
  max-width: 1392px;
  padding: 0 16px;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
}
@media screen and (min-width: 1300px) {
  .container {
    max-width: 1440px;
    padding: 0 40px;
  }
}

body {
  font-weight: 500;
  font-size: 16px;
  color: #080808;
  font-family: "NeueHaas", sans-serif !important;
  line-height: 1.2;
}

button {
  font-family: "NeueHaas";
  cursor: pointer;
  letter-spacing: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "NeueHaas", sans-serif !important;
}

h1 {
  font-weight: 700;
  line-height: 72px;
  font-size: 64px;
  letter-spacing: -0.5px;
}
@media screen and (max-width: 768px) {
  h1 {
    line-height: 48px;
    font-size: 44px;
  }
}

[class^=icon-]:before,
[class*=" icon-"]:before {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.button {
  background: #FFE27F;
  border-radius: 100px;
  font-size: 18px;
  line-height: 36px;
  letter-spacing: 0.36px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 20px;
  font-weight: 600;
  width: fit-content;
  position: relative;
}
.button:hover {
  background: #1F1F1F;
  color: #F6F6F6;
}

.header {
  padding-top: 16px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  transition: all 650ms cubic-bezier(0.63, 0, 0.02, 1) 0ms;
}
.header.black .header__menu-item a {
  color: #080808;
}
.header.black .header__logo-dark {
  opacity: 1;
}
.header.black .header__logo-white {
  opacity: 0;
}
.header.small .header__wrapper {
  padding: 14px 24px;
}
@media (max-width: 480px) {
  .header.small .header__wrapper {
    padding: 10px 14px;
  }
}
.header.small .header__logo img {
  width: 180px;
}
.header.active .header__container::before {
  opacity: 1;
}
.header__logo {
  position: relative;
}
.header__logo-dark, .header__logo-white {
  position: absolute;
  left: 0;
  top: -12px;
  transition: all 650ms cubic-bezier(0.63, 0, 0.02, 1) 100ms;
}
.header__logo-dark {
  opacity: 0;
}
.header__logo-white {
  opacity: 1;
  width: 178px;
  left: -3px;
}
.header__container {
  width: 100%;
  max-width: 1392px;
  padding: 0 24px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.header__container::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: transparent;
  backdrop-filter: none;
  z-index: -1;
  border-radius: 20px;
  opacity: 0;
  background-color: rgba(235, 235, 235, 0.3);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: all 650ms cubic-bezier(0.63, 0, 0.02, 1) 100ms;
}
.header__logo img {
  width: 240px;
  height: auto;
  transition: all 0.5s;
}
@media (max-width: 480px) {
  .header__logo img {
    width: 130px;
  }
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 24px;
  padding: 27px 24px;
  transition: all 0.5s;
}
@media (max-width: 480px) {
  .header__wrapper {
    padding: 15px 14px;
  }
}
.header__nav {
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 24px;
  transition: all 0.3s;
  right: 0;
  top: 0;
}
@media (max-width: 767px) {
  .header__nav.active {
    justify-content: space-between;
    flex-direction: column;
    right: calc(50% - 19px);
    top: 26px;
  }
}
.header__menu {
  margin-left: auto;
}
@media (max-width: 767px) {
  .header__menu > ul {
    padding-top: 50px;
  }
}
.header__menu ul {
  position: relative;
}
.header__menu ul > li {
  transform: translateY(30px);
  transition: all 650ms cubic-bezier(0.63, 0, 0.02, 1) 0ms;
}
.header__menu ul > li:nth-child(2) {
  transition: all 650ms cubic-bezier(0.63, 0, 0.02, 1) 100ms;
}
.header__menu ul > li:nth-child(3) {
  transition: all 650ms cubic-bezier(0.63, 0, 0.02, 1) 200ms;
}
.header__menu ul > li:nth-child(4) {
  transition: all 650ms cubic-bezier(0.63, 0, 0.02, 1) 300ms;
}
.header__menu .menu-item-has-children {
  position: relative;
  text-align: center;
}
@media (max-width: 767px) {
  .header__menu .menu-item-has-children::before {
    position: absolute;
    top: 23px;
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='10' viewBox='0 0 18 10' fill='none'%3E%3Cpath d='M1 1.84375L8.99993 7.84375L17 1.84375' stroke='%23080808' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    width: 18px;
    height: 10px;
    transition: all 0.65s;
    left: calc(50% + 67px);
    transform: translateX(-50%);
  }
  .header__menu .menu-item-has-children.active::before {
    transform: rotate(180deg) translateX(-50%);
  }
}
.header__menu .menu-item-has-children:hover ul {
  opacity: 1;
  pointer-events: all;
}
.header__menu .menu-item-has-children ul {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 20px;
  background-color: rgba(235, 235, 235, 0.3);
  backdrop-filter: blur(24px);
  padding: 14px 22px;
  width: 290px;
  opacity: 0;
  pointer-events: none;
  transition: all 650ms cubic-bezier(0.3, 0, 0, 1);
}
.header__menu .menu-item-has-children ul li {
  text-align: left;
}
@media (max-width: 767px) {
  .header__menu .menu-item-has-children ul {
    margin-top: 16px;
    position: static;
    transform: translateX(0);
    background: transparent;
    opacity: 1;
    pointer-events: all;
    width: 100%;
    padding: 0;
    overflow: hidden;
    height: 0;
    border-radius: 0;
  }
  .header__menu .menu-item-has-children ul a {
    font-size: 16px;
    font-weight: 500;
    line-height: 200%;
    display: block;
    margin-bottom: 26px;
  }
}
.header__menu .menu-item-has-children ul a {
  line-height: 25px;
}
.header__menu .menu-item-has-children ul::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  height: 44px;
  top: -44px;
}
@media (max-width: 767px) {
  .header__menu .menu-item-has-children ul::before {
    display: none;
  }
}
.header__menu.animated ul > li {
  transform: translateY(0px);
}
@media (max-width: 767px) {
  .header__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: gray;
    transition: right 0.3s ease-in-out;
    padding: 56px 22px 37px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: auto;
  }
  .header__nav.active .header__menu {
    right: 0;
  }
}
.header__menu-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 34px;
  row-gap: 10px;
}
@media (max-width: 992px) {
  .header__menu-list {
    column-gap: 20px;
  }
}
@media (max-width: 767px) {
  .header__menu-list {
    flex-direction: column;
    margin-top: auto;
  }
}
.header__menu-link {
  font-size: 16px;
  line-height: 32px;
  letter-spacing: normal;
  color: #fff;
  position: relative;
}
@media (max-width: 767px) {
  .header__menu-link {
    font-size: 27px;
    line-height: 54px;
    color: #080808;
  }
}
.header__menu-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .header__menu-link::after {
    content: none;
  }
}
.header__menu-link:hover::after {
  opacity: 1;
}
.header__burger {
  position: relative;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 32px;
  height: 32px;
  background-color: #FFE27F;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }
}
.header__burger span {
  display: block;
  width: 12px;
  height: 2px;
  background-color: #080808;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}
.header__burger.active {
  background-color: #080808;
}
.header__burger.active span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
}
@media (max-width: 767px) {
  .header__burger.active span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
  }
}
@media (max-width: 767px) {
  .header__burger.active span:nth-child(2) {
    opacity: 0;
  }
}
@media (max-width: 767px) {
  .header__burger.active span:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}
.header__btn--mobile {
  display: none;
}
@media (max-width: 767px) {
  .header__btn--mobile {
    display: block;
    margin-top: auto;
  }
  .header__btn--mobile .button {
    width: initial;
    height: 45px;
    border-radius: 80px;
  }
  .header__btn--mobile .button:hover {
    background: #fff;
    color: #080808;
  }
}
.header__btn--desktop .button {
  overflow: hidden;
  background: transparent;
  padding: 9px 20px;
}
.header__btn--desktop .button:after {
  position: absolute;
  content: "";
  background: #FFE27F;
  border-radius: 100px;
  width: 60%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: width 0.6s, opacity 0.2s;
}
.header__btn--desktop .button span {
  width: max-content;
  height: 18px;
  line-height: 1;
  overflow: hidden;
  padding-top: 18px;
  flex-shrink: 0;
  transition: all 0.6s;
  position: relative;
  z-index: 1;
}
.header__btn--desktop.animated .button:after {
  opacity: 1;
  width: 100%;
}
.header__btn--desktop.animated .button span {
  padding-top: 0;
}
@media (max-width: 767px) {
  .header__btn--desktop {
    display: none;
  }
}

.preloader {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 1001;
  overflow: hidden;
  transform: translateY(-100dvh);
  pointer-events: none;
  transition: all 1200ms cubic-bezier(0.7, 0, 0.3, 1) 0ms;
  transform-origin: top;
}
.preloader.active {
  transform: translateY(0);
  pointer-events: all;
}
.preloader.active .preloader__wrap {
  transform: translateY(0);
}
.preloader__wrap {
  position: relative;
  display: flex;
  transform-origin: top;
  align-items: center;
  justify-content: center;
  transition: all 1200ms cubic-bezier(0.7, 0, 0.3, 1) 0ms;
  transform: translateY(100dvh);
  width: 100%;
  height: 100dvh;
}
.preloader__lottie {
  max-width: 500px;
  position: relative;
  z-index: 3;
}
.preloader__lottie.hidden {
  animation: lottie 1.6s cubic-bezier(0.42, 0, 0.58, 1) forwards;
}
@keyframes lottie {
  0% {
    transform: scale(1);
  }
  35% {
    transform: scale(0.8);
  }
  35% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(0.1);
  }
}
.preloader__count {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 3;
}
.preloader__count-number {
  display: inline-block;
  height: 1em;
  overflow: hidden;
}
.preloader__count-number span {
  display: none;
}
.preloader__count-number span.active {
  display: block;
}
.preloader__bg {
  position: absolute;
  width: 80%;
  aspect-ratio: 1/1;
  bottom: 0;
  right: 0;
  transform: translate(70%, 70%);
  transition: transform 2s ease;
}
.preloader__bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.6);
}
@media (max-width: 767px) {
  .preloader__bg img {
    transform: scale(2.3);
    width: 200%;
    height: 200%;
  }
}
.preloader__bg.active {
  transform: translate(25%, 25%);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.5s, opacity 0.5s, background 0.5s;
}
a:focus {
  outline: none;
}

html, body {
  overflow-x: hidden;
}

body {
  overflow-y: hidden;
  position: relative;
}

body.menu-open {
  overflow: hidden;
}

html {
  font-size: 16px;
}

.site-content {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.container-1320 {
  max-width: 1352px;
  padding: 0 16px;
  margin: 0 auto;
}

html, body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0px;
  height: 0px;
  background: transparent;
  display: none;
}

#root .spinner {
  position: absolute !important;
}

.pnlm-load-box {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none;
}

html.overflow-reviews,
html.overflow {
  overflow: hidden;
}

.scroll {
  color: #FFF;
  background: #fff;
  position: relative;
  position: fixed;
  height: 100vh;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 60;
  transition: all 1.4s;
}
.scroll.free {
  position: relative;
}
.scroll.hidden {
  transform: translateY(-300px);
  opacity: 0 !important;
}
.scroll__contact-btn {
  position: absolute;
  z-index: 104;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  display: none;
}
.scroll__block {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: all 1.9s;
}
.scroll__block.active {
  opacity: 1;
}
.scroll__video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  position: relative;
  z-index: 2;
}
.scroll__img-preview {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  position: relative;
  z-index: 1;
  position: absolute;
  inset: 0;
}
.scroll__content {
  position: absolute;
  z-index: 20;
  transition: all 1.3s;
}
.scroll__title {
  font-size: 70px;
  font-weight: 600;
  letter-spacing: -2.1px;
  text-transform: capitalize;
  overflow: hidden;
  position: relative;
  transition: all 650ms cubic-bezier(0.63, 0, 0.02, 1) 0ms;
}
.scroll__title.opacity {
  opacity: 0;
}
.scroll__title span {
  transition: all 650ms cubic-bezier(0.63, 0, 0.02, 1) 0ms;
  transform: translateY(100%);
  display: block;
}
.scroll__title:nth-child(2) span {
  transition: all 650ms cubic-bezier(0.63, 0, 0.02, 1) 100ms;
}
.scroll__title:nth-child(3) span {
  transition: all 650ms cubic-bezier(0.63, 0, 0.02, 1) 200ms;
}
.scroll__title.active span {
  transform: translateY(0);
}
@media screen and (max-width: 690px) {
  .scroll__title {
    font-size: 50px;
    letter-spacing: -1.5px;
  }
}
.scroll__text {
  transition: all 650ms cubic-bezier(0.63, 0, 0.02, 1) 0ms;
  font-size: 14px;
  font-weight: 500;
  line-height: 114%;
  max-width: 266px;
  margin-top: 32px;
}
.scroll__text .count-1 {
  transition-delay: 400ms;
}
.scroll__text .count-2 {
  transition-delay: 500ms;
}
.scroll__text .count-3 {
  transition-delay: 600ms;
}
.scroll__text .count-4 {
  transition-delay: 700ms;
}
.scroll__text.active .split-anim__inner {
  transform: translateY(0);
}
.scroll__block--first .scroll__content {
  bottom: 152px;
  right: 147px;
}
@media screen and (max-width: 690px) {
  .scroll__block--first .scroll__content {
    right: auto;
    left: 22px;
    bottom: 162px;
  }
}
.scroll__block--second .scroll__content {
  bottom: 152px;
  right: 350px;
}
@media screen and (max-width: 690px) {
  .scroll__block--second .scroll__content {
    left: 22px;
    right: auto;
    bottom: 162px;
  }
}
.scroll__block--third {
  position: relative;
}
.scroll__block--third.static {
  opacity: 1 !important;
}
.scroll__block--third .scroll__content {
  bottom: 152px;
  right: 350px;
}
@media screen and (max-width: 690px) {
  .scroll__block--third .scroll__content {
    left: 22px;
    right: auto;
    bottom: 162px;
  }
}
.scroll__preview {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  width: 100%;
  height: 100dvh;
  transition: all 1050ms cubic-bezier(0.4, 0, 1, 1) 0ms;
  opacity: 1;
  overflow: hidden;
  filter: blur(0px);
}
.scroll__preview.hidden {
  opacity: 0;
  filter: blur(50px);
  pointer-events: none;
}
.scroll__preview:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(16, 16, 16, 0.14);
  pointer-events: none;
}
.scroll__preview-video {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 2;
}
.scroll__img {
  position: absolute;
  z-index: 1;
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}
.scroll__inner {
  position: absolute;
  left: 24px;
  bottom: 59dvh;
  z-index: 2;
  transition: all 0.8s;
}
.scroll__inner.visible .scroll__preview-wrap:nth-child(1) .scroll__preview-title {
  transform: translateY(0);
}
.scroll__inner.visible .scroll__preview-wrap:nth-child(1) .scroll__preview-title::before {
  transform: translateY(0);
}
.scroll__inner.visible .scroll__preview-wrap:nth-child(1) .scroll__preview-text {
  transform: translateY(-5px);
}
.scroll__inner.visible .scroll__preview-wrap:nth-child(2) .scroll__preview-title {
  transform: translateY(0);
}
.scroll__inner.visible .scroll__preview-wrap:nth-child(2) .scroll__preview-title::before {
  transform: translateY(0);
}
.scroll__inner.visible .scroll__preview-wrap:nth-child(2) .scroll__preview-text {
  transform: translateY(-5px);
}
@media screen and (max-width: 768px) {
  .scroll__inner {
    left: 32px;
  }
}
@media screen and (max-width: 389px) {
  .scroll__inner {
    left: 22px;
  }
}
.scroll__preview-wrap {
  display: flex;
  gap: 9px;
  align-items: end;
  position: relative;
  overflow: hidden;
  padding-left: 16px;
  padding-top: 4px;
}
.scroll__preview-wrap:nth-child(1) .scroll__preview-title {
  transition: all 650ms cubic-bezier(0.63, 0, 0.02, 1) 200ms;
}
.scroll__preview-wrap:nth-child(1) .scroll__preview-text {
  transition: all 650ms cubic-bezier(0.63, 0, 0.02, 1) 400ms;
}
.scroll__preview-wrap:nth-child(2) .scroll__preview-title {
  transition: all 650ms cubic-bezier(0.63, 0, 0.02, 1) 0ms;
}
.scroll__preview-wrap:nth-child(2) .scroll__preview-text {
  transition: all 650ms cubic-bezier(0.63, 0, 0.02, 1) 300ms;
}
.scroll__preview-wrap:nth-child(1) {
  transform: translateY(22px) translateX(256px);
}
@media screen and (max-width: 690px) {
  .scroll__preview-wrap:nth-child(1) {
    transform: translateY(6px) translateX(108px);
  }
}
.scroll__preview-wrap:nth-child(2) .scroll__preview-title:before {
  content: "(1)";
  transition: all 650ms cubic-bezier(0.63, 0, 0.02, 1) 0ms;
}
@media screen and (max-width: 389px) {
  .scroll__preview-wrap {
    gap: 5px;
  }
}
.scroll__preview-title {
  position: relative;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.72px;
  line-height: 100%;
  text-transform: lowercase;
  transform: translateY(100%);
}
.scroll__preview-title:before {
  position: absolute;
  top: -17px;
  left: -17px;
  content: "(2)";
  font-size: 14px;
  font-weight: 400;
  transition: all 650ms cubic-bezier(0.63, 0, 0.02, 1) 100ms;
  transform: translateY(50px);
}
@media screen and (max-width: 559px) {
  .scroll__preview-title:before {
    top: -13px;
  }
}
@media screen and (max-width: 389px) {
  .scroll__preview-title {
    font-size: 28px;
  }
}
.scroll__preview-text {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.28px;
  text-transform: lowercase;
  line-height: 100%;
  transform: translateY(100%);
}
.scroll__bottom {
  position: absolute;
  right: 60px;
  max-width: 492px;
  width: 100%;
  bottom: 15dvh;
  transition: all 0.8s;
}
.scroll__bottom.visible .scroll__bottom-title {
  transform: translateY(0);
}
.scroll__bottom.visible .split-anim__inner {
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .scroll__bottom {
    right: 32px;
  }
}
@media screen and (max-width: 690px) {
  .scroll__bottom {
    right: auto;
    left: 80px;
    max-width: 300px;
  }
}
@media screen and (max-width: 389px) {
  .scroll__bottom {
    max-width: 250px;
    left: 60px;
  }
}
.scroll__bottom-title {
  position: relative;
  color: #FFF;
  font-size: 36px;
  font-weight: 600;
  line-height: 114%;
  max-width: 491px;
  transition: all 650ms cubic-bezier(0.63, 0, 0.02, 1) 0ms;
}
@media screen and (max-width: 690px) {
  .scroll__bottom-title {
    font-size: 18px;
  }
}
.scroll__bottom-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 114%;
  letter-spacing: -0.28px;
  margin-top: 18px;
  max-width: 412px;
}
.scroll__bottom-text .split-anim__inner {
  transition: all 650ms cubic-bezier(0.63, 0, 0.02, 1) 200ms !important;
}
@media screen and (max-width: 690px) {
  .scroll__bottom-text {
    font-size: 10px;
    margin-top: 12px;
  }
}
.scroll__container {
  position: absolute;
  max-width: 1320px;
  width: 100%;
  transform: translateX(-50%);
  left: 50%;
  height: 100%;
  top: 0;
  bottom: 0;
  z-index: 3;
}
.scroll__bottom-svg {
  bottom: -28px;
  left: -91px;
  position: absolute;
  max-width: 114px;
}
.scroll__bottom-svg path {
  stroke: #fff;
}
@media screen and (max-width: 690px) {
  .scroll__bottom-svg {
    width: 82px;
    bottom: -14px;
    left: -65px;
  }
}
.scroll__hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 32px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 500;
  line-height: 114%;
  text-align: center;
  gap: 9px;
}
.scroll__hint svg {
  display: inline-block;
  animation: floatUpDown 2s ease-in-out infinite;
}
.scroll .split-anim {
  overflow: hidden;
  box-sizing: border-box;
  display: inline-flex;
}
.scroll .split-anim__inner {
  display: inline-flex;
  will-change: transform;
  transition-duration: 650ms !important;
  transition-timing-function: cubic-bezier(0.63, 0, 0.02, 1) !important;
  transform: translateY(100%);
}

@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.scroll__outer {
  position: relative;
  height: 100vh;
  width: 100%;
}

.banner {
  height: 100vh;
  position: relative;
  z-index: 3;
}
.banner.small .banner__title {
  max-width: 700px;
  color: #FFF;
  font-size: 40px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -1.2px;
}
.banner.small .banner__text {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .banner.small .banner__text {
    margin-top: 40px;
  }
}
.banner.small .banner__container {
  padding-bottom: 60px;
}
.banner.banner--black .banner__title {
  color: #080808;
  margin-top: 180px;
}
.banner.banner--black .banner__text {
  color: #080808;
}
.banner.banner--black .banner__container {
  justify-content: flex-start;
}
.banner.banner--black .banner__bg {
  object-fit: contain;
}
.banner__video, .banner__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100vh;
}
.banner__video {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100vh;
}
.banner__container {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  position: relative;
  z-index: 2;
  height: 100vh;
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .banner__container {
    padding-bottom: 32px;
  }
}
.banner__title {
  color: #FFF;
  font-size: 70px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -2.1px;
  max-width: 602px;
}
.banner__title.active span {
  transform: translateY(0);
}
@media (max-width: 767px) {
  .banner__title {
    color: #FFF;
    font-size: 50px;
    letter-spacing: -1.5px;
  }
}
.banner__text {
  margin-top: 15px;
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  max-width: 424px;
}
.banner__text.active span {
  transform: translateY(0);
}
@media (max-width: 767px) {
  .banner__text {
    margin-top: 40px;
    font-size: 14px;
    line-height: 114%;
    max-width: 268px;
  }
}
.banner__link {
  color: #080808;
  text-align: center;
  font-size: 14.477px;
  font-weight: 600;
  width: 100%;
  line-height: 200%;
  letter-spacing: 0.29px;
  max-width: 600px;
  align-items: center;
  justify-content: center;
  height: 45px;
  border-radius: 804.255px;
  background: #FFE27F;
  display: none;
}
@media (max-width: 767px) {
  .banner__link {
    display: flex;
    margin-top: 30px;
  }
}
.banner__item-cats {
  margin-top: 24px;
  display: flex;
  align-items: center;
  row-gap: 12px;
  column-gap: 12px;
  flex-wrap: wrap;
}
.banner__item-cat {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 36px;
  height: 30px;
  flex-wrap: wrap;
  border-radius: 100px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  width: max-content;
}

.test {
  background: #000;
}

/*# sourceMappingURL=critical.css.map*/