.promo-block {
    display: flex;
    min-height: 444px;
    position: relative;
    overflow: hidden;
    --nb-r: 30px;
    --nb-w: 70px;
    --nb-h: 10px;
}

.promo-content-container {
    width: 48%;
}

.promo-content {
    flex: 1;
    padding: 50px 60px;
    background-color: #00A769;
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 1;
    border-radius: 30px;
}

/* Декоративные круги */
.promo-content::before {
    content: '';
    position: absolute;
    background-image: url("/local/templates/ozera/assets/images/new-main-page/procent.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 571px;
    height: 552px;
    top: -32px;
    left: 43%;
    transform: translate(-50%);
}

.promo-title {
    color: white;
    font-size: 53px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 10px;
    font-family: SourceSerif-;
    /* max-width: 600px; */
    position: relative;
    z-index: 1;
}

.promo-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 22px;
    line-height: 137%;
    margin-bottom: 30px;
    max-width: 767px;
    position: relative;
    z-index: 1;
}

.promo-image {
    flex: 1;
    background-image: var(--image);
    background-size: cover;
    background-position: center;
    position: absolute;
    border-radius: 30px;
    overflow: hidden;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: -1;
}

/* Замените на реальное изображение */
.promo-image.real {
    background-image: url('path-to-your-image.jpg');
}

.promo-block-pagination.swiper-pagination.swiper-pagination-fraction, 
.promo-block-pagination.swiper-pagination {
    /* display: block !important; */
    display: none !important;
    bottom: -40px;
    right: 0;
    height: 35px;
    font-size: 18px;
    font-family: SourceSerif-;
}

.swiper-pagination-current {
    font-size: 28px;
}

@media (max-width: 1200px) {
    .promo-image {
        position: relative;
        height: 135px;
        width: 100%;
        margin-bottom: 15px;
    }

    .promo-content-container {
        width: 100%;
        
    }

    .promo-content::before {
        width: 78px;
        height: 76px;
        top: 177px;
        right: 21px;
        left: inherit;
    }
}

@media (max-width: 768px) {
    .promo-block {
        /* height: 323px; */
        --nb-w: 40px;
        --nb-h: -5px;
    }

    .promo-content-container .b-btn.white {
        position: relative;
        bottom: 0;
        width: 100%;
    }

    .promo-block-pagination.swiper-pagination.swiper-pagination-fraction, 
    .promo-block-pagination.swiper-pagination {
        display: block !important;
    }

    .promo-content {
        padding: 55px 20px 60px;
        height: auto;
    }

    .promo-description {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .promo-content::before {
        top: 27%;
        right: -10px;
    }

    .promo-content-container .b-btn {
        /* width: 100%; */
        text-align: center;
    }

    .promo-title {
        font-size: 24px;
        max-width: 400px;
        margin-bottom: 15px;
    }

    .promo-block-wrapper {
        margin-bottom: 40px;
    }
}