.container-swiper * {
    box-sizing : border-box;
    padding    : 0;
    margin     : 0;
    font-family: 'Poppins', sans-serif;
}

.container-swiper {
    background-color: #E7135D;
    padding         : 40px 40px;
    background-image: url(https://hopnato-cz.s25.cdn-upgates.com/h/h68ee0d364d5c3-snow.webp);
    border-radius   : 16px;
    margin-block    : 40px;
    text-align      : center;

    @media screen and (max-width: 768px) {
        padding: 52px 4px 40px 4px;
    }

    &>h1 {
        text-align   : center;
        color        : #fff;
        font-size    : 48px;
        line-height  : 48px;
        margin-bottom: 16px;

        @media screen and (max-width: 768px) {
            max-width    : 280px;
            margin       : 0 auto;
            margin-bottom: 16px;
        }
    }

    &>span {
        display      : block;
        text-align   : center;
        color        : #fff;
        font-size    : 20px;
        margin-bottom: 24px;
    }

}

.container-swiper .img-heading {
    margin-block: 12px 24px;

    @media screen and (max-width: 768px) {
        max-width: 240px;
    }
}

.card-wrapper {
    padding       : 20px 0;
    overflow      : hidden;
    max-width     : 1200px;
    margin        : 0 auto;
    position      : relative;
    padding-bottom: 52px;
}

.card-list .card-item {
    list-style: none;
}


.card-list .scard-item .card-link {
    user-select    : none;
    display        : block;
    background     : #fff;
    padding        : 18px;
    border-radius  : 12px;
    text-decoration: none;
    border         : 2px solid transparent;
    box-shadow     : 0 10px 10px rgba(0, 0, 0, 0.05);
    transition     : 0.2s ease;
    display        : flex;
    flex-direction : column;
    align-items    : center;
    color          : #320107;
    text-align     : center;
    padding-bottom : 24px;

    span {
        display    : block;
        margin-top : 16px;
        font-weight: bold;
        color      : #CB0B0A;
        font-size  : 14px;
    }

    h2 {
        font-size   : 24px;
        line-height : 28px;
        margin-block: 2px 12px;
    }

    p {
        font-size  : 14px;
        line-height: 20px;
        min-height : 80px;
    }
}

.card-list .scard-item .card-link:active {
    cursor: grabbing;
}

.card-list .scard-item .card-link:hover {
    border-color: #CB0B0A;
}

.card-list .card-link .card-image {
    width        : 100%;
    aspect-ratio : 1/1;
    object-fit   : cover;
    border-radius: 10px;
    max-width    : 240px;
}

.card-list .card-link .badge {
    color        : blue;
    margin       : 16px 0 18px;
    padding      : 8px 16px;
    font-weight  : 500;
    font-size    : 0.95rem;
    background   : #dde4ff;
    width        : fit-content;
    border-radius: 50px;
}

.card-list .card-link .card-title {
    font-size  : 16px;
    color      : #000;
    font-weight: 100;
}

.card-list .card-link .card-button {
    display         : flex;
    align-items     : center;
    justify-content : center;
    height          : 44px;
    padding         : 0 24px;
    background-color: #CB0B0A;
    color           : white;
    font-weight     : bold;
    border          : 0;
    border-radius   : 99px;
    margin-top      : 16px;
    cursor          : pointer;
    font-size       : 14px;
    text-decoration : none;
}

.card-list .card-link:hover .card-button {
    color           : #fff;
    background-color: #CB0B0A;
}

.card-wrapper .swiper-pagination {
    padding-top: 48px !important;
}

.card-wrapper .swiper-pagination-bullet {
    height    : 18px;
    width     : 18px;
    opacity   : 0.5;
    background: #fff;
}

.card-wrapper .swiper-pagination-bullet-active {
    opacity: 1;
}

.card-wrapper .swiper-slide-button {
    color           : white;
    margin-top      : -80px;
    background-color: #E7135D;
    width           : 44px;
    height          : 52px;
}

.card-wrapper .swiper-button-next::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M15.835 11.63L9.205 5.2C8.79 4.799 8 5.042 8 5.57v12.86c0 .528.79.771 1.205.37l6.63-6.43a.5.5 0 0 0 0-.74'/%3E%3C/svg%3E");
}

.card-wrapper .swiper-button-prev::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='m8.165 11.63l6.63-6.43C15.21 4.799 16 5.042 16 5.57v12.86c0 .528-.79.771-1.205.37l-6.63-6.43a.5.5 0 0 1 0-.74'/%3E%3C/svg%3E");
}

@media screen and (max-width: 768px) {
    .card-wrapper {
        margin: 0 10px 25px;
    }

    .card-wrapper .swiper-slide-button {
        //display: none;
    }
}

.swiper-button-next {
    right        : 0px !important;
    border-radius: 8px 0 0 8px;
    padding-left : 4px;
}

.swiper-button-prev {
    left         : 0px !important;
    border-radius: 0 8px 8px 0;
    padding-right: 4px;
}