/* Header */
header {
    background: url(../../../images/mall-facility/header-bg.jpg) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    padding: 200px 0 !important;
}

/* Facility */
#facility {
    margin-top: 48px;
    margin-bottom: 24px;
}
.facility-overlay-container {
    width: 100%;
    height: auto;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.facility-overlay-img {
    width: 100%;
    height: 25vw;
    display: block;
    object-fit: cover;
}

.facility-overlay-content {
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    background: rgba(0, 97, 191, 0.9);
    align-items: center;
    transition: all 300ms ease;
    justify-content: center;
}

.facility-overlay-container:hover .facility-overlay-content {
    opacity: 1;
}

@media only screen and (min-width: 768px) and (max-width: 997.98px) {

    /* Facility */
    .facility-overlay-img {
        height: 55vw;
    }

}

@media only screen and (max-width: 767.98px) {

    /* Header */
    header {
        padding: 64px 0 !important;
    }

    /* Facility */
    .facility-overlay-img {
        height: 60vw;
    }

}
