:root {
    --swiper-navigation-sides-offset: -50px;
    --swiper-pagination-bottom: 0px;
    /* --swiper-pagination-bottom: 8px; */
    --swiper-pagination-bullet-size: 8px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 16px;
    border-radius: 5px;
    background-color: #005BAC;
}

#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: 32px;
    height: 32px;
    padding: 7px;
}

.swiper-button-prev:after {
    width: 32px;
    height: 32px;
    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: 32px;
    height: 32px;
    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;
    position: absolute;
    background-color: #005BAC;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    padding: 7px;
    border-radius: 100%;
    color: white;
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: 1;
}

.swiper-button-disabled::after {
    background-color: #E9E9E9;
}

@media screen and (max-width: 768px) {
    .swiper-button-next:after, .swiper-button-prev:after {
        background-size: 16px 16px;
    }
    
}