@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.service-left {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    background: #fff;
}

.card-wrapper {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 1100px;
    margin: 0 60px 35px;
    padding: 20px 10px;
    overflow: hidden;
    font-family: "Montserrat", sans-serif;
}

.card-list .card-item .card-link {
    user-select: none;
    display: block;
    background: #fff;
    padding: 18px;
    border-radius: 12px;
    text-decoration: none;
    border: 2px solid #2a074b;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
    transition: 0.2s ease;
}

.card-list .card-item .card-link:active {
    cursor: grabbing;
}

.card-list .card-item .card-link:hover {
    border-color: #85cae6;
}

.card-list .card-link .card-image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 10px;
}

.card-list .card-link .card-title {
    margin-top: 10px;
    font-size: 1.19rem;
    color: black;
    font-weight: 600 bold;
}

.card-list .card-link .badge {
    color: white;
    background: #2a074b;
    padding: 8px 16px;
    font-size: 1rem;
    font-weight: 500;
    margin: 16px 0 18px;
    width: fit-content;
    border: 1px solid #fff;
    border-radius: 12px;
    transition: 0.8s ease;
}

.card-list .card-link .further-button {
    font-size: 1.25rem;
    padding: 10px 35px;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    background: #2a074b;
    border: 1px solid transparent;
    transition: 0.8s ease;
    margin: 15px 0 5px;
}

.card-list .card-link:hover .further-button {
    color: black;
    background: #85cae6;
}

.card-list .card-link:hover .badge {
    color: black;
    background: #85cae6;
    border: 1px solid #85cae6;
    transform: 0.2s ease;
    }

.card-list .card-link:hover .card-title {
    color: #85cae6;
    transform: 0.2s ease;
    }

.card-wrapper .swiper-pagination-bullet {
    height: 13px;
    width: 13px;
    opacity: 0.5s;
    background: black;
}

.card-wrapper .swiper-pagination-bullet-active {
    opacity: 1;
}

.card-wrapper .swiper-slide-button {
    color: black;
    margin-top: -35px;
}

.card-wrapper .swiper-slide-button:hover {
    color: grey;
    transition: 0.4s ease;
}

@media screen and (max-width: 768px) {
    .card-wrapper {
        margin: 0 10px 25px;
    }

    .card-wrapper .swiper-slide-button {
        display: none;
    }
}