.Renovation_Banner_Default{
    --ImageWidth: 2000;
    --ImageHeight: 1000;
    --MinHeight: 600px;

    --Mobile_ImageWidth: 450;
    --Mobile_ImageHeight: 450;
    --Mobile_MinHeight: 300px;
}
.Renovation_Banner_Default{
    position: relative;
    padding-bottom: calc( var(--ImageHeight) / var(--ImageWidth) * 100% );
    width: 100%;
    min-height: var(--MinHeight);
}
@media only screen and (max-width: 991.98px) {
    .Renovation_Banner_Default{
        padding-bottom: calc( var(--Mobile_ImageHeight) / var(--Mobile_ImageWidth) * 100% );
        min-height: var(--Mobile_MinHeight);
    }
}

.Renovation_Banner_Default div{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-attachment: fixed;
}