.slider {}
.slider .swiper {
    height: 100%;
}
.slider .swiper .swiper-slide > .container,
.slider .swiper .swiper-slide > .container > .row {
    height: 100%;
}
.slider .slider-bg-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 500px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 1;
    opacity: 0.7;
}
.slider .slider-block {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    height: 400px;
    background: #ffffffd1;
    padding: 25px;
    border-radius: var(--theme-card-border-radius);
}
.slider .slider-text {
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    z-index: 2;
    padding: 0 0 0 50px;
    height: 500px;
}
.slider .slider-img {
    position: relative;
    padding: 30px;
    z-index: 2;
    max-height: 500px;
}
.slider .slider-h2 {
    text-align: center;
    font-size: 36px;
    line-height: 45px;
    font-weight: 700;
    padding: 0 35px;
    margin: 0 0 25px 0;
}
.slider .slider-p {
    width: 100%;
    text-align: center;
    font-size: 18px;
    line-height: 30px;
    color: var(--bs-black);
    margin: 0 0 35px 0;
}
.slider .slider-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(--theme-color);
}
.slider .slider-autoplay-progress svg {
    --progress: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    stroke-width: 4px;
    stroke: var(--theme-color);
    fill: none;
    stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
    stroke-dasharray: 125.6;
    transform: rotate(-90deg);
}


@media (max-width: 1199px) {
    .slider .slider-img {
        height: 100%;
    }
    .slider .slider-text {
        padding: 0 30px;
    }
    .slider .slider-h2 {
        font-size: 30px;
        line-height: 34px;
        padding: 0;
    }
}
@media (max-width: 991px) {
    .slider .slider-bg-img {
        height: 100%;
    }
}
@media (max-width: 575px) {
    .slider .slider-text {
        height: 400px;
        padding: 15px;
        margin: 0 0 15px 0;
    }
    .slider .slider-block {
        height: 350px;
    }
    .slider .slider-h2 {
        margin: 0 0 20px 0;
        font-size: 24px;
        line-height: 28px;
    }
    .slider .slider-p {
        font-size: 16px;
        line-height: 22px;
        margin: 0 0 25px 0;
    }
}
