#banner{
    display: none;
}











/* Booking */

#booking{
    padding: 100px 10%;
    position: relative;
}

#booking > h2{
    font-size: 55px;
    text-align: center;
    margin: 0 auto 50px auto;
}

#booking-section{
    background-color: #00000040;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2,1fr);
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    border-radius: 40px;
}

#booking-info{
    padding: 50px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    gap: 10px;
    position: relative;
}

#booking-info img{
    width: 100%;
    max-width: 100px;
    aspect-ratio: 1/1;
    -o-object-fit: contain;
       object-fit: contain;
    filter: drop-shadow(0 0 30px #00000040);
}

#booking-info span{
    opacity: 0.5;
    font-weight: 600;
}

#booking-info h2{
    font-weight: 900;
    font-size: 30px;
    text-align: center;
}

#booking-info ul{
    list-style: none;
    font-size: 18px;
    max-width: 350px;
}

#booking-info ul li{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

#booking-info ul li i{
    opacity: 0.5;
}

#booking-info ul li span{
    margin-top: -3px;
    font-weight: 500;
    opacity: 0.9;
}

#booking-info h3{
    font-weight: 700;
    font-size: 25px;
}

#booking-info p{
    max-width: 350px;
    font-weight: 300;
    opacity: 0.8;
    margin-top: 5px;
}

#booking-form{
    padding: 50px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

@media screen and (max-width: 900px) {
    #booking-section{
        -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1,1fr);
    }
    #booking-form{
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
    }
}

















/*-- Scroll Animations -------------------------*/

#booking-section.animate{
    transform: translateY(50px);
    opacity: 0;
}