.hero-banner-block {
    min-height: 100%;
    position: relative;
    padding: 3.3rem 0;
    overflow: hidden;
}
.hero-banner--shape:after {
    content: "";
    position: absolute;
    width: 1200px;
    height: 900px;
    left: 69%;
    top: 50%;
    background: var(--primary-color);
    border-radius: 100%;
    transform: translateY(-50%);
    z-index: 2;
}
.hero-banner--image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}
.hero-banner-block.hero-banner--shape .hero-banner--image-wrapper {
    width: 80%;
}
.hero-banner--picture,
.hero-banner--picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-banner--text-block {
    position: relative;
    z-index: 3;
}
@media (max-width: 767px) {
    .hero-banner-block.hero-banner--shape .hero-banner--image-wrapper {
        width: 100%;
    }
    
    .hero-banner--shape:after {
        width: 120%;
        height: 100%;
        top: auto;
        left: -8%;
        bottom: -88%;
        transform: translate(0);
    }
}