@font-face {
    font-family: montserrat;
    src: url('../assets/font/montserrat/Montserrat-VariableFont_wght.ttf');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: montserrat, sans-serif;
}

.common_padding {
    padding: 3% 5%;
}

.banner img {
    height: 40vh;
    width: 100%;
}

.banner {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../assets/images/service.webp');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
}

.banner .heading {
    height: 40vh;
    width: 100%;
    font-size: 60px;
    letter-spacing: 15px;
}

.contain {
    display: flex;
    justify-content: space-between;
}

.contain .image {
    width: 22%;
}

.contain .image img {
    width: 100%;
}

.contain .description {
    width: 73%;
    display: flex;
    align-items: center;
}

.book-table .contain .image img {
    border-radius: 10%;
}

.booking-form .title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.booking-form .title .pre_heading {
    font-size: 15px;
    line-height: 1.2;
    font-family: montserrat;
    font-weight: bolder;
}

.booking-form .title .heading {
    font-size: 41px;
    font-family: fredericka;
}

.booking-form .form-contain {
    display: flex;
    justify-content: center;
    gap: 22px;
}

.booking-form .form-contain .left,
.booking-form .form-contain .right {
    display: flex;
    flex-direction: column;
    gap: 27px;
}

.booking-form .form-contain input {
    width: 24.73vw;
    height: 66px;
    padding-left: 24px;
    border: 1px solid #bebebe;
    border-radius: 10px;
    font-family: montserrat, sans-serif;
}

.booking-form .form-contain input[name="date"],
.booking-form .form-contain input[name="people"],
.booking-form .form-contain input[name="time"] {
    padding-right: 20px;
}

.booking-form .form-contain .right button {
    width: 24.73vw;
    height: 66px;
    background-color: #ffe001;
    border-radius: 10px;
    border: none;
    font-size: 17px;
    line-height: 1.2;
    font-family: montserrat;
    font-weight: bolder;
}



@media screen and (max-width: 991px) {
    .booking-form .form-contain {
        flex-direction: column;
        align-items: center;
    }

    .booking-form .form-contain input {
        width: 90vw;
    }

    .booking-form .form-contain .right button {
        width: 90vw;
    }

}

@media screen and (max-width: 767px) {
    .contain {
        flex-direction: column;
    }

    .contain .image {
        width: 100%;
    }

    .contain .image img {
        width: 50%;
    }

    .contain .description {
        width: 100%;
        display: flex;
        align-items: center;
    }
}