* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.swiper-container {
    width: 100%;
    max-width: 800px;
    padding-top: 50px;
    padding-bottom: 50px;
    position: relative;
}

.swiper-slide {
    width: 300px;
}

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

.swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background: #bbb;
    border-radius: 50%;
    margin: 0 5px;
    opacity: 0.5;
    cursor: pointer;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background-color: #06273A !important;
}

.swiper-button-prev,
.swiper-button-next {
    position:static;
    width: 90px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    height: fit-content !important;
}

.swiper-button-prev {
    position: static;
    margin-top: 20px;
    background-image: none;
    /* left: 20px; */

}

.swiper-button-next {
    position: static;
    margin-top: 20px;
    width: 90px;
    background-image: none;
    /* right: 20px; */
}