:root {
    --swiper-navigation-sides-offset: -80px;
    --swiper-pagination-bottom: 0px;
    /* --swiper-pagination-bottom: 8px; */
    --swiper-pagination-bullet-size: 8px;
}

@media screen and (max-width: 1023px) {
    :root {
        --swiper-navigation-sides-offset: -10px;
    }
    
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 16px;
    border-radius: 5px;
    background-color: #349FFF;
}

#conservative-investor .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #E49100;
}

.swiper-button-next:after, .swiper-button-prev:after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    padding: 7px;
    color: white;
    background-color: #349FFF;
    border-radius: 100%;
}

.swiper-button-prev:after {
    width: 48px;
    height: 48px;
    background-image: url('../image/icon/angle-left_outline.svg');
    background-size: 25px 25px;
    background-position: center;
    background-repeat: no-repeat;
}

.swiper-button-next:after {
    width: 48px;
    height: 48px;
    background-image: url('../image/icon/angle-right_outline.svg');
    background-size: 25px 25px;
    background-position: center;
    background-repeat: no-repeat;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 18px;
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: 0;
}

.swiper-button-disabled::after {
    background-color: transparent;
}

@media screen and (max-width: 768px) {
    .swiper-button-next:before, .swiper-button-prev:before {
        width: 40px;
        height: 40px;
    }

    .swiper-button-next:after, .swiper-button-prev:after {
        background-size: 16px 16px;
        width: 40px;
        height: 40px;
    }
    
}