.hero-bookings{
    background: url(./assets/images/bookings-banner1.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 95vh;
    border-radius: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 3rem 0;
}

.booking-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    width: 100%;
}

.form{
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.input-group{
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.input-group>input{
    width: 34rem;
    height: 3.5rem;
    padding: 0.5rem;
    border: none;
    border-bottom: 2px solid #dddddd;
    background: transparent;
    font-family: poppins;
    font-size: 1.1rem;
    color: white;
}

.input-group-single{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

textarea{
    width: 90%;
    height: 5rem;
    padding: 0.5rem;
    border: none;
    border-bottom: 2px solid #dddddd;
    background: transparent;
    font-family: poppins;
    color: white;
}

.form button{
    width: 19.7rem;
    cursor: pointer;
    height: 5rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    justify-content: center;
    border-radius: 50px;
    border: none;
    outline: none;
    margin-top: 1rem;
}
.button-text{
    font-family: mulishBold;
    font-size: 1.5rem;
    color: #634221;
    text-transform: uppercase;
}

@media screen and (max-width: 1300px){
    .form{
        width: 90%;
    }
    .input-group{
        width: 100%;
    }
    textarea{
        width: 100%;
    }
}

@media screen and (max-width: 1100px){
    .form{
        width: 100%;
    }
    .input-group{
        width: 100%;
    }
}

@media screen and (max-width: 950px){
    .form{
        width: 100%;
    }
    .input-group{
        width: 100%;
        flex-direction: column;
        gap: 1rem;
    }
    textarea{
        width: 34rem;
    }
}