.zigzag-cta-section {
    display: grid;
    gap: 50px;
    margin: 60px 0 30px;
}

.minimal-space-y .zigzag-cta-section {
    margin: 20px 0 15px;
}

.zigzag-cta-section .cta-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.zigzag-cta-section .card-contents {
    background-color: var(--white);
    padding: 26px 30px;
    border-radius: 12px;
    box-shadow: 0 0 32.14px 0 rgba(29, 136, 237, 0.1);
}

.zigzag-cta-section .icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    margin: 0 auto 32px;
}

.zigzag-cta-section .btn-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 0.5em;
}

.zigzag-cta-section .icon-box>img {
    width: 100%;
}

.zigzag-cta-section .card-contents ul {
    padding-left: 1.25rem;
    margin: 0.5rem 0;
    list-style: disc;
}

.zigzag-cta-section .card-contents ul li {
    margin-bottom: 0.4rem;
    line-height: 1.6;
}

.zigzag-cta-section .card-contents strong {
    display: block;
    margin-top: 1rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

@media (min-width: 1081px) {
    .zigzag-cta-section .cta-section .card {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .zigzag-cta-section .cta-section:nth-of-type(odd) .card,
    .cards-inverse>.zigzag-cta-section .cta-section:nth-of-type(even) .card {
        grid-column: 1/4;
    }

    .zigzag-cta-section .cta-section:nth-of-type(even) .card,
    .cards-inverse>.zigzag-cta-section .cta-section:nth-of-type(odd) .card {
        grid-column: 2/5;
    }

    .zigzag-cta-section .cta-section:nth-of-type(even) .img-container,
    .cards-inverse>.zigzag-cta-section .cta-section:nth-of-type(odd) .img-container {
        grid-column: 1/2;
        grid-row: 1/2;
    }
}

@media (max-width: 1080px) {
    #zigzag-cta-container .responsive-btn-wrapper .sm-text {
        display: inline;
    }

    #zigzag-cta-container .responsive-btn-wrapper .lg-text {
        display: none;
    }
}

@media (min-width: 641px) {
    .zigzag-cta-section .cta-section .icon-box {
        display: none;
    }

    @media (max-width: 1080px) {
        .zigzag-cta-section .cta-section {
            grid-template-columns: repeat(3, 1fr);
            gap: 36px;
        }

        .zigzag-cta-section .cta-section:nth-of-type(odd) .card,
        .zigzag-cta-section.card-inverse .cta-section:nth-of-type(even) .card {
            grid-column: 1/3;
        }

        .zigzag-cta-section .cta-section:nth-of-type(even) .card,
        .zigzag-cta-section.card-inverse .cta-section:nth-of-type(odd) .card {
            grid-column: 2/4;
        }

        .zigzag-cta-section .cta-section:nth-of-type(even) .img-container,
        .zigzag-cta-section.card-inverse .cta-section:nth-of-type(odd) .img-container {
            grid-column: 1/2;
            grid-row: 1/2;
        }
    }
}

@media (max-width: 640px) {
    .zigzag-cta-section .cta-section {
        display: block;
    }

    .zigzag-cta-section .cta-section .img-container {
        display: none;
    }
}

@media (max-width: 500px) {
    .zigzag-cta-section .icon-box {
        width: 96px;
        height: 96px;
        margin-bottom: 24px;
    }
}