.swiper-slide {
    position: relative;
    min-height: 550px;
}

.qshs-bg,
.qshs-bg video,
.qshs-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.qshs-bg video,
.qshs-bg-img {
    object-fit: cover;
}

.qshs-bg-img{
    background-position: right;
}

.qshs-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    /*padding: 80px;*/
}

.qshs-title{
    font-family: "Montserrat", Sans-serif;
    font-size: 42px;
    line-height: 56px;
    font-weight: 400;
    color: #fff;
}

.qshs-title .qshs-highlight{
    color: #00b286;
    font-weight: 700;
    display: block;
}

.qshs-desc p{
    font-family: "Montserrat", Sans-serif;
    font-size: 19px;
    font-weight: 400;
    color: #fff;
    margin-top: 10px;
}

.qshs-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 7px 20px;
    background: #ff5a1f;
    color: #fff;
    text-decoration: none;
    margin-top: 25px;
}

.qshs-btn span{
    font-family: "Montserrat", Sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 26px;
}

.qshs-btn i {
    font-size: 15px;
    transition: transform .3s ease;
}

a.qshs-btn:hover{
    color: #fff;
}

.qshs-btn:hover i {
    transform: translateX(6px);
}

.qshs-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background-color: #00c389; /* green */
    z-index: 5;
    transition: width 0.1s linear;
}


/* Pagination container – desktop */
.qshsSwiper {
    position: relative;
}

.qshs-pagination {
    position: absolute;
    bottom: 40px !important;
    left: auto !important;
    right: 340px;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 0;
    z-index: 10;
}

/* Default dot */
.qshs-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: #25728d;
    opacity: 1;
    border-radius: 50%;
    transition: all 0.3s ease;
}

/* Active dot */
.qshs-pagination .swiper-pagination-bullet-active {
    background-color: #00b286;
    transform: scale(1.3);
}


@media (max-width: 991px) {
     .qshs-pagination {
        right: 250px;
        justify-content: center;
    }
}

@media (max-width: 767px){
    .qshs-bg-img{
        background-position: left;
    }
}

@media (max-width: 420px) {
     .qshs-pagination {
        left: 10px !important;
        right: auto;
        /*justify-content: start;*/
    }
}