/* header */

.header-topbar {
    background: var(--color-marine-500);
    padding: 8.5px 0;
    max-height: 238px;
    transition: all 0.3s ease;
}
.header-topbar.is-hidden {
    max-height: 0;
    padding: 0;
    opacity: 0;
}
.header-topbar .d-flex {
    color: var(--color-white);
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}
.header-topbar .d-flex strong {
    font-weight: 600;
}
.header-topbar .d-flex a {
    color: var(--color-white);
    text-decoration: underline;
    font-weight: 500;
}
.header-topbar .d-flex a:hover {
    text-decoration: none;
}
.close-topbar {
    cursor: pointer;
}

.header-main {
    border-bottom: 1px solid var(--color-light-divider);
    height: 86px;
    display: flex;
    align-items: center;
    position: relative;
    flex-wrap: wrap;
}
.header-main.is-sticky {
    background: var(--color-white);
}
.header-main .logo {
    max-width: 119px;
}
.btn-header {
    display: flex;
    gap: 8px;
}
.header-main .toggle-menu,
.btn-header .btn {
    min-width: unset !important;
    width: unset !important;
} 
.header-main .toggle-menu {
    height: 44px;
    padding: 0 24px;
    cursor: pointer;
}
.header-main .menu {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 12px;
}
.header-main .menu > li > a {
    padding: 10.5px 16px;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-blue-950);
    border-radius: 6px;
}
.header-main .menu > li > a:hover {
    text-decoration: none !important;
    background: var(--color-bg);
}
.menu-arrow {
    width: 12px;
    display: inline-block;
    margin-left: 8px;
    transform-origin: center;
}
.header-main .menu > li > a:hover .menu-arrow {
    transform: rotate(180deg);
}
.header-main .row > div {
    align-items: center;
}
.header-main .row > div:nth-child(1) {
    gap: 56px;
}
.header-main .row > div:nth-child(2) {
    gap: 8px;
    max-width: 30%;
    justify-content: flex-end;
}


.header-main .toggle-menu svg path {
    transition: all 0.3s ease;
}
.header-main .toggle-menu.is-active {
    background: var(--color-blue-950);
    border-color: var(--color-blue-950);
}
.menu-mobile {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;

    background: #fff;
    overflow: hidden;
    top: 100%;

    transform: translateY(10px);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    box-shadow: 0px 6px 13.1px 0px rgba(0, 0, 0, 0.05);
}
.menu-mobile.is-active {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}
.header-main .menu-mobile .menu {
    display: flex;
    list-style: none;
    gap: 4px;
    flex-direction: column;
    padding: 24px 20px;
}
.menu-mobile .menu.open .mobile-menu__link {
    display: none;
}
.mobile-menu__item {
    position: relative;
}
.mobile-menu__link {
    display: flex;
    justify-content: space-between;
    padding: 16px !important;
    background: #f3f4f6;
    border-radius: 6px !important;
    border: none;
    width: 100%;
    margin: 0;
    font-size: 20px !important;
    line-height: 1.2;
    font-weight: 500;
    height: 56px;
    cursor: pointer;
}
.mobile-submenu {
    inset: 0;
    background: #fff;
    /* transition: all 0.3s ease; */
    opacity: 0;
    visibility: hidden;
    max-height: 0;
}
.mobile-menu__item.open .mobile-submenu {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
    max-height: 100%;
}
.mobile-submenu__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.mobile-submenu__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    overflow-y: auto;
    height: calc(100dvh - 200px);
}
.back-btn {
    display: flex;
    gap: 8px;
    padding: 16px !important;
    background: #f3f4f6;
    border-radius: 6px !important;
    border: none;
    width: 100%;
    margin: 0;
    font-size: 20px !important;
    line-height: 1.2;
    font-weight: 500;
    height: 56px;
}
.mobile-submenu label {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 12px;
  }
.mobile-card {
    display: flex;
    gap: 12px;
    text-decoration: none;
    padding: 12px;
    border-radius: 9px;
    align-items: center;
    cursor: pointer;
}
.mobile-card:not:(:last-child) {
    margin-bottom: 4px;
}
.mobile-card__title {
    font-weight: 500;
    font-size: 14px;
    color: var(--color-blue-950);
}
.mobile-card__text {
    font-size: 12px;
    color: rgb(126, 133, 154);
    letter-spacing: -0.1px;
}
.mobile-card:hover {
    text-decoration: none !important;
    background: #F8F8F8;
}



.mega-menu-wrap {
    padding-top: 22px;
    position: absolute;
    z-index: 10;
    left: 0;
    top: 44px;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
}
.mega-menu {
    background: #fff;
    padding: 20px 12px;
    border: 1px solid rgb(231, 233, 240);
    border-radius: 8px;
}
.menu-item:hover .mega-menu-wrap {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.mega-menu label {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 12px 12px;
}
.mega-menu__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 24px;
}
.grid-col-2 {
    grid-template-columns: repeat(2, 1fr);
}
.mega-menu__item {
    display: flex;
    gap: 12px;
    text-decoration: none;
    padding: 12px;
    border-radius: 9px;
}
.mega-menu__item:hover {
    text-decoration: none !important;
    background: var(--color-bg);
}
.mega-menu__icon {
    width: 36px;
    height: 36px;
}
.mega-menu__icon img {
    box-shadow: 0px 2px 3.47px 0px rgba(3, 0, 40, 0.18);
    border-radius: 8px;
}
.mega-menu__title {
    font-weight: 500;
    font-size: 14px;
    color: var(--color-blue-950);
}
.mega-menu__text {
    font-size: 12px;
    color: rgb(126, 133, 154);
    letter-spacing: -0.1px;
}

.mega-menu-row {
    display: flex;
    background: #F8F8F8;
    width: 100%;
    /* border: 1px solid rgb(231, 233, 240); */
    border-radius: 8px;
}
.mega-menu-row > div {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.mega-menu-row > div:nth-child(1) {
    margin: -1px;
}
.mega-menu-row > div:nth-child(2) {
    background: transparent;
    border: none;
}
.mega-menu-row > div:nth-child(2) .mega-menu__item:hover {
    background: var(--color-white);
}


/* section-hero */
.s-hero {
    overflow: hidden;
    padding-top: 80px;
    border-bottom: 1px solid var(--color-light-divider);
}
.s-hero .row {
    /* min-height: 655px; */
    display: flex;
    align-items: center;
    position: relative;
}
.s-hero.reverse .row {
    flex-direction: row-reverse;
}
.hero-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
}
.hero-text .ti-content {
    margin: 0;
}
.hero-text .tag-white {
    margin-bottom: -7px;
}
.s-hero .row > div:nth-child(2) {
    max-width: 49%;
}
.hero-img {
    margin-right: -132px;
    margin-left: -30px;
    margin-bottom: -3px;
}
.s-hero.reverse .hero-img {
    margin-left: -132px;
    margin-right: -30px;
    margin-bottom: -3px;
  }
.img-gradient {
    position: absolute;
    bottom: 0;
    left: 8%;
}

/* section-logos */
.content-blocks {
    overflow: hidden;
}
.s-logos {
    padding: 48px 0;
    border-bottom: 1px solid var(--color-light-divider);
    position: relative;
    overflow-x: visible !important;
}
.s-logos .h6 {
    text-align: center;
    margin: 0 0 44px;
}  
.s-logos .swiper::before,
.s-logos .swiper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 202px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.s-logos .swiper::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}
.s-logos .swiper::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

.s-logos .swiper {
    position: relative;
    overflow: hidden;
    padding: 0px;
}
.s-logos .swiper .swiper-wrapper {
    display: flex;
    align-items: center;
}
.s-logos .swiper .swiper-slide {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}
.s-logos .swiper img {
    width: auto;
    height: 60px;
    object-fit: contain;
}
.s-logos .swiper-wrapper {
    transition-timing-function: linear !important;
}

.s-logos .img-line-gradient {
    width: 100%;
    position: absolute;
}
.s-logos .top-line {
    top: -1px;
    animation: slideLeft 10s linear infinite;
}
.s-logos .bottom-line {
    animation: slideRight 10s linear infinite;
    bottom: -1px;
}
  
  @keyframes slideLeft {
    from {
      transform: translateX(-50%);
    }
    to {
      transform: translateX(50%);
    }
  }
  
  @keyframes slideRight {
    from {
      transform: translateX(50%);
    }
    to {
      transform: translateX(-50%);
    }
  }


/* section-case */
.s-case {
    padding: 120px 0;
    background: var(--color-blue-950);
    color: var(--color-white);
}
.s-case .row {
    align-items: center;
}
.s-case .row > div:last-child {
    max-width: 500px;
}
.case-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    max-width: 600px;
}
.case-text .h2 {
    margin-bottom: -8px;
}
.case-img {
    position: relative;
    box-shadow: 0px 0px 0px 13px #354374, 0px 0px 0px 12px #1C2E58, 0px 5px 12.7px 0px #00013226,  0px 4px 13.6px 0px #00013233;
    padding: 0px;
    background: #182752;
    border-radius: 20px;
}
 .case-img .case-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    max-width: 266px;
    max-height: 66px;
}
.case-img img:not(.case-logo) {
    border-radius: 20px;
    width: 100%;
}

/* section all-in-one */
.s-all-in-one {
    padding: 160px 0;
    overflow: hidden;
}
.sect-top {
    text-align: center;
    margin: 0 auto 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 808px;
}  
.sect-top p {
    margin: 0;
}
.s-all-in-one .swiper {
    overflow: visible;
}
.jorney-card-wrap {
    padding: 9px;
    border-radius: 24px;            
    background-color: #fff;  
    border: 1px solid #E7E9F0;  
}
.jorney-card {
    box-shadow: 
        0px 5px 12.7px 0px rgba(231, 233, 240, 0.05),
        0px 4px 13.6px 0px rgba(0, 1, 50, 0.07);
    border-radius: 12px;      
    border: 1px solid #E8EAF0;
}
.jorney-card > img {
    height: 240px;
    width: 100%;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}
.jorney-card-text {
    padding: 32px;
}
.jorney-card-title {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin: 0 0 24px;
}
.jorney-card-title.items-center {
    align-items: center;
}
.jorney-card-title img {
    box-shadow: 0px 2px 3.47px 0px rgba(3, 0, 40, 0.18), 
                0px 0px 0px 1.33px rgba(255, 255, 255, 1),  
                0px 0px 0px 2px rgba(217, 220, 232, 1);
    border-radius: 8px;
}

.slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 303px;
    margin: 55px auto 0;
 }
 .slider-nav span {
    font-size: 16px;
    font-weight: 500;
 }
 .progress {
    flex: 1;
    height: 2px;
    background: #E7E9F0;
    position: relative;
    overflow: hidden;
 }
 .progress-line {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #7A5AFF, #68F5B4);
    transition: width 0.4s ease;
 }

 /* section testimonials */
 .s-testimonials {
    padding: 160px 0;
    color: var(--color-white);
}
.s-testimonials .container {
    max-width: 828px;
}
.tm-main {
    margin-bottom: 48px;
}
.tm-main img {
    max-width: 86px;
    max-height: 66px;
    border-radius: 6px;
    float: left;
    margin: 0 19px 13px 0;
}
.tm-main .h3 {
    max-width: 700px;
}
.tm-bot {
    display: flex;
    align-items: center;
    gap: 24px;
}
.tm-bot .line {
    width: 1px;
    height: 36px;
    background: var(--color-dark-divider);
}
.tm-bot img {
    /* max-width: 90px; */
    max-height: 36px;
}
.tm-details {
    display: flex;
    flex-direction: column;
}
.tm-name {
    font-weight: 500;
}
.tm-position {
    color: rgba(255, 255, 255, 0.8);
}
.s-testimonials .slider-nav {
    width: 168px;
    margin: -24px 0 0 auto;
}

 /* section education_capabilites */
 .s-educ-cap {
    padding: 160px 0;
}
.s-educ-cap .container > .row {
    margin: 0 -66px;
}
.s-educ-cap .container > .row > div {
    padding: 0 66px;
}
.s-educ-cap .container > .row > div:nth-child(1) {
    max-width: 47.15%;
}
.accordion-item {
    border-bottom: 1px solid var(--color-light-divider);
}
.accordion-header {
    width: 100%;
    padding: 24px 0;
    font-size: 18px;
    /* background: #FCFDFF; */
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
}
.accordion-header:focus {
    outline: none;
}
.accordion-header-icon {
    opacity: 0.6;
    transition: all .25s ease;
}
.accordion-header-icon img {
    box-shadow: 0px 2px 3.47px 0px rgba(3, 0, 40, 0.18), 
                0px 0px 0px 1.33px rgba(255, 255, 255, 1),  
                0px 0px 0px 2px rgba(217, 220, 232, 1);
    border-radius: 8px;    
}
.accordion-header h5 {
    margin: 0;
    opacity: 0.6;
    transition: all .25s ease;
}
.accordion-header::after {
    content: "";
    position: absolute;
    right: 0;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: contain;
    transition: all .25s ease;
  
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 6V18M18 12L6 12' stroke='%23061437' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}
.accordion-header.active::after {
    /* transform: rotate(45deg); */
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M7.75735 7.75736L16.2426 16.2426M16.2426 7.75736L7.75735 16.2426' stroke='%23061437' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}
.accordion-header.active h5,
.accordion-header.active .accordion-header-icon {
    opacity: 1;
}
  
  .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all .25s ease;
    padding: 0;
  }
  .accordion-text {
    padding: 0 0 25px;
    position: relative;
    letter-spacing: 0;
  }
  .accordion-text:after {
    content: "";
    height: 1px;
    width: 0;
    background: linear-gradient(90deg, #7A5AFF 0%, #536EFF 50%, #4DDB98 100%);
    /* transition: all 1s ease; */
    position: absolute;
    left: 0;
    bottom: -1px;
    opacity: 1;
  }
  .accordion-text.animate::after {
    animation: progressLine 8s linear forwards;
  }
  @keyframes progressLine {
    from {
      width: 0;
    }
    to {
      width: 100%;
    }
  }
  .accordion-header.active + .accordion-content {
    overflow: visible;
  }
  /* .accordion-header.active + .accordion-content .accordion-text:after {
    opacity: 1;
    width: 273px;
  } */
  .accordion-text p:not(:last-child) {
    margin: 0 0 25px;
  }
  .accordion-mob {
    display: none;
  }
  .accordion-desctop {
    display: flex;
    align-items: center;
  }
  
  .accordion-desctop .accordion-item {
    display: none;
    border: none;
  }
  .accordion-desctop .accordion-item.active {
    display: block;
  }
  .accordion-desctop .accordion-item.active .accordion-content {
    max-height: unset;
  }
  .accordion-desctop .accordion-item .accordion-content {
    padding: 9px;
    border-radius: 24px;            
    background-color: #fff;  
    border: 1px solid #E7E9F0;  
}
.accordion-desctop .accordion-item .accordion-content img {
    box-shadow: 
        0px 5px 12.7px 0px rgba(231, 233, 240, 0.05),
        0px 4px 13.6px 0px rgba(0, 1, 50, 0.07);
    border-radius: 12px;      
    border: 1px solid #E8EAF0;
}


 /* section pricing */
.s-pricing { 
    padding: 160px 0 205px;
    color: var(--bg-white);
}
.s-pricing .container {
    max-width: 908px;
}
.s-pricing .h2 {
    max-width: 400px;
    margin-bottom: 16px;
}
.pricing-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-weight: 500;
  }
  
  .switch {
    position: relative;
    width: 46px;
    height: 26px;
    margin: 0;
  }
  
  .switch input {
    display: none;
  }
  
  .slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: linear-gradient(90deg, #6a5cff, #8b5cf6);
    border-radius: 20px;
    transition: 0.3s;
    border: 1px solid #9685FF;
  }
  
  .slider::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    left: 2px;
    top: 2px;
    background: #fff;
    border-radius: 50%;
    transition: 0.3s;
  }
  
  input:checked + .slider::before {
    transform: translateX(20px);
  }
  
  .toggle-label {
    /* opacity: 0.6; */
    cursor: pointer;
  }
  
  .toggle-label.active {
    opacity: 1;
  }
.t-price {
    background: var(--color-white);
    color: var(--color-blue-950);
    padding: 32px 24px;
}
/* .t-price-row {
    align-items: center;
} */
.t-price-row > div:not(.wbadge) {
    margin-top: 38px;
}
.t-price-row > div:nth-child(1) {
  padding: 9px;
  border-radius: 24px;
  background-color: #fff;
  border: 1px solid #E7E9F0;
  margin-right: -11px;
  margin-top: -6px;
}
.t-price-row > div:nth-child(1) .t-price { 
    border-radius: 12px;
    box-shadow: 0px 5px 12.7px 0px rgba(231, 233, 240, 0.05), 0px 4px 13.6px 0px rgba(0, 1, 50, 0.07);
}
.t-price-row > div:nth-child(2) .t-price { 
    box-shadow: 11px 0px 11px 0px rgba(0, 1, 50, 0.027) inset;
}
.t-price-row > div .t-price { 
    border: 1px solid #E8EAF0;
}
.t-price-row > div:last-child .t-price { 
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    border-left: none;
}
.t-badge {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--color-light-divider);
    justify-content: center;
    height: 34px;
    margin-top: -32px;
    width: calc(100% + 48px);
    margin-left: -24px;
    margin-bottom: 34px;
    font-size: 12px;
    font-weight: 500;
    gap: 10px;
    color: var(--color-blue-700);
}
.tag-icon {
    display: flex;
}
.t-title {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
    gap: 8px;
}
.t-title .h5 {
    margin: 0;
    font-weight: 500;
}
.t-title > div {
    padding: 4px 16px;
}
.price-card {
    display: flex;
    align-items: flex-end;
    margin: 0 0 24px;
    gap: 12px;
}
.price-card .small-text {
    opacity: 0.8;
}
.t-price > .small-text {
    border-top: 1px solid var(--color-light-divider);
    padding: 13px 0;
    margin: 0 0 24px;
}
/* .t-price-row > div:not(:nth-child(1)) .t-price > .small-text {
    min-height: 97px;
}
.t-price-row > div:nth-child(1) .t-price > .small-text {
    min-height: 76px;
} */
.t-price-row > div .t-price > .small-text {
    min-height: 97px;
}
.t-price .btn-wrap {
    width: 100%;
}
.t-price .btn-wrap a {
   width: 100%;
  justify-content: center;
}
.t-price .caption {
    text-align: center;
    margin: 16px 0 -1px; 
    opacity: 0.5;
  }

/* section education_resources */
.s-educ-resurce {
    padding: 160px 0;
}
.s-educ-resurce .h2 {
    margin-bottom: 24px;
}
.s-educ-resurce .container > p {
    max-width: 500px;
    margin: 0 0 56px;
}   
.resource-card-wrap {
    padding: 9px;
    border-radius: 24px;
    background-color: #fff;
    border: 1px solid #E7E9F0;
    display: block;
    text-decoration: none !important; 
}
.resource-card {
    box-shadow: 0px 5px 12.7px 0px rgba(231, 233, 240, 0.05), 0px 4px 13.6px 0px rgba(0, 1, 50, 0.07);
    border-radius: 12px;
    border: 1px solid #E8EAF0;
}
.resource-card-img {
    position: relative;
}
.resource-card-img img {
    height: 180px;
    width: 100%;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}
.resource-card-badge {
    display: flex;
    position: absolute;
    top: 0;
    left: 24px;
    padding: 10px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 56px;
}
.color-purple .resource-card-badge {
    background: var(--color-purple-500);
}
.color-green .resource-card-badge {
    background: var(--color-green-400);
}
.color-blue .resource-card-badge {
    background: var(--color-marine-500);
}
.resource-card-badge .small-text {
    color: var(--color-white);
    font-weight: 500;
}
.resource-card-text {
    padding: 32px 24px;
}
.resource-card-text h6 {
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.resource-card-text p {
    margin: 0 0 36px;
}
.resource-card-wrap:hover .btn-link-arrow.blue {
    color: var(--color-blue-900); 
}
.resource-card-wrap:hover .btn-link-arrow.blue svg path {
    fill: var(--color-blue-900);
}


/* section why pricing product */
.s-pricing-product {
    padding: 120px 0 160px;
}
.s-pricing-product .sect-top {
    gap: 32px;
}
.s-pricing-product .sect-top .h2 {
    text-transform: capitalize;
}
.s-pricing-product .sect-top p {
    max-width: 610px;
    margin: 0 auto 48px;
}
.s-pricing-product .pricing-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-blue-950);
    font-weight: 500;
}
.s-pricing-product .t-title {
    margin-bottom: 4px;
    min-height: 28px;
}
.s-pricing-product .t-title .h5 {
    color: var(--color-blue-950);
}
.s-pricing-product .t-sub-title {
    margin: 0 0 16px;
    font-size: 14px;
    opacity: 0.8;
}
.s-pricing-product .t-price-row > div .t-price > .small-text {
    min-height: 101px;
    opacity: 0.8;
    padding: 16px 0 0;
    margin: 0 0 32px;
}
.s-pricing-product .t-price .caption {
    margin: 16px 0 0;
    opacity: 0.5;
    min-height: 60px;
}
.s-pricing-product .text-list.ti-content {
    border-top: 1px solid var(--color-light-divider);
    margin: 0;
    padding: 12px 0 0;
}
.s-pricing-product .text-list.ti-content p {
    opacity: 0.8;
    margin: 0 0 26px;
    font-size: 14px;
}
.s-pricing-product .ti-content ul {
    gap: 12px;
    font-size: 14px;
    margin: 0 !important;
}
.s-pricing-product .ti-content ul li {
    padding-left: 18px;
    font-weight: 400;
}
.s-pricing-product .ti-content ul li::after {
    top: 6px;
}

.s-pricing-product .t-price-row > div:nth-child(1) {
    padding: 0;
    border-radius: 0;
    background-color: transparent;
    border: none;
    margin-right: 0;
    margin-top: 0;
}
.s-pricing-product .t-price-row > div:nth-child(1) .t-price {
    border-radius: 0;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    box-shadow: none;
}
.s-pricing-product .t-price-row > div:not(.wbadge) {
    margin-top: 38px;
}

.s-pricing-product .t-price-row > div:nth-child(3) {
    padding: 9px;
    border-radius: 24px;
    background-color: #fff;
    border: 1px solid #E7E9F0;
    margin-right: -11px;
    margin-top: -6px;
}
.s-pricing-product .t-price-row > div:nth-child(3) .t-price {
    border-radius: 12px;
    box-shadow: 0px 5px 12.7px 0px rgba(231, 233, 240, 0.05), 0px 4px 13.6px 0px rgba(0, 1, 50, 0.07);
    position: relative;
}
.s-pricing-product .t-price-row > div:nth-child(3) .t-price::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: conic-gradient(
      from 180deg at 50% 50%,
      #68F5B4 -46.73deg,
      #7A5AFF 38.08deg,
      #232ED1 178.27deg,
      #68F5B4 313.27deg,
      #7A5AFF 398.08deg
    );
    -webkit-mask: 
      linear-gradient(#fff 0 0) content-box, 
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}
.s-pricing-product .t-price-row > div:nth-child(2) .t-price {
    border-left: 0;
    border-right: 0;
}

.s-pricing-product .t-price-row > div:nth-child(2) .t-price {
    box-shadow: none;
}
.s-pricing-product .t-price-row > div:nth-child(4) .t-price {
    box-shadow: 11px 0px 11px 0px rgba(0, 1, 50, 0.027) inset;
}
.s-pricing-product .t-price-row > div:nth-child(3) .text-list.ti-content {
    margin-bottom: 32px;
}


/* section s-cta */
.s-cta {
    overflow: hidden;
    background: var(--color-light);
    /* border-top: 1px solid var(--color-light-divider); */
    border-bottom: 1px solid var(--color-light-divider);
}
.s-cta > div {
    padding-right: 0;
}
.s-cta .row {
    align-items: center;
    gap: 81px;
}
.s-cta .row > div:nth-child(2) {
    max-width: 44%;
}
.cta-text {
    padding-left: calc(50vw - 628px)
}
.cta-text .tag-white {
    margin: 0 0 24px;
}
.cta-text .h2 {
    margin: 0 0 24px;
}
.cta-text p {
    margin: 0 0 32px;
}
.s-cta .row {
  align-items: center;
  gap: 81px;
}
.cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.cta-btns .btn {
    padding: 0 24px 0 20px;
    min-width: 166px;
    justify-content: center;
    letter-spacing: -0.5px;
}
.cta-img {
    max-width: 840px;
    margin-left: auto;
}


/* section hero product */
.s-hero-product {
    padding: 120px 0;
    text-align: center;
    border-bottom: 1px solid var(--color-light-divider);
}
.hero-product-text {
    margin: 0 auto 80px;
}
.hero-product-text .h1 {
    margin: 0 0 32px;
}
.hero-product-text p {
    max-width: 600px;
    margin: 0 auto 24px;
}
.hero-btns {
    display: flex;
    justify-content: center;
    gap: 8px;
}
.hero-product-img-wrap {
    padding: 9px;
    border-radius: 24px;
    background-color: #fff;
    border: 1px solid #E7E9F0;
}
.hero-product-img {
    box-shadow: 0px 5px 12.7px 0px rgba(231, 233, 240, 0.05), 0px 4px 13.6px 0px rgba(0, 1, 50, 0.07);
    border-radius: 12px;
    border: 1px solid #E8EAF0;
    position: relative;
    overflow: hidden;
    min-height: 640px;
    padding: 57px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-product-img.pos-bot {
    padding-bottom: 0;
    align-items: flex-end;
}
.hero-product-img.pos-bot img {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.hero-product-img:after {
    content: "";
    width: 100%;
    height: 300px;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(90deg, #A8FFD3 0%, #B8AFFF 63.65%, #7A5AFF 100%);
}
.hero-product-img.gr:after {
    background: linear-gradient(270deg, #A8FFD3 0%, #B8AFFF 63.65%, #7A5AFF 100%);
}
.hero-product-img img {
    max-width: 672px;
    width: 100%;
    box-shadow: 0px 3.2px 20.8px 0px rgba(14, 36, 59, 0.06);
    border-radius: 12px;
    position: relative;
    z-index: 2;
}


/* section featured */
.s-featured {
    padding: 160px 0 112px;
}
.s-featured:not(.bc3) .container {
    max-width: 1006px;
}
.s-featured .sect-top p {
    max-width: 430px;
    margin: 0 auto;
}
.s-featured .row {
    margin: 0 -12px;
    justify-content: center;
}
.s-featured .row > div {
    padding: 0 12px;
}
.featured-wrap {
    padding: 9px;
    border-radius: 24px;
    background-color: #fff;
    border: 1px solid #E7E9F0;
    margin-bottom: 24px;
}
.featured-wrap > div {
    box-shadow: 0px 5px 12.7px 0px rgba(231, 233, 240, 0.05), 0px 4px 13.6px 0px rgba(0, 1, 50, 0.07);
    border-radius: 12px;
    border: 1px solid #E8EAF0;
    padding: 32px 24px;
}
.featured-one-title {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 0 24px;
}
.featured-one-title img {
    box-shadow: 0px 2px 3.47px 0px rgba(3, 0, 40, 0.18), 0px 0px 0px 1.33px rgba(255, 255, 255, 1), 0px 0px 0px 2px rgba(217, 220, 232, 1);
    border-radius: 8px;
}


/* section extension */
.s-extension {
    padding: 159px 0 77px;
    color: var(--color-white);
}
.s-extension .sect-top p {
    max-width: 480px;
}
.extension-img {
    padding: 0 12px;
}
.extension-img img {
    box-shadow: 0px 4px 13.6px 0px rgba(0, 1, 50, 0.2),
            0px 5px 12.7px 0px rgba(0, 1, 50, 0.15),
            0px 0px 0px 12px rgba(28, 46, 88, 1),
            0px 0px 0px 13px rgba(53, 67, 116, 1);
    margin: 0 0 80px;
    border-radius: 12px;
}
.extension-bot {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}
.extension-bot .top-line {
    top: -1px;
    animation: slideLeft 10s linear infinite;
}
.extension-bot .img-line-gradient {
    width: 100%;
    position: absolute;
}
.extension-bot .bottom-line {
    animation: slideRight 10s linear infinite;
    bottom: -1px;
}
.extension-social + .img-line-gradient.bottom-line {
    display: none;
}
.extension-bot .row > div {
    padding: 48px 0 40px;
    position: relative;
}
.extension-bot .row > div:nth-child(1) {
    max-width: 496px;
    border-right: 1px solid #1E2B4B;
}
.extension-bot .row > div:nth-child(2) .img-gradient {
    position: absolute;
    top: 0;
    right: 30px;
    left: unset;
}
.extension-bot .row > div:nth-child(1) .img-gradient {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.extension-bot .row > div:nth-child(1) .h6 {
    margin-bottom: 48px;
}
.extension-bot .row > div:nth-child(2) .h6 {
    margin-bottom: 24px;
}
.extension-social ul {
    margin: 0;
    list-style: none;
    display: flex;
    padding: 0;
    gap: 33px;
    flex-wrap: wrap;
}
.extension-social ul li .extension-social-link,
.extension-social ul li a {
    box-shadow: 0px 5px 8.67px 0px rgba(0, 1, 50, 0.15), 0px 0px 0px 3.33px rgba(28, 46, 88, 1), 0px 0px 0px 4.5px rgba(53, 67, 116, 1);
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: url('../img/bg-social.png') no-repeat;
      background-size: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
}
.extension-social ul li .extension-social-link img,
.extension-social ul li a img {
    max-width: 40px;
}
.extension-list {
    max-width: 600px;
    margin-left: auto;
}
.extension-list ul {
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
}
.extension-list ul li {
    flex-basis: 25%;
    padding: 16px;
    letter-spacing: -0.5px;
    border-right: 1px solid #1E2B4B;
}
.extension-list ul li:nth-child(3),
.extension-list ul li:nth-child(1) {
    padding-left: 0;
}
.extension-list ul li:nth-child(2),
.extension-list ul li:nth-child(1) {
    flex-basis: 50%;
    border-bottom: 1px solid #1E2B4B;
}
.extension-list ul li:nth-child(2),
.extension-list ul li:last-child {
    border-right: 0;
}

.extension-blocks {
    border-top: 1px solid #1E2B4B;
    border-bottom: 1px solid #1E2B4B;
}
.extension-blocks .row > div:not(:last-child) {
    border-right: 1px solid #1E2B4B;
}
.extension-block-one {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 48px 32px 64px 32px;
}
.extension-blocks .row > div:first-child .extension-block-one {
    padding-left: 0;
} 
.extension-blocks .row > div:last-child .extension-block-one {
    padding-right: 0;
} 
.extension-blocks .row > div:nth-child(1),
.extension-blocks .row > div:nth-child(3) {
    max-width: 31%;
}



/* section text img */
.s-text-img {
    padding: 148px 0;
    border-bottom: 1px solid var(--color-light-divider);
}
.s-text-img.dark {
    color: var(--color-white);
}
.s-text-img.reverse .row {
    flex-direction: row-reverse;
}
.s-text-img .row {
    margin: 0 -70px;
    align-items: center;
}
.s-text-img .row > div {
    padding: 0 70px;
}
.s-text-img .row > div:nth-child(1) {
    max-width: 634px;
}
.ti-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
}
.ti-content > :not(:last-child) {
    margin-bottom: 24px;
}
.ti-content > h4:not(:last-child) {
    margin-bottom: 16px;
}
.ti-content > h4:not(:first-child) {
    margin-top: 40px;
}
.ti-content {
    margin-right: -35px;
}
.ti-content ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    /* max-width: 495px; */
}
.ti-content ul li {
    position: relative;
    padding-left: 24px;
    font-weight: 500;
    line-height: 1.5;
}
.ti-content ul li:after {
    content: "";
    width: 8px;
    height: 8px;
    background: rgba(122, 90, 255, 1);
    box-shadow: 0px 1px 1.2px 0px rgba(13, 0, 66, 0.05), 0px 2px 4.2px 0px rgba(17, 6, 65, 0.15);
    position: absolute;
    left: 0;
    top: 8px;
}
.ti-img {
    box-shadow: 0px 0px 0px 1px rgba(231, 233, 240, 1),
    0px 3px 10.6px 0px rgba(0, 1, 50, 0.05),
    0px 0px 0px 12px rgba(248, 250, 252, 1),
    0px 0px 0px 13px rgba(231, 233, 240, 1);
    margin: 12px;
    border-radius: 12px;
}
.s-text-img.dark .ti-img {
    box-shadow: 0px 4px 13.6px 0px rgba(0, 1, 50, 0.2),
                0px 5px 12.7px 0px rgba(0, 1, 50, 0.15),
                0px 0px 0px 12px rgba(28, 46, 88, 1),
                0px 0px 0px 13px rgba(53, 67, 116, 1);
}
.ti-img img{
    border-radius: 12px;
}


/* section logic-to-action*/
.s-logic-to-action {
    padding: 160px 0;
    border-top: 1px solid var(--color-light-divider);
    border-bottom: 1px solid var(--color-light-divider);
}
.s-logic-to-action .row {
    margin: 0 -70px;
    align-items: center;
}
.s-logic-to-action .row > div {
    padding: 0 70px;
}
.s-logic-to-action .row > div:nth-child(2) {
    max-width: 634px;
}
.extension-list-lta {
  width: 100%;
  max-width: 423px;
  position: relative;
  overflow: hidden;
}
.extension-list-lta ul li {
    flex-basis: unset !important;
    border-color: var(--color-light-divider) !important;
    position: relative;
    font-weight: 500;
}
.extension-list-lta ul li strong {
    font-weight: 600;
}
.extension-list-lta .img-gradient {
    position: absolute;
    bottom: -1px;
    left: 0;
}
.extension-list-lta ul li:nth-child(2n) .img-gradient {
    left: unset;
    right: 0;
    transform: rotate(180deg);
}


/* section hero-home*/
.s-hero-home {
    padding: 109px 0;
}
.s-hero-home .row {
    align-items: center;
}
.s-hero-home .hero-text h1 img {
    margin: 0;
}
.s-hero-home .hero-text > p {
    max-width: 470px;
}
.s-hero-home .hero-home-btns {
    display: flex;
    gap: 8px;
    margin-top: -8px;
    flex-wrap: wrap;
}
.s-hero-home .hero-home-btns .btn {
    padding: 0 24px 0 20px;
    letter-spacing: -0.5px;
}
.s-hero-home .hero-img {
    margin-right: -23px;
    margin-left: 48px;
}

/* section hero-home*/
.s-problem {
    padding: 160px 0 0;
    border-bottom: 1px solid rgba(231, 233, 240, 1);
}
.s-problem .sect-top {
    gap: 32px;
    margin-bottom: 80px;
}
.s-problem .sect-top h2 {
    margin: 0 auto;
}
.s-problem .sect-top p {
    max-width: 525px;
    margin: 0 auto;
}
.spr-logos {
    margin-bottom: -22px;
}
.spr {
    height: 437px;
    border-top: 1px solid rgba(50, 43, 175, 1);
}
.spr-logos ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 9px 81px;
}
.spr-logos ul li {
    border: 1px solid rgba(122, 90, 255, 0.5);
    box-shadow: 0px 2px 28.3px 0px rgba(0, 12, 86, 0.05),
                0px 4px 2.9px 0px rgba(19, 41, 181, 0.07),
                0px 1px 1.5px 0px rgba(19, 41, 181, 0.07);
    border-radius: 32px;
    background: var(--color-white);
    padding: 6.5px 16px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.spr-logos ul li img {
    height: 100%;
}
.spr-logos ul li:nth-child(4) img {
    height: 83%;
}


/* section solution */
.s-solution {
    padding: 160px 0;
    border-bottom: 1px solid var(--color-light-divider);
}
.s-solution .sect-top {
    gap: 32px;
    max-width: 808px;
}
.s-solution .sect-top p {
    margin: 0 auto;
    max-width: 650px;
}
.s-solution .accordion-wrap {
    box-shadow: 0px 0px 0px 1px rgba(231, 233, 240, 0.5),
                0px 5px 12.7px 0px rgba(231, 233, 240, 0.05),
                0px 0px 0px 12px rgba(248, 250, 252, 1),
                0px 0px 0px 13px rgba(231, 233, 240, 1);
    border-radius: 13px;
    margin: 13px;
}
.s-solution .accordion-wrap .accordion {
    padding: 16px;
    background: var(--color-white);
    border-radius: 12px;
}
.s-solution .accordion-header {
    padding: 24px 16px;
}
.s-solution .accordion-header::after {
    right: 16px;
}
.s-solution .accordion-header h5,
.s-solution .accordion-header-icon {
    opacity: 1;
}
.s-solution .accordion-header-title {
    display: flex;
    align-items: center;
    width: 100%;
}
.s-solution .accordion-header-title p {
    font-size: 16px;
}
.s-solution .accordion-header h5 {
    min-width: 49%;
    text-align: left;
}
.s-solution .accordion-content {
    /* background: #F8FAFC; */
}
.s-solution .accordion-header.active + .accordion-content {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}
.s-solution .accordion-content .row > div:nth-child(1) {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 380px;
    padding: 16px;
    padding-left: 32px;
}
.s-solution .accordion-content .row > div:nth-child(2) img {
    max-width: 680px;
    max-height: 280px;
    margin-left: auto;
    display: flex;
}
.s-solution .accordion-content .row > div:nth-child(2) {
    display: flex;
    align-items: flex-end;
}
.s-solution .accordion-content .row > div {
    min-height: 280px;
}
.s-solution .accordion-item {
    border-bottom: none;
    overflow: hidden;
    border-radius: 8px;
}
.s-solution .accordion-item:not(.active) {
    background: var(--bg-white) !important;
}
.s-solution .accordion-item .accordion-header {
    position: relative;
}
.s-solution .accordion-item:not(.prev):not(:last-child) .accordion-header:before {
    content: "";
    width: calc(100% - 32px);
    height: 1px;
    position: absolute;
    left: 16px;
    bottom: 0;
    background: var(--color-light-divider);
}
.s-solution  .accordion-text::after {
    content: none;
}
.s-solution .accordion-item .accordion-header.active {
   /* background: #F8FAFC;  */
   border-top-left-radius: 8px;
   border-top-right-radius: 8px;
}
.s-solution .accordion-item .accordion-header.active::after {
    animation: progressLine 8s linear forwards;
}
.s-solution .accordion-item .accordion-header::after {
    content: "";
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, #7A5AFF 0%, #536EFF 50%, #4DDB98 100%);
    transition: all 1s ease;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 1;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.s-solution .tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    position: relative;
    z-index: 1;
}
.s-solution .container > p {
    margin: 80px auto 0;
    text-align: center;
    font-weight: 600;
}
.accordion-header.active .accordion-header-status {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M7.75735 7.75736L16.2426 16.2426M16.2426 7.75736L7.75735 16.2426' stroke='%23061437' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}
.accordion-header .accordion-header-status {
    position: absolute;
    right: 16px;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: contain;
    transition: all .25s ease;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 6V18M18 12L6 12' stroke='%23061437' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}



/* section integrations */
.s-integrations {
    padding: 160px 0;
    color: var(--color-white);
}
.s-integrations .sect-top {
    text-align: left;
    margin: 0 0 80px;
    max-width: 614px;
    align-items: flex-start;
}
.s-integrations .sect-top .h2 {
    max-width: 503px;
}
.s-integrations .btn-link-arrow {
    margin-top: 8px;
}
.s-integrations .extension-social ul {
    gap: 32px;
}


/* section results */
.s-results {
    padding: 160px 0;
}
.s-results .sect-top p {
    margin: 0 auto;
    max-width: 490px;
}
.results-card-wrap {
    border-radius: 12px;
    padding: 13px;
    display: block;
    color: var(--color-blue-950);
}
.results-card {
    box-shadow: 0px 0px 0px 1px rgba(231, 233, 240, 1),
            0px 3px 10.6px 0px rgba(0, 1, 50, 0.05),
            0px 0px 0px 12px rgba(248, 250, 252, 1),
            0px 0px 0px 13px rgba(231, 233, 240, 1);
    border-radius: 12px;
    padding: 24px;
    position: relative;
}
.results-card img {
    max-width: 150px;
}
.results-card-wrap:hover {
    text-decoration: none;
}
.results-card-wrap:hover .btn-link-arrow.blue {
    color: var(--color-blue-900); 
}
.results-card-wrap:hover .btn-link-arrow.blue svg path {
    fill: var(--color-blue-900);
}
.results-card-img {
    min-height: 84px;
}
.results-card-title {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    margin: 0 0 12px;
}
.results-card p {
    margin: 0 0 24px;
    opacity: 0.7;
}
.results-card-badge {
    background: var(--color-purple-500);
    position: absolute;
    top: 0;
    right: 24px;
    padding: 10px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 56px;
    width: 56px;
}
.results-card-badge .small-text {
    color: var(--color-white);
    font-weight: 500;
    line-height: 1.25;
}
.color-purple .results-card-badge {
    background: var(--color-purple-500);
}
.color-green .results-card-badge {
    background: var(--color-green-400);
}
.color-blue .results-card-badge {
    background: var(--color-marine-500);
}
.color-purple .results-card {
    background: url('../img/bg-res1.png') no-repeat;
    background-size: cover;
}
.color-green .results-card {
    background: url('../img/bg-res2.png') no-repeat;
    background-size: cover;
}
.color-blue .results-card {
    background: url('../img/bg-res3.png') no-repeat;
    background-size: cover;
}


/* section get a demo */
.s-get-demo {
    padding: 120px 0 100px;
    border-bottom: 1px solid var(--color-light-divider);
}
.s-get-demo .row {
    margin: 0 -64px;
}
.s-get-demo .row > div {
    padding: 0 64px;
    min-width: 0;
}
.s-get-demo .row > div:nth-child(2) {
    max-width: 623px;
}
.s-get-demo .get-demo-wrap {
    box-shadow: 0px 0px 0px 1px rgba(231, 233, 240, 1),
                0px 3px 10.6px 0px rgba(0, 1, 50, 0.05),
                0px 0px 0px 12px rgba(248, 250, 252, 1),
                0px 0px 0px 13px rgba(231, 233, 240, 1),
                0px 20px 19px 0px rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    margin: 12px;
}
.s-get-demo .get-demo {
    border-radius: 12px;
    padding: 40px 32px;
    background: var(--bg-white);
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.s-get-demo .ti-content {
    margin-right: 0;
}
.s-get-demo .ti-content ul {
    max-width: unset;
}

.s-get-demo .get-demo form {
    margin: 16px 0 0 !important;
}
.s-get-demo  .gform-theme--foundation .gform_fields {
    row-gap: 16px;
}
.s-get-demo .get-demo form .gform-field-label {
    font-weight: 500 !important;
    color: rgb(108, 119, 135);
    margin: 0 0 4px !important;
    letter-spacing: -0.2px;
    font-size: 12px;
}
.s-get-demo .gfield_required_text {
    display: none;
}
.s-get-demo .gfield_required::after {
    content: "*";
    color: #DE2D36;
    margin-left: -4px;
    font-weight: 500;
}
.s-get-demo .get-demo .small-text {
    color: #6C7787;
}
.s-get-demo .get-demo form .ginput_container textarea,
.s-get-demo .get-demo form .ginput_container input {
    box-shadow: 0px 0.93px 2.2px 0px rgba(0, 0, 0, 0.06) !important;
    border: 1px solid rgba(207, 210, 226, 1);
    border-radius: 6px !important;
    padding: 10px 12px !important;
    height: 44px;
    font-size: 16px;
}
.s-get-demo .get-demo form .ginput_container select {
    padding: 10px 8px !important;
    line-height: 1;    
    opacity: 0.5;
}
.s-get-demo .gform-theme--foundation .gfield textarea.large {
    min-block-size: 92px;
    height: 92px;
}
.s-get-demo .get-demo form .ginput_container select::placeholder,
.s-get-demo .get-demo form .ginput_container textarea::placeholder,
.s-get-demo .get-demo form .ginput_container input::placeholder {
    opacity: 0.5;
}


.s-get-demo .select2-container .select2-selection--single {
    height: 44px;
    position: relative;
    box-shadow: 0px 0.93px 2.2px 0px rgba(0, 0, 0, 0.06) !important;
    border: 1px solid rgba(207, 210, 226, 1);
    border-radius: 6px !important;
    padding: 10px 35px 10px 12px !important;
    background: var(--bg-white) !important;
}
.s-get-demo .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #061437;
    line-height: 1.5;
    font-size: 16px;
    padding: 0;
    opacity: 1;
}
.s-get-demo .get-demo form .selection .select2-selection .select2-selection__rendered .select2-selection__placeholder {
    opacity: 0.5;
    font-weight: 400;
    text-shadow: none !important;
    color: var(--color-blue-950);
}
.s-get-demo .select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}
.s-get-demo .select2-container--default .select2-selection--single .select2-selection__arrow {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.00195 5.99609L8.00195 10.9961L13.002 5.99609' stroke='%2347565A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 16px;
    right: 12px;
    top: 13px;
    width: 16px;
    height: 16px;
}
.s-get-demo .select2.select2-container--open .select2-selection__arrow {
    transform: rotate(180deg);
}
.select2-container .select2-search {
    display: none !important;
}

.select2-container--open .select2-dropdown {
    border: 1px solid rgba(207, 210, 226, 1) !important;
    background: rgba(255, 255, 255, 1) !important;
    box-shadow: 0px 3px 7.9px 0px rgba(0, 0, 0, 0.05), 0px 0.93px 2.2px 0px rgba(0, 0, 0, 0.06) !important;
    border-radius: 6px !important;
    margin: 4px 0 0 !important;
    padding: 0 !important;
    overflow: hidden;
}
.select2-container--open .select2-dropdown.select2-dropdown--above {
    margin: -4px 0 0 !important;
}
.select2-results ul li {
    padding: 10px 12px !important;
    line-height: 1.5 !important;
}
.select2-container--open .select2-results__option--selected {
    background-color: var(--color-blue-950) !important;
    color: var(--color-white) !important;
}
.select2-container--default .select2-results > .select2-results__options {
    max-height: unset;
}
body.admin-bar .select2-dropdown.select2-dropdown--below {
    margin-top: 36px !important;
}
body.admin-bar .select2-dropdown.select2-dropdown--above {
    margin-top: 28px !important;
}


.s-get-demo .get-demo form .gform_footer {
    display: inline-block;
    padding: 6px 8px;
    background: var(--color-light);
    border: 1px solid var(--color-light-divider);
    border-radius: 6px;
    width: 100%;
    margin-bottom: 0 !important;
}
.s-get-demo .get-demo form .gform_button {
    background: var(--color-blue-700);
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--color-white) !important;
    letter-spacing: -0.5px !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    height: 48px;
    min-height: 48px !important;
    border-radius: 32px !important;
    padding: 0 29px 0 25px;
    text-decoration: none !important;
    position: relative;
    isolation: isolate;
    z-index: 0;
    overflow: visible;
    width: 100% !important;
}
.s-get-demo .get-demo form .gform_button:hover {
    background: var(--color-blue-900);
    box-shadow: none !important;
}

.s-get-demo .swiper .swiper-wrapper {
    display: flex;
    align-items: center;
  }
.s-get-demo .swiper-wrapper {
    transition-timing-function: linear !important;
}
.s-get-demo .swiper::before {
    left: 0;
    background: linear-gradient(to right, #F9FEFF, transparent);
}
.s-get-demo .swiper::before, .s-get-demo .swiper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 102px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.s-get-demo .swiper::after {
    right: 0;
    background: linear-gradient(to left, #F9FEFF, transparent);
}
.s-get-demo .ti-content > :not(:last-child) {
    margin-bottom: 32px;
}
.s-get-demo .get-demo-logos {
    margin-top: 48px;
}
.s-get-demo .get-demo-logos img {
    max-height: 60px;
}
.s-get-demo .get-demo-logos .swiper-slide {
    text-align: center;
}



/* section why sense */
.s-why-sense {
    padding: 52px 0 0;
    color: var(--bg-white);
}
.s-why-sense .row {
    align-items: center;
}
.why-sense-text .h2 {
    margin: 0 0 24px;
}
.why-sense-text .ti-content {
    margin: 0;
}
.why-sense-text .ti-content ul {
    flex-direction: row;
    max-width: 400px;
    gap: 16px;
    flex-wrap: wrap;
}
.why-sense-text .ti-content ul li {
    min-width: 116px;
}
.why-sense-img {
    margin-right: -80px;
    margin-left: -15px;
}


/* section contact us */
.s-contact-us {
    padding: 120px 0 160px;
}
.s-contact-us .sect-top {
    max-width: 506px;
    margin-bottom: 48px;
}
.s-contact-us .sect-top h1 span {
    font-style: italic;
    color: var(--color-blue-950);
}
.tabs-details .tabs-wrap {
    display: flex;
    justify-content: center;
    margin: 0 0 80px;
}
.tabs-details .tabs {
    display: flex;
    justify-content: center;
    box-shadow: 0px 3px 5.8px 0px rgba(0, 0, 0, 0.05),
    0px 0px 0px 1px rgba(231, 233, 240, 1),
    0px 3px 10.6px 0px rgba(0, 1, 50, 0.05),
    0px 0px 0px 6px rgba(248, 250, 252, 1),
    0px 0px 0px 7px rgba(231, 233, 240, 1),
    0px 12px 9.5px 0px rgba(0, 0, 0, 0.06);
    padding: 4px;
    border-radius: 25px;
    margin: 6px;
    font-weight: 500;
}
.tabs-details .tabs .tab {
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    min-width: 130px;
    border-radius: 25px;
    padding-right: 4px;
    cursor: pointer;
}
.tabs-details .tabs .tab.active {
    background: linear-gradient(270deg, #00AAFF 0%, #78D2FF 100%);
    box-shadow: 0px 1.64px 2.67px 0px rgba(63, 15, 159, 0.15), 0px 0px 3.27px 0px rgba(55, 197, 174, 0.5) inset;
    color: var(--color-white);
}
.tabs-details .tabs .tab.active path {
    fill: var(--color-white);
}
.tab_item {
    display: none;
    padding: 0 !important;
}
.tab_item.active {
    display: block;
}
.s-contact-us .tab_item h2 {
    text-align: center;
    margin: 0 0 24px;
}
.s-contact-us .tab_item p {
    text-align: center;
    margin: 0 0 16px;    
}
.s-contact-us .tab_item .btn-link-arrow {
    justify-content: center;
}
.s-contact-us .tab_item p.contact-blocks-title {
    text-align: center;
    font-weight: 500;
    margin: 48px 0;    
}
.contact-blocks {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 441px;
    margin: 0 auto 48px;
}
.contact-blocks-one {
    display: flex;
    border: 1px solid rgba(0, 170, 255, 1);
    box-shadow: 0px 3px 18.5px 0px rgba(0, 0, 0, 0.05);
    border-radius: 32px;
    text-decoration: none !important;
}
.contact-blocks-one .cb-title {
    background: var(--color-marine-500);
    border-top-left-radius: 32px;
    border-bottom-left-radius: 32px;
    display: flex;
    min-height: 44px;
    min-width: 146px;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
    gap: 8px;
    font-weight: 500;
    letter-spacing: -0.4px;
    border-right: 1px solid rgba(0, 170, 255, 1);
    transition: all .25s ease;
}
.contact-blocks-one .cb-text { 
    display: flex;
    padding: 0 8px;
    align-items: center;
    min-height: 44px;
    width: 100%;
    transition: all .25s ease;
    border-top-right-radius: 32px;
    border-bottom-right-radius: 32px;
    letter-spacing: -0.1px;
}
.contact-blocks-one:hover .cb-title {
    border-color: #77CDFF;
}
.contact-blocks-one:hover .cb-text {
    background: var(--color-marine-500);
    color: var(--color-white);
}
.contact-blocks-one:focus .cb-title {
    background: #0087D4;
    border-color: #77CDFF;
}
.contact-blocks-one:focus .cb-text {
    background: #0087D4;
    color: var(--color-white);
}
.contact-blocks-one .cb-text p {
    margin: 0;
}
.contact-blocks-one .cb-text p strong {
    font-weight: 500;
}
.s-contact-us .tag-white-wrap {
    text-align: center;
    margin: 0 0 148px;
}
.s-contact-us .tag-white {
    font-size: 14px;
}
.s-contact-us .tag-white .tag-text span {
    color: rgb(108, 119, 135);
}
.s-contact-us .s-get-demo {
    border: none;
}
.s-contact-us .s-get-demo .get-demo-wrap-cont {
    max-width: 494px;
    margin: 0 auto;
}
.s-contact-us .s-get-demo .get-demo form {
    margin: 8px 0 0 !important;
}
.s-contact-us .s-get-demo .get-demo .small-text {
    font-size: 12px;
    text-align: left;
    margin: 0;
}


/* page-content */
.page-content {
 border-bottom: 1px solid var(--color-light-divider);   
}
.breadcrumbs {
    padding: 20px 0 0;
}
.breadcrumbs i {
    font-style: normal;
    margin: 0 6px;
}
.breadcrumbs span > span {
    color: rgba(6, 20, 55, 0.6);
}
.breadcrumbs span > a {
    text-decoration: none !important;
}
.breadcrumbs span > a:hover span {
    color: var(--color-blue-700);
}
.page-content .page-container > label {
    font-size: 12px;
    line-height: 1.1;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: -0.3px;
    border: 1px solid rgba(122, 90, 255, 0.3);
    display: inline-flex;
    padding: 4.5px 16px;
    margin: 0 0 24px;
    border-radius: 32px;
    box-shadow: 0px 1px 1.5px 0px rgba(19, 41, 181, 0.07);
}
.page-container {
    padding: 120px 0;
    max-width: 808px;
    margin: 0 auto;
}
.post-content > * {
    margin-bottom: 16px;
}
.post-content .wp-block-heading {
    margin-bottom: 32px;
}
.post-content .wp-block-heading:not(:first-child) {
    margin-top: 64px;
}

.post-content h6.wp-block-heading:not(:first-child) {
    margin-top: 32px;
}
.post-content h6.wp-block-heading {
    margin-bottom: 16px;
}

.post-content .wp-block-list {
    list-style: none;
    padding: 0 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.post-content .wp-block-list li {
  position: relative;
  padding-left: 24px;
  font-weight: 400;
  line-height: 1.5;
}
.post-content .wp-block-list li::after {
    content: "";
    width: 8px;
    height: 8px;
    background: rgba(122, 90, 255, 1);
    box-shadow: 0px 1px 1.2px 0px rgba(13, 0, 66, 0.05), 0px 2px 4.2px 0px rgba(17, 6, 65, 0.15);
    position: absolute;
    left: 0;
    top: 8px;
}
.post-content .wp-block-table tr:first-child td {
    border: 1px solid rgba(210, 206, 235, 1);
    background: #F4F2FF;
}
.post-content .wp-block-table td {
    border: 1px solid rgb(231, 233, 240);
    padding: 16px 12px;
    background: #FCFDFF;
    color: rgba(6, 20, 55, 0.8);
    vertical-align: top;
}
.post-content .wp-block-table tr:not(:last-child):not(:first-child) td {
    border-bottom: none;
}
.post-content .wp-block-table tr:nth-child(2) td {
    border-top: none;
}
.post-content .wp-block-table tr td:not(:first-child) {
    border-left: none;
}
.post-content .wp-block-table tr:first-child td,
.post-content .wp-block-table tr td:first-child {
    font-weight: 500;
    color: rgba(6, 20, 55, 1);
}
.post-content .wp-block-table tr:first-child td:first-child {
    border-top-left-radius: 8px;
}
.post-content .wp-block-table tr:first-child td:last-child {
    border-top-right-radius: 8px;
}
.post-content .wp-block-table tr:last-child td:first-child {
    border-bottom-left-radius: 8px;
}
.post-content .wp-block-table tr:last-child td:last-child {
    border-bottom-right-radius: 8px;
}
.post-content .wp-block-table table {
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 8px;
}
.post-content .wp-block-button__link {
    box-shadow: 0px 4px 13.6px 0px rgba(0, 1, 50, 0.07),
            0px 0px 0px 1px rgba(231, 233, 240, 0.5),
            0px 5px 12.7px 0px rgba(231, 233, 240, 0.05),
            0px 0px 0px 8px rgba(248, 250, 252, 1),
            0px 0px 0px 9px rgba(231, 233, 240, 1);
    padding: 16px 40px 16px 16px;
    margin: 28px 0 12px 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 1);
    color: var(--color-blue-700) !important;
    font-weight: 500;
    font-size: 16px;
    text-align: left;
    position: relative;
}
.post-content .wp-block-button__link:hover {
    background: #F3F3F3;
}
.post-content .wp-block-button__link span {
    color: rgba(6, 20, 55, 1) !important;
    font-weight: 400;
}
.post-content .wp-block-button__link::after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 12H20M20 12L14 6M20 12L14 18' stroke='%23232ED1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}


/* section compare */
.s-compare {
    padding: 120px 0;
    border-bottom: 1px solid var(--color-light-divider);
}
.s-compare .compare-table .compare-head.row  > div {
    gap: 16px;
    padding: 20px 8px;
}
.s-compare .compare-table .compare-head.row  > div .compare-head-topbar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.compare-table-wrap {
    overflow-x: auto;
    position: relative;
}
.s-compare .container {
    position: relative;
}

.compare-table {
    width: 1200px;
}
.compare-table .compare-head .btn-wrap {
    width: 100%;
}
.compare-table .compare-head-topbar {
    display: flex;
}
.compare-table .compare-head .btn {
    width: 100%;
    justify-content: center;
}
.compare-table .compare-head .price-card {
    display: flex;
    align-items: flex-end;
    margin: 0;
    gap: 8px;
}
.compare-table .sticky-wrapper {

}
.compare-table .compare-head {
    background: var(--color-white);
    position: relative;
}
.compare-table .row {
    margin: 0;
    border-bottom: 1px solid var(--color-light-divider);
    font-size: 14px;
}
.compare-table .row > div {
    padding: 12px 24px;
}
.compare-body-one .compare-body-title {
    padding: 16px 24px;
    background: rgb(252, 253, 255);
    border-bottom: 1px solid var(--color-light-divider);
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}
.compare-body-one .compare-body-title svg {
    position: absolute;
    right: 16px;
    top: 16px;
    opacity: 0;
}
.compare-body-one .compare-body-title p {
    font-size: 14px;
    max-width: 560px;
}
.compare-body-one .compare-body-title p strong {
    font-weight: 500;
}
.compare-table .row > div:not(:first-child) {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 8px;
    gap: 4px;
    max-width: 226px;
}
.compare-table .row > div:first-child {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.compare-table .compare-tc {
    display: flex;
    align-items: center;
    gap: 8px;   
    width: 100%;
}
.compare-table .compare-tc span:nth-child(1) {

}
.compare-table .compare-tc > div {
    /* max-width: calc(100% - 24px); */
}
.compare-table .compare-one-tb {
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid var(--color-light-divider);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.compare-table .compare-one-tb p:nth-child(2) {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-red-500);
}
.compare-table .compare-body.row > div:first-child, .compare-body-one .compare-body-title, .compare-table .compare-one-tb,
.compare-table .compare-col:first-child {position: sticky;left: 0;z-index: 2;background: var(--color-white);}

.tooltip {
    position: relative;
    display: inline-flex;
    cursor: pointer;
    /* margin-left: 2px;
    top: 3px; */
}
.tooltip::after {
    content: attr(data-text);
    position: absolute;

    bottom: calc(100% + 12px);
    left: 0;
    transform: translateX(-12px) translateY(6px);

    max-width: 244px;
    width: max-content;
    padding: 8px 14px;

    background: var(--color-purple-500);
    color: #fff;
    box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03);

    font-size: 12px;
    line-height: 1.4;
    text-align: center;

    border-radius: 8px;
    white-space: normal;
    word-break: break-word;

    opacity: 0;
    visibility: hidden;

    transition: all 0.25s ease;
    pointer-events: none;
    z-index: 100;
}
.tooltip::before {
    content: "";
    position: absolute;
  
    bottom: calc(100% + 4px);
    left: 0;
    transform: translateX(0) translateY(6px);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
  
    width: 20px;
    height: 10px;
  
    background: var(--color-purple-500);
  
    opacity: 0;
    visibility: hidden;
  
    transition: all 0.25s ease;
    z-index: 99;
}
 .tooltip:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-12px) translateY(0);
}
 .tooltip:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) translateY(0);
}


/* flow */

.s-flow {
    padding: 160px 0;
    background: var(--bg-default) no-repeat center;
    background-size: cover;
    transition: background 0.3s ease;
}
.s-flow.active {
    background: var(--bg-active) no-repeat center;
    background-size: cover;
}
.s-flow .sect-top {
    gap: 32px;
}
.s-flow .sect-top .ti-content {
    margin: 0;
}
.s-flow .sect-top .ti-content ul {
    margin-bottom: 32px;
    max-width: 588px;
    text-align: left;
    margin-left: 35px;
}
.s-flow .btn-descr {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    color: rgb(130, 138, 157);
    font-size: 14px;
    margin-top: 16px;
}
.s-flow .btn-descr .icon {
    display: flex;
}
.flow-wrap-img {
    margin-top: 80px;
}
.flow-wrap-img img.show-int {
    margin: 0 -70px -70px;
    min-width: calc(100% + 140px);
}
.s-flow:not(.active) .show-int {
    display: none;
}
.s-flow.active .show-flow {
    display: none;
}
.s-flow.active .sect-top {
    color: var(--color-white);
}
.s-flow .tags {
    display: flex;
    align-items: center;
    gap: 16px;
}



.s-flow .toggle {
    width: 239px;
    cursor: pointer;
    margin: 0 auto;
}
.s-flow .toggle-track {
    position: relative;
    height: 56px;
    border-radius: 40px;
    padding: 5px;
    display: flex;
    align-items: center;
    overflow: hidden;
    transition: 0.4s;
}
.s-flow .toggle.active .toggle-track {
    background: rgba(38, 43, 100, 1);
    box-shadow: 0px 4px 1.8px 0px rgba(0, 0, 0, 0.07), 
        0px 5px 6.8px 0px rgba(0, 0, 0, 0.07),
        0px 3px 13.4px 0px rgba(0, 0, 0, 0.25),
        0px -2px 4px 0px rgba(0, 0, 0, 0.25) inset,
        0px 1px 1.5px 0px rgba(19, 41, 181, 0.07);
    border: 1px solid;
    /* border-image-source: conic-gradient(from 180deg at 50% 50%, #68F5B4 -46.73deg, #7A5AFF 38.08deg, #232ED1 178.27deg, #68F5B4 313.27deg, #7A5AFF 398.08deg); */
}
.s-flow .toggle-track {
    box-shadow: 0px 4px 4.6px 0px rgba(17, 4, 74, 0.1), 0px 3px 10.7px 0px rgba(63, 15, 159, 0.25), 0px 0px 6px 0px rgb(70, 24, 191) inset;
    border: 1px solid rgb(172, 152, 255);
    background: 
        url('../../assets/img/btn-star.png') no-repeat center,
        linear-gradient(270deg, #BD5AFF 0%, #7A5AFF 100%);
    background-size: cover;
}
.s-flow  .toggle-text {
    position: absolute;
    width: 100%;
    text-align: center;
    font-size: 16px;
    color: #fff;
    transition: 0.4s;
    pointer-events: none;
}
.s-flow  .toggle-text.off {
    opacity: 1;
    margin-left: 16px;
}
.s-flow  .toggle.active .toggle-text.off {
    opacity: 0;
}
.s-flow  .toggle-text.on {
    opacity: 0;
}
.s-flow  .toggle.active .toggle-text.on {
    opacity: 1;
    right: 16px;
    color: #606493;
}
.s-flow  .toggle-thumb {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: 0.4s;
    z-index: 2;
    box-shadow: 0px 1.22px 9.17px 0px rgba(0, 0, 0, 0.1), 0px 0px 0px 1.22px rgba(255, 255, 255, 1), 0px 4.89px 4.89px 0px rgba(156, 156, 156, 0.25);
    background: linear-gradient(225deg, #FFFFFF 27.22%, #EEEEEE 39.45%, #EBEBEB 49.42%, #F4F4F4 54.33%, #F0F0F0 58.93%, #FFFFFF 70.74%);
}
.s-flow  .toggle.active .toggle-thumb {
    transform: translateX(184px);
}
.s-flow  .toggle.active .toggle-thumb {

}


/* workflows */
.s-workflows {
    padding: 160px 0 80px;
    color: var(--color-white);
    overflow: hidden;
}
.s-workflows .sect-top {
    margin: 0 auto 112px;
    max-width: 700px;
}
.s-workflows .row {
    margin: 0 -113px ;
}
.s-workflows .row > div {
    padding: 64px 113px;
    position: relative;
}
.s-workflows .row > div:after {
    content: "";
    width: 50vw;
    height: 1px;
    position: absolute;
    bottom: 0;
    background: rgba(30, 43, 75, 1);
    right: 0;
}
.s-workflows .row > div:nth-child(2n):after  {
    right: unset;
    left: 0;
}
.s-workflows .row > div:nth-child(1):before {
    content: "";
    width: 50vw;
    height: 1px;
    position: absolute;
    top: 0;
    background: rgba(30, 43, 75, 1);
    right: 0;
}
.s-workflows .row > div:nth-child(2):before  {
    content: "";
    width: 50vw;
    height: 1px;
    position: absolute;
    top: 0;
    background: rgba(30, 43, 75, 1);
    left: 0;
}
.s-workflows .row > div:nth-child(2n) {
    border-left: 1px solid rgba(30, 43, 75, 1);
}
.workflows-title {
    margin: 0 0 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.workflows-img {
    padding: 0 12px;
}
.workflows-img img {
    box-shadow: 0px 4px 13.6px 0px rgba(0, 1, 50, 0.2),
                0px 5px 12.7px 0px rgba(0, 1, 50, 0.15),
                0px 0px 0px 12px rgba(28, 46, 88, 1),
                0px 0px 0px 13px rgba(53, 67, 116, 1);
    border-radius: 12px;
}


/* platform */
.s-platform {
    padding: 160px 0 180px;
    color: var(--color-white);
    overflow: hidden;
}
.s-platform .sect-top {
    margin: 0 auto 60px;
    max-width: 700px;
}
.s-platform .sect-top p {
    max-width: 465px;
    margin: 0 auto;
}
.s-platform .platform-one {
    height: 229px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 41px;
    background: url('../img/bg-platform1.png') no-repeat;
    background-size: contain !important;
}
.s-platform .swiper-slide:nth-child(2) .platform-one {
    background: url('../img/bg-platform2.png') no-repeat;
}
.s-platform .swiper-slide:nth-child(3) .platform-one {
    background: url('../img/bg-platform3.png') no-repeat;
}
.s-platform .swiper-slide:nth-child(4) .platform-one {
    background: url('../img/bg-platform4.png') no-repeat;
}
.s-platform .swiper-slide:nth-child(5) .platform-one {
    background: url('../img/bg-platform5.png') no-repeat;
}
.platform-one {
    position: relative;
}
.platform-one::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, #1E2B4B 0%, #061437 100.73%);
  }
.s-platform .swiper-slide .platform-one::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, #1E2B4B 0%, #061437 100.73%);
}
.s-platform .platform-img img {
    min-width: 36px;
    box-shadow: 0px 2.25px 3.9px 0px rgba(3, 0, 40, 0.18),  0px 0px 0px 1.5px rgba(255, 255, 255, 1), 0px 0px 0px 2.25px rgba(217, 220, 232, 1);
    border-radius: 9px;
}
.platform-title {
    min-height: 68px;
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.platform-title span {
    background: var(--color-marine-500);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    padding: 5px 9px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    box-shadow: 0px 2px 5.2px 0px rgba(0, 0, 0, 0.15);
}
.s-platform .slider-nav {
    margin: 80px auto 0;
}
.s-platform .progress {
    background: #3E4A74;
}
.slider-nav button {
    padding: 0;
    border: none;
    background: transparent;
    display: flex;
}
.slider-nav button:focus {
    outline: none;
}



/* footer */
.s-footer {
    padding: 64px 0 0;
}
.s-footer .row > div:not(:last-child) .footer-col {
    padding-left: 12px;
    border-left: 1px solid;
    border-image-source: linear-gradient(180deg, #E7E9F0 0%, #CED4EB 100%);
    border-image-slice: 1;
}
.s-footer .row > div {
    margin-bottom: 24px;
}
.footer-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin: 0 0 16px;
}
.footer-title .footer-title-inner {
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-arrow {
    transition: transform 0.3s ease;
    transform-origin: center;
    display: flex;
}
.footer-accordion-content {
    display: none;
}
.col:last-child .footer-col .footer-accordion-content {
    display: block !important;  
}
.footer-col.active .footer-accordion-content {
    display: block;
}
.footer-col.active .footer-arrow {
    transform: rotate(180deg);
}
.footer-title h4 {
    font-size: 16px;
    margin: 0;
    font-weight: 500;
}
.footer-title .title-desktop {
    display: none;
}
.footer-title .title-mobile {
    display: block;
}
.footer-accordion-content h5 {
    font-size: 16px;
    font-weight: 500;
    margin: 13px 0 16px;
    text-align: center;
}
.footer-menu {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-menu a:not([href]):not([tabindex]),
.footer-menu a {
    font-size: 14px;
    font-weight: 400;
    color: #061437;
    text-decoration: none;
}
.footer-menu a:hover {
    color: var(--color-blue-700);
}
.footer-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-btns .btn {
    width: 100%;
    justify-content: center;
}

.footer-bot {
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    padding: 12px 0;
    min-height: 80px;
    border-top: 1px solid var(--color-light-divider);
}
.footer-bot .logo {
    max-width: 119px;
}
.footer-bot .footer-menu {
    display: flex;
    flex-direction: row;
    gap: 23px;
}
.footer-bot .footer-menu a {
    opacity: 0.5;
}
.footer-bot .footer-menu a:hover {
    opacity: 1;
    color: var(--color-blue-950);
}
.footer-social {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    margin: 225px 0 0;
}
.footer-social a path {
    transition: all .25s ease;
}
.footer-social a:hover path {
    fill: var(--color-blue-700);
}

/* CONTACT-CHANNELS-PATCH-CSS v3 */

/* Toast notification */
.cc-toast {
    position: fixed;
    top: 90px;
    left: 50%;
    transform: translate(-50%, -16px);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px 10px 12px;
    background: #fff;
    border: 1.5px solid #4DDB98;
    border-radius: 999px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.08);
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    letter-spacing: -0.01em;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    z-index: 99999;
    transition: opacity 300ms cubic-bezier(0.22, 1, 0.36, 1),
                transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.cc-toast.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

.cc-toast__icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
}

.cc-toast__text {
    line-height: 1.4;
}

/* Call link disabled on desktop */
.s-contact-us .contact-blocks-one.is-disabled-desktop {
    pointer-events: none;
    opacity: 0.5;
}

/* /CONTACT-CHANNELS-PATCH-CSS */
