*,*::before,*::after {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

:root {
    --color-dark-green: #003f3c;
    --color-accent-green: #01ee65;
    --color-light-green: #00973f;
    --color-primary-green: #008452;
    --color-white: #fff;
    --color-cream: #f9edd7;
    --color-light-gray: #cac8c8;
    --color-dark-text: #000;
    --color-card-bg: #fff;
    --color-card-border: #fbd69e
}

.content-wrap {
    max-width: 1250px
}

.highlight {
    color: var(--color-light-green)
}

h1 {
    font-size: 68px;
    line-height: 70px;
    margin-bottom: 24px;
}

h2 {
    font-family: var(--zf-primary-bold);
    font-size: 56px;
    line-height: 62px;
    margin: 0 auto 55px;
    letter-spacing: -1px
}

h3 {
    font-family: var(--zf-primary-bold);
    font-size: 24px;
    color: var(--color-dark-text);
    margin-top: 0;
    margin-bottom: 12px
}

.hero-container {
    max-width: 80%;
    margin: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 80px
}

.zw-product-header {
    background-color: var(--color-dark-green);
    color: var(--color-white)
}

.zw-product-header * {
    color: var(--color-white)
}

.space-between {
    display: flex;
    justify-content: space-between
}

.ecommerce-infrastructure-section {
    background-color: var(--color-dark-green);
    color: var(--color-white);
    padding: 80px 0 100px;
    display: flex;
    justify-content: center;
    align-items: center
}

.content-column {
    width: 100%;
    text-align: center
}

.ecommerce-infrastructure-section .breadcrumbs {
    list-style: none;
    padding: 0;
    margin: 0 0 14px 0;
    display: flex;
    justify-content: center;
    font-size: .875em
}

.ecommerce-infrastructure-section .breadcrumbs li {
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer
}

.ecommerce-infrastructure-section .breadcrumbs .breadcrumb-link {
    color: #c9ffea;
    text-decoration: none;
    transition: all .3s ease;
    position: relative;
    text-align: center;
    border-bottom: 1px solid transparent
}

.ecommerce-infrastructure-section .breadcrumbs .separator {
    margin: 0 4px
}

.ecommerce-infrastructure-section .breadcrumbs .breadcrumb-current {
    font-weight: bold;
    opacity: 1;
    color: var(--color-accent-green)
}

.ecommerce-infrastructure-section .description-text,.image-marquee-section p {
    max-width: 80%;
    margin: auto;
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 15px
}

.lottie-animation {
    max-height: 585px;
    width: auto;
    overflow: hidden;
    border-radius: 25px
}

.interactive-cta-btn-wrapper {
    justify-content: center
}

.accordion-section {
    padding-bottom: 50px;
    background-color: var(--color-white);
    text-align: center
}

.accordion-section__content-wrapper {
    display: flex;
    gap: 20px;
    align-items: stretch
}

.row-reverse {
    flex-direction: row-reverse
}

.accordion-section__tabs {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 40%;
    text-align: left
}

.accordion-section {
    padding: 140px 0
}

.accordion-tab {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--color-white);
    border: .5px solid #e0e0e0;
    border-radius: 20px;
    padding: 30px 40px;
    cursor: pointer;
    transition: all .3s ease;
    min-height: 200px
}

.accordion-tab.active {
    background-color: var(--color-primary-green);
    position: relative;
    overflow: hidden
}

.accordion-tab.active::before {
    content: "";
    position: absolute;
    top: 15%;
    left: 0;
    width: 4px;
    height: 0;
    background-color: var(--color-accent-green);
    border-radius: 10px;
    animation: none
}

@keyframes fillAccordionTab {
    from {
        height: 0
    }

    to {
        height: 70%
    }
}

.accordion-tab.active.fill-progress::before {
    animation: fillAccordionTab 5s linear forwards;
    animation-play-state: running
}

.accordion-tab.active .accordion-tab__title,.accordion-tab.active .accordion-tab__description {
    color: var(--color-white)
}

.accordion-tab:hover:not(.active) {
    border: .5px solid #003f3c
}

.accordion-tab__description {
    width: 90%
}

.accordion-section__images {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 60%;
    width: 100%;
    background-color: var(--color-primary-green);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative
}

.accordion-section__img-wrapper {
    width: 80%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center
}

.accordion-image {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    display: none;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    pointer-events: none;
    border-radius: 8px
}

.accordion-image:first-child {
    top: 48%
}

.accordion-image.active {
    display: block;
    pointer-events: auto
}

.accordion-icon {
    width: 22px;
    height: 26px;
    border: 1px solid #498c88;
    border-radius: 20px;
    position: relative;
    transition: all .3s ease
}

.accordion-icon::before,.accordion-icon::after {
    content: "";
    position: absolute;
    background: #498c88;
    transition: all .3s ease
}

.accordion-icon::before {
    top: 50%;
    left: 4px;
    right: 4px;
    height: 1px;
    transform: translateY(-50%)
}

.accordion-icon::after {
    top: 7px;
    bottom: 7px;
    left: 50%;
    width: 1px;
    transform: translateX(-50%)
}

.accordion-icon.active {
    background-color: #00e365;
    border: 1px solid #003f3c
}

.accordion-icon.active::before {
    border: .5px solid #003f3c;
    transform: rotate(180deg)
}

.accordion-icon.active::after {
    transform: scaleY(0)
}

.image-marquee-section {
    padding: 140px 0;
    text-align: center;
    background-color: var(--color-cream)
}

.image-marquee-section p {
    width: 60%;
    margin: auto;
    font-size: 1.1em;
    margin-bottom: 30px;
    margin-top: -32px
}

.marquee-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 10px 0;
    box-sizing: border-box;
    border-radius: 5px;
    margin-top: 50px
}

.marquee-content {
    display: flex;
    will-change: transform;
    transform: translateX(0)
}

.marquee-image-wrapper {
    flex-shrink: 0;
    margin-right: 20px;
    box-sizing: border-box;
    border-radius: 4px;
    width: 80vw;
    max-width: 400px
}

.marquee-image-wrapper:last-child {
    margin-right: 20px
}

.marquee-image-wrapper img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 4px;
    transition: transform .3s ease
}

.marquee-image-wrapper img:hover {
    transform: scale(1.04)
}

.why-choose-section {
    padding-bottom: 140px;
    text-align: center
}

.why-choose-section__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 20px;
    justify-content: center
}

.choice-card {
    background-color: var(--color-white);
    border-radius: 20px;
    border: .5px solid var(--color-dark-green);
    padding: 40px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform .3s ease,box-shadow .3s ease
}

.choice-card:hover {
    transform: translateY(-5px)
}

.choice-card__icon-container {
    width: 60px;
    height: 60px;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center
}

.caveat-font {
    font-family: "Caveat",sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--color-primary-green)
}

.choice-card__title {
    width: 100%;
    font-family: var(--zf-primary-medium);
    font-size: 24px;
    color: var(--color-dark-text);
    margin-top: 0;
    margin-bottom: 16px;
    line-height: 1.2
}

.choice-card__description,.feature-card__description,.accordion-tab__description {
    font-family: var(--zf-primary-regular);
    font-size: .97em;
    color: var(--color-dark-text);
    margin-bottom: 0;
    line-height: 1.5
}

.bottom-cta-wrapper {
    position: relative;
    text-align: center;
    padding-bottom: 140px
}

.bottom-cta-wrapper h2 {
    width: 80%;
    margin-bottom: 15px
}

.bottom-cta-wrapper .content-wrap p {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    width: 60%;
    margin: auto
}

.footer-sec-wrap ul.zft-social-icons li.zft-twitter a {
    height: 27px;
    background-position: -263px -83px
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.scroll-reveal-animation {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity .4s ease-out,transform .4s ease-out;
    transition-delay: var(--animation-delay,0s)
}

.scroll-reveal-animation.fade-in-up {
    opacity: 1;
    transform: translateY(0)
}

@media(max-width: 1024px) {
    .hero-container {
        max-width:100%
    }

    h1 {
        font-size: 62px;
        line-height: 70px
    }

    h2 {
        width: 80%;
        font-size: 54px;
        line-height: 60px
    }

    .ecommerce-infrastructure-section {
        padding: 80px 24px
    }

    .illustration-column {
        padding-top: 0
    }

    .accordion-tab__description {
        width: 100%
    }

    .accordion-section__img-wrapper,.bottom-cta-wrapper h2 {
        width: 90%
    }
}

@media(max-width: 992px) {
    .hero-container {
        flex-direction:column;
        text-align: center
    }

    .ecommerce-infrastructure-section .breadcrumbs li {
        font-size: 14px
    }

    .interactive-cta-btn-wrapper {
        justify-content: center
    }

    .interactive-cta-btn-wrapper .secondary-cta,.interactive-cta-btn-wrapper .interactive-cta-btn {
        margin: 0;
        min-width: 255px
    }

    .features-section__cards {
        max-width: 80%;
        margin: 0 auto
    }

    .accordion-section__tabs,.why-choose-section__cards {
        max-width: 80%;
        margin: auto;
        width: 100%;
        height: auto
    }

    .accordion-tab.active::before {
        top: 6%;
        height: 0
    }

    .accordion-tab.active.fill-progress::before {
        height: 100px
    }

    .accordion-section__images {
        display: none
    }

    .accordion-tab,.feature-card,.choice-card {
        padding: 40px
    }

    .accordion-tab {
        transition: none
    }

    .mobile-accordion-image {
        max-height: 0;
        overflow: hidden;
        width: 60%;
        margin: 0 auto;
        height: auto;
        display: block;
        transition: max-height .5s ease-in-out,margin-top .3s ease-out
    }

    .mobile-accordion-image.active {
        margin-top: 30px
    }
}

@media(max-width: 768px) {
    .hero-container,h1,.ecommerce-infrastructure-section .description-text,.image-marquee-section p {
        max-width:100%;
        width: 100%
    }

    .ecommerce-infrastructure-section {
        padding: 40px 16px
    }

    h1 {
        font-size: 52px;
        line-height: 50px;
        margin-bottom: 24px
    }

    h2 {
        width: 75%;
        font-size: 48px;
        line-height: 52px;
        margin-bottom: 30px
    }

    .why-choose-section__heading {
        width: 80%
    }

    .accordion-section,.image-marquee-section {
        padding: 75px 0
    }

    .ecommerce-infrastructure-section .description-text,.image-marquee-section p {
        font-size: 16px;
        margin: auto
    }

    .image-marquee-section p {
        width: 80%;
        margin-top: -20px
    }

    .why-choose-section {
        padding-bottom: 75px
    }

    .interactive-cta-btn-wrapper {
        justify-content: center;
        align-items: center;
        gap: 20px;
        padding-top: 30px
    }

    .secondary-cta {
        margin: 0
    }

    .marquee-content {
        animation-duration: 20s
    }

    .accordion-section__tabs,.why-choose-section__cards {
        max-width: 80%
    }

    .marquee-image-wrapper {
        width: 100%;
        max-width: 200px
    }

    .bottom-cta-wrapper h2 {
        width: 85%
    }
}

@media(max-width: 666px) {
    .hero-container {
        margin-bottom:30px
    }

    .illustration-column,.image-marquee-section p {
        width: 100%
    }

    .interactive-cta-btn-wrapper {
        flex-direction: column
    }

    h1,h2,.bottom-cta-wrapper h2,.accordion-tab__description,.description-text,.why-choose-section__heading {
        width: 100%;
        max-width: 100%
    }

    h1 {
        font-size: 48px;
        line-height: 52px;
        margin-bottom: 24px
    }

    h2 {
        font-size: 44px;
        line-height: 48px
    }

    .mobile-accordion-image {
        width: 100%
    }
}

@media(max-width: 480px) {
    .ecommerce-infrastructure-section {
        padding:24px 0
    }

    h1 {
        font-size: 42px;
        line-height: 46px
    }

    h2 {
        font-size: 36px;
        line-height: 40px
    }

    h3 {
        font-size: 22px;
        width: 80%
    }

    .breadcrumbs li {
        font-size: 14px
    }

    .accordion-tab,.feature-card,.choice-card {
        padding: 35px
    }

    .accordion-section__tabs {
        max-width: 100%
    }

    .accordion-tab__description {
        font-size: .8em;
        line-height: 1.5
    }

    .marquee-container {
        margin-top: 25px
    }

    .choice-card__icon-container {
        width: 40px;
        height: 40px
    }
}

@media(max-width: 375px) {
    h1 {
        font-size:36px;
        line-height: 40px;
        margin-bottom: 24px
    }

    h2 {
        font-size: 30px;
        line-height: 34px
    }

    .accordion-tab {
        padding: 25px
    }

    .accordion-icon {
        width: 20px;
        height: 24px
    }
}

@media(min-width: 992px) {
    .mobile-accordion-image,.accordion-icon {
        display:none
    }

    .features-section {
        padding: 100px 0
    }

    .accordion-tab.active:hover.fill-progress::before {
        animation-play-state: paused
    }
}

@media(max-width: 480px) {
    .choice-card__description,.accordion-tab__description {
        font-size:.8em;
        line-height: 1.5
    }
}

@media(max-width: 375px) {
    .choice-card__title {
        font-size:22px
    }

    .choice-card__icon-container {
        width: 40px;
        height: 40px;
        margin-bottom: 10px
    }
}
