.swiper .main {
    width: 100%;
    height: 750px;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
}

.swiper-button-prev.main,
.swiper-button-next.main {
    background-color: #16198b;
    padding: 10px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 90%;
    border: 2px solid #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

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

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: #2228d8;
    color: #055658;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #055658;
    border-radius: 50%;
    margin: 0 5px;
}

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

.color-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(26 26 26);
    opacity: 0.5;
}

@media only screen and (max-width:768px) {
    .swiper .main {
        height: 450px;
    }
  .swiper-button-prev.main, .swiper-button-next.main{
    height: auto !important;
  }
    .swiper-button-prev,
    .swiper-button-next {
        width: 40px;
        height: 40px;
    }
}
