@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wdth,wght@8..144,25..151,100..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Oswald:wght@200..700&display=swap");
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(4, 5, 6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: background 0.3s ease-in-out;
  pointer-events: none;
}
#preloader .svg-wrapper {
  position: relative;
}
#preloader .svg-wrapper svg {
  width: 60px;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 4.4s ease;
}
#preloader .svg-wrapper #pre-pct {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  font-size: 13px;
  color: rgb(255, 255, 255);
  text-align: center;
  transition: opacity 0.4s ease-in-out;
}
#preloader.loaded {
  background: transparent;
}
#preloader.loaded .svg-wrapper svg {
  transform: scale(150);
}
#preloader.loaded .svg-wrapper #pre-pct {
  opacity: 0;
}

.header {
  position: relative;
  width: 100%;
  padding: 10px;
  background: transparent;
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  z-index: 100;
}
.header__part {
  display: flex;
  align-items: center;
  gap: 60px;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__nav .menu {
  display: flex;
  gap: 30px;
  list-style: none;
}
.header__nav .menu a {
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  color: #fff;
}
.header__right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.btn {
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
}
.btn--dark {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 50px;
}
.btn--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.1) 35%, rgba(255, 255, 255, 0.05) 60%, rgba(255, 255, 255, 0.6) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.btn--dark::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  pointer-events: none;
}
.btn--dark {
  background: transparent;
  color: #fff;
}
.btn--blue {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 50px;
}
.btn--blue::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.1) 35%, rgba(255, 255, 255, 0.05) 60%, rgba(255, 255, 255, 0.6) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.btn--blue::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  pointer-events: none;
}
.btn--blue {
  background: #4da3ff;
  color: #fff;
}

.lang {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.lang a {
  color: #aaa;
  text-decoration: none;
}
.lang a.active {
  color: #4da3ff;
}
.lang span {
  width: 1px;
  height: auto;
  background: #fff;
  opacity: 0.2;
}

.burger {
  width: 30px;
  height: 20px;
  cursor: pointer;
  position: relative;
  display: none;
  align-items: center;
}
@media (max-width: 768px) {
  .burger {
    display: flex;
  }
}
.burger span, .burger::before, .burger::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  position: absolute;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
  border-radius: 2px;
}
.burger::before {
  top: 0;
}
.burger span {
  top: 50%;
  transform: translateY(-50%);
}
.burger::after {
  bottom: 0;
}
.burger.active::before {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.burger.active span {
  opacity: 0;
  transform: translateY(-50%) scaleX(0);
}
.burger.active::after {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.mobile-menu {
  width: 100%;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
  z-index: 50;
}
.mobile-menu__inner {
  margin: 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  list-style: none;
}
.mobile-menu__list li a {
  color: #fff;
  text-decoration: none;
}
.mobile-menu .buttons {
  display: flex;
  gap: 16px;
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
  .header .desktop {
    display: none;
  }
}
.footer a {
  color: #fff;
  text-decoration: none;
}
.footer__body {
  max-width: 1320px;
  margin: 0 auto;
  padding: 72px 40px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
@media (max-width: 1024px) {
  .footer__body {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (max-width: 600px) {
  .footer__body {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 20px;
  }
}
.footer__col-title {
  font-weight: 600;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .footer__col-title {
    font-size: 15px;
    margin-bottom: 24px;
  }
}
.footer__services {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer__services li {
  display: flex;
  gap: 8px;
  align-items: center;
}
.footer__services li a {
  font-weight: 400;
  font-size: 15px;
  color: #fff;
  text-decoration: none;
}
@media (max-width: 768px) {
  .footer__services li a {
    font-size: 14px;
  }
}
.footer__contacts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__contacts li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}
.footer__contacts a {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  text-decoration: none;
}
.footer__copy-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px 4px;
}
.footer__address {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}
.footer__address p {
  flex: 1;
}
@media (max-width: 768px) {
  .footer__address p {
    font-size: 15px;
  }
}
.footer__address {
  display: flex;
  align-items: center;
}
.footer__directions {
  border: 1px solid #57A6FB;
  display: inline-block;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
}
.footer__socials {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
.footer__social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  text-decoration: none;
  border-radius: 6px;
}
.footer__career-links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
}
.footer__career-links span {
  margin: 0 8px;
}
.footer__divider {
  height: 1px;
  max-width: 1320px;
  margin: 0 auto;
}
.footer__bar-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 600px) {
  .footer__bar-inner {
    flex-direction: column;
    text-align: center;
    padding: 16px 24px;
  }
}
.footer__legal {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
}
.footer__legal a {
  text-decoration: none;
  color: #fff;
  font-size: 13px;
}
.footer__copyright {
  font-size: 13px;
  opacity: 0.5;
}
@media (max-width: 768px) {
  .footer__logo {
    width: 160px;
  }
}

.copy-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  padding: 7px 16px;
  border-radius: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 999;
}
.copy-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

#hero {
  min-height: 100dvh;
  margin: 0;
}
#hero .hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
#hero .hero-wrapper h1 {
  background: linear-gradient(0deg, #FFFFFF 0%, #999999 100%);
  color: transparent;
  background-clip: text;
  font-weight: 600;
  font-size: 48px;
  max-width: 700px;
  text-align: center;
  opacity: 0;
  transition: 1s ease opacity 0.3s;
}
#hero .place-for-btn {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 40px;
  margin: auto;
  margin-top: auto;
  opacity: 0;
  transition: 1s ease opacity 0.5s;
}

body:has(#preloader.loaded) .hero-wrapper h1 {
  opacity: 1;
}
body:has(#preloader.loaded) .place-for-btn {
  opacity: 1;
}

#built-solution .content {
  overflow: hidden;
}
#built-solution .slider-built-solution {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
#built-solution .slider-built-solution .text-infortion-slider {
  position: absolute;
  right: 0;
  top: 0;
  margin-left: auto;
  margin-right: 40px;
  display: flex;
  height: 100px;
}
@media (max-width: 768px) {
  #built-solution .slider-built-solution .text-infortion-slider {
    display: none;
  }
}
#built-solution .slider-built-solution .text-slide .text-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
#built-solution .slider-built-solution .text-slide .text-block h3 {
  font-weight: 600;
  font-size: 20px;
}
#built-solution .slider-built-solution .text-slide .text-block span {
  font-weight: 400;
  font-size: 16px;
  opacity: 0.5;
}
#built-solution .slider-built-solution .tablet-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
}
@media (max-width: 768px) {
  #built-solution .slider-built-solution .tablet-wrapper {
    width: 155%;
    max-width: 155%;
  }
}
#built-solution .slider-built-solution .tablet-wrapper .bs-swiper-button-prev {
  position: absolute;
  display: flex;
  aspect-ratio: 1;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 44px;
  z-index: 10;
  left: 11%;
}
@media (max-width: 768px) {
  #built-solution .slider-built-solution .tablet-wrapper .bs-swiper-button-prev {
    display: none;
  }
}
#built-solution .slider-built-solution .tablet-wrapper .bs-swiper-button-next {
  position: absolute;
  display: flex;
  aspect-ratio: 1;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 44px;
  z-index: 10;
  right: 13%;
}
@media (max-width: 768px) {
  #built-solution .slider-built-solution .tablet-wrapper .bs-swiper-button-next {
    display: none;
  }
}
#built-solution .bs-swiper {
  position: absolute;
  inset: 0;
  width: 63%;
  margin-top: 7%;
  aspect-ratio: 16/9;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
}
#built-solution .bs-swiper img {
  width: 100%;
}
#built-solution .text-slider-mobile {
  display: flex;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 20px;
}
@media (min-width: 1280px) {
  #built-solution .text-slider-mobile {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #built-solution .text-slider-mobile {
    display: none;
  }
}
#built-solution .text-slider-mobile .bs-text-swiper-mobile .swiper-slide {
  display: flex;
  justify-content: center;
}
#built-solution .text-slider-mobile .bs-text-swiper-mobile .swiper-slide .text-block {
  align-items: center;
}
#built-solution .text-slider-mobile .bs-text-swiper-mobile .bs-swiper-button-prev {
  position: absolute;
  display: flex;
  aspect-ratio: 1;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 44px;
  z-index: 10;
  left: 11%;
}
#built-solution .text-slider-mobile .bs-text-swiper-mobile .bs-swiper-button-next {
  position: absolute;
  display: flex;
  aspect-ratio: 1;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 44px;
  z-index: 10;
  right: 13%;
}
#built-solution .bs-swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#built-solution .tablet-image {
  position: relative;
  width: 100%;
  z-index: 5;
  pointer-events: none;
  display: block;
}

#core-expertise .place-for-pagination {
  margin-top: 20px;
}
#core-expertise .swiper-slide {
  width: fit-content !important;
}
#core-expertise .card-service {
  width: 736px;
  position: relative;
  padding: 13% 15%;
  margin: 20px;
}
@media (max-width: 768px) {
  #core-expertise .card-service {
    width: 322px;
    margin: 57px 20px;
  }
}
#core-expertise .card-service .layer-bg {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: 100%;
  width: 100%;
}
#core-expertise .card-service .layer-bg img {
  height: 100%;
  width: 100%;
  scale: 1.15;
}
#core-expertise .card-service .layer-bg img.mobile {
  display: none;
}
@media (max-width: 768px) {
  #core-expertise .card-service .layer-bg img.mobile {
    display: block;
    scale: 1.4;
  }
}
@media (max-width: 768px) {
  #core-expertise .card-service .layer-bg img.desktop {
    display: none;
  }
}
#core-expertise .card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 17px;
}
#core-expertise .card-content .card-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 20px;
}
#core-expertise .card-content .card-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.1) 35%, rgba(255, 255, 255, 0.05) 60%, rgba(255, 255, 255, 0.6) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
#core-expertise .card-content .card-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  pointer-events: none;
}
#core-expertise .card-content .card-icon {
  width: 64px;
  height: 64px;
}
@media (max-width: 768px) {
  #core-expertise .card-content .card-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 15px;
  }
  #core-expertise .card-content .card-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.1) 35%, rgba(255, 255, 255, 0.05) 60%, rgba(255, 255, 255, 0.6) 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
  }
  #core-expertise .card-content .card-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 15px;
    pointer-events: none;
  }
  #core-expertise .card-content .card-icon {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 768px) {
  #core-expertise .card-content .card-icon svg {
    height: 24px;
    width: 24px;
  }
}
#core-expertise .card-content h3 {
  font-weight: 500;
  font-size: 48px;
}
@media (max-width: 768px) {
  #core-expertise .card-content h3 {
    font-size: 24px;
  }
}
#core-expertise .card-content p {
  font-weight: 300;
  font-size: 20px;
}
@media (max-width: 768px) {
  #core-expertise .card-content p {
    font-size: 15px;
  }
}
#core-expertise .card-content .tags {
  display: flex;
  gap: 16px;
}
@media (max-width: 768px) {
  #core-expertise .card-content .tags {
    flex-direction: column;
  }
}
#core-expertise .card-content .tags .tag {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 3em;
}
#core-expertise .card-content .tags .tag::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 3em;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.1) 35%, rgba(255, 255, 255, 0.05) 60%, rgba(255, 255, 255, 0.6) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
#core-expertise .card-content .tags .tag::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 3em;
  pointer-events: none;
}
#core-expertise .card-content .tags .tag {
  padding: 1em 2em;
}
@media (max-width: 768px) {
  #core-expertise .card-content .tags .tag {
    padding: 1em;
  }
}

#the-foundetion .tf-content {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
#the-foundetion .info-parts {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 768px) {
  #the-foundetion .info-parts {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
#the-foundetion .info-parts {
  position: relative;
}
#the-foundetion .info-parts .light {
  background: #57A6FB;
  position: absolute;
  z-index: -1;
  border-radius: 100%;
}
#the-foundetion .info-parts .light-1 {
  width: 18vw;
  height: 30dvw;
  filter: blur(12dvw);
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
#the-foundetion .info-parts .light-2 {
  width: 14dvw;
  height: 12dvw;
  filter: blur(7dvw);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
#the-foundetion .info-parts .light-3 {
  width: 16dvw;
  height: 16dvw;
  filter: blur(8dvw);
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
@media (max-width: 768px) {
  #the-foundetion .info-parts .text-pagination {
    margin: auto;
  }
}
#the-foundetion .info-parts .text-part {
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 768px) {
  #the-foundetion .info-parts .text-part {
    margin: auto;
  }
}
#the-foundetion .info-parts .text-part h3 {
  font-weight: 600;
  font-size: 36px;
}
#the-foundetion .info-parts .text-part h3 span {
  color: #57A6FB;
}
@media (max-width: 768px) {
  #the-foundetion .info-parts .text-part h3 {
    font-size: 24px;
    text-align: center;
  }
}
#the-foundetion .info-parts .text-part p {
  font-weight: 300;
  font-size: 15px;
}
@media (max-width: 768px) {
  #the-foundetion .info-parts .text-part p {
    text-align: center;
  }
}
#the-foundetion .info-parts .numer-part {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  height: 100%;
  justify-content: space-between;
}
#the-foundetion .info-parts .numer-part .numer-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#the-foundetion .info-parts .numer-part .numer-block .numer {
  font-family: "Roboto Flex", sans-serif;
  font-size: 310px;
  font-weight: 500;
  font-variation-settings: "wdth" 30;
  line-height: 0.85;
  pointer-events: none;
  color: transparent;
}
@media (max-width: 768px) {
  #the-foundetion .info-parts .numer-part .numer-block .numer {
    font-size: 180px;
  }
}
#the-foundetion .info-parts .numer-part .numer-block p {
  color: #fff;
}
#the-foundetion .brand {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
#the-foundetion .brand::after {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  right: -30px;
  aspect-ratio: 1;
  border-radius: 4px;
  background: linear-gradient(180deg, #C4C4C4 0%, #727272 100%);
}
#the-foundetion .brand span {
  background: linear-gradient(180deg, #C4C4C4 0%, #727272 100%);
  background-clip: text;
  color: transparent;
}
#the-foundetion .slider-part {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}
#the-foundetion .slider-part .tf-swiper {
  background: rgba(255, 255, 255, 0.031372549);
  padding: 20px 0;
  width: 100%;
}
#the-foundetion .slider-part .tf-swiper .swiper-slide {
  width: fit-content;
}
#the-foundetion .slider-part h5 {
  font-weight: 400;
  font-size: 15px;
  opacity: 0.5;
  text-align: center;
}
#the-foundetion .text-video.wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 829/349;
  overflow: hidden;
}
@media (max-width: 768px) {
  #the-foundetion .text-video.wrapper {
    aspect-ratio: 292/529;
    height: 500px;
    width: auto;
  }
}
#the-foundetion .text-video canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
#the-foundetion .text-video svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
#the-foundetion .swiper-text-slider {
  width: 100%;
}

#about-us .title-block,
#about-us .review-photo-card,
#about-us .bg-image,
#about-us .place-for-pagination,
#about-us .review-card {
  transition: opacity 0.4s ease;
}
#about-us .photo-review {
  transition: transform 0.4s ease;
}
#about-us:has(.review-photo-card.active) .title-block {
  opacity: 0.4;
}
#about-us:has(.review-photo-card.active) .review-photo-card {
  opacity: 0.4;
}
#about-us:has(.review-photo-card.active) .bg-image {
  opacity: 0.4;
}
#about-us:has(.review-photo-card.active) .place-for-pagination {
  opacity: 0.4;
}
#about-us:has(.review-photo-card.active) .review-photo-card.active {
  opacity: 1;
}
#about-us:has(.review-photo-card.active) .review-photo-card.active .review-card {
  opacity: 0.4;
}
#about-us {
  overflow: hidden;
}
#about-us .about-us-swiper {
  overflow: unset;
}
#about-us .bg-image {
  object-fit: unset;
}
#about-us .swiper-slide {
  width: fit-content !important;
}
#about-us .review-photo-card {
  position: relative;
  width: 706px;
}
@media (max-width: 768px) {
  #about-us .review-photo-card {
    width: 330px;
  }
}
#about-us .review-photo-card {
  margin: 5% 0;
}
#about-us .review-photo-card .photo-review {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  height: 120%;
  aspect-ratio: 3/5;
  overflow: hidden;
  border-radius: 32px;
  min-width: 33%;
  max-width: 33%;
}
@media (max-width: 768px) {
  #about-us .review-photo-card .photo-review {
    position: absolute;
    z-index: -2;
    left: 20px;
    top: -78%;
    bottom: auto;
    right: auto;
    width: auto;
    max-width: 100%;
  }
}
#about-us .review-photo-card .photo-review img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
#about-us .review-photo-card .photo-review.active {
  transform: scale(1.5);
  z-index: 5;
}
@media (max-width: 768px) {
  #about-us .review-photo-card .photo-review.active {
    transform: scale(1.3) translate(30%, 0);
  }
}
#about-us .review-card {
  width: 80%;
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 768px) {
  #about-us .review-card {
    margin-top: 70%;
    width: 100%;
  }
}
#about-us .review-card .bg-image img {
  height: 100%;
  width: 100%;
}
@media (max-width: 768px) {
  #about-us .review-card .bg-image img.desktop {
    display: none;
  }
}
#about-us .review-card .bg-image img.mobile {
  display: none;
}
@media (max-width: 768px) {
  #about-us .review-card .bg-image img.mobile {
    display: block;
  }
}
#about-us .review-content {
  margin: 10%;
  margin-right: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
#about-us .review-content .review-part {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#about-us .review-content .review-part .stars {
  display: flex;
  align-items: center;
}
#about-us .review-content .review-part .stars .rating {
  margin-left: 8px;
  font-size: 15px;
  font-weight: 600;
}
#about-us .review-content .review-part .name {
  font-weight: 600;
  font-size: 24px;
}
#about-us .review-content .review-part .role {
  opacity: 0.5;
  font-weight: 400;
  font-size: 15px;
}
#about-us .review-content .review-part .review-text {
  font-weight: 300;
  font-size: 15px;
}

#comunication {
  overflow: hidden;
}
@media (max-width: 768px) {
  #comunication {
    padding: 0 !important;
  }
}
@media (max-width: 768px) {
  #comunication .content {
    margin: 0 !important;
  }
}
#comunication .place-for-form {
  display: flex;
  justify-content: center;
  align-items: center;
}
#comunication .table-form {
  margin: auto;
  background: linear-gradient(0deg, rgb(202, 202, 202) 7%, rgb(202, 202, 202) 72%, rgb(102, 102, 102) 100%);
  border-radius: 80px;
  padding: 40px;
}
#comunication .table-form .table-inter {
  background: linear-gradient(0deg, rgb(191, 191, 191) 7%, rgb(179, 177, 177) 72%, rgb(54, 54, 54) 100%);
  border-radius: 40px;
  padding: 20px;
  width: 100%;
  height: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 560px;
  overflow: hidden;
}
#comunication .table-form .current-form {
  display: flex;
  gap: 20px;
  margin: auto;
  width: 100%;
  height: fit-content;
}
@media (max-width: 768px) {
  #comunication .table-form .current-form {
    flex-direction: column;
    max-width: 95dvw;
    max-height: 485px;
    overflow: auto;
  }
}
#comunication .table-form .current-form .part-form {
  width: 100%;
}
#comunication .table-form .current-form .part-form-wrapper {
  display: flex;
  background: rgba(0, 0, 0, 0.3490196078);
  box-shadow: 0px 7px 19px 0px rgba(255, 255, 255, 0.1019607843);
  border-radius: 20px;
}
#comunication .table-form .current-form .part-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}
#comunication .table-form .current-form .part-form .input-row {
  display: flex;
  gap: 20px;
  width: 100%;
}
@media (min-width: 769px) and (max-width: 1024px) {
  #comunication .table-form .current-form .part-form .input-row {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  #comunication .table-form .current-form .part-form .input-row {
    flex-wrap: wrap;
  }
}
#comunication .table-form .current-form .part-form .halb-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
#comunication .table-form .current-form .part-form .titles {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#comunication .table-form .current-form .part-form .part-title {
  font-weight: 600;
  font-size: 24px;
}
#comunication .table-form .current-form .part-form .part-text {
  font-weight: 400;
  font-size: 14px;
  opacity: 0.5;
}
#comunication .table-form .current-form .part-form .or-line {
  opacity: 0.5;
  font-weight: 400;
  font-size: 13px;
  display: flex;
  align-items: center;
}
#comunication .table-form .current-form .part-form .or-line span {
  padding: 0 10px;
}
#comunication .table-form .current-form .part-form .or-line::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  opacity: 0.5;
}
#comunication .table-form .current-form .part-form .or-line::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  opacity: 0.5;
}
#comunication .table-form .current-form .part-form .social-links {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 768px) {
  #comunication .table-form .current-form .part-form .social-links {
    flex-direction: column;
  }
}
#comunication .table-form .current-form .part-form .social-links .link {
  display: flex;
  gap: 8px;
  align-items: center;
  font-weight: 400;
  font-size: 15px;
  cursor: pointer;
}
#comunication .table-form .current-form .part-form label.btn-glass-effect {
  min-width: auto;
}
#comunication .table-form .current-form .part-form .btn-glass-effect {
  width: 100%;
  background: rgba(26, 26, 26, 0.2509803922);
}
#comunication .table-form .current-form .part-form .btn-glass-effect:has(input:checked) {
  background: rgba(87, 166, 251, 0.3490196078);
}
#comunication .table-form .current-form .part-form .btn-glass-effect:has(input:checked)::before {
  background: #57A6FB;
}
#comunication .table-form .current-form .part-form .btn-glass-effect.confirm {
  max-width: 224px;
  background: #57A6FB;
  margin: auto auto 0;
}
#comunication.section-container {
  position: relative;
}
#comunication.section-container .title-block {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 200;
  right: 0;
  left: 0;
  width: fit-content;
  height: fit-content;
  transition: 1.2s ease opacity 2s;
  pointer-events: none;
}
#comunication.section-container .table-form {
  transform: scale(0.4);
  transition: 3.8s ease-in-out transform 1.3s;
}
#comunication.section-container .part-form {
  opacity: 0;
  transition: 0.8s ease-in opacity 3.2s;
}
@media (max-width: 768px) {
  #comunication.section-container .part-form {
    transition: 0.8s ease-in opacity 5.2s;
  }
}
#comunication.anim .table-form {
  transform: scale(1);
}
#comunication.anim .part-form {
  opacity: 1;
}
#comunication.anim .title-block {
  opacity: 0;
}
#comunication.anim .bg-image {
  transform: scale(2.4);
}
#comunication.anim .table-image {
  transform: scale(2.4);
}
@media (max-width: 768px) {
  #comunication.anim .table-image {
    opacity: 0;
  }
}
#comunication.anim .table-inter {
  height: var(--table-inter-height);
}
#comunication .table-form {
  transform-origin: center;
}
#comunication .bg-image {
  transition: 3.8s ease-in-out transform 1.3s;
  object-fit: cover;
  background-position: center;
  background-size: cover;
  pointer-events: none;
  transform-origin: center;
}
#comunication .table-image {
  pointer-events: none;
  position: absolute;
  z-index: 5;
  bottom: -10%;
  right: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  transition: 3.8s ease-in-out transform 1.3s, 3.8s ease-in-out opacity 1.3s;
  transform-origin: center;
}

#blog {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
#blog:has(.blog-card.active) .place-for-pagination {
  opacity: 0;
}
#blog .content {
  position: relative;
}
#blog .place-for-slider {
  position: relative;
  z-index: 1;
}
#blog .blog-card-wrapper {
  aspect-ratio: 3/5;
  width: 306px;
  position: relative;
}
#blog:has(.blog-card.active) .blog-card {
  opacity: 0.7;
}
#blog:has(.blog-card.active) .blog-card.active {
  opacity: 1;
}
#blog .blog-card {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -webkit-box-shadow: inset 0 18px 18px -18px #353434, inset 0 -40px 50px -20px rgba(0, 0, 0, 0.9);
  box-shadow: inset 0 18px 18px -18px #424242, inset 0 -40px 50px -20px rgba(0, 0, 0, 0.9);
  border-radius: 20px;
  overflow: hidden;
  transition: 0.7s ease height, 0.4s ease box-shadow, 0.4s ease opacity;
}
#blog .blog-card::-webkit-scrollbar-thumb {
  background-color: transparent;
  transition: 0.5s ease background-color;
}
#blog .blog-card img {
  opacity: 0.5;
  position: absolute;
  aspect-ratio: 3/5;
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
  display: block;
  z-index: -1;
}
#blog .blog-card .content-card {
  padding: 20px;
  overflow: visible;
  margin-top: 360px;
}
#blog .blog-card .content-card h4 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
}
#blog .blog-card.active {
  overflow: auto;
  height: 137%;
  z-index: 100;
  transform: translateZ(0);
  -webkit-box-shadow: 0px 0px 50px 0px #57A6FB;
  box-shadow: 0px 0px 50px 0px #57A6FB;
}
#blog .blog-card.active::-webkit-scrollbar-thumb {
  background-color: #57A6FB;
}
#blog .blog-card.active .close-pop-up {
  cursor: pointer;
  opacity: 1;
}
#blog .swiper-slide {
  width: auto !important;
  z-index: auto !important;
}
#blog .swiper-slide:hover, #blog .swiper-slide:focus-within {
  z-index: 100 !important;
}
#blog .swiper {
  overflow: visible !important;
}
#blog .close-pop-up {
  position: absolute;
  z-index: 20;
  right: 14px;
  top: 14px;
  opacity: 0;
  transition: 0.3s ease opacity;
}

#faq .accordions {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 20px;
}
#faq .accordions::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.1) 35%, rgba(255, 255, 255, 0.05) 60%, rgba(255, 255, 255, 0.6) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
#faq .accordions::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  pointer-events: none;
}
#faq .accordions {
  flex-direction: column;
  background: transparent;
  padding: 20px;
  max-width: 864px;
  margin: 0 auto;
}
#faq .accordion {
  width: 100%;
  margin-bottom: 20px;
  background: rgba(112, 112, 112, 0.1490196078);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(87, 166, 251, 0.0901960784);
  border-radius: 24px;
}
#faq .accordion__intro {
  position: relative;
  padding: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#faq .accordion__content {
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease, opacity 0.3s ease;
  padding: 0 16px;
  opacity: 0;
}
#faq .accordion .accordion-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  position: relative;
}
#faq .accordion .accordion-arrow::before, #faq .accordion .accordion-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: #57A6FB;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}
#faq .accordion .accordion-arrow::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
#faq .accordion .accordion-title {
  font-size: 20px;
}
#faq .accordion .row {
  padding-bottom: 12px;
}
#faq .accordion .service-text {
  font-size: 16px;
  opacity: 0.5;
  line-height: 1.5;
}
#faq .accordion.accordion__active {
  border-color: rgba(87, 166, 251, 0.5019607843);
}
#faq .accordion.accordion__active .accordion__intro::after {
  transform: scaleX(1);
}
#faq .accordion.accordion__active .accordion-arrow::before {
  transform: translate(-50%, -50%) rotate(0deg);
}
#faq .accordion.accordion__active .accordion__content {
  opacity: 1;
}

#pop-up-form {
  position: fixed;
  z-index: 1000;
  max-width: 1080px;
  width: 96%;
  height: 70dvh;
  overflow: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 20px;
  transform: scale(0);
  pointer-events: none;
  opacity: 0;
  transition: 0.5s ease-in transform, 0.5s ease-in opacity;
}
#pop-up-form.open {
  transform: scale(1);
  pointer-events: all;
  opacity: 1;
}
#pop-up-form .pop-up-wrapper {
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  background: #121212;
  gap: 32px;
  height: fit-content;
}
#pop-up-form .pop-up-wrapper .titles h3 {
  font-weight: 600;
  font-size: 28px;
  text-align: center;
}
#pop-up-form .pop-up-wrapper .titles p {
  opacity: 0.5;
  font-weight: 300;
  font-size: 15px;
  text-align: center;
}
#pop-up-form .pop-up-wrapper .step {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#pop-up-form .pop-up-wrapper .step h4 {
  font-weight: 400;
  font-size: 20px;
}
#pop-up-form .pop-up-wrapper .locations {
  display: flex;
  gap: 30px;
  z-index: 2;
  overflow: auto;
}
#pop-up-form .pop-up-wrapper .location {
  min-width: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 20px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
  border: 1px solid black;
}
#pop-up-form .pop-up-wrapper .location:hover, #pop-up-form .pop-up-wrapper .location:has(input:checked) {
  border-color: #57A6FB;
  -webkit-box-shadow: 0px 0px 10px 1px #57A6FB;
  box-shadow: 0px 0px 10px 1px #57A6FB;
}
#pop-up-form .pop-up-wrapper .location img {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#pop-up-form .pop-up-wrapper .location .adress {
  font-size: 12px;
  font-weight: 400;
}
#pop-up-form .pop-up-wrapper .location .location-name {
  font-weight: 600;
  font-size: 24px;
}
#pop-up-form .pop-up-wrapper .location .location-text {
  font-weight: 400;
  font-size: 15px;
  opacity: 0.7;
}
#pop-up-form .pop-up-wrapper .data-picker {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
#pop-up-form .pop-up-wrapper .data-picker .month {
  font-weight: 600;
  font-size: 24px;
}
#pop-up-form .pop-up-wrapper .data-picker .month__wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}
#pop-up-form .pop-up-wrapper .data-picker .month__wrapper svg.next {
  transform: rotate(180deg);
}
#pop-up-form .pop-up-wrapper .data-picker .date {
  border: 1px solid rgba(255, 255, 255, 0.3019607843);
  border-radius: 17px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  width: 54px;
}
#pop-up-form .pop-up-wrapper .data-picker .date:hover, #pop-up-form .pop-up-wrapper .data-picker .date:has(input:checked) {
  background: #57A6FB;
  border-color: #57A6FB;
  -webkit-box-shadow: 0px 0px 10px 1px #57A6FB;
  box-shadow: 0px 0px 10px 1px #57A6FB;
}
#pop-up-form .pop-up-wrapper .data-picker .date .w {
  font-weight: 500;
  font-size: 13px;
}
#pop-up-form .pop-up-wrapper .data-picker .date .n {
  font-weight: 500;
  font-size: 25px;
}
#pop-up-form .pop-up-wrapper .data-picker .date__wrapper {
  width: 100%;
  display: flex;
  gap: 12px;
}
#pop-up-form .pop-up-wrapper .contact-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 768px) {
  #pop-up-form .pop-up-wrapper .contact-form {
    flex-direction: column;
  }
}
#pop-up-form .pop-up-wrapper .contact-form .input-wrapper {
  width: 100%;
}
#pop-up-form .close-pop-up {
  display: flex;
  position: sticky;
  right: 20px;
  top: 20px;
  z-index: 5;
  cursor: pointer;
  justify-content: flex-end;
}
#pop-up-form .close-pop-up:hover svg {
  filter: drop-shadow(0 0 5px #fff);
}
#pop-up-form .btn-glass-effect {
  background: #57A6FB;
  width: fit-content;
  margin: 0 auto;
}
#pop-up-form .btn-glass-effect:hover {
  -webkit-box-shadow: 0px 0px 10px 1px #57A6FB;
  box-shadow: 0px 0px 10px 1px #57A6FB;
}

#pop-up-success {
  position: fixed;
  z-index: 1000;
  overflow: auto;
  max-width: 500px;
  height: fit-content;
  width: 96%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 20px;
  transform: scale(0);
  pointer-events: none;
  opacity: 0;
  transition: 0.5s ease-in transform, 0.5s ease-in opacity;
}
#pop-up-success.open {
  transform: scale(1);
  pointer-events: all;
  opacity: 1;
}
#pop-up-success .pop-up-wrapper {
  aspect-ratio: 4/3;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #121212;
  gap: 32px;
  height: fit-content;
  position: relative;
}
#pop-up-success .close-pop-up {
  display: flex;
  position: sticky;
  right: 20px;
  top: 20px;
  z-index: 5;
  cursor: pointer;
  justify-content: flex-end;
}
#pop-up-success .close-pop-up:hover svg {
  filter: drop-shadow(0 0 5px #fff);
}
#pop-up-success .btn-glass-effect {
  background: #57A6FB;
  width: fit-content;
  margin: 0 auto;
}
#pop-up-success .btn-glass-effect:hover {
  -webkit-box-shadow: 0px 0px 10px 1px #57A6FB;
  box-shadow: 0px 0px 10px 1px #57A6FB;
}
#pop-up-success .titles h3 {
  font-weight: 600;
  font-size: 28px;
  text-align: center;
}
#pop-up-success .titles p {
  opacity: 0.5;
  font-weight: 300;
  font-size: 15px;
  text-align: center;
}
#pop-up-success .bottom-part {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
#pop-up-success .icon-check {
  position: relative;
  height: 164px;
  width: 100%;
}
#pop-up-success .icon-check svg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  height: fit-content;
  width: fit-content;
}
#pop-up-success .success-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#pop-up-success .success-block span {
  font-size: 13px;
  font-weight: 500;
  text-align: center;
}
#pop-up-success .line-success {
  height: 10px;
  border-radius: 10px;
  width: 100%;
  background: gray;
  position: relative;
  overflow: hidden;
}
#pop-up-success .line-success::after {
  content: "";
  background: linear-gradient(90deg, #57A6FB 58.65%, #90C6FF 100%);
  border-radius: 10px;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  max-width: 100%;
  width: 22%;
}

#marketing .container {
  min-height: 90vh;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
#marketing .top-part {
  margin-top: 8%;
}
@media (max-width: 768px) {
  #marketing .top-part {
    margin-top: 20%;
  }
}
@media (max-width: 768px) {
  #marketing .top-part .title-block {
    flex-direction: column-reverse;
  }
}
#marketing .bottom-part {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
@media (max-width: 768px) {
  #marketing .bottom-part {
    transform: translateY(-82px);
    z-index: 2;
  }
}
#marketing .author-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
#marketing .author-block .text {
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  font-style: italic;
}
#marketing .author-block .author {
  font-weight: 600;
  font-size: 16px;
  color: #57A6FB;
}
#marketing .arrow-bottom {
  transform: rotate(270deg);
}
#marketing .container {
  position: relative;
}
#marketing .container .pin {
  position: absolute;
  margin: auto;
  z-index: -1;
  max-width: 220px;
  max-height: 220px;
}
#marketing .container .pin img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#marketing .container .pin {
  transition: 1.8s transform ease 0.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  will-change: transform;
}
#marketing .container .pin.pin-pack {
  max-width: 450px;
  max-height: 450px;
}
#marketing .container .pin.pp-1 {
  width: 470px;
  left: 0;
  right: 0;
  bottom: 17%;
  z-index: -1;
  animation-name: float-1;
  animation-duration: 8s;
}
@media (max-width: 768px) {
  #marketing .container .pin.pp-1 {
    width: 240px;
    top: 0;
  }
}
#marketing .container .pin.pp-2 {
  width: 396px;
  left: -3%;
  bottom: 9%;
  z-index: -2;
  animation-name: float-2;
  animation-duration: 10s;
}
@media (max-width: 768px) {
  #marketing .container .pin.pp-2 {
    width: 160px;
    left: -8%;
    top: 18%;
  }
}
#marketing .container .pin.pp-3 {
  width: 245px;
  right: 3%;
  bottom: 13%;
  z-index: -4;
  animation-name: float-3;
  animation-duration: 7s;
}
@media (max-width: 768px) {
  #marketing .container .pin.pp-3 {
    width: 128px;
    right: -10%;
    top: 35%;
  }
}
#marketing .container .pin.p-1 {
  right: 0;
  top: 0;
  z-index: -4;
  animation-name: float-4;
  animation-duration: 9s;
}
@media (max-width: 768px) {
  #marketing .container .pin.p-1 {
    right: -23%;
  }
}
#marketing .container .pin.p-2 {
  right: 19%;
  top: 40%;
  z-index: -5;
  animation-name: float-5;
  animation-duration: 11s;
}
@media (max-width: 768px) {
  #marketing .container .pin.p-2 {
    right: -3%;
    top: 39%;
  }
}
#marketing .container .pin.p-3 {
  left: 3%;
  top: 18%;
  z-index: -6;
  animation-name: float-6;
  animation-duration: 12s;
}
@media (max-width: 768px) {
  #marketing .container .pin.p-3 {
    left: -21%;
  }
}
#marketing .p-1 {
  --start-transform: translate(50%,42%);
  transform: var(--start-transform);
}
#marketing .p-2 {
  --start-transform: translate(40%,-30%);
  transform: var(--start-transform);
}
#marketing .p-3 {
  --start-transform: translate(-53%,20%);
  transform: var(--start-transform);
}
#marketing .pp-1 {
  --start-transform: scale(0.6) translate(0,-5%) rotate(-12deg);
  transform: var(--start-transform);
}
#marketing .pp-2 {
  --start-transform: scale(0.6) translate(13%,0) rotate(4deg);
  transform: var(--start-transform);
}
#marketing .pp-3 {
  --start-transform: scale(0.6) translate(-6%,0) rotate(8deg);
  transform: var(--start-transform);
}
#marketing.anim .p-1 {
  --start-transform: translate(0,0);
  transform: var(--start-transform);
}
#marketing.anim .p-2 {
  --start-transform: translate(0,0);
  transform: var(--start-transform);
}
#marketing.anim .p-3 {
  --start-transform: translate(0,0);
  transform: var(--start-transform);
}
#marketing.anim .pp-1 {
  --start-transform: scale(1) translate(0,0) rotate(16.8deg);
  transform: var(--start-transform);
}
#marketing.anim .pp-2 {
  --start-transform: scale(1) translate(0,0) rotate(-15deg);
  transform: var(--start-transform);
}
#marketing.anim .pp-3 {
  --start-transform: scale(1) translate(0,0) rotate(-7deg);
  transform: var(--start-transform);
}

@keyframes float-1 {
  0% {
    transform: var(--start-transform) translate(0px, 0px) rotate(0deg);
  }
  25% {
    transform: var(--start-transform) translate(8px, -6px) rotate(1deg);
  }
  50% {
    transform: var(--start-transform) translate(-6px, 8px) rotate(-1deg);
  }
  75% {
    transform: var(--start-transform) translate(10px, 4px) rotate(1deg);
  }
  100% {
    transform: var(--start-transform) translate(-4px, -8px) rotate(-1deg);
  }
}
@keyframes float-2 {
  0% {
    transform: var(--start-transform) translate(0px, 0px);
  }
  25% {
    transform: var(--start-transform) translate(-10px, 5px);
  }
  50% {
    transform: var(--start-transform) translate(6px, -10px);
  }
  75% {
    transform: var(--start-transform) translate(-5px, -4px);
  }
  100% {
    transform: var(--start-transform) translate(8px, 7px);
  }
}
@keyframes float-3 {
  0% {
    transform: var(--start-transform) translate(0px, 0px) rotate(0deg);
  }
  30% {
    transform: var(--start-transform) translate(7px, 8px) rotate(-1deg);
  }
  60% {
    transform: var(--start-transform) translate(-8px, -5px) rotate(1deg);
  }
  100% {
    transform: var(--start-transform) translate(5px, -7px) rotate(-1deg);
  }
}
@keyframes float-4 {
  0% {
    transform: var(--start-transform) translate(0px, 0px);
  }
  20% {
    transform: var(--start-transform) translate(5px, -8px);
  }
  50% {
    transform: var(--start-transform) translate(-7px, 5px);
  }
  80% {
    transform: var(--start-transform) translate(8px, 4px);
  }
  100% {
    transform: var(--start-transform) translate(-5px, -5px);
  }
}
@keyframes float-5 {
  0% {
    transform: var(--start-transform) translate(0px, 0px);
  }
  25% {
    transform: var(--start-transform) translate(-8px, -5px);
  }
  50% {
    transform: var(--start-transform) translate(10px, 7px);
  }
  75% {
    transform: var(--start-transform) translate(-4px, 9px);
  }
  100% {
    transform: var(--start-transform) translate(6px, -6px);
  }
}
@keyframes float-6 {
  0% {
    transform: var(--start-transform) translate(0px, 0px);
  }
  20% {
    transform: var(--start-transform) translate(6px, 6px);
  }
  40% {
    transform: var(--start-transform) translate(-10px, -4px);
  }
  70% {
    transform: var(--start-transform) translate(5px, -9px);
  }
  100% {
    transform: var(--start-transform) translate(-6px, 8px);
  }
}
#attention .attention-wrapper {
  display: grid;
  grid-auto-columns: 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 120px 0px;
}
@media (min-width: 769px) and (max-width: 1024px) {
  #attention .attention-wrapper {
    grid-template-columns: 1fr;
    gap: 160px;
  }
}
@media (max-width: 768px) {
  #attention .attention-wrapper {
    grid-template-columns: 1fr;
    gap: 360px;
    margin: 360px 0px 20px;
  }
}
#attention .phone-part {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 30px;
}
#attention .phone-part::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.1) 35%, rgba(255, 255, 255, 0.05) 60%, rgba(255, 255, 255, 0.6) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
#attention .phone-part::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  pointer-events: none;
}
#attention .phone-part {
  overflow: visible;
  padding: 20px;
  padding-left: 0;
  position: relative;
  display: grid;
  grid-auto-columns: 1fr;
  grid-template-columns: 5fr 4fr;
}
@media (max-width: 768px) {
  #attention .phone-part {
    grid-template-columns: 1fr;
    grid-template-rows: 2fr 3fr;
    padding-left: 20px;
    gap: 24px;
  }
}
#attention .phone-part .info-part {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  #attention .phone-part .info-part {
    padding-bottom: 0px;
  }
}
#attention .phone-part .text-part {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#attention .phone-part h3 {
  font-weight: 500;
  font-size: 32px;
}
#attention .phone-part p {
  opacity: 0.7;
  font-weight: 400;
  font-size: 16px;
}
#attention .phone-part .benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#attention .phone-part .benefit-list li {
  display: flex;
  justify-content: space-between;
}
#attention .phone-part .benefit-list li .value {
  font-weight: 600;
  color: #57A6FB;
}
#attention .phone-part .benefit-list li .value-right {
  text-align: right;
}
#attention .phone-part .text-anim {
  display: flex;
  align-items: center;
  gap: 20px;
}
#attention .phone-part .text-anim .cirlce {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 50%;
}
#attention .phone-part .text-anim .cirlce::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.1) 35%, rgba(255, 255, 255, 0.05) 60%, rgba(255, 255, 255, 0.6) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
#attention .phone-part .text-anim .cirlce::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}
#attention .phone-part .text-anim .cirlce {
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  padding: 13px;
  max-height: 58px;
  max-width: 58px;
}
#attention .phone-part .place-for-image {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
}
#attention .phone-part .place-for-image .phone-img {
  position: absolute;
  height: auto;
  width: 80%;
  top: 0;
  bottom: 0;
  margin: auto;
  max-width: 100%;
  object-fit: contain;
}
@media (max-width: 768px) {
  #attention .phone-part .place-for-image .phone-img {
    bottom: 0;
    top: auto;
  }
}
#attention .bg-image {
  border-radius: 30px;
}
#attention .slow-anim {
  animation: slowOpacity 2.6s infinite;
}
#attention .fast-anim {
  animation: fastOpacity 50ms infinite;
}
@keyframes slowOpacity {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fastOpacity {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

#cap {
  overflow: hidden;
}
#cap .shadow {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(4, 5, 6) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: -1;
}
#cap .container {
  min-height: 90vh;
  display: flex;
}
#cap .container .content {
  margin-top: auto;
  width: 100%;
  text-align: center;
}
#cap .container .content .title-block {
  max-width: 780px;
  margin: auto;
}
#cap .container .content h2 {
  background: linear-gradient(182deg, rgba(255, 255, 255, 0.57) 50%, rgb(255, 255, 255) 100%);
  background-clip: text;
  color: transparent;
  text-wrap: unset;
}
#cap .container .content p {
  text-wrap: unset;
  font-size: 16px;
  color: #fff;
  opacity: 1;
  text-transform: none;
}
#cap .parallax-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  will-change: transform;
  transition: transform 0.15s linear;
}
#cap .parallax-layer img {
  width: 100%;
  height: 100%;
  display: block;
  user-select: none;
  pointer-events: none;
}
#cap .bg {
  z-index: -5;
  opacity: 0.5;
}
#cap .bg img {
  object-fit: cover;
  transform: scale(1.05);
}
#cap .shards {
  z-index: -2;
  will-change: transform;
}
@media (max-width: 768px) {
  #cap .shards {
    animation: floatCircle 12s ease-in-out infinite;
  }
}
#cap .shards img {
  object-fit: contain;
  opacity: 0.9;
}
#cap .trophy {
  z-index: -3;
}
#cap .trophy img {
  object-fit: contain;
  width: 100%;
  max-width: 1200px;
  height: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14%;
  margin: auto;
  filter: drop-shadow(0 20px 40px rgba(255, 255, 255, 0.5));
}
@media (max-width: 768px) {
  #cap .trophy img {
    top: 0;
    width: 90%;
    transform: scale(1.8);
  }
}

@keyframes floatCircle {
  0% {
    transform: translate(0px, 0px);
  }
  25% {
    transform: translate(12px, -8px);
  }
  50% {
    transform: translate(0px, -16px);
  }
  75% {
    transform: translate(-12px, -8px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
#ways .mobile {
  flex-direction: column;
}
#ways .ways-circle {
  display: flex;
  width: 100%;
  max-width: 402px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: translate(0%, 20%);
  filter: drop-shadow(0 0 2rem #57A6FB);
}
#ways .ways-wrapper {
  width: 100%;
  display: grid;
  grid-auto-columns: 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0px 0px;
  position: relative;
}
#ways .ways-wrapper .way {
  --way-color: #57A6FB;
}
#ways .ways-wrapper .way.pink-way {
  --way-color: #F53EE1;
}
#ways .ways-wrapper .way.purple-way {
  --way-color: #6E35D9;
}
#ways .ways-wrapper .way.orange-way {
  --way-color: #FE9D4F;
}
#ways .ways-wrapper .way.blue-way {
  --way-color: #57A6FB;
}
#ways .ways-wrapper .way {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#ways .ways-wrapper .way .head-way {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 10px;
}
#ways .ways-wrapper .way .head-way::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.1) 5%, rgba(255, 255, 255, 0.05) 95%, rgba(255, 255, 255, 0.6) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
#ways .ways-wrapper .way .head-way::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  pointer-events: none;
}
#ways .ways-wrapper .way .head-way {
  background: rgba(15, 15, 15, 0.2);
  padding: 16px;
  text-align: center;
}
#ways .ways-wrapper .way .head-way .folder-block {
  height: 4px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--way-color);
}
#ways .ways-wrapper .way .option-way-wrapper {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}
#ways .ways-wrapper .way .option-way-wrapper::after {
  content: "";
  height: 20px;
  width: 1px;
  background: var(--way-color);
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 0;
  right: 0;
  margin: auto;
  transition: box-shadow 0.4s ease;
}
#ways .ways-wrapper .way .option-way-wrapper:hover::after {
  box-shadow: 0px 0px 10px 4px var(--way-color);
}
#ways .ways-wrapper .way .option-way-wrapper:hover ~ ::after {
  box-shadow: 0px 0px 10px 4px var(--way-color);
}
@media (max-width: 768px) {
  #ways .ways-wrapper .way .option-way-wrapper:last-child::after {
    display: none;
  }
}
#ways .ways-wrapper .way .option-way {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 35px;
}
#ways .ways-wrapper .way .option-way::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 35px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.1) 10%, rgba(255, 255, 255, 0.05) 90%, rgba(255, 255, 255, 0.6) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
#ways .ways-wrapper .way .option-way::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 35px;
  pointer-events: none;
}
#ways .ways-wrapper .way .option-way {
  background: color-mix(in srgb, var(--way-color) 7%, rgba(15, 15, 15, 0.2));
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  padding: 14px 20px;
  width: fit-content;
  margin: auto;
}
#ways .ways-wrapper .way .svg-way {
  stroke: var(--way-color);
  transition: filter 0.4s ease;
}
#ways .ways-wrapper .way:hover .svg-way.way-desk {
  filter: drop-shadow(0 0 2px var(--way-color)) drop-shadow(0 0 4px var(--way-color)) drop-shadow(0 0 6px var(--way-color));
}
#ways .head-way-wrapper {
  position: relative;
  width: fit-content;
  margin: auto;
  grid-area: head-way;
}
#ways .head-way-wrapper .svg-way {
  z-index: -1;
}
#ways .head-way-wrapper .svg-way-pink {
  position: absolute;
  bottom: 50%;
  left: 100%;
  margin: auto;
}
#ways .head-way-wrapper .svg-way-purple {
  position: absolute;
  top: 100%;
  left: 50%;
  margin: auto;
}
#ways .head-way-wrapper .svg-way-orange {
  position: absolute;
  top: 100%;
  right: 50%;
  margin: auto;
}
#ways .head-way-wrapper .svg-way-blue {
  position: absolute;
  bottom: 50%;
  right: 100%;
  margin: auto;
}
#ways .side-way {
  margin-top: 50%;
}
#ways .mobile .way {
  display: grid;
  grid-auto-columns: 1fr;
  grid-template-columns: auto auto;
  grid-template-rows: 104px auto;
  gap: 0px 32px;
  grid-template-areas: "head-way head-way" ". .";
}
#ways .mobile .head-way-wrapper {
  width: 51%;
}
#ways .mobile .place-for-way {
  margin-bottom: 40px;
}
#ways .mobile .ways-circle {
  position: static;
  transform: translate(0%, 11%);
}
#ways .mobile .ways-circle::after {
  content: "";
  background: red;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: rebeccapurple;
  height: 200dvh;
  width: 2px;
  height: unset;
}
#ways .mobile .ways-wrapper {
  display: flex;
  flex-direction: column;
  overflow: visible;
}
#ways .mobile .ways-wrapper .way {
  flex-direction: column;
}
#ways .mobile .way-column {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  gap: 20px;
  position: relative;
}
#ways .mobile .way-column:hover .svg-way {
  filter: drop-shadow(0 0 2px var(--way-color)) drop-shadow(0 0 4px var(--way-color)) drop-shadow(0 0 6px var(--way-color));
}
#ways .mobile .way-column .svg-way-left {
  z-index: 1;
  position: absolute;
  left: 50%;
  bottom: 100%;
}
#ways .mobile .way-column .svg-way-right {
  z-index: 1;
  position: absolute;
  right: 50%;
  bottom: 100%;
}
#ways .mobile .place-for-way {
  margin-top: 20px;
}
#ways .mobile .place-for-way:last-child {
  position: relative;
}
#ways .mobile .place-for-way:last-child .head-way-wrapper::before {
  content: "";
  width: 1px;
  height: 2000px;
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: rgba(246, 251, 255, 0.1882352941);
}
#ways .mobile .option-way-wrapper::after {
  top: unset !important;
  bottom: 100% !important;
}

#days .content {
  max-width: 100%;
  overflow: hidden;
  margin-top: 0;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  height: 100%;
}
#days .content-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end;
}
#days .container {
  min-height: 460px;
  position: relative;
}
#days {
  margin-bottom: 120px;
}
#days .days-wrapper {
  position: relative;
  height: -webkit-fill-available;
  width: max-content;
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  will-change: scroll-position;
  padding-bottom: 60px;
}
#days .days-wrapper .day {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 20px;
  margin: 0 10px;
}
#days .days-wrapper .day .info {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 64px;
}
#days .days-wrapper .day .info::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 64px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.1) 20%, rgba(255, 255, 255, 0.05) 80%, rgba(255, 255, 255, 0.6) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
#days .days-wrapper .day .info::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 64px;
  pointer-events: none;
}
#days .days-wrapper .day .info {
  background: rgba(0, 0, 0, 0.1803921569);
  max-width: 158px;
  width: 158px;
  padding: 11px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
#days .days-wrapper .day .info .row {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
#days .days-wrapper .day .info .row .label {
  opacity: 0.5;
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
}
#days .days-wrapper .day .info .row .value {
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
}
#days .days-wrapper .day .info .row .value.green {
  color: #2CFF24;
  filter: drop-shadow(0 0 4px #2CFF24);
}
#days .days-wrapper .day .date {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#days .days-wrapper .day .date .numer {
  font-size: 32px;
  font-weight: 600;
}
#days .days-wrapper .day .date .text {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}
#days .days-progress {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  height: 4px;
}
#days .days-progress__line {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}
#days .days-progress__fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #396CA3 0%, #DEEEFF 100%);
  box-shadow: 0 0 4px 4px #396CA3;
  filter: blur(1px);
  border-radius: 999px;
  transition: width 0.05s linear;
}
#days .days-progress .content-wrapper {
  overflow: hidden;
  position: relative;
}
#days .day .info {
  opacity: 0.7;
  transform: translateY(300%);
}
#days .day.active .info {
  opacity: 1;
  animation: mario-pop 1s ease-out forwards;
}
#days .day.active:nth-child(5) {
  transform: translateY(-30px);
}
#days .day.active:nth-child(6) {
  transform: translateY(-60px);
}
#days .day.active:nth-child(7) {
  transform: translateY(-90px);
}
@keyframes mario-pop {
  0% {
    opacity: 0.7;
    transform: translateY(300%);
  }
  40% {
    opacity: 1;
    transform: translateY(-30px);
  }
  70% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}

#create-studio {
  overflow: hidden;
}
#create-studio .bg-image.figure {
  object-fit: contain;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  bottom: auto;
  width: auto;
  height: auto;
}
#create-studio .bg-image.creative {
  height: fit-content;
  top: 180%;
}
#create-studio .btn-transparent {
  display: flex;
  gap: 12px;
  align-items: center;
}
#create-studio .btn-transparent span {
  font-weight: 500;
  font-size: 14px;
}
#create-studio .btn-transparent .circle {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 50%;
}
#create-studio .btn-transparent .circle::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.1) 35%, rgba(255, 255, 255, 0.05) 60%, rgba(255, 255, 255, 0.6) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
#create-studio .btn-transparent .circle::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}
#create-studio .btn-transparent .circle {
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  padding: 13px;
  max-height: 48px;
  max-width: 48px;
}
#create-studio .bg-image {
  width: 110%;
  max-width: 110%;
  margin-left: -5%;
}
#create-studio .swiper-slide {
  width: fit-content !important;
}
#create-studio .create-card {
  margin: 0 20px;
  transition: 0.4s ease transform;
}
#create-studio .create-card:hover {
  transform: translate(0, -12%);
}
#create-studio .create-card .image-wrapper {
  height: 463px;
  width: 264px;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: inset 4px 4px 8px rgba(255, 255, 255, 0.6), inset -4px -4px 8px rgba(0, 0, 0, 0.35);
}
#create-studio .create-card .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: -1;
  position: relative;
}
#create-studio .create-card .card-text {
  display: flex;
  justify-content: center;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  width: 100%;
  margin-top: 18px;
}
#create-studio .create-swiper {
  overflow: visible;
}
#create-studio .create-swiper-button-prev {
  position: absolute;
  display: flex;
  aspect-ratio: 1;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 44px;
  z-index: 10;
  left: 20px;
}
#create-studio .create-swiper-button-next {
  position: absolute;
  display: flex;
  aspect-ratio: 1;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 44px;
  z-index: 10;
  right: 20px;
}
#create-studio .anim-place {
  transform: translate(0, 100%);
  opacity: 0;
  transition: 2.4s transform ease, 0.8s opacity ease;
}
#create-studio.anim .anim-place {
  transform: translate(0, 0);
  opacity: 1;
}

#workflow .place-for-btn {
  margin-top: 0;
}
#workflow .title-block {
  margin-bottom: 20px;
}
#workflow .workflow-wrapper {
  overflow: hidden;
  position: relative;
  padding-top: 80px;
}
#workflow .workflow-wrapper .player-line {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background: #57A6FB;
}
#workflow .workflow-wrapper .cards-wrapper {
  display: flex;
  justify-content: space-between;
}
#workflow .workflow-wrapper .cards-wrapper .workflow-card {
  border-radius: 20px;
  overflow: hidden;
  margin: 0 20px;
  width: 306px;
  min-width: 306px;
  background: #161616;
  height: 406px;
}
#workflow .workflow-wrapper .cards-wrapper .workflow-card .text-wrapper {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#workflow .workflow-wrapper .cards-wrapper .workflow-card h4 {
  font-weight: 500;
  font-size: 24px;
}
#workflow .workflow-wrapper .cards-wrapper .workflow-card ul {
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#workflow .workflow-wrapper .cards-wrapper .workflow-card ul li::marker {
  color: #57A6FB;
}
#workflow .workflow-wrapper .cards-wrapper .workflow-card .text {
  opacity: 0.7;
  color: #fff;
  font-weight: 400;
  font-size: 15px;
}
#workflow .timeline-wrapper {
  background: rgba(255, 255, 255, 0.1176470588);
  display: flex;
  margin-top: 60px;
}
#workflow .timeline-wrapper::after {
  content: "";
  height: 2px;
  width: 100%;
  background: #F5F69D;
  position: absolute;
  bottom: 0;
  left: 0;
}
#workflow .timeline-wrapper .time-block {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100px;
  min-width: 100px;
}
#workflow .timeline-wrapper .time-block .line {
  width: 1px;
  height: 18px;
  background: #fff;
  opacity: 0.4;
}
#workflow .timeline-wrapper .time-block .minute-line {
  width: 1px;
  height: 43px;
  background: #fff;
  opacity: 0.4;
  position: relative;
}
#workflow .timeline-wrapper .time-block .minute-line .minute-numer {
  transform: translate(-50%, 0);
  position: absolute;
  top: -24px;
  text-wrap: nowrap;
  left: 0;
  right: 0;
  margin: auto;
  width: fit-content;
}
#workflow .cards-wrapper,
#workflow .timeline-wrapper,
#workflow .player-line {
  will-change: transform;
  pointer-events: none;
  user-select: none; /* нельзя выделять */
  -webkit-user-drag: none; /* нельзя перетягивать */
}
#workflow .card-wrapper .workflow-card {
  border: 1px solid transparent;
  transition: 0.3s transform ease, 0.3s border-color ease;
}
#workflow .card-wrapper.anim .workflow-card {
  transform: translate(0, -20px);
  border-color: #57A6FB;
}
#workflow .workflow-wrapper {
  overflow: hidden;
  position: relative;
}
#workflow .player-line {
  position: absolute;
  top: 0;
  left: 120px;
  width: 2px;
  height: 100%;
  background: #57A6FB;
  z-index: 20;
  display: flex;
  justify-content: center;
}
#workflow .player-line svg,
#workflow .player-line img {
  position: absolute;
  top: 0;
}
#workflow .cards-wrapper,
#workflow .timeline-wrapper {
  position: relative;
  will-change: margin-left;
}

@media (max-width: 768px) {
  #growth {
    gap: 20px;
  }
}
#growth .place-for-slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  #growth .place-for-slider {
    flex-direction: column-reverse;
  }
}
#growth .growth-swiper-button-prev, #growth .growth-main-swiper-button-prev {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 44px;
  z-index: 10;
  left: 20px;
}
#growth .growth-swiper-button-next, #growth .growth-main-swiper-button-next {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 44px;
  z-index: 10;
  right: 20px;
}
#growth .slider-wrapper {
  position: relative;
  height: 412px;
  width: 666px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
@media (max-width: 768px) {
  #growth .slider-wrapper {
    height: 100%;
  }
}
#growth .growth-support-swiper {
  max-width: 538px;
  width: 100%;
  height: 234px;
  overflow: hidden;
}
@media (max-width: 768px) {
  #growth .growth-support-swiper {
    height: 100%;
  }
}
#growth .card-software {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  height: 100%;
  box-sizing: border-box;
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.47) 100%);
  background-clip: text;
}
@media (max-width: 768px) {
  #growth .card-software {
    flex-direction: column;
    gap: 20px;
  }
}
#growth .card-software .line-delimer {
  opacity: 20%;
  height: 100%;
  width: 1px;
  background: #FFFFFF;
}
@media (max-width: 768px) {
  #growth .card-software .line-delimer {
    height: 1px;
    width: 100%;
  }
}
#growth .card-software .part {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}
@media (max-width: 768px) {
  #growth .card-software .part.head-part {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
  }
}
#growth .card-software .short-info {
  display: flex;
  flex-direction: column;
}
#growth .card-software .media {
  display: flex;
  gap: 16px;
  padding: 16px;
  align-items: center;
  background: rgba(255, 255, 255, 0.0509803922);
  border-radius: 20px;
}
#growth .card-software .social-links {
  display: flex;
  gap: 8px;
}
#growth .card-software .social-links .text {
  opacity: 1;
  font-family: Inter;
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
}
#growth .card-software .card-title {
  font-family: Inter;
  font-weight: 600;
  font-size: 24px;
  text-transform: uppercase;
}
#growth .card-software .card-sub-title {
  opacity: 0.7;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
}
#growth .card-software .text {
  opacity: 0.7;
  font-weight: 400;
  font-size: 15px;
}
#growth .card-software .list {
  margin-left: 20px;
}
#growth .card-software .list li {
  font-weight: 400;
  font-size: 15px;
}
#growth .card-software .list li::marker {
  color: #57A6FB;
}
#growth .card-software .big-numer {
  font-family: Oswald;
  font-weight: 600;
  font-size: 96px;
  text-transform: uppercase;
  line-height: 0.95em;
  background: linear-gradient(180deg, #57A6FB 0%, #346395 100%);
  background-clip: text;
  color: transparent;
}
@media (max-width: 768px) {
  #growth .card-software .big-numer {
    font-size: 36px;
  }
}
#growth .card-software .small-text {
  font-family: Oswald;
  font-weight: 600;
  font-size: 32px;
  text-transform: uppercase;
  line-height: 0.95em;
  color: transparent;
}
@media (max-width: 768px) {
  #growth .card-software .small-text {
    font-size: 16px;
  }
}
#growth .card-software .big-text {
  font-family: Oswald;
  font-size: 64px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 0.95em;
  color: transparent;
}
@media (max-width: 768px) {
  #growth .card-software .big-text {
    font-size: 36px;
  }
}
#growth .tablet-wrapper {
  position: relative;
  max-width: 506px;
  width: 100%;
}
#growth .tablet-wrapper .growth-main-swiper {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 68%;
  height: 81%;
}
#growth .tablet-wrapper .border-image {
  pointer-events: none;
  position: relative;
  z-index: 5;
  width: 100%;
}
#growth .swiper {
  width: 100%;
}
#growth .swiper img {
  width: 100%;
  height: 100%;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-wrap: balance;
  text-decoration: none;
}

body {
  background: rgb(4, 5, 6);
  color: #ffffff;
  font-family: "Inter", sans-serif;
}
body:has(form.open) {
  overflow: hidden;
}

main {
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1480px;
  padding: 0 20px;
  margin: auto;
}
.container-p0 {
  padding: 0;
}
.container-full {
  max-width: unset;
}

.content {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .content {
    margin-top: 40px;
  }
}

.section-container {
  padding-top: 90px;
  padding-bottom: 60px;
  display: flex;
  gap: 60px;
  flex-direction: column;
  position: relative;
}
.section-container::after, .section-container::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 40px;
  z-index: 7;
  pointer-events: none;
}
.section-container::before {
  top: 0;
  background: linear-gradient(to bottom, #000 0%, transparent 100%);
}
.section-container::after {
  bottom: 0;
  background: linear-gradient(to top, #000 0%, transparent 100%);
}
.section-container .btn {
  min-width: 224px;
}

.media .btn {
  min-width: 211px;
  min-height: 48px;
  padding: 15px 13px;
}

img {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.title-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.title-block h1 {
  font-weight: 700;
  font-size: 72px;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .title-block h1 {
    font-size: 32px;
  }
}
.title-block h2 {
  font-weight: 600;
  font-size: 48px;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .title-block h2 {
    font-size: 32px;
  }
}
.title-block h3 {
  font-size: 36px;
  font-family: 600;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .title-block h3 {
    font-size: 24px;
  }
}
.title-block p {
  font-weight: 300;
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
  opacity: 0.5;
  max-width: 720px;
  margin: auto;
}
@media (max-width: 768px) {
  .title-block p {
    font-size: 15px;
  }
}
.title-block p.tt-none {
  text-transform: none;
}

.bg-image-container {
  position: relative;
}
.bg-image-container .bg-image {
  position: absolute;
  z-index: -10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.bg-image-container .bg-image.pos-bottom {
  object-position: center bottom;
}

.glass-effect {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 50%;
}
.glass-effect::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.1) 35%, rgba(255, 255, 255, 0.05) 60%, rgba(255, 255, 255, 0.6) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.glass-effect::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}

.next-button svg {
  transform: rotate(180deg);
}

.cp {
  cursor: pointer;
}

.place-for-pagination {
  margin-top: 60px;
  display: flex;
  gap: 18px;
}

.p-0 {
  padding: 0 !important;
}

.swiper-pagination {
  width: fit-content !important;
  position: static !important;
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.swiper-pagination .swiper-pagination-bullet {
  margin: 0 !important;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 50%;
}
.swiper-pagination .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.1) 35%, rgba(255, 255, 255, 0.05) 60%, rgba(255, 255, 255, 0.6) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.swiper-pagination .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  aspect-ratio: 1;
  opacity: 1;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: rgba(217, 217, 217, 0.8980392157);
}

.place-for-pagination {
  position: relative;
  opacity: 1;
  transition: 0.4s ease opacity;
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
.place-for-pagination .round-btn {
  position: relative;
  width: 48px;
  height: 48px;
  aspect-ratio: 1;
  -webkit-box-shadow: 0px 7px 8px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 7px 8px 0px rgba(0, 0, 0, 0.5);
}

.btn-glass-effect {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 34px;
}
.btn-glass-effect::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.1) 35%, rgba(255, 255, 255, 0.05) 60%, rgba(255, 255, 255, 0.6) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.btn-glass-effect::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 34px;
  pointer-events: none;
}
.btn-glass-effect {
  padding: 16px;
  display: inline-block;
  font-weight: 500;
  font-size: 15px;
  text-align: center;
  cursor: pointer;
  min-width: 224px;
  transition: 0.4s ease background;
}

.h-100 {
  height: 100%;
}

*::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  background-color: transparent;
}
*::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  background-color: transparent;
}
*::-webkit-scrollbar-thumb {
  border-radius: 4px;
  -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.3);
  background-color: #57A6FB;
}

.input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 768px) {
  .input-wrapper {
    width: 100%;
  }
}
.input-wrapper.button-checker {
  background: rgba(0, 0, 0, 0.2);
  padding: 16px;
  border-radius: 15px;
  gap: 20px;
}
.input-wrapper.button-checker h4 {
  font-size: 20px;
}
.input-wrapper .input-label {
  font-weight: 400;
  font-size: 13px;
}
.input-wrapper .input-block {
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  gap: 8px;
  min-height: 54px;
  padding: 14px;
  align-items: center;
  border-radius: 15px;
}
.input-wrapper .input-block input, .input-wrapper .input-block textarea {
  font-weight: 400;
  font-size: 15px;
  background: transparent;
  outline: none !important;
  border: none !important;
  height: 100%;
  width: 100%;
  color: #fff;
}
.input-wrapper .input-block textarea {
  min-height: 80px;
  width: 100%;
  resize: none;
}
.place-for-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  gap: 48px;
}
@media (max-width: 768px) {
  .place-for-btn {
    flex-direction: column;
    gap: 32px;
  }
}
.place-for-btn .btn-shadow {
  -webkit-box-shadow: 0px 0px 50px 0px #57A6FB;
  box-shadow: 0px 0px 50px 0px #57A6FB;
}

.btn-hover {
  transition: 0.3s ease-in-out box-shadow;
}
.btn-hover:hover {
  -webkit-box-shadow: 0px 0px 50px 0px #57A6FB;
  box-shadow: 0px 0px 50px 0px #57A6FB;
}

.desktop {
  display: flex !important;
}
@media (max-width: 768px) {
  .desktop {
    display: none !important;
  }
}

.mobile {
  display: none !important;
}
@media (max-width: 768px) {
  .mobile {
    display: flex !important;
  }
}

.blue-text {
  color: #57A6FB !important;
  font-weight: 600 !important;
}

.opacity-1 {
  opacity: 1 !important;
}

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