.slide-container {
    /* max-width: 1120px; */
    width: 100%;
    /* padding: 40px 0; */
}

.slide-content,
.slide-content-2 {
    /* margin: 0 60px; */
    overflow: hidden;
    border-radius: 25px;
}

.swiper-card {
    /* border-radius: 25px; */
    /* background-color: #FFF; */
}

.image-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 14px;
}

.swiper-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 14px 25px;
}

.swiper-card .image-content {
    position: relative;
    row-gap: 5px;
    /* padding: 25px 0; */
}

.swiper-card .overlay {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    /* background-color: var(--light); */
    border-radius: 25px 25px 0 25px;
}

.swiper-card .overlay::before,
.swiper-card .overlay::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -40px;
    height: 40px;
    width: 40px;
    /* background-color: var(--light); */
}

.swiper-card .overlay::after {
    border-radius: 0 25px 0 0;
    background-color: #FFF;
}

.swiper-card-image {
    position: relative;
    /* height: 80px; */
    width: 100%;
    /* border-radius: 50%; */
    /* background: #FFF; */
    padding: 3px;
}

.swiper-card-image .swiper-card-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    /* border-radius: 50%; */
    /* border: 4px solid var(--light); */
}

.swiper-card .name {
    font-family: 'playfair', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 26.66px;
    letter-spacing: 0.4000000059604645px;
    text-align: center;
    color: var(--dark);

}

.swiper-card .description {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 31px;
    text-align: center;
    color: var(--black);

}

.swiper-card .button {
    border: none;
    font-size: 16px;
    color: #FFF;
    padding: 8px 16px;
    background-color: var(--light);
    border-radius: 6px;
    margin: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.swiper-card .button:hover {
    background: var(--dark);
}

.swiper-navBtn {
    color: var(--white);
    background-color: #5538f4;
    width: 50px;
    height: 50px;
    transition: color 0.3s ease-in-out;
    transition: background-color 0.2s ease-in-out;
    border-radius: 100px;
}

.swiper-navBtn:hover {
    color: var(--light);
    background-color: #20DEE2 ;
}

.swiper-navBtn::before,
.swiper-navBtn::after {
    font-size: 20px;
    color: var(--white);
}

.swiper-button-next,
.swiper-button-next-2 {
    right: 0;
}

.swiper-button-prev,
.swiper-button-prev-2 {
    left: 0;
}

.swiper-pagination-bullet {
    background-color: #5538f4 ;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: #5538f4;
}

@media screen and (max-width: 768px) {

    .slide-content,
    .slide-content-2 {
        margin: 0 10px;
    }

    .swiper-navBtn {
        display: none;
    }
}

.swiper-card .country-name {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 29px;
    letter-spacing: -0.20000000298023224px;
    text-align: left;
    color: var(--black);

}

.swiper-card .rating-star {
    padding: 0 5px;
}

.swiper-card .rating-col {
    text-align: end;
}