
body{
    overflow-x: hidden;
    
}
header{
    position:absolute;
    top:0;
    left:0;
    right:0;
}
.banner-sec{
    background:url("../image/aboutbanner.png");
    background-position: center;
    background-size:cover;
    background-repeat:no-repeat;
    display:flex;
    align-items:center;
}
.banner-content{
    position:relative;
    z-index:2;
    /*padding: 120px 0;*/
    text-align:center;
}
.banner-content > .title1{
    font-size:84px;
    font-weight:bold;
    font-family:var(--rajdhani-txt);
    color:var(--white-txt);
    margin-bottom:30px;
}
.banner-content > .sub-txt{
    font-size:30px;
    font-weight:500;
}
@media screen and (max-width:1200px){

.offcanvas.offcanvas-end {
    z-index:9999;
}
}
@media screen and (max-width:475px){
    .banner-content > .title1{
        font-size:55px;
    }
    .banner-content > .sub-txt{
        font-size:29px;
    }
}
/*Cursor CSS*/
.cursor {
        position:fixed;
        top: 0;
        left: 0;
        background: #f5ed11;
        height: 12px;
        width: 12px;
        border-radius: 50%;
        mix-blend-mode: difference;
        z-index: 11;
        pointer-events: none;
        transform: translate(-50%, -50%);
      }

      .cursor-border {
        transform: translate(-50%, -50%);
        pointer-events: none;
        position: fixed;
        top: 0;
        left: 0;
        border: 1px solid white;
        height: 50px;
        width: 50px;
        border-radius: 50%;
        mix-blend-mode: difference;
        z-index: 11;
      }
    