/* common */
.main {
  color: #fff;
  line-height: 1.45;
  background-color: #121212;
}
.main .base-maxwidth {
  max-width: 1400px;
}
.main h1 {
  font-size: 48px;
  line-height: 1.45;
  font-weight: 800;
}

.main h2 {
  font-size: 40px;
  line-height: 1.45;
  font-weight: 800;
}
.main p {
  line-height: 1.45;
}

.main video {
  display: block;
}

.product-btns-group {
  --btn-border-radius: 10px;
  --btn-try-bg-color: #7B4BFF;
  --btn-color: #fff;
  --btn-width: 200px;
  --btn-height: 56px;
  --btn-transtion: 0.3s cubic-bezier(.4,0,.2,1);
  --btn-scale: 1;
}

.product-btns-group .btn-try,
.product-btns-group .btn-buy {
  width: var(--btn-width);
  height: var(--btn-height);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--btn-border-radius);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  transition: all var(--btn-transtion);
  z-index: 0;
}

.product-btns-group .btn-try {
  --btn-color: var(--btn-try-bg-color);
}

.product-btns-group .btn-buy {
  border: 1px solid #fff;
}

.product-btns-group .btn-try::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--btn-try-bg-color);
  border-radius: var(--btn-border-radius);
  transition: all var(--btn-transtion);
  z-index: 1;
}

.product-btns-group .btn-try:hover {
  --btn-try-bg-color: #5A35CF;
}

.product-btns-group .btn-buy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFFFFF1A;
  border-radius: var(--btn-border-radius);
  transition: all var(--btn-transtion);
  z-index: 1;
  backdrop-filter: blur(4px);
}

.product-btns-group .btn-buy:hover::before {
  background: rgba(255, 255, 255, 0.4);
}

.product-btns-group .btn-try span,
.product-btns-group .btn-buy span {
  position: relative;
  z-index: 1;
}

.product-btns-group .btn-try .dots-border {
  --size-border: calc(100% + 3px);
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: var(--size-border);
  height: var(--size-border);
  background-color: transparent;
  border-radius: var(--btn-border-radius);
  z-index: 0;
}

.product-btns-group .btn-try .dots-border::before {
  content: "";
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: left;
  transform: rotate(0deg);
  width: 100%;
  height: 2rem;
  background-color: #fff;
  mask: linear-gradient(transparent 0%, white 120%);
  animation: rotate 6.5s cubic-bezier(.4,0,.2,1) infinite;
}

@keyframes rotate {
  to {
      transform: rotate(360deg)
  }
}

.swiper-button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.06);
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  border-radius: 50%;
}

.swiper-button svg {
  user-select: none;
  pointer-events: none;
}

.swiper-button:hover {
  background: rgba(255, 255, 255, 0.3);
}

.swiper-button-next {
  transform: rotate(180deg);
}

.swiper-pagination {
  display: none;
}

@media (max-width: 1430px) {
  .main .base-maxwidth {
    padding: 0 15px;
  }
}

@media (max-width: 820px) {
  .main h1,
  .main h2 {
    font-size: 26px;
  }

  .main .swiper-container {
    margin-bottom: 30px;
  }

  .swiper-pagination {
    display: flex;
    margin: 20px auto 0;
    width: 100%;
    justify-content: center;
    bottom: 0;
  }

  .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    border-radius: 10px;
    margin: 0 5px;
    background: #FFFFFF;
    opacity: 0.32;
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
  }

  .swiper-pagination-bullet-active {
    opacity: 1;
    background: #7B4BFF;
    width: 38px;
  }
}
/* common */

/* banner */
.banner {
  width: 100%;
  position: relative;
}

.banner::before {
  display: block;
  content: '';
  height: calc(100vh - 60px);
  min-height: 460px;
  /* padding-top: 38.54%; */
}

.banner .banner-video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 0;
}

.banner .banner-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.banner .banner-video video.active {
  opacity: 1;
  z-index: 1;
}

.banner-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #17151C4D;
  color: #fff;
  text-align: center;
  z-index: 2;
}

.banner-content .base-maxwidth {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.banner-content .banner-desc {
  font-size: 20px;
  line-height: 1.45;
  font-weight: 500;
  margin: 26px 0 56px;
  max-width: 620px;
}

.banner-content .banner-btns {
  display: flex;
  align-items: center;
  width: fit-content;
}

.banner-btns .product-button {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.banner-btns .product-button + .product-button {
  margin-left: 40px;
}

.banner-btns .product-button .btn-text {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.banner-btns .product-button .btn-text svg {
  margin-right: 8px;
}

@media (max-width: 820px) {
  .banner-content .banner-desc {
    font-size: 15px;
    margin: 22px 0 36px
  }
}

@media (max-width: 580px) {
  .banner-content .banner-btns {
    flex-direction: column;
  }

  .banner-btns .product-button + .product-button {
    margin: 30px 0 0;
  }
}
/* banner */

/* multiple-ways */
.multiple-ways {
  padding: 140px 0 70px;
}

.ways-list {
  position: relative;
}

.ways-list li {
  --li-bg-rgb-color: 28, 26, 34;
  position: sticky;
  top: 60px;
  margin-top: 35px;
  border-radius: 30px;
  background: rgba(var(--li-bg-rgb-color), 1);
  transform: scale(0.85) translateY(40px);
  transform-origin: top center;
  transition: transform .9s cubic-bezier(.16,1,.3,1);
}

.ways-list li.curr {
  transform: scale(1) translateY(0);
}

.ways-list li:nth-of-type(2n) {
  --li-bg-rgb-color: 36, 34, 42;
}

.ways-list .way-card {
  height: calc(100vh - 60px);
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: center;
}

.ways-list .way-card .btn-try {
  --btn-width: 250px;
  --btn-height: 62px;
}

.way-card .way-left {
  width: 46.4%;
  padding-right: 7.4%;
}

.way-card .way-left h3 {
  font-size: 32px;
  line-height: 1.45;
  font-weight: 800;
}

.way-card .way-left .card-desc {
  font-size: 18px;
  margin: 30px 0 40px;
}

.way-card .way-left .way-left-video {
  display: none;
}

.way-card .way-right {
  width: 53.6%;
  position: relative;
  overflow: hidden;
}

.way-card .video-wrapper {
  max-width: 745px;
  width: 100%;
  aspect-ratio: 1920 / 1080;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
  z-index: 0;
}

.way-card .video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  
}

.way-card .video-wrapper video.active {
  opacity: 1;
  z-index: 1;
}

@media (max-width: 1200px) {
  .ways-list .way-card {
    flex-direction: column;
    justify-content: center;
  }

  .way-card .way-left {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 0;
  }

  .way-card .way-left .way-left-video {
    display: block;
    margin: 0 auto 40px;
    max-width: 680px;
  }

  .ways-list .way-card .btn-try {
    margin: 0 auto;
  }

  .way-card .way-right {
    display: none;
  }
}

@media (max-width: 820px) {
  .multiple-ways {
    padding: 60px 0 30px;
  }

  .ways-list li {
    margin: 25px 10px 0;
    border-radius: 18px;
    transform: none;
    position: relative;
    top: 0;
  }

  .ways-list li.curr {
    transform: none;
  }

  .ways-list .way-card {
    height: auto;
    padding: 40px 12px;
  }

  .way-card .way-left h3 {
    font-size: 20px;
  }

  .way-card .way-left .card-desc {
    font-size: 14px;
    margin: 15px 0 25px;
  }

  .way-card .way-left .way-left-video {
    margin-bottom: 30px;
  }

  .way-card .video-wrapper {
    border-radius: 10px;
  }
}
/* multiple-ways */

/* unlock-potential */
.unlock-potential {
  padding: 70px 0 140px;
}

.unlock-top {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px 0 45px;
}

.unlock-top li {
  max-width: 320px;
  width: calc(25% - 30px);
  height: 80px;
  margin: 0 15px 15px;
  padding: 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #201F22;
  border-radius: 15px;
  font-size: 24px;
  font-weight: 700;
  color: #B8B6BD;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
}

.unlock-top li.active,
.unlock-top li:hover {
  color: #fff;
  background-color: #7B4BFF;
}

.unlock-bottom .swiper-slide {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  max-width: 1600px;
}

.unlock-bottom .swiper-slide .slide-content{
  position: absolute;
  width: 100%;
  height: 220px;
  background: linear-gradient(360deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  left: 0;
  bottom: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 20px 48px;
}

.unlock-bottom .swiper-slide .slide-content h3 {
  font-size: 30px;
  line-height: 1.45;
  margin-bottom: 5px;
  font-weight: 700;
}

.unlock-bottom .swiper-slide .slide-content  p {
  font-size: 20px;
}

@media (max-width: 1200px) {
  .unlock-bottom {
    margin: 0 10px;
    border-radius: 32px;
    overflow: hidden;
  }

  .unlock-bottom .swiper-slide .slide-content {
    padding-bottom: 30px;
  }

  .unlock-top li {
    width: calc(25% - 20px);
    height: 60px;
    margin: 0 10px 15px;
    font-size: 20px;
  }
}

@media (max-width: 1024px) {
  .unlock-top li {
    width: calc(50% - 20px);
  }

  .unlock-top li:hover {
    background-color: #201F22;
  }

  .unlock-top li.active:hover {
    background-color: #7B4BFF;
  }
}

@media (max-width: 820px) {
  .unlock-potential {
    padding: 30px 0 60px;
  }

  .unlock-top {
    margin: 20px auto 20px;
    max-width: 700px;
  }

  .unlock-top li {
    width: 240px;
    height: 45px;
    font-size: 14px;
    border-radius: 8px;
    margin: 0 8px 15px;
  }

  .unlock-bottom {
    position: relative;
    border-radius: 15px;
  }

  .unlock-bottom .swiper-container {
    border-radius: 15px;
  }

  .unlock-bottom .swiper-slide {
    border-radius: 15px;
  }

  .unlock-bottom .swiper-slide .slide-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .unlock-bottom .swiper-slide .slide-content p {
    font-size: 15px;
  }
}

@media (max-width: 580px) {
  .unlock-top li {
    width: calc(50% - 16px);
  }
}

@media (max-width: 350px) {
  .unlock-top li {
    width: calc(100% - 16px);
  }
}
/* unlock-potential */

/* trust */
.trust {
  padding: 80px 0 70px;
  background: linear-gradient(180deg, rgba(123, 75, 255, 0.49) 1.39%, rgba(18, 18, 18, 0) 81.21%);
}

.trust .desc {
  margin-top: 15px;
  text-align: center;
}

.trust-list {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  row-gap: 35px;
  column-gap: 45px;
}

.trust-list .trust-item {
  --item-border-color-1: #C3B2F2;
  --item-border-color-2: #5E3ABF;
  --item-bg-color-1: rgba(0, 0, 0, 0);
  --item-bg-color-2: #7B4BFF;
  padding: 1px;
  border-radius: 20px;
  position: relative;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
}

.trust-list .trust-item::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, var(--item-border-color-1)  0%, var(--item-border-color-2)  100%);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.trust-list .trust-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(0deg, var(--item-bg-color-1) 0%, var(--item-bg-color-2) 100%);
  padding: 40px 30px;
  border-radius: 19px;
  height: 100%;
  position: relative;
  z-index: 2;
}

.trust-list .trust-card img {
  width: 80px;
  height: 80px;
}
.trust-list .trust-card .item-title {
  font-size: 18px;
  font-weight: 700;
  margin: 40px 0 20px;
}

.trust-list .trust-card .item-desc {
  font-size: 16px;
}

.trust-list .trust-item:nth-of-type(2) {
  --item-border-color-1: #C3B2F2;
  --item-border-color-2: #8E3ABF;
  --item-bg-color-2: #B44BFF;
}

.trust-list .trust-item:nth-of-type(3) {
  --item-border-color-1: #B2F2D7;
  --item-border-color-2: #467B59;
  --item-bg-color-2: #5CC68D;
}

.trust-list .trust-item:nth-of-type(4) {
  --item-border-color-1: #B2D4F2;
  --item-border-color-2: #51678E;
  --item-bg-color-2: #4B9CFF;
}

.trust-list .trust-item:nth-of-type(5) {
  --item-border-color-1: #F2E2B2;
  --item-border-color-2: #8E7F51;
  --item-bg-color-2: #FFCB6B;
}

.trust-list .trust-item:nth-of-type(6) {
  --item-border-color-1: #B2F0F2;
  --item-border-color-2: #51818E;
  --item-bg-color-2: #6BE6FF;
}

@media (max-width: 1200px) {
  .trust-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .trust {
    padding: 60px 0 30px;
    background: linear-gradient(180deg, rgba(123, 75, 255, 0.49) 1.39%, rgba(18, 18, 18, 0) 61.21%);
  }

  .trust .desc {
    margin-top: 20px;
  }

  .trust-list {
    margin-top: 30px;
    row-gap: 25px;
    column-gap: 25px;
  }

  .trust-list .trust-item {
    border-radius: 15px;
  }

  .trust-list .trust-item:hover {
    transform: none;
  }

  .trust-list .trust-card {
    padding: 25px 20px;
    border-radius: 14px;
    background: linear-gradient(3.61deg, var(--item-bg-color-1) 2.97%, var(--item-bg-color-2) 118.99%);
  }

  .trust-list .trust-card img {
    width: 60px;
    height: 60px;
  }

  .trust-list .trust-card .item-title {
    font-size: 16px;
    margin: 20px 0 10px;
  }

  .trust-list .trust-card .item-desc {
    font-size: 14px;
  }
}

@media (max-width: 580px) {
  .trust-list {
    margin-top: 20px;
    row-gap: 15px;
    column-gap: 15px;
    grid-template-columns: 1fr;
  }

  .trust-list .trust-card img {
    width: 50px;
    height: 50px;
  }
}
/* trust */

/* steps */
.steps {
  padding: 70px 0 140px;
}

.steps-swiper {
  margin-top: 50px;
  display: flex;
  align-items: center;
}

.steps-swiper .step-left {
  width: 50%;
  flex-shrink: 0;
  position: relative;
}

.steps-swiper .step-left .swiper-container {
  border-radius: 20px;
  overflow: hidden;
}

.steps-swiper .step-right {
  width: 50%;
  height: 210px;
  padding-left: 6%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.step-img {
  border-radius: 20px;
  object-fit: cover;
  width: 100%;
}

.step-right-list {
  flex-grow: 1;
  position: relative;
}

.step-right-list li {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 0;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
}

.step-right-list li.active {
  opacity: 1;
  z-index: 1;
}

.step-right .step-pagination-title {
  font-size: 24px;
  font-weight: 700;
}

.step-right .step-pagination-desc {
  font-size: 16px;
  margin-top: 10px;
}

.setp-right-pagination {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.setp-right-pagination i {
  display: block;
  width: 48px;
  height: 48px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.06);
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  border-radius: 24px;
}

.setp-right-pagination i.btn-next {
  transform: rotate(180deg);
}

.setp-right-pagination i:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.setp-right-pagination p {
  margin: 0 20px;
}

@media (max-width: 1200px) {
  .steps-swiper .step-right {
    padding-left: 30px;
  }
}

@media (max-width: 820px) {
  .setp-right-pagination {
    display: none;
  }

  .steps {
    padding: 30px 0 60px;
  }

  .steps-swiper {
    flex-direction: column-reverse;
    margin-top: 20px;
  }

  .steps-swiper .step-right {
    padding-left: 0;
    width: 100%;
    max-width: 460px;
    height: 94px;
    margin: 0 auto 30px;
  }

  .step-right .step-pagination-title {
    font-size: 18px;
    line-height: 36px;
  }

  .step-right .step-pagination-desc {
    font-size: 15px;
    line-height: 24px;
  }

  .steps-swiper .step-left {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
  }

  .steps-swiper .step-left .swiper-container,
  .step-video {
    border-radius: 15px;
  }
}
/* steps */

/* reviews */
.reviews {
  padding: 90px 0 110px;
  background: #1C1A22;
}

.reviews .reviews-swiper-container {
  margin-top: 70px;
  display: flex;
}

.reviews-avatar {
  margin-right: 30px;
  flex-shrink: 0;
  padding-bottom: 70px;
  display: flex;
  align-items: center;
} 

.reviews-avatar .swiper-container {
  width: 315px;
  height: 315px;
  border-radius: 30px;
}

.reviews-avatar  .swiper-slide {
  border-radius: 30px;
  overflow: hidden;
}

.reviews-content {
  position: relative;
  width: calc(100% - 345px);
}

.reviews-content .swiper-container {
  height: 315px;
  background: #34313D;
  border: 1px solid #716C7E;
  border-radius: 30px;
}

.reviews-content .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 7%;
  height: auto;
}

.reviews-content .swiper-slide h3 {
  font-size: 28px;
  line-height: 1.45;
  font-weight: 700;
}

.reviews-content .swiper-slide p {
  margin: 25px 0;
  flex-grow: 1;
}

.reviews-content .swiper-slide .revies-star {
  display: flex;
  align-items: center;
}

.reviews-content .swiper-slide .revies-star svg {
  margin-right: 4px;
}

.reviews-content .reviews-content-btns {
  margin-top: 30px;
  display: flex;
  justify-content: flex-end;
}

.reviews-content .swiper-button {
  position: relative;
  left: unset;
  right: unset;
  margin-top: 0;
  top: unset;
}

.reviews-content-btns .swiper-button-prev {
  margin-right: 20px;
}

@media (max-width: 1200px) {
  .reviews-avatar .swiper-container {
    width: 240px;
    height: 240px;
  }

  .reviews-content .swiper-slide {
    padding: 38px 30px;
  }

  .reviews-content .swiper-container {
    height: 240px;
  }

  .reviews-content {
    width: calc(100% - 270px);
  }
}

@media (max-width: 820px) {
  .reviews {
    padding: 60px 0;
  }

  .reviews .reviews-swiper-container {
    margin-top: 50px;
    position: relative;
    padding-top: 42px;
  }

  .reviews-avatar {
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    z-index: 1;
  }

  .reviews-avatar .swiper-container {
    width: 100px;
    height: 100px;
    border-radius: 15px;
  }

  .reviews-avatar .swiper-slide {
    border-radius: 15px;
  }

  .reviews-content {
    width: 100%;
    z-index: 0;
    max-width: 460px;
    margin: 0 auto;
  }

  .reviews-content .swiper-container {
    border-radius: 15px;
    min-height: unset;
    height: unset;
  }

  .reviews-content .swiper-slide {
    padding: 77px 20px 30px;
    text-align: center;
    align-items: center;
    height: auto;
  }

  .reviews-content .reviews-content-btns {
    display: none;
  }

  .reviews-content .swiper-slide .revies-star svg {
    margin: 0 2px;
  }

  .reviews-content .swiper-slide h3 {
    font-size: 20px;
  }

  .reviews-content .swiper-slide p {
    margin: 16px 0 40px;
  }
}
/* reviews */

/* article */
.article {
  padding: 140px 0 70px;
}

.article-swiper {
  margin-top: 50px;
  position: relative;
}

.article-swiper .swiper-container {
  width: calc(100% - 200px);
  border-radius: 20px;
  overflow: hidden;
}

.article-swiper .swiper-button {
  width: 55px;
  height: 55px;
}

.article-swiper .swiper-slide {
  border: 1px solid #333336;
  background-color: #1D1D1F;
  border-radius: 20px;
  padding: 20px 20px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
}

.article-swiper .swiper-slide .article-thumbnail {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 61.25%;
  overflow: hidden;
  border-radius: 12px;
  background-color: #D9D9D9;
}

.article-swiper .swiper-slide .article-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-swiper .swiper-slide .article-title {
  margin: 35px 0 16px;
  color: #DDDDDD;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.article-swiper .swiper-slide .article-desc {
  color: #868586;
  flex-grow: 1;
  text-align: center;
}

.article .product-btns-group {
  margin: 50px auto 0;
  display: flex;
  justify-content: center;
}

.article .product-btns-group .btn-try {
  --btn-width: 250px;
  --btn-height: 62px;
}

@media (max-width: 820px) {
  .article {
    padding: 60px 0 30px;
  }

  .article-swiper {
    margin: 25px auto 0;
    padding-bottom: 2px;
    max-width: 460px;
  }

  .article-swiper .swiper-container {
    width: 100%;
    border-radius: 15px;
  }

  .article-swiper .article-btns {
    display: none;
  }

  .article .product-btns-group {
    margin-top: 30px;
  }

  .article-swiper .swiper-slide {
    border-radius: 15px;
  }

  .article-swiper .swiper-slide .article-title {
    margin: 20px 0;
    font-size: 16px;
  }

  .article-swiper .swiper-slide .article-desc {
    font-size: 14px;
  }
}
/* article */

/* faqs */
.faqs {
  padding: 70px 0 140px;
}

.faqs .faq-list {
  margin-top: 35px;
  background: #1C1A22;
  border: 1px solid;
  border-image-source: linear-gradient(180deg, #5E5575 0%, #4D4959 100%);
  padding: 15px 60px 0;
  border-radius: 30px;
}

.faq-list .faq-item {
  padding: 35px 0;
}

.faq-list .faq-item:not(:last-child) {
  border-bottom: 1px solid #393943;
}

.faq-list .faq-item .item-question {
  font-size: 22px;
  font-weight: 700;
  color: #CDCAD4;
  position: relative;
  padding-right: 44px;
  cursor: pointer;
  transition: color 0.3s cubic-bezier(.4,0,.2,1);
}

.faq-list .faq-item.curr .item-question {
  color: #AF93FF;
}

.faq-list .faq-item .item-question svg {
  position: absolute;
  top: 5px;
  right: 11px;
  color: #625E70;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
}

.faq-list .faq-item.curr .item-question svg {
  color: #AF93FF;
  transform: rotate(135deg);
}

.faq-list .faq-item .item-answer {
  font-size: 16px;
  line-height: 1.4;
  color: #D7D7D7;
  padding: 14px 44px 0 0;
  display: none;
  height: auto;
}

@media (max-width: 820px) {
  .faqs {
    padding: 30px 0 60px;
  }

  .faqs .faq-list {
    margin-top: 20px;
    border-radius: 15px;
    padding: 10px 16px;
  }

  .faq-list .faq-item {
    padding: 20px 0;
  }

  .faq-list .faq-item .item-question {
    font-size: 16px;
  }

  .faq-list .faq-item .item-question svg {
    top: 1px;
    width: 16px;
    height: 16px;
  }

  .faq-list .faq-item .item-answer {
    padding-top: 12px;
    font-size: 14px;
  }
}

/* faqs */

/* bottom-banner */
.bottom-banner {
  height: 647px;
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(4, 33, 65, 1);
  overflow: hidden;
}

.bottom-banner::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #0000004A;
  z-index: 2;
}

.bottom-banner-bg {
  position: absolute;
  width: 1920px;
  height: 647px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url(https://images.monimaster.com/monimasteren/assets/product/ai_video/slogan-bg.jpg) no-repeat center / cover;
  z-index: 0;
}

.bottom-banner-bg::before,
.bottom-banner-bg::after {
  position: absolute;
  content: '';
  width: 300px;
  height: 100%;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.bottom-banner-bg::before {
  left: 0;
  transform: translateX(-40%);
  background: linear-gradient(90deg, rgba(4, 33, 65, 1) 40%, rgba(4, 33, 65, 0) 100%);
}

.bottom-banner-bg::after {
  right: 0;
  transform: translateX(40%);
  background: linear-gradient(90deg, rgba(4, 33, 65, 0) 0%, rgba(4, 33, 65, 1) 60%);
}

.bottom-banner .base-maxwidth {
  position: relative;
  z-index: 2;
}

.bottom-banner .bottom-desc {
  font-size: 20px;
  font-weight: 500;
  margin: 26px 0 40px;
  text-align: center;
}

.bottom-banner .product-btns-group .product-button {
  display: flex;
  justify-content: center;
}

.bottom-banner .product-button .btn-buy {
  margin-left: 40px;
}

@media (min-width: 1921px) {
  .bottom-banner-bg::before,
  .bottom-banner-bg::after {
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 820px) {
  .bottom-banner .base-maxwidth {
    transform: translateY(-30px);
  }
  .bottom-banner-bg {
    width: 820px;
    background-image: url(https://images.monimaster.com/monimasteren/assets/product/ai_video/slogan-bg-820.jpg);
  }

  .bottom-banner .bottom-desc {
    margin: 20px 0 50px;
  }
}

@media (max-width: 580px) {
  .bottom-banner .base-maxwidth {
    transform: translateY(-42px);
  }
  .bottom-banner .product-btns-group .product-button {
    flex-direction: column;
    align-items: center;
  }

  .bottom-banner .product-button .btn-try,
  .bottom-banner .product-button .btn-buy {
    --btn-width: 240px;
  }

  .bottom-banner .product-button .btn-buy {
    margin: 30px 0 0;
  }
}
/* bottom-banner */

/* online-trial */
.online-trial {
  position: fixed;
  right: 0;
  bottom: 370px;
  z-index: 10;
}

.online-trial a {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.31);
  border-right: 0;
  border-radius: 10px 0 0 10px;
  padding: 12px 10px;
  color: #fff;
  font-size: 13px;
  position: relative;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
}

.online-trial a:hover {
  border-color: rgba(255, 255, 255, 0.75);;
}

.online-trial a::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  border-radius: inherit;
  width: 100%;
  height: 100%;
  background: #8254FE7D;
  z-index: -1;
  backdrop-filter: blur(20px);
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
}

.online-trial a:hover::before {
  background: #6b3befb3;
}

.online-trial a svg {
  margin-left: 6px;
}

.online-trial-bottom {
  display: none !important;
}

@media (max-width: 820px) {
  .online-trial a {
    font-size: 12px;
    padding: 10px 8px;
  }
}

@media (max-width: 768px) {
  .online-trial {
    display: none;
  }
  .online-trial-bottom {
    position: fixed;
    width: calc(100% - 16px);
    left: 8px;
    bottom: 8px;
    border-radius: 10px;
    z-index: 10;
    display: block !important;
    transform: translateY(calc(100% + 8px));
    opacity: 1;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }

  .online-trial-bottom.active {
    transform: translateY(0);
    opacity: 1;
  }

  .online-trial-bottom .bottom-body {
    display: flex;
    align-items: center;
    padding: 18px;
  }

  .online-trial-bottom::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: inherit;
    backdrop-filter: blur(20px);
    background: linear-gradient(255.38deg, rgba(138, 140, 255, 0.81) -13.69%, rgba(236, 197, 255, 0.81) 40.7%, rgba(254, 217, 255, 0.81) 95.1%);
    z-index: -1;
  }

  .online-trial-bottom .bottom-close {
    position: absolute;
    width: 18px;
    height: 18px;
    background: url(https://images.monimaster.com/monimasteren/assets/product/ai_video/close-icon.svg) no-repeat center;
    cursor: pointer;
    top: -6px;
    right: -4px;
  }

  .online-trial-bottom .bottom-close:hover {
    transform: rotate(90deg);
  }

  .online-trial-bottom .bottom-icon {
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
  }

  .online-trial-bottom p {
    margin: 0 20px 0 8px;
    font-size: 13px;
    color: #2E2E2E;
    font-weight: 600;
    flex-grow: 1;
  }
  .online-trial-bottom .start-btn {
    flex-shrink: 0;
    width: 112px;
    height: 32px;
    background-color: #FF9933;
    border-radius: 6px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
  }

  .online-trial-bottom .start-btn:hover {
    background-color: #FF9933CC;
  }
}

/* online-trial */

/* halloween */
.online-trial {
  bottom: 486px;
}