.floating-banner::before {
    content: '';
    position: absolute;
    height: 40%;
    width: 100%;
    bottom: 20%;
    background-position: bottom;
    background-size: cover;
}

.floating-banner__card {
    border: 1px solid var(--primary-palette-yellow-100);
    overflow: hidden;
}
    
.floating-banner__card::before {
    content: '';
    background-color: var(--secondary-palette-white);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    box-shadow: 0px 4px 4px 0px #00000026;
}

@media only screen and (width <= 992px) {
.floating-banner__card {
    border-radius: 0px;
    border-right:0px;
    border-left:0px;
    overflow: visible
}

}
