
.bannerContainer {
    width: 100%;
    height: 80vh;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    position: relative;
}

.bannerDiv {
    position: absolute;
    background-image: url("../../images/banner/banner3.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    filter: brightness(50%);
}

.bannerText {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    z-index: 1;
    width: 50%;
    margin: 0px;
}

.quoteContainer{
    width: 25%;
    border: 2px solid black;
    height: 95% !important;
    padding: 20px;
}

#headingH1{
    font-family: 'Nunito Sans', sans-serif;
    color: white;
    padding: 10px;
    font-weight: 900;
    /* text-align: center; */
    font-size: 48px;
}

.subHeading{
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: white;
    padding: 10px;
}

.mainBookBtn{
    font-family: 'Nunito Sans', sans-serif;
    font-size: 30px;
    font-weight: 900;
    border-radius: 50px;
    padding: 10px 30px;
    margin-top: 2rem;
    background-color: #26A4EC;
    color: white;
}

@media screen and (max-width: 800px){
    
    #headingH1{
        font-size: 42px;
    }
    .bannerText {
        width: 100%;
    }
    .bannerContainer {
        flex-direction: column;
        height: fit-content;
    }
    .quoteContainer{
        margin: 10px 0;
        width: 50%;
    
    }
}

@media screen and (max-width: 600px){

    .mainBookBtn{
        font-size: 25px;
    }
}

@media screen and (max-width: 540px){

    #headingH1{
        font-size: 32px;
    }
    .quoteContainer{
        width: 80%;
    
    }
}

@media screen and (max-width: 470px){
    
    .mainBookBtn{
        font-size: 20px;
    }
    .quoteContainer{
        width: 95%;
    
    }
}

@media screen and (max-width: 350px){

    #headingH1{
        font-size: 30px;
    }
}