.banner{
    margin-top: 2rem;
    flex-direction: column;
}

.banner-left{
    background-image: url("<?php echo base_url(); ?>assets/images/banner-1.jpg");
    width:100%;
    height: var(--banner-height);
}
.banner-right{
    width: 100%;
    flex-direction: row;
}
.banner-right div.one{
    background-image: url("<?php echo base_url(); ?>assets/images/banner-2.jpg");
    width: 50%;
    height: calc( var(--banner-height) / 2 );
}
.banner-right div.two{
    background-image: url("<?php echo base_url(); ?>assets/images/banner-3.jpg");
    width: 50%;
    height: calc( var(--banner-height) / 2 );
}
.banner-bg{
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.banner-bg>.inner {
    height: inherit;
    /* background: #0000002e;
    background: -webkit-linear-gradient(107deg, #020202, #0000002e);
    background: linear-gradient(107deg, #020202, #0000002e); */
    background-image: radial-gradient( circle farthest-corner at -0.3% 4.3%, #000000fa 7%, #00000000 90% );
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    padding: 2.5vw;
}
.banner-bg>.inner>p{
    font-size: 1.2rem;
    color: #ee9b00;
    text-shadow: 1px 1px 2px black;
    text-transform: capitalize;
}
.banner-bg>.inner>h3{
    color: white;
    font-size: 1.8rem;
}
.banner-bg > .inner:hover {
    opacity: 0.8;
}
#quotation p{
    font-size: 1.4rem;
}
#about-mehandi{
    flex-direction: column;
}
#about-mehandi .img-cont {
    width: 100%;
}
#about-mehandi article{
    font-size: 1.2rem;
    padding: 0.5rem 1rem 1rem;
    text-align: justify;
}
#about{
    background: url('../img/header-bg.webp');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 0;
}
#about>.inner{
    flex-direction: column;
    padding: 4rem 2rem;
    backdrop-filter: brightness(0.29);
}
#about>.inner>div{
    width: 100%;
    color: white;
}
#about>.inner>div.one{
    margin-bottom: 2rem;
}
#about>.inner>div.two{
    letter-spacing: 0.8px;
    line-height: 1.4rem;
    text-align: justify;
}
#about>.inner>div.two>p{
    padding-bottom: 0.5rem;
}
#gallery .img-div{
    width: var(--gal-img_c_width);
    height: calc( var(--gal-img_c_width) * 0.75 );
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border: 2px solid white;
    border-radius: 8px;
    transition: all 1s;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
#gallery .img-div>h3{
    color: white;
    font-size: 1.6rem;
    padding: 0.2rem 0.6rem;
    margin-bottom: 1rem;
    backdrop-filter: brightness(0.5);
    display: none;
}
#gallery .img-div:hover, #gallery .img-div:active{
    background-position: top;
}

@media screen and (min-width: 426px) {
    /* if viewport is 426px or greater */
    .banner{
        flex-direction: row;
    }
    .banner-left{width: 60%;}
    .banner-right{width: 40%;flex-direction: column;}
    .banner-right div.one,.banner-right div.two{width: 100%;}
    .banner-bg>.inner>p{
        font-size: 1.8rem;
    }
    .banner-bg>.inner>h3{
        font-size: 2.2rem;
    }
    #quotation{
        padding: 4rem 2rem;
    }
    #quotation p{
        font-size: 2.2rem;
    }
}

@media screen and (min-width: 800px) { 
    #about-mehandi{
        flex-direction: row;
    }
    #about-mehandi .img-cont, #about-mehandi .article {
        width: 45%;
        padding: 0.5rem 3rem;
    }
    #about-mehandi article{
        width: 55%;
        font-size: 1.4rem;
        text-align: justify;
    }
    #about>.inner>div.one{
        text-align: left;
    }
    #about>.inner>div.two{
        font-size: 1.4rem;
        line-height: 1.8rem;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    #about>.inner>div.two>p{
        width: 48%;
    }
}
@media (min-width: 1440px) {
    
}
#service .av-btn{
    color: var(--av_bg-1);
    font-size: 1rem;
}
