.fop-slider-wrapper {
    position: relative;
    z-index: 2;
    padding: 144px 0 88px;
}

.fop-slider-wrapper::after {
    content: '';
    width: calc(100% + 300px);
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    position: absolute;
    bottom: 0;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.30) 0%, rgba(255, 255, 255, 0.30) 100%), linear-gradient(136deg, #6EA2D4 0%, #05284A 84.02%);
    filter: blur(50px);
    z-index: -2;
}

.fop-slider-wrapper > .container {
    position: relative;
}

.fop-slider-vector {
    position: absolute;
    z-index: -1;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.fop-slider .swiper-slide {
    display: flex;
    align-items: center;
    gap: 28px;
    justify-content: space-between;
}

.fop-slider .swiper-slide img {
    width: 388px;
    min-width: 388px;
    height: 388px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    object-fit: cover;
}

.fop-slider__content {
    width: 100%;
    color: #fff;
}

.fop-slider__content h3 {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    line-height: 100%;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.fop-slider__content p {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    line-height: 100%;
}

.fop-slider__pagination.swiper-pagination-bullets {
    position: absolute;
    display: flex;
    justify-content: center;
    width: calc(100% - 416px);
    height: fit-content;
    top: calc(100% - 70px);
    left: initial;
    right: 0;
    z-index: 1;
}

.fop-slider__pagination .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    background-color: rgba(255, 255, 255, .4);
    opacity: 1;
    z-index: 100;
}

.fop-slider__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: rgba(255, 255, 255, 1);
}

@media (max-width: 1000px) {
    .fop-slider__pagination.swiper-pagination-bullets {
        top: 100%;
        width: calc(100% - 288px);
    }

    .fop-slider__content p {
        padding-bottom: 15px;
    }

    .fop-slider .swiper-slide img {
        width: 288px;
        min-width: 288px;
        height: 288px;
    }

    .fop-slider__content h3 {
        font-size: 26px;
    }

    .fop-slider__content p {
        font-size: 22px;
    }
}

@media (max-width: 720px) {
    .fop-slider .swiper-slide {
        flex-direction: column;
    }

    .fop-slider__pagination.swiper-pagination-bullets {
        top: 0;
        width: 100%;
        position: relative;
    }

    .fop-slider-vector {
        display: none;
    }
}

@media (max-width: 500px) {
    .fop-slider-wrapper::after {
        filter: blur(30px);
    }
    .fop-slider-wrapper {
        padding: 85px 0 60px;
    }

    .fop-slider .swiper-slide img {
        width: 156px;
        min-width: 156px;
        height: 156px;
    }

    .fop-slider__content h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .fop-slider__content p {
        font-size: 18px;
        padding-bottom: 0;
    }

    .fop-slider__pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }

    .fop-slider__pagination.swiper-pagination-bullets {
        margin-top: 15px;
    }

    .fop-slider .swiper-slide {
        justify-content: initial;
    }
}