.other-site {
    padding: 80px 0;
}

.other-site-carousel {
    border-radius: 80px;
    padding: 50px 30px;
    background-size: cover;
}

.other-site__card {
    transition: background-color .4s;
    display: block;
    text-decoration: none !important;
    border-radius: 15px;
    background: var(--neutral-300, #f3f3f3);
    height: 100%;
}

.other-site__card:hover {
    background: var(--neutral-300, #f3f3f3);
}

.other-site__card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-dark);
}

.other-site__image {
    width: 90px;
    height: 90px;
    object-fit: cover;
}

.other-site__button-swiper {
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.other-site__button-swiper:hover {
    cursor: pointer;
}

@media (max-width:991.98px) {
    .other-site {
        padding: 60px 0;
    }

    .other-site-carousel {
        border-radius: 40px;
        padding: 40px 25px;
    }
}