.slider-cards {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(0rem, -1.298rem + 5.769vi, 5.625rem);
    padding: clamp(2.5rem, 0.685rem + 8.065vi, 8.75rem) 0 ! important;

    .image-wrapper {
        .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;
            }
        }
    }

    .swiper-slide {

    }

    .headline {
        color: #000;
        text-align: center;
        font-family: "League Spartan";
        font-size: clamp(3.75rem, 3.024rem + 3.226vi, 6.25rem);
        font-style: normal;
        font-weight: 800;
        line-height: 1.1;
        text-transform: capitalize;
        margin: 0;
    }

    .text-container {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        z-index: 2;
        background: linear-gradient(180deg, #F6F3EC 0%, rgba(246, 243, 236, 0.00) 100%);
        padding: clamp(1.5rem, 1.246rem + 1.129vi, 2.375rem) clamp(3.125rem, 2.508rem + 2.742vi, 5.25rem);

        .overline {
            width: fit-content;
            color: #727272;
            text-align: center;
            font-family: var(--font-family) !important;
            font-size: clamp(1rem, 0.9672rem + 0.1639vw, 1.125rem);
            font-style: normal;
            font-weight: 500;
            line-height: 1.4;
            padding: 0 clamp(0.875rem, 0.802rem + 0.323vi, 1.125rem);
            border-radius: 100px;
            border: 1px solid #468ACA;
        }

        .title {
            align-self: stretch;
            padding: 0;
            color: #000;
            text-align: center;
            font-family: "League Spartan";
            font-size: clamp(1.5rem, 1.355rem + 0.645vi, 2rem);
            font-style: normal;
            font-weight: 500;
            line-height: 1.1;
            text-transform: capitalize;
        }
    }

    .swiper-controls {
        width: 100%;
        max-width: 320px;
        display: flex;
        justify-content: space-between;
        z-index: 1;
        align-items: center;

        @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;
    }
}
