/*#region common */
.features-page {
    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.42857143;
    color: #393941;
    /* padding-top: 60px; */
}
.td-page-content {
    padding-bottom: unset;
}
.tagdiv-type img {
    margin-bottom: unset;
}
@media (max-width: 767px) {
    .tdc-row.td-stretch-content, .tdc-row-composer.td-stretch-content {
        padding-left: unset;
        padding-right: unset;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  .container {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 20px;
    }
.text-bold {
    font-weight: 700;
}

.text-medium {
    font-weight: 500;
}

.text-center {
    text-align: center;
}

.base-btn {
    padding: 10px 24px;
    border: 1px solid #6A48DF;
    border-radius: 40px;
    text-align: center;
}

a.primary-btn {
    background-color: #FFF;
    color: #6A48DF;
    display: flex;
    align-items: center;
}

a.secondary-btn {
    background-color: #6A48DF;
    color: #FFF;
}

.default-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
}

.default-desc {
    font-size: 20px;
    text-align: center;
    color: #5C5D6D;
}

.section-p {
    padding: 60px 0;
}

.cta-btn {
    display: flex; 
    gap: 16px;
}

@media (min-width: 1300px) {
    .home-page .container {
        width: 1220px;
    }
}

@media (max-width: 979px) {
    .base-btn {
        font-size: 14px;
    }
    .default-title {
        font-size: 28px;
    }

    .default-desc {
        font-size: 18px;
    }

    .section-p {
        padding: 40px 0;
    }
}

/*#endregion */

/*#region banner slider */
.features-banner-slider {
  width: 100%;
  overflow: hidden;
}

.feature-slide {
  width: 100%;
  padding: 60px 0;
  min-height: 500px;
}

.feature-slide-1 {
  background: linear-gradient(135deg, #E0E7FF 0%, #C7D2FE 100%);
  background-image: url('/sites/image/features/bg-img-banner-1.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.feature-slide-2 {
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  background-image: url('/sites/image/features/bg-img-banner-2.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.feature-slide-3 {
  background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
  background-image: url('/sites/image/features/bg-img-banner-3.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.feature-slide-4 {
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    background-image: url('/sites/image/features/bg-img-banner-4.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

.feature-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
}

.feature-text {
  flex: 1;
  width: 100%;
}

.feature-title {
  font-size: 48px;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 16px;
}

.feature-list {
  margin-bottom: 40px;
  max-width: 490px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 18px;
  /* line-height: 1.6; */
  color: #374151;
}

.check-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-btn {
  background: #6A48DF;
  color: white !important;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.feature-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.image-wrapper {
  position: relative;
  width: 100%;
  height: 470px;
  border-radius: 20px;
  overflow: hidden;
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
}

.demo-image {
  position: absolute;
  width: 500px;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: transform 0.3s ease;
  z-index: 10;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.play-button svg {
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

/* Owl Carousel Custom Styles */
.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.owl-carousel .owl-item {
  opacity: 1;
}

.owl-dots {
  text-align: center;
  margin-top: 24px;
  padding-bottom: 0;
}

.owl-theme .owl-nav.disabled+.owl-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
}

.owl-dots .owl-dot {
  display: inline-block;
  width: 20px;
  height: 8px;
  background: #ECEBFC !important;
  border-radius: 100px !important;
  margin: 0 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.owl-dots .owl-dot.active {
  background: #6A48DF !important;
  width: 40px;
  height: 8px;
  border-radius: 100px !important;
}

.owl-theme .owl-dots .owl-dot span {
  display: none !important;
  background: none !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
}

.owl-nav button {
  display: none !important;
}

@media (max-width: 979px) {
  .feature-slide {
    padding: 40px 0;
    min-height: auto;
  }

  .feature-content {
    flex-direction: column;
    gap: 40px;
  }

  .feature-text {
    max-width: 100%;
    text-align: left;
  }

  .feature-title {
    font-size: 36px;
    margin-bottom: 24px;
  }

  .feature-list {
    margin-bottom: 32px;
  }

  .feature-item {
    font-size: 15px;
    gap: 10px;
  }

  .check-icon {
    width: 20px;
    height: 20px;
  }

  .feature-btn {
    padding: 12px 28px;
    font-size: 15px;
  }

  .feature-image {
    width: 100%;
  }

  .image-wrapper {
    max-width: 100%;
    height: 300px;
  }

  .play-button svg {
    width: 48px;
    height: 48px;
  }

  .owl-nav button {
    display: none;
  }
}

/*#endregion banner slider */

/*#region template */
.template {
    padding: 60px 0 36px;
}
.template-content {
    margin-top: 80px;
}
.template-navbar {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #EEEEF0;
    border-radius: 99px;
    width: fit-content;
    padding: 8px 12px;
    margin: 24px auto 40px;
}

.template-navbar-item {
    font-size: 20px;
    padding: 8px 20px;
    cursor: pointer;
}

.template-navbar-item.active {
    background-color: #FFF;
    color: #6A48DF;
    border-radius: 99px;
}

.template-item {
    display: none;
    gap: 24px;
    margin-bottom: 40px;
    grid-template-columns: 1fr 1fr;
}

.template-item.active {
    display: grid;
}

.template-item-img {
    position: relative;
}

.ti-image-inner {
    position: absolute;
    bottom: 2%;
    left: -12%;
    max-width: 65%;
}

.template-item.reverse .template-item-img {
    order: 2;
}

.template-item.reverse .ti-image-inner {
    left: unset;
    right: -12%;
}

.template-item.reverse .template-item-content {
    order: 1;
}

.template-item-content {
    width: 100%;
    max-height: 500px;
    /* background-color: #F7F7F8; */
    padding: 40px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.template-item-title {
    font-weight: 500;
    font-size: 32px;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}
.template-item-desc {
    margin-bottom: 20px;
}
.template-item-desc div {
    background: url(/sites/image/home/ic-tick.svg) no-repeat left 2px;
    background-size: 24px;
    padding-left: 40px;
    margin-bottom: 16px;
    font-size: 18px;
}

.template .cta-btn {
    margin-top: 36px;
}

@media (min-width: 1300px) {
    .template .container {
        width: 1104px;
    }
}

@media (max-width: 979px) {
    .template {
        padding: 40px 0;
    }

    .template-item,
    .template-item.reverse {
        grid-template-columns: 1fr;
    }

    .template-item.reverse .template-item-img {
        order: 1;
    }

    .template-item-title {
        font-size: 24px;
    }

    .template-item-desc div {
        font-size: 18px;
    }

    .template-item-content {
        padding: 24px;
    }

    .template-item-img {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 767px) {
    .template-navbar {
        gap: 6px;
        padding: 8px;
    }

    .template-navbar-item {
        padding: 4px;
        font-size: 14px;
        text-align: center;
    }

    .template-item-content {
        padding: 16px;
    }

    .template-item-title {
        font-size: 20px;
    }

    .template-item-desc div {
        background-size: 20px;
        padding-left: 32px;
        font-size: 16px;
    }

    .template .cta-btn {
        margin-top: 24px;
        display: grid;
        justify-content: center;
    }
}

/*#endregion */

/*#region register */
.register {
    background: url(/sites/image/home/bg-register.webp) no-repeat center center;
    background-size: cover;
}

.register-wrap {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 32px;
}

.register-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 24px;
}

.register-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
}

.register-desc div {
    background: url(/sites/image/home/ic-tick.svg) no-repeat left 2px;
    background-size: 24px;
    padding-left: 40px;
    margin-bottom: 16px;
    font-size: 18px;
    color: #525252;
}

.register-form {
    max-width: 450px;
    box-shadow: 0 0 24px 0 rgba(18, 29, 102, 0.15);
    border-radius: 20px;
    background-color: #FFF;
    padding: 24px;
}

.register-form-title {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    padding-bottom: 16px;
}

.register form[lz-id='bad0cecd-5b74-4838-9b2e-b3a11f21f9f4'].private-form {
    padding: 0 !important;
}

.register form[lz-id='bad0cecd-5b74-4838-9b2e-b3a11f21f9f4'].private-form .form-row {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

.register form[lz-id='bad0cecd-5b74-4838-9b2e-b3a11f21f9f4'].private-form .form-row .field-wrapper {
    padding: 0 0 15px !important;
}

.register form[lz-id='bad0cecd-5b74-4838-9b2e-b3a11f21f9f4'].private-form .form-row .field-wrapper .field-inner {
    padding: 0 !important;
}

.register form[lz-id='bad0cecd-5b74-4838-9b2e-b3a11f21f9f4'].private-form .form-row .field-wrapper .field-inner label {
    font-family: GoogleSans, Arial, sans-serif;
    font-size: 16px !important;
    line-height: 1.42857143;
    color: #0F172A !important;
}

.register form[lz-id='bad0cecd-5b74-4838-9b2e-b3a11f21f9f4'].private-form .form-row .field-wrapper .field-inner .help-text {
    margin: 0 !important;
}

.register form[lz-id='bad0cecd-5b74-4838-9b2e-b3a11f21f9f4'].private-form .form-row .field-wrapper .field-inner .lz-input:not([type="radio"]):not([type="checkbox"]) {
    font-family: GoogleSans, Arial, sans-serif !important;
    font-size: 16px !important;
    color: #0F172A !important;
    border-radius: 4px !important;
}

.register form[lz-id='bad0cecd-5b74-4838-9b2e-b3a11f21f9f4'].private-form .submit-wrapper {
    border: 0 !important;
    padding: 5px 0 0 !important;
}

.register form[lz-id='bad0cecd-5b74-4838-9b2e-b3a11f21f9f4'].private-form .submit-wrapper .btn-form-submit {
    background: #6A48DF !important;
    height: 42px !important;
    min-height: 42px !important;
    font-family: GoogleSans, Arial, sans-serif !important;
    font-size: 16px !important;
    border-radius: 4px !important;
}

@media (max-width: 979px) {
    .register-wrap {
        flex-direction: column;
    }

    .register-form {
        margin: 0 auto;
    }

    .register-logo {
        margin-bottom: 16px;
        justify-content: center;
    }

    .register-title {
        font-size: 20px;
        text-align: center;
        margin-bottom: 16px;
    }
}

@media (max-width: 767px) {
    .register-logo {
        font-size: 24px;
    }

    .register-title {
        font-size: 18px;
    }

    .register-desc div {
        background-size: 20px;
        padding-left: 32px;
        font-size: 16px;
    }

    .register-wrap {
        gap: 16px;
    }
}

/*#endregion*/