.booking_form_wrapper {
    background: linear-gradient(180deg, #10102E 0%, #00008D 72.5%);
    & .title_wrapper {
        margin-bottom: 5rem;
       & h1 {
            font-size: 50px;
            text-transform: uppercase;
            margin: 0;
            font-weight: 500;
            background: linear-gradient(10deg, #C4C4C4 0%, #FFFFFF 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
    }
    & .booking_form_inner_wrapper {
        display: flex;
        gap: 4rem;
        @media (max-width: 1024px) {
            flex-direction: column-reverse;
        }
        & .booking_form_left {
            width: 30%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            @media (max-width: 1024px) {
                width: 100%;
            }
        }
        & .booking_form_inner {
            width: 70%;
            @media (max-width: 1024px) {
                width: 100%;
            }
        }
        
    }
    & .tel_link { 
        background: var(--white);
        color: #fff;
        text-decoration: underline; 
        padding: 1rem 2rem;
        border-radius: 5px;
        font-weight: 600;
        font-size: 1.6rem;
        position: relative;
        height: 72px;
        display: flex;
        align-items: center;
        width: 100%;
        margin-bottom: 2rem;
        & .email_icon {
            margin-right: 1rem;
        }
        & .email_wrapper {
            display: flex;  
            flex-direction: column;
            & .email_text {
                font-size: 14px;
                color: #929292;
                margin-bottom: 0.5rem;
            }
            & .email_address {
                font-size: 1.2rem;
                font-weight: 600;
                color: #414143;
                text-transform: none;
                font-size: 18px;
            }
        }
    }
    & .email_link { 
        background: var(--white);
        color: #fff;
        text-decoration: underline; 
        padding: 1rem 2rem;
        border-radius: 5px;
        font-weight: 600;
        font-size: 1.6rem;
        position: relative;
        height: 72px;
        display: flex;
        align-items: center;
        width: 100%;
        & .email_icon {
            margin-right: 1rem;
        }
        & .email_wrapper {
            display: flex;  
            flex-direction: column;
            & .email_text {
                font-size: 14px;
                color: #929292;
                margin-bottom: 0.5rem;
            }
            & .email_address {
                font-size: 1.2rem;
                font-weight: 600;
                color: #414143;
                text-transform: none;
                font-size: 18px;
            }
        }
    }
}



