#about-us-banner{
    position: relative;
}

#about-us-banner img{
    width: 100%;
    min-height: 135px;
    object-fit: cover;
    object-position: 50% 50%;
    max-height: 340px;
}

#about-us-banner h1{
    position: absolute;
    left: 18%;
    font-size: 60px;
    margin: 0;
    font-family: 'Anton', sans-serif !important;
    color: #FFF;
    z-index: 1;
    top: 50%;
    width: 300px;
    transform: translateY(-50%);
}

#about-us-map{
    height: 600px;
    width: 100%;
}

.about-up-map-view{
    display: flex;
    position: relative;
    width: 80%;
    margin: 85px auto;
    margin-top: 30px;
}

.about-up-map-view h1{
    color: #5D6D7E;
    font-size: 58px;
    line-height: 94px;
    position: absolute;
    width: 50%;
    padding-right: 100px;
    height: 100%;
    background: linear-gradient(90deg, #000 33%, rgba(255, 255, 255, 0.00) 100%);
    font-weight: 300;
    z-index: 2;
    padding-top: 50px;
}

.map-view-img{
    width: 100%;
    max-height: 600px;
    position: relative;
    overflow: hidden;
}

.map-view-img img{
    width: 100%;
    transition: scale .3s;
}

.map-view-point{
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 120px;
    height: 120px;
    background: rgba(182, 173, 92, 0.80);
    border-radius: 100%;
    z-index: 3;
    color: #FFF;
    font-size: 16px;
    transition: scale .3s;
}

.about-up-map-view:hover .map-view-img img{
    scale: 1.2;
}

.about-up-map-view:hover .map-view-point{
    scale: .9;
}

.map-view-point .bi-geo-alt{
    font-size: 30px;
}

#opening-hour,
#about-us-content{
    padding: 70px 0;
}


.schedules-table{
    width: 600px;
    border-collapse: collapse;
    margin: auto;
}

.schedules-table th,
.schedules-table td {
    padding: 10px;
    text-align: center;
    text-align: center;
    color: var(--tittle-color);
    opacity: .8;
}

#about-us-address{
    padding: 70px 0;
    background-color: #000;
}

.about-us-note{
    padding: 35px 0;
    text-align: center;
    color: #fff;
    opacity: .8;
    margin: 0;
    font-size: 22px;
    line-height: 22px;
}

@media screen and (max-width : 1400px) {
    .about-up-map-view h1{
        font-size: 40px;
        line-height: 60px;
    }
}

@media screen and (max-width : 1000px) {
    .about-up-map-view h1{
        font-size: 24px;
        line-height: 42px;
    }

    .schedules-table{
        width: 500px;
    }

}

@media screen and (max-width : 600px) {
    .about-up-map-view h1{
        font-size: 22px;
        line-height: 32px;
        width: 65%;
        padding-top: 0;
    }

    .about-up-map-view{
        width: 90%;
    }

    .map-view-point{
        width: 75px;
        height: 75px;
        font-size: 12px;
    }

    .map-view-point .bi-geo-alt {
        font-size: 16px;
    }

    .schedules-table{
        width: 100%;
    }
    
    .schedules-table th, 
    .schedules-table td{
        font-size: 14px;
    }

    #opening-hour,
    #about-us-content {
        padding: 45px 0;
    }

    #about-us-banner h1{
        font-size: 28px;
        width: 180px;
        left: 10px;
    }
    
    .about-us-note{
        font-size: 18px;
    }
}