/* .banner-wrapper {
    background-image: url('../img/asset-banner-m.png');
}
@media screen and (min-width: 768px) {
    .banner-wrapper {
        background-image: url('../img/asset-banner.png');
    }
} */


.banner-bg {
    background: url('../img/asset-banner-m.png') center center / 150%;
}
@media screen and (min-width: 768px) {
    .banner-bg {
        background: url('../img/asset-banner.png') center center / 105%;
        animation: zoomOutBg2 1.5s ease forwards;
    }
    .img-wrapper .img-1 {
        object-position: 20%;
    }
}

@keyframes zoomOutBg {
    0% {
        background-size: 190%;
    }
    100% {
        background-size: 155%;
    }
}
@keyframes zoomOutBg2 {
    0% {
        background-size: 170%;
    }
    100% {
        background-size: 130%;
    }
}
