.section-slider .slide-img img {
    width: 100%;
    height: 100%;
}

.section-slider .slide-content {
    position: absolute;
    bottom: 76px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}

.section-slider .slide-title {
    color: #fff;
    font-family: var(--title_font);
    font-size: 2.5rem;
    margin-bottom: 8px;
    text-align: center;
    display: block;
    width: 100%;
}

.section-slider .slide-title-en {
    color: #fff;
    font-family: var(--english_font);
    font-size: 1.3rem;
    text-align: center;
    display: block;
    width: 100%;
}

.section-slider .sw-navigation {
    position: absolute;
    bottom: 1rem;
    left: 0;
    width: 100%;
    justify-content: flex-end;
    gap: 0.5rem;
    right: 0;
}

.section-slider .btn-simple {
    margin-top: 46px;
}

.section-slider .sw-navigation .swiper-pagination-bullet {
    width: 48px;
    height: 8px;
    display: flex;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    outline: 2px solid rgba(255, 255, 255, 0.5);
}

.section-slider .sw-navigation .swiper-pagination-bullet-active {
    position: relative;
    overflow: hidden;
}

.section-slider .sw-navigation .swiper-pagination {
    display: flex;
    gap: 0.5rem;
    flex-direction: row-reverse;
}

@keyframes progress {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.section-slider .sw-navigation .swiper-pagination-bullet-active::before {
    content: "";
    position: absolute;
    top: 50%;
    bottom: 0;
    left: 0;
    height: 50%;
    width: 0;
    background-color: var(--color1);
    transform: translateY(-50%);
    animation: progress 7s linear infinite;
}


@media screen and (min-width:768px) {

    .section-slider .slide-content.slide-content-left,
    .section-slider .slide-content.slide-content-left .slide-title,
    .section-slider .slide-content.slide-content-left .slide-title-en {
        text-align: left;
    }

    .section-slider .slide-content,
    .section-slider .slide-title,
    .section-slider .slide-title-en {
        text-align: right;
    }

    .section-slider .slide-content {
        top: 50%;
        transform: translateY(-50%);
        bottom: auto;
    }

    .section-slider .slide-content.slide-content-left .container-fluid {
        padding-left: 60px;
        padding-right: 15px;
    }

    .section-slider .slide-content.slide-content-left .slide-content-inner {
        max-width: 96%;
    }

    .section-slider .slide-content-inner {
        padding: 0 15px;
    }
}

@media screen and (max-width:768px) {

    .section-slider .sw-navigation {
        left: 1rem;
        justify-content: center;
    }

    .section-slider .slide-content .container-fluid {
        padding-left: 0;
        padding-right: 0;
    }
}