.slider-cards-cta {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: clamp(1.25rem, 0.8871rem + 1.6129vw, 2.5rem);

    .swiper-slide {
        position: relative;
        background: linear-gradient(180deg, #F6F3EC 0%, rgba(246, 243, 236, 0.00) 100%);
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: space-between;

        .image-wrapper {
            padding: 20px;

            @media (min-width: 768px) {
                position: absolute;
                left: 50%;
                top: -75px;
                transform: translateX(-50%);
            }

            .image {
                .img {
                    margin: 0 auto;
                }
            }

            /*
            .image {
                width: 100%;
                height: clamp(12.5rem, -0.46rem + 57.598vi, 27.188rem);

                @media (min-width: 768px) {
                    height: clamp(13.375rem, 0.063rem + 27.734vi, 17.813rem);
                }

                @media (min-width: 1024px) {
                    height: clamp(10.938rem, -0.563rem + 17.969vi, 21rem);
                }

                .img {
                    position: absolute;
                    inset: 0;
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    object-position: center;
                }
            }
                */
        }

        .text-container {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            z-index: 2;
            padding: 20px clamp(3.125rem, 2.508rem + 2.742vi, 5.25rem) clamp(1.5rem, 1.246rem + 1.129vi, 2.375rem) ;

            @media (min-width: 768px) {
                min-height: 100%;
                padding: clamp(8.75rem, 7.292rem + 3.038vi, 10.938rem) clamp(3.125rem, 2.508rem + 2.742vi, 5.25rem) clamp(1.5rem, 1.246rem + 1.129vi, 2.375rem) ;
            }
            .title {
                align-self: stretch;
                padding: 0;
                color: #000;
                text-align: center;
                font-family: "League Spartan";
                font-size: clamp(1.5rem, 1.3548rem + 0.6452vw, 2rem);
                font-style: normal;
                font-weight: 500;
                line-height: 1.1;
                text-transform: capitalize;
            }

            .text {
                color: #727272;
                text-align: center;
                font-family: Dosis !important;
                font-size: clamp(1rem, 0.971rem + 0.128vi, 1.125rem);
                font-style: normal;
                font-weight: 500;
                line-height: 1.4;
            }

            .button {
                padding: 0;
                margin-top: auto;
            }
        }
    }

    .swiper-controls {
        width: 100%;
        max-width: 320px;
        display: flex;
        justify-content: space-between;
        z-index: 1;
        margin: 0 auto;

        @media only screen and (min-width: 576px) {
            max-width: 540px;
        }

        @media only screen and (min-width: 768px) {
            max-width: 720px;
        }

        @media only screen and (min-width: 992px) {
            max-width: 960px;
        }

        @media only screen and (min-width: 1200px) {
            max-width: 1140px;
        }

        .indicator {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            width: fit-content;

            .progressbar {
                position: relative;
                width: clamp(6.938rem, calc(1.375rem + 14.833vw), 12.5rem);
                height: 2px;
                flex: 1 0 0;
                background: rgba(0, 0, 0, 0.20);
            }

            .current, .total {
                color: #000;
                font-family: "League Spartan";
                font-size: clamp(0.875rem, calc(0.625rem + 0.667vw), 1.125rem);
                font-style: normal;
                font-weight: 700;
                line-height: normal;
            }
        }

        .prev,
        .next {
            display: flex;
            align-items: center;

            &:not(.swiper-button-disabled) {
                cursor: pointer;

                &:hover {
                    svg {
                        color: #258CCF;
                    }
                }

                svg {
                    color: #000;
                }
            }

            svg {
                color: rgba(255, 255, 255, .5);
            }
        }

        .next {
            transform: rotate(180deg);
        }
    }

    .swiper-notification {
        display: none;
    }
}
