.booking_section {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #00000074;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    visibility: hidden;
    opacity: 0;
    transition: 1s;
    z-index: 99;
}

.booking_modal_active {
    visibility: visible;
    opacity: 1;
}

.booking_modal_disable {
    visibility: hidden;
    opacity: 0;
}

.booking_section .booking_contain {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 70%;
    height: 70%;
    background: #012c50;
    border-radius: 30px;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: 1s;
}

.booking_section .booking_contain i {
    position: absolute;
    top: 0;
    right: 0;
    color: #f9f3dc;
    font-size: 50px;
    transform: translate(10%, -10%);
    transition: .25s;
}

.booking_section .booking_contain i:hover {
    color: #00b3ff;
    cursor: pointer;
}

.booking_section .info_contain {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10%;
}

.booking_section .info_contain h2 {
    color: white;
    font-size: 100px;
    line-height: 1;
}

.booking_section .info_contain .popUpButton {
    font-size: 22px;
    font-weight: 700;
    margin-left: 10%;
    width: fit-content;
    padding: 10px 20px;
    border-radius: 25px;
    color: #012c50;
    background: #f9f3dc;
}

.booking_section .info_contain .subtitle {
    font-size: 25px;
    margin-top: 20px;
}

.booking_section .info_contain p {
    margin: 20px 0;
    font-size: 16px;
    color: white;
}

.booking_section .info_contain button {
    width: fit-content;
    font-size: 20px;
    font-weight: 600;
    padding: 10px 40px;
    border-radius: 30px;
    border: 0;
    color: #012c50;
    background: #f9f3dc;
    transition: .25s;
}

.booking_section .info_contain button:hover {
    color: white;
    background: #00b3ff;
    cursor: pointer;
}

.booking_section .media_contain {
    position: relative;
}

.booking_section .media_contain img {
    width: 80%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.booking_section .popup_contain {
    position: absolute;
    width: 70%;
    height: 80%;
    background: #012c50;
    border-radius: 30px;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: 1s;
    visibility: hidden;
    opacity: 0;
}

.shedule_modal_active {
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 100 !important;
}

.booking_section .popup_contain i {
    position: absolute;
    top: 0;
    right: 0;
    color: #f9f3dc;
    font-size: 50px;
    transform: translate(10%, -10%);
    transition: .25s;
}

.booking_section .popup_contain i:hover {
    color: #00b3ff;
    cursor: pointer;
}

@media (max-width: 996px) {
    .booking_section .booking_contain {
        grid-template-columns: 1fr;
        width: 90%;
        height: 90%;
    }
    .booking_section .booking_contain i {
        font-size: 40px;
    }
    .booking_section .info_contain {
        justify-content: flex-start;
        padding: 10% 5%;
    }
    .booking_section .info_contain h2 {
        font-size: 50px;
    }
    .booking_section .info_contain .popUpButton {
        font-size: 16px;
    }
    .booking_section .info_contain .subtitle {
        font-size: 20px;
        margin-top: 10px;
    }
    .booking_section .info_contain p {
        font-size: 14px;
    }
    .booking_section .info_contain button {
        font-size: 18px;
    }
    .booking_section .popup_contain {
        width: 90%;
        height: 80%;
    }
    .booking_section .popup_contain i {
        color: #00b3ff;
        font-size: 40px;
    }
    .booking_section .popup_contain i:hover {
        color: #012c50;
    }
}