.features-container {
    background-color: var(--apricot-variant-3);
    padding-top: 70px;
    padding-bottom: 70px;
}

.features-container h2 {
    text-align: center;
    margin: 15px 0;
    color: var(--main-blue);
}

.features-container p {
    text-align: center;
}

.features-container .features-swiper {
    overflow: hidden;
    max-width: 650px;
    width: auto;
    margin: auto;
    padding-top: 60px;
    position: relative;
}

.features-container .swiper-wrapper {
    padding-bottom: 40px;
}

.features-container .swiper-slide {
    overflow: hidden;
}

.features-container img {
    width: 100%;
    padding-bottom: 50px;
}

.features-container .swiper-button {
    bottom: 0;
    top: auto;
    width: fit-content;
    height: fit-content;
}

.features-container .swiper-button::after {
    display: none;
}

.features-container .swiper-button-next, 
.features-container .swiper-rtl .swiper-button-prev {
    right: 50%;
    transform: translateX(110%);
}

.features-container .swiper-button-prev, 
.features-container .swiper-rtl .swiper-button-next {
    left: 50%;
    transform: translateX(-110%);
}

@media screen and (max-width: 767px) {
    .features-container h2 {
        font-size: 50px;
    }
}