.bottom-banner-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    width: 100%;
    height: 520px;
    padding-top: 42px;
}

.bottom-banner-container .bottom-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.bottom-banner-container .bottom-banner-title {
    text-transform: uppercase;
    color: white;
    text-align: center;
}
.bottom-banner-container .bottom-banner-discover-button {
    margin-top: 37px;
    z-index: 1;
}

@media only screen and (max-width: 992px) {
    .bottom-banner-container {
        height: 281px;
        padding-top: 0;
    }

    .bottom-banner-container .bottom-banner-image {
    }

    .bottom-banner-container .bottom-banner-title {
        font-size: 40px;
        line-height: 46px;
    }
    .bottom-banner-container .bottom-banner-discover-button {
        margin-top: 32px;
        z-index: 1;
    }
}