.swiper {
    margin: 10px;
    padding: 40px;
}

.swiper h1 {
    color: white;
    margin-bottom: 30px;
}

.swiper-slide {
    background-color: white;
    justify-content: center;
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
}

.swiper-slide img {
    display: block;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-card-body {
    margin-bottom: 10px;
    padding: 10px;
}
.swiper-card-title{
    color: brown;
}
.btn {
    text-decoration: none;
    background-color: brown;
    margin-top: 10px;
    padding: 10px;
    color: white;
    border-radius: 10px;

}

.swiper-button-next,
.swiper-button-prev {
    color: #123c5a;
    font-weight: 600;
}

.swiper-pagination-bullet {
    background-color: white;
}

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

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }


}