.swiper {
    width: 100%;
    margin-top: 30px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    width: 100%;
    max-width: 450px;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;

}

.swiper-button-next,
.swiper-button-prev,
.swiper-button-next::after,
.swiper-button-prev::after {
    color: #0f3d3d;
    padding: 10px;
    border-radius: 60%;
}


.see-more {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.see-more a {
    padding: 10px 20px;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.see-more a:hover {
    background: white;
    color: #000;
}