.cqHeroSwiper {
    width: 100%;
    height: 90vh;
    position: relative;
}

.cq-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.cq-slide-bg::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.cq-slide-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    top: 20%;
    transform: translateY(-50%);
}

.cq-slide-content h1 {
    font-size: 60px;
    margin-bottom: 15px; 
    background: -webkit-linear-gradient(#1c8e51, #e9b619);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cq-slide-content p {
    font-size: 20px;
    margin-bottom: 25px;
}

.cq-btn {
    background: #ffffff;
    color: #000;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
}

/* progress container */
.autoplay-progress {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--swiper-theme-color);
}

.autoplay-progress svg {
    --progress: 0;
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 10;
    width: 100%;
    height: 100%;
    stroke-width: 4px;
    stroke: var(--swiper-theme-color);
    fill: none;
    stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
    stroke-dasharray: 125.6;
    transform: rotate(-90deg);
}

/* .autoplay-progress{
    --progress:0;

    position:absolute;
    right:20px;
    bottom:20px;
    z-index:5;

    width:48px;
    height:48px;

    display:flex;
    align-items:center;
    justify-content:center;
}

.autoplay-progress svg{
    transform:rotate(-90deg);
    width:48px;
    height:48px;
}

.autoplay-progress circle{
    fill:none;
    stroke:#fff;
    stroke-width:4;
    stroke-linecap:round;

    stroke-dasharray:126;
    stroke-dashoffset:calc(126 * var(--progress));
}

.autoplay-progress span{
    position:absolute;
    font-size:12px;
    color:#fff;
} */



/* KEN BURNS EFFECT */
.cq-slide-bg{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    transform:scale(1);
    transition:transform 8s ease;
}

.swiper-slide-active .cq-slide-bg{
    transform:scale(1.1);
}

/* TEXT ANIMATION */
.cq-slide-content{
    opacity:0;
    transform:translateY(40px);
    transition:all .8s ease;
}

.swiper-slide-active .cq-slide-content{
    opacity:1;
    transform:translateY(0);
}

/* Responsive Hero Height */
.cqHeroSwiper{
    width:100%;
    height:85vh;
    min-height:420px;
}

@media(max-width:768px){

    .cqHeroSwiper{
        height:60vh;
    }

    .cq-slide-content h2{
        font-size:28px;
    }

    .cq-slide-content p{
        font-size:16px;
    }

}

#mts_slider {
    color: #FFFFFF;
    /* background: #FFFFFF; */
    text-shadow: 1px 3px 0 #969696, 1px 13px 5px #aba8a8;
    color: #FFFFFF;
    /* background: #FFFFFF; */
}