/* Global */

:root {
    touch-action: pan-x pan-y;
    overflow:hidden visible !important;
}

* {
    touch-action: pan-x pan-y;
}

html, body {
    overscroll-behavior: none;
    overflow:hidden visible !important;
}

html { scroll-padding-top: 105px; min-height: 100vh;}

        .video-container-demo {
            position: relative;
            /*padding-bottom: 32vh;*/
            /* padding-top: 30px; */
            height: auto !important;
            /* max-height: 320px; */
            /* overflow: hidden; */
            width: 100% !important;
            max-width: 560px;
            /* margin: 20px auto; */
            /* aspect-ratio: 9 / 16; */
            /* margin-left: 20px !important; */
            /* margin-right: 20px !important; */
            padding: 5px !important;
            max-height:  min(85vh, 840px);
            border-radius: 30px;
	    /* scroll-margin-top: -10px !important; */
        }

.button--gradient {
  background-color: transparent;
  position: relative;
  z-index: 1;
}

.button--gradient::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(120deg, #8af9e6 0%, #d97cee 50%, #f9c97d 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}
.text-gradient {
  color: white;
}

.demo__icon,
.features__icon {
  width: 82px;
  height: 82px;

  display: flex;
  justify-content: center;
  align-items: center;
}

.demo__icon img {
  cursor: pointer;
}

.demo__icon img,
.features__icon img {
  width: 100%;
  height: 100%;
}

.text--gradient {
  background: linear-gradient(to bottom, #ddb1ff, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section__title {
  font-size: 44px;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}

.section__subtitle {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  color: #8283a9;
  margin-bottom: 20px;
}

.blurry {
  position: absolute;
  border-radius: 50%;
  width: 642px;
  height: 642px;
  background-color: rgba(52, 54, 91, 0.4);
  filter: blur(500px);
  pointer-events: none;
}

.purple-blurry {
  position: absolute;
  border-radius: 400px;
  width: 440px;
  height: 440px;
  background: linear-gradient(to top, #6d3aff 0%, #e270ff 67%, #fff 100%);
  filter: blur(100px);
  pointer-events: none;
}

.main-wrapper {
  position: relative;
}

.main {
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .section__title {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .section__subtitle {
    font-size: 16px;
    margin-bottom: 55px;
  }

  .demo__icon,
  .features__icon {
    width: 60px;
    height: 60px;
  }
}

/* Header */
.header {
  position: fixed;
  /* top: 15px; */
  left: 0px;
  right: 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding: 19px 50px;
  z-index: 100;

  background-color: rgba(2, 3, 28, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  transition: top 0.3s ease;
}
.header__logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__logo-image {
  width: 152px;
  height: 19px;
}

.header__nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
}
.header__nav-item {
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
}

.header__nav-link {
  text-decoration: none;
  color: inherit;
}

.header__nav-link:hover {
  text-decoration: underline;
}
.header__button {
  font-size: 15px;
  font-weight: 600;

  cursor: pointer;
  border-radius: 10px;
}

.header__button a {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .header {
    padding: 19px 30px;
  }
}

@media (max-width: 768px) {
  .header__nav-list {
    display: none;
  }

  .header__button a {
    font-size: 12px;
    padding: 6px 13px;
  }

  .header {
    top: 0;
    padding: 15px 18px;
  }
}

/* Intro Section */
.intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 0 100px 0;

  position: relative;
  z-index: 2;
}

.intro-bg-image {
  position: absolute;
  /* bottom: -4px; */
  /* left: 50%;
  transform: translateX(-50%); */
  background-image: url("/assets/design/bg-intro-noblur.png");
  background-size: 75%;
  background-position: bottom;
  background-repeat: no-repeat;
  max-width: 1500px;
  width: 100%;
  height: 900px;
  z-index: 1;
  pointer-events: none;
}

.intro-bg-stars {
  position: absolute;
  bottom: -200px;
  /* left: 50%;
  transform: translateX(-50%); */
  background-image: url("/assets/design/intro-bg-stars.png");
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
  max-width: 1500px;
  width: 100%;
  height: 900px;
  z-index: -1;
  pointer-events: none;
}

.intro__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 900px;
  position: relative;
  z-index: 2;
}
.intro__title,
.intro__title span {
  font-size: 40px;
  line-height: 110%;
  font-weight: 600;
  text-align: center;
  margin-bottom: 15px;
}
.intro__subtitle {
  margin-bottom: 25px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
  color: #b7b8d7;
}
.intro__buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.intro__button {
  text-align: center;
  width: 180px;
  border-radius: 12px;
}
.intro__button-more {
  background-color: white;
  border: none;
  font-weight: 600;
  cursor: pointer;
    display: flex;         
    align-items: center;   
    justify-content: center; 
    margin-bottom: 5px;
}

.intro__button a,
.intro__button-more a {
  display: block;
  padding: 12px 0px;
  text-decoration: none !important;
}
.intro__button-more a {
  color: #02031c;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .intro__container {
    padding: 0px 20px;
  }
}

@media (max-width: 768px) {
  .intro {
    padding: 75px 0 75px;
  }

  .intro__title,
  .intro__title span {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .intro__subtitle {
    font-size: 16px;
    margin-bottom: 35px;
    max-width: 308px;
    width: 100%;
    text-align: center;
  }

    .intro__buttons {
        gap: 10px;
        max-width: 275px;
        flex-direction: column;
        align-items: center;
    }

    .intro__button-more,
      .intro__buttons > a {
        width: 100%;         /* full width when stacked */
        max-width: none;
        min-width: auto;
      }

.intro__button-more{background-color: #e4dbf7;}

  .intro__button a,
  .intro__button-more a {
    /* padding: 6px 0px; */
    font-size: 14px;
  }

  .intro-bg-image {
    display: none;
  }

  .intro-bg-image-mobile {
    position: absolute;
    top: -683px;
    /* left: 50%;
    transform: translateX(-50%); */
    background-image: url("/assets/design/intro-bg-mobile.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 155%;
    height: 1000px;
    z-index: 1;
    pointer-events: none;
  }
}

@media (max-width: 530px) {
  .intro-bg-image-mobile {
    background-size: contain;
    top: -650px;
  }
}

.play-icon-button {
  background-color: transparent !important;
  border: none !important;
}

/* Demo Section */
.demo {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.demo__container {
  max-width: 1040px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 10%);
  background-color: rgba(2, 3, 28, 0.8);
  position: relative;
  z-index: 2;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.demo__container > .purple-blurry-left {
  position: absolute;
  top: -80px;
  left: -100px;
  background: linear-gradient(to bottom, #6d3aff 0%, #e270ff 67%, #03041d 100%);
  z-index: 1;
}

.demo__container > .purple-blurry-right {
  position: absolute;
  top: -80px;
  right: -100px;
  background: linear-gradient(to bottom, #6d3aff 0%, #e270ff 67%, #03041d 100%);
  z-index: 1;
}

.demo__container > .purple-blurry-center {
  position: absolute;
  /* left: 50%;
  transform: translateX(-50%); */
  top: -80px;
  background: linear-gradient(to bottom, #6d3aff 0%, #e270ff 67%, #03041d 100%);
  z-index: 1;
}

.demo__container-inner {
  display: block;
  justify-content: center;
  align-items: stretch;
  border-radius: 30px;
  border: 9px solid rgba(255, 255, 255, 5%);
  height: 100%;
  background-color: rgb(2, 3, 28, 0.8);
  position: relative;
  z-index: 2;
  width: 100vw;
  height: auto;
  max-width: 840px;
}
.demo__item-container {
  padding: 75px 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex: 1;
}

.demo__item-container:first-of-type::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  opacity: 0.2;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 50%,
    rgba(255, 255, 255, 0) 100%
  );
}

.demo__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100%;
  font-size: 20px;
  text-decoration: underline;
}

.demo__icon {
  margin-bottom: 42px;
}
.demo__title {
  margin-bottom: 30px;
  text-align: center;
  font-weight: 500;
  font-size: 24px;
  line-height: 140%;
}
.demo__button {
  padding: 15px 37px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 10%);
  border-radius: 12px;
  font-weight: 600;
  position: relative;
  background-color: transparent;
}

.demo__button-background {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 12px;
  opacity: 0.05;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}

@media (max-width: 1024px) {
  .demo__container {
    margin: 0px 20px;
  }
}

@media (max-width: 768px) {
        .video-container-demo {
            max-height:  560px !important;
	    scroll-margin-top: -20px !important;
        }
  .demo__container-inner,
  .demo__container {
    border-radius: 25px;
  }
  .demo__container-inner {
    flex-direction: column;
  }

  .demo__item-container {
    padding: 40px 30px;
  }

  .demo__item-container:first-of-type::after {
    right: 0;
    left: 0;
    bottom: 0;
    top: unset;
    width: 100%;
    height: 1px;
  }

  .demo__title {
    font-size: 18px;
  }
  .demo__button {
    font-size: 14px;
    padding: 10px 30px;
  }

  .demo__container > .purple-blurry-center,
  .demo__container > .purple-blurry-left,
  .demo__container > .purple-blurry-right {
    display: none;
  }

  .demo__icon {
    margin-bottom: 25px;
  }
  .demo__title {
    margin-bottom: 25px;
  }
}

/* Video Section */
.video {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}

.video::before {
  content: "";
  position: absolute;
  top: -50px;
  /* left: 50%;
  transform: translateX(-50%); */
  width: 1500px;
  height: 500px;
  background-image: url("/assets/design/video-stars.svg");
  background-size: 100%;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: -1;
}

.video > .blurry-left {
  top: 17%;
  left: -25%;
}

.video > .blurry-right {
  top: 17%;
  right: -20%;
}

.video-container {
  width: 100%;
  max-width: 1015px;
  display: flex;
  flex-direction: column;
}
.video__statsDesctop,
.video__statsMobile {
  justify-content: space-between;
  align-items: start;
  position: relative;
}

.video__statsDesctop {
  display: flex;
  margin-bottom: 75px;
}

.video__statsMobile {
  display: none;
  margin-bottom: 70px;
}

.video__statsMobile-container {
  width: 100%;
  display: flex;
  justify-content: space-around;
}

.video__statsDesctop::after,
.video__statsMobile::after {
  content: "";
  position: absolute;
  /* left: 50%;
  transform: translateX(-50%); */
  width: 90%;
  max-width: 1700px;
  background-image: url("/assets/design/video-platform.webp");
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
  z-index: -1;
}

.video__statsDesctop::after {
  bottom: -130px;
  height: 200px;
}
.video__statsMobile::after {
  bottom: 50px;
  height: 200px;
}

.video__stat {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 53px;
}
.video__stat-value {
  font-size: 80px;
  font-weight: 200;
}
.video__stat-label {
  color: #8283a9;
  font-weight: 700;
}
.video__media-container {
  position: relative;
  width: 228px;
  height: 457px;
  overflow: hidden;
}

.video__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: auto;
  mix-blend-mode: lighten;
}
.video__description {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.video__description-item {
  font-size: 24px;
  font-weight: 400;
  color: #8283a9;
  text-align: center;
}

.video__description-white {
  color: white;
  font-size: 24px;
  font-weight: 400;
}

@media (max-width: 1024px) {
  .video-container {
    margin: 0px 20px;
  }
}

@media (max-width: 768px) {
  .video {
    padding-top: 48px;
    padding-bottom: 105px;
  }

  .video__statsDesctop {
    display: none;
  }

  .video__statsMobile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .video__stat {
    margin-top: 30px;
  }

  .video__stat-value {
    font-size: 50px;
    margin-bottom: 0px;
  }
  .video__stat-label {
    font-size: 12px;
  }
  .video__description-item,
  .video__description-white {
    font-size: 18px;
  }

  .video__media-container {
    height: 320px;
  }
  .video__media {
    object-fit: contain;
  }

  .video__statsMobile::after {
    bottom: -35px;
    height: 205px;
  }
  .video__description {
    padding: 0px 20px;
    gap: 28px;
  }
}

/* Features Section */
.features {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 64px;
  position: relative;
}

.features > .comets {
  content: "";
  position: absolute;
  top: -200px;
  /* left: 50%;
  transform: translateX(-50%); */
  width: 100%;
  max-width: 1700px;
  height: 400px;
  background-image: url("/assets/design/features-comets.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.features__content-container > .blurry {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.features__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1150px;
}

.features__item {
  flex: 1 1 calc(33.333% - 10px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 55px 50px 60px;
  max-width: 384px;
  position: relative;
}

.features__content > .features__item:nth-child(n + 4) {
  flex: 1 1 calc(50% - 10px);
}

.features__content > .features__item:nth-child(1)::before,
.features__content > .features__item:nth-child(1)::after,
.features__content > .features__item:nth-child(2)::before,
.features__content > .features__item:nth-child(3)::before,
.features__content > .features__item:nth-child(3)::after,
.features__content > .features__item:nth-child(4)::before {
  content: "";
  position: absolute;
  opacity: 0.2;
}

.features__content > .features__item:nth-child(1)::before {
  width: 1px;
  height: 100%;
  top: 0;
  right: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}

.features__content > .features__item:nth-child(1)::after {
  width: 100%;
  height: 1px;
  bottom: 0;
  right: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}

.features__content > .features__item:nth-child(2)::before {
  width: 100%;
  height: 1px;
  bottom: 0;
  right: 0;
  background-color: white;
}

.features__content > .features__item:nth-child(3)::before {
  width: 1px;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}

.features__content > .features__item:nth-child(3)::after {
  width: 100%;
  height: 1px;
  bottom: 0;
  right: 0;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}

.features__content > .features__item:nth-child(4)::before {
  width: 1px;
  height: 100%;
  top: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}

.features__icon {
  margin-bottom: 40px;
}
.features__item-title {
  margin-bottom: 25px;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
}
.features__item-description {
  color: #8283a9;
  text-align: center;
  margin-top: auto;
}

.featuresmodels--container > .blurry-right {
  bottom: 7%;
  right: -20%;
}

@media (max-width: 768px) {
  .features {
    padding-bottom: 105px;
  }
  .features > .blurry-right {
    top: -100px;
  }

  .features__header {
    max-width: 300px;
  }

  .features__content-container > .blurry,
  .features > .blurry-left,
  .features > .comets {
    display: none;
  }

  .features__content > .features__item:nth-child(1)::before,
  .features__content > .features__item:nth-child(1)::after,
  .features__content > .features__item:nth-child(2)::before,
  .features__content > .features__item:nth-child(3)::before,
  .features__content > .features__item:nth-child(3)::after,
  .features__content > .features__item:nth-child(4)::before {
    display: none;
  }

  .features__item,
  .features__content > .features__item:nth-child(n + 4) {
    flex: none;
  }

  .features__content {
    gap: 50px;
  }
  .features__item {
    padding: 0;
  }

  .features__icon {
    margin-bottom: 25px;
  }
  .features__item-title {
    margin-bottom: 14px;
  }

  .features__item-description {
    max-width: 360px;
  }
}

/* Models Section */
.models {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  background: linear-gradient(to bottom, transparent 0%, #02031c 70%);
}

.models > .blurry-left {
  bottom: 7%;
  left: -25%;
}

.models > .blurry-right {
  bottom: 7%;
  right: -20%;
}

.models__subtitle.section__subtitle {
  margin-bottom: 35px;
}

.models__tabs {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 6px;
  gap: 12px;
  margin-bottom: 40px;
}

.models__tab {
  padding: 10px 28px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
}

.models__tab-active {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  box-shadow: inset 0 -4px 20px -5px rgba(255, 255, 255, 0.4);
}

.models__content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 70px;

  width: 100%;
  padding: 0px 20px 80px;
  max-width: 1440px;
}

.models__images {
  width: 100%;
  max-width: 1100px;
  height: 550px;
  mix-blend-mode: lighten;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.models__images img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  display: block;
  object-fit: contain;
}

.models__pagination {
  width: 100%;
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 0px 30px 40px;
  max-width: 400px;
}

.models__pagination-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.models__pagination-item {
  width: 20px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}

.models__pagination-item.models__pagination-active {
  background-color: white;
}

.models__pagination-button {
  background-color: transparent;
  justify-content: center;
  align-items: center;
  width: 50px;
  min-width: 50px;
  height: 50px;

  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pagination__button-desk {
  display: flex;
}
.pagination__button-mob {
  display: flex;
}

@media (max-width: 1024px) {
  .models__content {
    padding: 0px 20px 80px;
    gap: 40px;
  }

  .models__images {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .models {
    background: linear-gradient(to bottom, transparent 0%, #02031c 10%);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }

  .models__header {
    max-width: 300px;
    margin-bottom: 10px;
  }

  .models__pagination {
    display: flex;
  }
  .pagination__button-desk {
    display: none;
  }

  .models__images {
    height: 207px;
  }

  .models__content {
    padding: 0px 0px 40px;
  }

  .models > .blurry-left {
    display: none;
  }

  .models > .blurry-right {
    display: none;
  }

  .models > .blurry {
    display: none;
  }

  .models__tabs {
    display: none;
  }

  .models__pagination-button {
    width: 40px;
    min-width: 40px;
    height: 40px;
  }
}

/* solutions Section */
.solutions {
  margin-top: 122px;
  margin-bottom: 20px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.solutions > .blurry-left {
  top: 50%;
  left: -25%;
}

.solutions > .blurry-right {
  top: 50%;
  right: -20%;
}

.solutions__bg-image {
  position: absolute;
  top: -125px;
  /* left: 50%;
  transform: translateX(-50%); */
  background-image: url("/assets/design/solution-bg.png");
  background-size: 80%;
  background-position: top;
  background-repeat: no-repeat;
  max-width: 1700px;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.solutions__header {
  position: relative;
  margin-bottom: 20px;
}

.solutions__header > .purple-blurry-right {
  top: -500px;
  z-index: -1;
  right: -400px;
}

.solutions__header > .purple-blurry-left {
  top: -500px;
  z-index: -1;
  left: -400px;
}

.solutions__content {
  display: flex;
}
.solutions__item {
  flex: 1;
  padding: 70px 72px 120px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.solutions__content > .solutions__item:nth-child(1)::before,
.solutions__content > .solutions__item:nth-child(1)::after,
.solutions__content > .solutions__item:nth-child(2)::before,
.solutions__content > .solutions__item:nth-child(3)::before,
.solutions__content > .solutions__item:nth-child(3)::after {
  content: "";
  position: absolute;
  opacity: 0.2;
}

.solutions__content > .solutions__item:nth-child(1)::before {
  width: 1px;
  height: 100%;
  top: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}

.solutions__content > .solutions__item:nth-child(1)::after {
  height: 1px;
  width: 100%;
  top: 0;
  right: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}

.solutions__content > .solutions__item:nth-child(2)::before {
  width: 100%;
  height: 1px;
  top: 0;
  right: 0;
  background-color: white;
}

.solutions__content > .solutions__item:nth-child(3)::after {
  height: 1px;
  width: 100%;
  top: 0;
  right: 0;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}

.solutions__content > .solutions__item:nth-child(3)::before {
  height: 100%;
  width: 1px;
  top: 0;
  left: 0;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}

.solutions__item-title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 20px;
  text-align: center;
}
.solutions__list {
  width: 240px;
}
.solutions__list-item {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 0px;
  color: #8283a9;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

@media (max-width: 1024px) {
  .solutions__item {
    padding: 67px 20px 100px;
  }
}

@media (max-width: 768px) {
  .solutions {
    margin-top: 130px;
  }

  .solutions__header {
    max-width: 300px;
    margin-bottom: 0px;
  }
  .solutions__subtitle.section__subtitle {
    margin-bottom: 0;
  }
  .solutions__content {
    flex-direction: column;
    width: 100%;
    margin-bottom: 45px;
  }

  .solutions__list {
    margin-bottom: 15px;
  }

  .solutions__item {
    padding: 10px 0px;
  }

  .solutions__item-title {
    margin-bottom: 15px;
    margin-top: 20px;
  }
  .solutions__list-item {
    padding: 10px 0px;
  }

  .solutions__content > .solutions__item:nth-child(1)::after,
  .solutions__content > .solutions__item:nth-child(3)::after,
  .solutions__content > .solutions__item:nth-child(3)::before {
    display: none;
  }

  .solutions__content > .solutions__item:nth-child(1)::before,
  .solutions__content > .solutions__item:nth-child(2)::before {
    height: 1px;
    width: 100%;
    bottom: 0;
    right: 0;
    left: 0;
    top: unset;
    background: linear-gradient(
      to left,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 1) 50%,
      rgba(255, 255, 255, 0) 100%
    );
  }

  .solutions__bg-image {
    top: -130px;
    background-image: url("/assets/design/solution-bg-mobile.png");
    width: 160%;
  }

  .purple-blurry {
    width: 220px;
    height: 220px;
    filter: blur(60px);
  }

  .solutions__header > .purple-blurry-right {
    top: -230px;
    right: -50px;
  }

  .solutions__header > .purple-blurry-left {
    top: -230px;
    left: -50px;
  }
}

/* faq Section */
.faq {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 125px;
  position: relative;
  overflow: hidden;
}

.faq__header {
  margin-bottom: 25px;
}

.faq > .comets {
  content: "";
  position: absolute;
  top: -30px;
  /* left: 50%;
  transform: translateX(-50%); */
  width: 100%;
  max-width: 1300px;
  height: 443px;
  background-image: url("/assets/design/faq-comets.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.accordions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  max-width: 800px;
  width: 100%;
}
.accordion {
  padding: 35px;
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.accordion__header {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  /* cursor: pointer; */
}
.accordion__title {
  font-weight: 600;
}
.accordion__icon {
  cursor: pointer;
}
.accordion__content {
  font-weight: 500;
  max-width: 95%;
  color: #8283a9;
}

.accordion__content.hidden {
  max-height: 0;
  overflow: hidden;
  /* transition: max-height 0.15s ease-out, margin-top 0.3s ease-out; */
}

.accordion__content.visible {
  margin-top: 20px;
  max-height: 400px;
  /* transition: max-height 0.3s ease-in; */
}

.accordion__icon--open {
  content: url("/assets/images/icon-more.svg");
}

.accordion__icon--close {
  content: url("/assets/images/icon-less.svg");
}

@media (max-width: 1024px) {
  .faq {
    padding: 0px 20px;
  }

  .accordion {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .faq {
    margin-bottom: 80px;
  }
  .accordion {
    padding: 20px;
  }
  .accordion__title,
  .accordion__content {
    font-size: 16px;
    max-width: 95%;
  }

  .faq__header {
    margin-bottom: 0;
    max-width: 300px;
  }
  .faq__subtitle.section__subtitle {
    margin-bottom: 20px;
  }

  .accordion__content.visible {
    margin-top: 10px;
  }
}

/* faq Us Section */
.contact-us {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 65px;
}

.contact-us__info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .contact-us__info {
    font-size: 16px;
  }
  .contact-us__header {
    max-width: 300px;
  }
  .contact-us {
    margin-bottom: 37px;
  }

  .contact-us__subtitle.section__subtitle {
    margin-bottom: 20px;
  }
}

/* Footer */
.footer {
  padding: 33px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.footer__text {
  font-size: 12px;
  font-weight: 400;
}

.main-wrapper::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  background-image: url("/assets/design/footer-bg.webp");
  background-size: 100%;
  background-position: bottom;
  background-repeat: no-repeat;
  max-width: 1700px;
  width: 100%;
  height: 700px;
  z-index: -1;
}

@media (max-width: 768px) {
  .main-wrapper::before {
    background-image: url("/assets/design/footer-bg-mobile.png");
    width: 130%;
    max-width: 100%;
  }
}

/* Modal  */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal__content {
  position: relative;
  padding: 50px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  max-width: 90%;
  overflow: auto;
}

.modal__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px;
  border-radius: 20px;
}

.modal__text {
  margin-top: 20px;
  font-size: 16px;
  text-align: center;
  color: white;
}

.modal__close {
  position: absolute;
  top: 50px;
  right: 50px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
}

.modal__close img {
  width: 25px;
  height: 25px;
}

@media (max-width: 768px) {
  .modal__content {
    position: relative;
    padding: 10px;
  }

  .modal__close {
    top: 20px;
    right: 20px;
    width: 20px;
    height: 20px;
  }

  .modal__close img {
    width: 20px;
    height: 20px;
  }
}

.b-dics {
    width     : 100%;
    max-width : 100%;
    position  : relative;
    overflow  : hidden;
    display   : -webkit-box;
    display   : -ms-flexbox;
    display   : flex;
    opacity   : 0;
}

.b-dics__section {
    height : 100%;
}

.b-dics__slider:hover :before {
    color        : #FFFFFF;
    border-color : #FFFFFF;
}

.b-dics__text {
    position       : absolute;
    top            : 0;
    left           : 50%;
    padding        : 5px 25px;
    -webkit-transform      : translateX(-50%);
    -ms-transform      : translateX(-50%);
    transform      : translateX(-50%);
    background     : #FFFFFF;
    z-index        : 11;
    font-family    : Arial, serif;
    color          : #3d3d3d;
    -webkit-user-select    : none;
    -moz-user-select    : none;
    -ms-user-select    : none;
    user-select    : none;
    font-size      : 13px;
    text-align     : center;
    margin         : 3px 0;
    white-space    : nowrap;
    opacity        : .7;
    pointer-events : none;
}

.b-dics__image-container {
    width    : 100%;
    height   : 100%;
    display  : block;
    overflow : hidden;
    position : relative;
}

.b-dics__image {
    height      : 100%;
    position    : absolute;
    left        : 0;
    top         : 50%;
    -webkit-transform   : translateY(-50%);
    -ms-transform   : translateY(-50%);
    transform   : translateY(-50%);
    -webkit-user-select : none;
    -moz-user-select : none;
    -ms-user-select : none;
    user-select : none;
    max-width   : none;
}

.b-dics__slider {
    color        : #FFFFFF;
    position     : absolute;
    left         : 100%;
    top          : 0;
    cursor       : pointer;
    -webkit-transform    : translateX(-50%);
    -ms-transform    : translateX(-50%);
    transform    : translateX(-50%);
    height       : 100%;
    width        : 3px;
    padding      : 0 30px;
    z-index      : 1;
    -ms-touch-action : none;
    touch-action : none;
    line-height  : normal;
    opacity      : .7;
}

.b-dics__slider:before {
    content           : '';
    -webkit-mask      : url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTEyIDUxMjsiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+LnN0MHtmaWxsOiNGRkZGRkY7ZW5hYmxlLWJhY2tncm91bmQ6bmV3ICAgIDt9PC9zdHlsZT48cGF0aCBjbGFzcz0ic3QwIiBkPSJNMTgwLjIsMTA4LjFsNjEuNy02Mi4yYzMuOC0zLjgsOC44LTUuOSwxNC4xLTUuOWM1LjMsMCwxMC40LDIuMSwxNC4xLDUuOWw2MS43LDYyLjJjMy45LDMuOSw5LjEsNS45LDE0LjIsNS45czEwLjItMS45LDE0LjEtNS44YzcuOC03LjgsNy45LTIwLjQsMC4xLTI4LjNsLTYxLjctNjIuMkMyODcuMiw2LjMsMjcyLjEsMCwyNTYsMHMtMzEuMiw2LjMtNDIuNSwxNy44TDE1MS44LDgwYy03LjgsNy44LTcuNywyMC41LDAuMSwyOC4zQzE1OS44LDExNiwxNzIuNCwxMTUuOSwxODAuMiwxMDguMXoiLz48cGF0aCBjbGFzcz0ic3QwIiBkPSJNMzMxLjgsNDAzLjlsLTYxLjcsNjIuMmMtMy44LDMuOC04LjgsNS45LTE0LjEsNS45Yy01LjMsMC0xMC40LTIuMS0xNC4xLTUuOWwtNjEuNy02Mi4yYy03LjgtNy44LTIwLjQtNy45LTI4LjMtMC4xYy03LjgsNy44LTcuOSwyMC40LTAuMSwyOC4zbDYxLjcsNjIuMmMxMS40LDExLjQsMjYuNSwxNy44LDQyLjUsMTcuOHMzMS4yLTYuMyw0Mi41LTE3LjhsNjEuNy02Mi4yYzcuOC03LjgsNy43LTIwLjUtMC4xLTI4LjNDMzUyLjIsMzk2LDMzOS42LDM5Ni4xLDMzMS44LDQwMy45eiIvPjwvc3ZnPg==) no-repeat 100% 100%;
    mask              : url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTEyIDUxMjsiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+LnN0MHtmaWxsOiNGRkZGRkY7ZW5hYmxlLWJhY2tncm91bmQ6bmV3ICAgIDt9PC9zdHlsZT48cGF0aCBjbGFzcz0ic3QwIiBkPSJNMTgwLjIsMTA4LjFsNjEuNy02Mi4yYzMuOC0zLjgsOC44LTUuOSwxNC4xLTUuOWM1LjMsMCwxMC40LDIuMSwxNC4xLDUuOWw2MS43LDYyLjJjMy45LDMuOSw5LjEsNS45LDE0LjIsNS45czEwLjItMS45LDE0LjEtNS44YzcuOC03LjgsNy45LTIwLjQsMC4xLTI4LjNsLTYxLjctNjIuMkMyODcuMiw2LjMsMjcyLjEsMCwyNTYsMHMtMzEuMiw2LjMtNDIuNSwxNy44TDE1MS44LDgwYy03LjgsNy44LTcuNywyMC41LDAuMSwyOC4zQzE1OS44LDExNiwxNzIuNCwxMTUuOSwxODAuMiwxMDguMXoiLz48cGF0aCBjbGFzcz0ic3QwIiBkPSJNMzMxLjgsNDAzLjlsLTYxLjcsNjIuMmMtMy44LDMuOC04LjgsNS45LTE0LjEsNS45Yy01LjMsMC0xMC40LTIuMS0xNC4xLTUuOWwtNjEuNy02Mi4yYy03LjgtNy44LTIwLjQtNy45LTI4LjMtMC4xYy03LjgsNy44LTcuOSwyMC40LTAuMSwyOC4zbDYxLjcsNjIuMmMxMS40LDExLjQsMjYuNSwxNy44LDQyLjUsMTcuOHMzMS4yLTYuMyw0Mi41LTE3LjhsNjEuNy02Mi4yYzcuOC03LjgsNy43LTIwLjUtMC4xLTI4LjNDMzUyLjIsMzk2LDMzOS42LDM5Ni4xLDMzMS44LDQwMy45eiIvPjwvc3ZnPg==) no-repeat 100% 100%;
    mask-size         : cover;
    -webkit-mask-size : cover;
    width             : 26px;
    height            : 26px;
    padding           : 0;
    background-color  : currentColor;
    position          : absolute;
    top               : 50%;
    left              : 50%;
    -webkit-transform         : translate(-50%, -50%) rotate(90deg);
    -ms-transform         : translate(-50%, -50%) rotate(90deg);
    transform         : translate(-50%, -50%) rotate(90deg);
    z-index           : 2;
    font-size         : 0;
}

.b-dics__slider:after {
    content          : '';
    position         : absolute;
    left             : 50%;
    top              : 0;
    -webkit-transform        : translateX(-50%);
    -ms-transform        : translateX(-50%);
    transform        : translateX(-50%);
    height           : 100%;
    width            : 3px;
    background-color : currentColor;
    z-index          : 1;
}

.b-dics__image-container:hover .b-dics__text {
    opacity : 1;
}

.b-dics__slider:hover {
    opacity : 1;
}

/* Text Position
   ****************************************************************************/

.b-dics--tp-center .b-dics__text {
    top       : 50%;
    -webkit-transform : translate(-50%, -50%);
    -ms-transform : translate(-50%, -50%);
    transform : translate(-50%, -50%);
    margin    : 0;
}

.b-dics--tp-bottom .b-dics__text {
    top       : initial;
    bottom    : 0;
    -webkit-transform : translate(-50%, -50%);
    -ms-transform : translate(-50%, -50%);
    transform : translate(-50%, -50%);
}

.b-dics--tp-left .b-dics__text {
    left      : 0;
    top       : 50%;
    -webkit-transform : translateY(-50%);
    -ms-transform : translateY(-50%);
    transform : translateY(-50%);
    margin    : 0 16px;
}

.b-dics--tp-right .b-dics__text {
    left      : initial;
    right     : 0;
    top       : 50%;
    -webkit-transform : translateY(-50%);
    -ms-transform : translateY(-50%);
    transform : translateY(-50%);
    margin    : 0 16px;
}

/* Hide texts
   ****************************************************************************/

.b-dics--hide-texts .b-dics__text {
    background : #ffffff;
    opacity    : 0;
}

.b-dics--hide-texts .b-dics__image-container:hover .b-dics__text {
    opacity : 1;
}

/* Vertical Sliders
   ****************************************************************************/

.b-dics--vertical {
    -webkit-box-orient : vertical;
    -webkit-box-direction : normal;
    -ms-flex-direction : column;
    flex-direction : column;
}

.b-dics--vertical .b-dics__section {
    height : auto;
    width  : 100%;
}

.b-dics--vertical .b-dics__image {
    left      : 50%;
    -webkit-transform : translateX(-50%);
    -ms-transform : translateX(-50%);
    transform : translateX(-50%);
    top       : 0;
    width     : 100%;
    height    : auto;
}

.b-dics--vertical .b-dics__slider {
    top       : 100%;
    -webkit-transform : translateY(-50%);
    -ms-transform : translateY(-50%);
    transform : translateY(-50%);
    width     : 100%;
    height    : 3px;
    padding   : 30px 0;
    left      : 0;
}

.b-dics--vertical .b-dics__slider:after {
    top       : 50%;
    left      : 0;
    -webkit-transform : translateY(-50%);
    -ms-transform : translateY(-50%);
    transform : translateY(-50%);
    width     : 100%;
    height    : 3px;
}

.b-dics--vertical .b-dics__slider:before {
    -webkit-transform : translate(-50%, -50%);
    -ms-transform : translate(-50%, -50%);
    transform : translate(-50%, -50%);
}

/* Base nav styling assumed */
.header__nav-item {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; /* below parent */
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  padding: 8px 0;
  list-style: none;
  min-width: 220px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  z-index: 999;
}

.dropdown-menu li {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 8px 12px;
  color: #333;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: #f4f4f4;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  display: block;
}