/**
* Block Name: banner
*/



section.banner img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 0;
    max-height: 624px;
}

section.banner svg {
    position: absolute;
    z-index: 1;
    top: 3px;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scaleY(1.05);

}

section.banner::after {
    position: absolute;
    content: '';
    height: 624px;
    width: 1%;
    background: linear-gradient(180deg, #F4F1EE -2.01%, #FFF 97.99%);
    z-index: 2;
    top: 0;
    right: 0;
}

@media (max-width: 767px) {
    section.banner {
        background: linear-gradient(180deg, #F4F1EE -2.01%, #FFF 97.99%);
    }

    section.banner::after{
        height: 30vh;
    }
    section.banner img {
        max-height: none;
    }
    section.banner svg {
        top: 2px;
    }

}