@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
    --main-color:#6c63ff;
    --main-2:rgba(14, 13, 13, 0.582);
    --next-color:white;
    --color-bg:#1f2641;
    --color-bg1:#2e3267;
    --color-bg2:#424890;

}



*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

/* HTML: <div class="loader"></div> */
.loader {
    display: inline-flex;
    gap: 10px;
  }
  .loader:before,
  .loader:after {
    content: "";
    height: 20px;
    aspect-ratio: 1;
    border-radius: 50%;
    background:
      radial-gradient(farthest-side,#000 95%,#0000) 35% 35%/6px 6px no-repeat
      #fff;
    animation: l5 3s infinite;
  }
  @keyframes l5 {
    0%,11%   {background-position:35% 35%}
    14%,36%  {background-position:65% 35%}
    38%,61%  {background-position:65% 65%}
    64%,86%  {background-position:35% 65%}
    88%,100% {background-position:35% 35%}
  }
  .ldcontainer{
    width: 100%;
    position: fixed;
    height: 100%;
    background-color: black;
    z-index: 99999999;
    display: flex;
    justify-content: center;
    align-items: center;
    /* display: none; */
  }

body{
    background-color: var(--color-bg);

    
    font-family: Poppins;
    margin: 0;
    padding: 0;
    /* background-color: #010101; */
    color: var(--next-color);
    
    width: 100%;
    overflow: auto;
    /* overflow: hidden; */
}

.bcemain{
    background-color: var(--next-color);
    color: var(--main-2);
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    align-items: center;
    padding: 2vw 0px;
    height: 15vw;
}
.bcemain h1{
    color:var(--main-color);
    /* font-size: vw; */
}

.bclogo{
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bclogo h1{
    font-size: 5vw;
    line-height: 1;
}
.bclogo p{
    color: var(--main-color);
    font-weight: 750;
    line-height: 1;
}

.bceinfo{
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.bceinfo h1{
    font-size: 3vw;
}
.bceinfo p{
    color: var(--color-bg);
    font-weight: 700;
    
}
.bceinfo p:nth-child(3){
    font-size: 1vw;
}
/* svg{
    width: 25px;
} */

/* navbar style */
.navbar{

    /* height: 4vw; */
    width: 100%;
    background-color:var(--main-color);
    color: var(--next-color);
    display: flex;
    position: sticky;
    justify-content: space-around;
    top: 0;
    /* transform: translateY(2vw); */
    z-index: 9999999;
    align-items: center;
    /* padding-left: 5vw; */
    /* justify-content: space-around; */
}
.nav-logo{
    padding-left: 2vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.nav-logo h1{
    /* text-transform: uppercase; */
    font-style: italic;
    /* align-items: center; */
}
.navlist{
    display: flex;
    list-style: none;
    align-items: center;
}
.navbar .icnmenu{
    display: none;
}
.navlist li{
    /* margin-left: 2vw; */
    padding: .5vw .8vw;
    text-align: center;
    
    position: relative;
    /* border-left: 1px white solid ; */
    border-right: 1px white solid ;
}
.navlist li:hover{
    background-color: var(--next-color);
    color: var(--main-color);
}
.navlist li:hover a{
    color: var(--main-color);
}

.navlist li a{
    color: var(--next-color);
    text-decoration: none;
    text-transform: capitalize;
    font-size: 1.5vw;
    font-weight: 500;
    /* letter-spacing: .2vw; */
}


/* navbar style ending */



header{
    width: 100%;
    max-width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: 50px 1fr 50px;
    grid-template-rows: 50px;
    justify-content: center;
    align-items: center;
    position: relative;
    transform: translateY(2vw);
    z-index: 100;
    /* margin-top: 10vw; */
}
header .logo{
    font-weight: bold;
    width: 8VW;
    /* font-size: 2VW; */
    /* border: SOLID WHITE; */
}
header .menu{
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    font-weight: 500;
}
.menu li a{
    color: var(--next-color);
    text-decoration: none;
}
/* css slider */
.slider{
    /* top: 0; */
    transform: translateY(-4vw);
    height: 40VW;
    /* margin-top: 2.3VW; */
    position: relative;
    width: 100%;
}
.slider .list .item{
    position: absolute;
    inset: 0 0 0 0;
    /* margin-left: 2vw; */
    overflow: hidden;
    width: 100%;
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}
.slider .list .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slider .list .item::after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: linear-gradient(
        to top, #000 40%, transparent
    );
}
.slider .list .item .content{
    position: absolute;
    left: 10%;
    top: 20%;
    width: 500px;
    max-width: 80%;
    z-index: 1;
}
.slider .list .item .content p:nth-child(1){
    text-transform: uppercase;
    letter-spacing: 10px;
}
.slider .list .item .content h2{
    font-size: 5VW;
    z-index: 9999;
    
    margin: 0;
}

.slider .list .item .content P button{
    padding: 1vw 2vw;
    background-color: var(--main-color);
    box-shadow:  2px 2px      var(--next-color);

}
.slider .list .item .content button a{
    color: var(--next-color);
    text-decoration: none;
}

.slider .list .item.active{
    opacity: 1;
    z-index: 10;
}
@keyframes showContent {
    to{
        transform: translateY(0);
        filter: blur(0);
        opacity: 1;
    }
}
.slider .list .item.active p:nth-child(1),
.slider .list .item.active h2,
.slider .list .item.active p:nth-child(3){
    transform: translateY(30px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s .7s ease-in-out 1 forwards;
}
.slider .list .item.active h2{
    animation-delay: 1s;
    /* z-index: 999; */
}
.slider .list .item.active p:nth-child(3){
    animation-duration: 1.3s;
}
.arrows{
    position: absolute;
    top: 30%;
    right: 50px;
    z-index: 100;
    /* border: solid white; */
}
.arrows button{
    background-color: #eee5;
    border: none;
    font-family: monospace;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    font-size: x-large;
    color: #eee;
    transition: .5s;
}
.arrows button:hover{
    background-color: #eee;
    color: black;
}
.thumbnail{
    position: absolute;
    bottom: 1.5VW;
    z-index: 11;
    display: flex;
    gap: 10px;
    /* width: 100%; */
    right: 4vw;
    height: 250px;
    padding: 0 50px;
    box-sizing: border-box;
    overflow: auto;
    justify-content: center;
    /* border: 16px red solid; */
}
.thumbnail::-webkit-scrollbar{
    width: 0;
}
.thumbnail .item{
    width: 150PX;
    height: 220px;
    filter: brightness(.5);
    transition: .5s;
    flex-shrink: 0;
    transform: translateX(3VW);
}
.thumbnail .item img{
    width: 100%;
    height: 100%;
    object-fit:cover;
    border-radius: 10px;
}
.thumbnail .item.active{
    filter: brightness(1.5);
}
.thumbnail .item .content{
    position: absolute;
    inset: auto 10px 10px 10px;
}
@media screen and (max-width: 678px) {
    .thumbnail{
        justify-content: start;
    }
    .slider .list .item .content h2{
        font-size: 60px;
    }
    .arrows{
        top: 10%;
    }
}

/* css slider ending */





/* our courses layout design */

.crmain{
    width: 100%;
    color: var(--main-color);
    margin-top: 5vw;
    margin-bottom: 3vw;

}
.crmain h1{
    text-align: center;
    text-transform: capitalize;
    font-size: 3vw;
    color: var(--next-color);
}
.crmain .crflex{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 5vw;

}
.crmain .crflex .crbox{
    width: 23%;
    padding: 1vw;
    display: flex;
    text-transform: uppercase;
    flex-direction: column;
    background-color: var(--next-color);
    margin-top: 2vw;
    /* border: 4px solid var(--main-color); */
    justify-content: center;
    /* box-shadow: inset 2px -2px 10px black; */
    box-shadow: inset 7px 7px 10px  gray,7px 7px 15px black;
    /* border-radius: 40px 40px px 0px; */
    border-top-left-radius: 2vw;
    border-top-right-radius: 2vw;
    padding: 2vw;
    align-items: center;
    /* border: 3px solid black; */
    animation: apear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
    
    }

    @keyframes apear{
        from{
            opacity: 0;
            scale: 0.5;
        }
        to{
            opacity: 1;
            scale: 1;
        }
    }

    
    .crflex .crbox .crimg{
        width: 100%;
        height: 180px;
        display: flex;
        align-items: start;
        justify-content: center;
        border: 3px solid white;
        position: relative;
        /* border-radius: 40px 0px 0px 0px; */
        



}
.crcntr{
    /* padding-bottom: 3vw; */
}

.crbox .crimg img{
    width: 100%;
    height: 100%;
    position: absolute;
    filter: drop-shadow(-2px 5px 5px black);
    /* object-fit: cover; */
    /* border-radius: 40px 20px 20px 20px; */

}
.crbox h2{
    margin-top: 3vw;
    color: var(--color-bg1);
}

.crbox .crimg span{
    padding: .4vw;
    left: 0;
    position: absolute;
    font-size: 1vw;
    z-index: 1;
    text-transform: capitalize;
    color: var(--next-color);
    background-color: var(--main-color);
}


/* our courses layout design ending */


/* our group start */

.gmain{
    /* height: 60vw; */
    /* background-color: rgb(71, 5, 5); */
    /* background-image: linear-gradient(to bottom right,black,red,black); */
    background-color: var(--color-bg1);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: .2vw;
    margin-bottom: 2vw;
    /* filter: drop-shadow(2px 2px 15px white); */
    box-shadow: 2px 2px 15px;
    padding-bottom: 2vw;
}
.gheading h1{
    text-align: center;
    padding-top: 2vw;
    text-transform: capitalize;
    font-size: 3vw;
    
}
.gflex{
    display: flex;
    align-items: center;
    justify-content:center;
    margin-top: 1vw;
    gap: 2vw;
    width: 100%;
    
    flex-wrap: wrap;
    
}

.grbox{
    padding: 0px 2vw;
    width: 22%;
    background-color: var(--color-bg2);
    /* height: 320px; */
    border-top-left-radius: 2vw;
    border-top-right-radius: 2vw;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: 3.5vw;
    margin-bottom: 5vw;
    /* padding-bottom: 3vw; */
    box-shadow: inset 7px 7px 10px #6c63ff,7px 7px 15px black;
    animation: apear2 linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
    /* overflow: hidden; */
    /* transition: 10; */

    
}
@keyframes apear2 {
    from{
        opacity: 0;
        scale: 0.5;
    }
    to{
        opacity: 1;
        scale: 1;
    }
}
.grbox:hover .gimg{
    /* top: -4.5vw; */
    transform: translateY(-11vw);
    width: 9vw;
    height: 9vw;
    border: 8px var(--color-bg2) solid;
    box-shadow: -7px -7px 30px 10px #6c63ff,7px 7px 30px 10px #6c63ff ;
    animation: khel 2s linear infinite;
    


}
@keyframes khel {
    
    0%{
        box-shadow: -7px -7px 30px 10px #6c63ff,7px 7px 30px 10px #6c63ff ;

    }
    50%{
        box-shadow: 0px 0px 0px 0px #6c63ff,0px 0px 0px 0px #6c63ff ;

    }

    100%{
        box-shadow: -7px -7px 30px 10px #6c63ff,7px 7px 30px 10px #6c63ff ;

    }
}

.grbox:hover .n1{
    font-size: 2vw;
    
}
.grbox:hover .n2{
    transform: translate(0px);
}
.gimg{
    position: absolute;
    width: 12vw;
    height: 12vw;
    background-color: black;
    border-radius: 50%;
    /* top: -4.5vw; */
    /* left: 6.5vw; */
    border: 8px var(--main-2) solid;
    transition: .5s linear;
}
.grbox h1{
    color: var(--next-color);
    margin-top: 5.8vw;
    font-size: 0px;
    transition: .5s;
}
.grbox p{
    font-size: 1.2vw;
    color: var(--next-color);
    text-align: center;
    margin-top: 3vw;
    padding-bottom: 1vw;
    transform: translateY(12vw);
    transition: .5s;
}
.grtext{
    text-align: center;
    /* border: 1px solid black; */
    overflow: hidden;
}

/* our group end */



/* footer start layout */
.footer{
    position: relative;
    width: 100%;
    /* margin-top: 10vw; */
    /* overflow: hidden; */
}
.footer .wave{
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background:  url("wave-removebg-preview2.png");
    background-size: 1000px 100px;
    /* margin-top: 5vw; */
}
.wave#wave1{
    z-index: 1;
    opacity: 1;
    bottom: 0;
    animation: animiatWave 4s linear infinite;

}
@keyframes animiatWave{
    0%{
        background-position-x: 1000px;
    }
    100%{
        background-position-x: 0px;
    }
    
}
.wave#wave3{
    z-index: 1000;
    opacity: 0.2;
    bottom: 0;
    animation: animiatWave 4s linear infinite;

}
@keyframes animiatWave_02 {
    0%{
        background-position-x: 0px;
    }
    100%{
        background-position-x: 1000px;
    }
    
}
.footer .wave#wave2{
    z-index: 999;
    opacity: 0.5;
    bottom: 10px;
    animation: animiatWave_02 4s linear infinite;
}

.footer .wave#wave4{
    z-index: 999;
    opacity: 0.7;
    bottom: 10px;
    animation: animiatWave_02 4s linear infinite;
}


.fcntnr{
    width: 100%;

    background-color: var(--main-color)    ;
}

.fcntnr .fflex{
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 2vw 2vw;
}


    /* frame tag layout */
.frame{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.frame iframe{
    width: 60%;
    height: 60%;
    margin-bottom: 2vw;
}

/* frame tag layout end */


/* social icon  */
.social-icon{
    width: 100%;
    background-color:var(--main-color);
    display: flex;
    justify-content: center;
    padding-top: 5vw;
    
    padding-bottom: 3vw;
}
.social-icon ul{
    display: flex;
    gap: 5vw;
    list-style: none;
}
.social-icon ul li a{
    color: var(--next-color);
    font-size: 3vw;
}
.social-icon ul li a:hover{
    /* transform: scale(10vw); */
    color: #0539b0;
}
.social-icon ul li a i{
    transition: .3s ease;
    filter: drop-shadow(1px 1px 10px white);
}
.social-icon ul li a i:hover{
     scale: 1.5;
     
}
.insta:hover{
    color: deeppink;
    
}

.fbox ul{
    list-style: none;
}
.fbox ul li{
    margin-bottom: 1vw;
    line-height: 1;
    
}
.fbox ul h3{
    margin-bottom: 3vw;
}

.fbox ul li a{
    text-decoration: none;
    color: white;
    font-size: 1vw;
    text-transform: capitalize;
    position: relative;
}
/* .fbox ul li a::before{
    content: "";
    width: 150px;
    height: 4px;    
    background-color:var(--color-bg);
    bottom: 0;
    border-radius: 4px;
    position: absolute;
  
    animation: underline ease 3s infinite;
} */
/* 
@keyframes underline {
   0%{
    width: 0px;

   }
   
    50%{
        width: 75px;
      
        
    }
    100%{
        width: 150px;
    }
    
} */

.bce{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 20%;
}
.bce h1{
    font-size: 4vw;
    filter: drop-shadow(1px 1px 50px white);
    animation: flow 1s linear infinite;


}
.bce p{
    font-size: 2vw;
    font-weight: 800;
    filter: drop-shadow(1px 1px 50px white);
    animation: flow 3s linear infinite;


}

@keyframes flow {
    0%{
        filter: drop-shadow(0px 0px 50px white);

    }
   
    50%{
        filter: drop-shadow(-17px 17px 50px white);

    }
    100%{
        filter: drop-shadow(0px 0px 50px white);

    }
    
}




/* social icon end */



/* footer end layout */






/* form inqry start */
.inqrybox{
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.frm{
    width: 100%;
    padding: 11vw;
}

.form{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap:wrap ;
}
.inptbox{
    width: 47%;
    margin-top: 5vw;
    
}
.inptbox input,select{
    border: 1px solid #E1E1E1;
    outline: none;
    color: #5A5050;
    font-size: 1.3vw;
    padding: .8vw 2vw;
    width: 100%;
    background-color: #F0F0F0;
}
select{
    background-color: white;
}
.inptbox label{
    font-size: 1.3vw;
    color: var(--next-color);

}

.padd{
    padding: 0px 10vw;
}

.btn{
    padding: .8vw 4vw;
    font-weight: 700;
    background-color: #FD3115;
    margin-top: 4vw;
    color: white;
    border: none;
    outline: none;
    font-size: 1.3vw;
    transition: background .3s linear;

}
.btn:hover{
    background-color: #212121;
}
.btn:active{
  transform: translateY(2px);
}




/* form inqry end */

/* contact info start */

.aboutbg{
    width: 100%;
    height: 40vw;

}
.aboutbg video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.contactcntr{
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .ctct{
    height: 12vw;
    border-radius: 20px;
    
    transform: translateY(5vw);
    width: 80%;
    /* background-image:linear-gradient(red,black); */
    background-color: #222222;
  }
  .us{
    color: white;
  }
  span i{
    color: red;
    filter: drop-shadow(-2px 2px  white);
  }
  
  .contact{
      /* height: 100px   ; */
      /* width: 100%; */
      
      display: flex;
      justify-content: space-around;
      align-items: center;
  }
  /* .contact i{
      font-size: 3vw;
  } */
  
  
  .logo img{
      width: 10vw;
  }
  
  .number a{
    color: black;
  }
  .calling{
  display: flex;
  align-items: center;
  }
  .calling i{
      font-size: 3vw;
      color: red;
      filter: drop-shadow(-2px 2px black);
  }
  .calling .conect{
      font-size: 2vw;
      text-transform: capitalize;
      font-weight: 800;
      color: var(--main-2);
  }
  .number a,.number{
      color: rgb(107, 102, 102);
      font-size: 1vw;
  }
  .calling p{
      margin-left: 1.5vw;
  }
  .calling .numhover:hover a{
      color: RED;
  }
  
  .calling a{
    color: #212121;
  }
  
  .hider{
      border: 1px solid #E1E1E1;
      height: 20vw;
      background-color: #F0F0F0;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      margin-top: 10vw;
      justify-content: space-around;
      width: 30%;
  }
  /* contact info end */


/* .swiper-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
} */

  .swiper {
    width: 100%;
    display: flex;
    justify-content: center;
    height: 100%;
    margin-top: 5vw;
    margin-bottom: 10vw;
    /* padding: 0vw 15vw; */
  }


  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    
  }
  /* logo slider strat */


 
 

  /************************************ notes css layout ******************************/


  

  .ntmain{
    
    margin-top: 5vw;
    /* display: flex; */
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    /* padding: 2vw; */
    position: absolute;
    
  }

  

  .ntmain h1{
    /* font-size:  1.7569546120058566vw; */
    margin-top: 5vw;
  }

  .ntflex{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2vw;
    margin-bottom: 8vw;
  }

  .ntbox{
    width: 330px;
    margin-top: 3.5vw;
    text-align: center;
    border: #0539b0 2px solid;
    padding: 2vw;
    background-color: var(--color-bg2);
    /* height: 320px; */
    border-top-left-radius: 2vw;
    border-top-right-radius: 2vw;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    /* padding-bottom: 3vw; */
    box-shadow: inset 7px 7px 10px #6c63ff,7px 7px 15px black;
    
  }
  .ntbox img{
    width: 100%;
    margin-top: 1vw;
    aspect-ratio: 1/1;
  }

 .ntbox p{
    margin-top: 1.5vw;
    font-weight: 800;
 }

  .ntbox .button {
    margin-top: 1.5vw;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    padding: 12px 24px;
    border: 1px solid #a12727;
    border-radius: 8px;
    background: #ff4a4a;
    background: -webkit-gradient(linear, left top, left bottom, from(#ff4a4a), to(#992727));
    background: -moz-linear-gradient(top, #ff4a4a, #992727);
    background: linear-gradient(to bottom, #ff4a4a, #992727);
    -webkit-box-shadow: #ff5959 0px 0px 40px 0px;
    -moz-box-shadow: #ff5959 0px 0px 40px 0px;
    box-shadow: #ff5959 0px 0px 40px 0px;
    text-shadow: #591717 1px 1px 1px;
    font: normal normal bold 20px arial;
    color: #ffffff;
    text-decoration: none;
}
.ntbox .button:hover,
.ntbox .button:focus {
    background: #ff5959;
    background: -webkit-gradient(linear, left top, left bottom, from(#ff5959), to(#b62f2f));
    background: -moz-linear-gradient(top, #ff5959, #b62f2f);
    background: linear-gradient(to bottom, #ff5959, #b62f2f);
    color: #ffffff;
    text-decoration: none;
}
.ntbox .button:active {
    background: #982727;
    background: -webkit-gradient(linear, left top, left bottom, from(#982727), to(#982727));
    background: -moz-linear-gradient(top, #982727, #982727);
    background: linear-gradient(to bottom, #982727, #982727);
}
.ntbox .button:before{
    content:  "\0000a0";
    display: inline-block;
    height: 24px;
    width: 24px;
    line-height: 24px;
    margin: 0 4px -6px -4px;
    position: relative;
    top: 0px;
    left: 0px;
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAACXBIWXMAAA7EAAAOxAGVKw4bAAADQElEQVRIia2UTWhcVRTHf/fNR2YmM0maxkmTxtgWFKwRREQUTEVEXdQiQku0RdCN4EK611UXfuDGRXciiAiKXyml0FWlgg3iRrBETP2I6dQ20zSJyczkfd57j4t5HSYv0wQSD/y5l3s55/f+99x3FZvE4VM/PZzPOG9m0s76DQFB0EZwA3P6/KnHfr5TjfRmAGtkdOLQ0Kv7ygWMBdR6SBgZ3jnz51lgewBjLG5k+WRqHjc0KKVaDBE49kgZY+xmJTYHaGOpBwbP1/ihRan1+6u+xhjZPsAYoe5bvMDghwalQKGQ2MKKb/4fB0HYVMIAq55B78yBpRYDoqjZg1YIrPgGa8z2AaINfqCJtCGKNvbA9TVW7wBgjSEINGFoibQheU+DQO/MgdWWMDREQdjRgR9orN5Bk602hKEmXPPR0cYvDYKtj0gBPPjyZBr4MJNNj6UzqXhHAQwMDveNXZ9bbDa5LVGA+x7YS+XvW9MKFkUAEbQ2RH40i+KN6S+Phq2csYlvRrJdmR9H790z4tY9tDY4joMCqv8sY+3Gt2L4noHmTCCVciiU8lR+n1/0vXD816+PzZDI4ODRrx7KFbou9pV7+6qzVayV2Ihiw09w20ZsdnD/ILVbNddteM/9NvnSpXVH1B73v/jFs7li/lxxVzG7MHcTEaH1AiXPKF4bGC3j1V3trqxNzJw9PtleL5UELM58+1fvviMVEfVCd39Jef82msdjBUlKhN6hAUIvoLFUP3nl3IlPk/U2AACWrkz+Uho5rJ1s5umuUp6gVkesRUQQsS0Vy7sQKzQWVj744/wr73aq5XRaBBBr32/cXP7IGku+v4TVHjZysVFzzPV1g1LUqoufi7Vv36lOp9a14sAzH6dBzhTLu58PG6u4S1VAke+/i1xPP/XqwgVQR2YvvO5vCwCw/6nTRZR8113e86i3PA9iKeweobFw47JYnpz7/uTKZvlbAgBGn3hvWDnOD93l0QMAawtXK9bY8WtTb1W2yk0CHJrPRzapnr2HDvbcPf4ZKKd2feq12rWL00AYy2+b61gdAVkgF6sQ6/Y8Wxp6fAyVStdvXLrcVtgH3Fh+m2wnQNJNu2D9rbMJ0Ta24j8kac2ho84+egAAAABJRU5ErkJggg==") no-repeat left center transparent;
    background-size: 100% 100%;
}




/* m2 class notes */


/* abot page */
.abcontainer{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.about{
    width: 80%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 5vw;

}
.abimg{
    width: 35%;
    
}
.abimg .abdirect{
    width: 315px;
    border: 2px solid white;
    height: 320px;
    text-align: center;
    /* background-image: url("/image/bhrarat\ sir.jpg"); */
}
.abdirect img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.abpara{
    width: 60%;
    text-align: justify ;
   
}

.abhead{
    width: 80%;
   margin: 5vw 0px;
}
.abheadd h1{
    width: 80%;
    text-align: left;
}

/* our vision */

.ourvision{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ourvision .vision{
    width: 80%;
    margin-bottom: 5vw;
}


/* contact ani */

.vidani{
    position: absolute;
    right: 0;
    transform: translateY(-28vw);
    padding: 2vw;
}

.vidani video{
    width: 70%;
}


/* corses list */
.navlist .crlist{
    position: relative;
}
.navlist .crlist i{
    transition: .2s linear;

}

.navlist .crlist .courses{
    position: absolute;
    list-style: none;
    width: 20vw;
    top: 3.2vw;
    left: 0;
    letter-spacing: normal;
    background-color: var(--color-bg2);
    display: none;
    
}
.navlist .crlist .courses li{
        /* margin-left: 2vw; */
        padding: .5vw .8vw;
        text-align: left;
        position: none;
        border: none;

}
.navlist .crlist .courses li a{
    font-size: 1vw;
    font-weight: normal;
    color: white;
    letter-spacing: normal;
}
.navlist .crlist .courses li:hover{
    background-color: var(--main-color);
}

.navlist .crlist:hover .courses{
    display: block  ;
}

.navlist .crlist:hover i{
    rotate: 90deg;
    
}

/* nl courses */
.sftmain{
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 5vw 0px;
}

.soft{
    width: 80%;
}

.nltcont{
    width: 100%;
    display: flex;
    justify-content: right;
    align-items: center;
}
.cormain{
    display: flex;
    width: 90%;
    
}

.nlcourse{
    width: 100%;
    /* height: 30vw; */
}
.nlcourse img{
    width: 100%;
}
.table{
    width: 60%;
    /* background-color: var(--next-color); */
}
.table table{
    width: 100%;
    border: 1px solid white;
    margin-bottom: 15vw;
}

.table table th{
    text-align: left;
    padding: 1%;
    /* color: var(--color-bg); */
    border: 1px solid white;

}
.table table th a{
    text-decoration: none;
    color: var(--next-color);
}

.table table th:hover a{
    color: var(--main-color);
}



.crsvid{
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.crsvid video{
    width: 100%;
}





  /************************************ notes css layout ******************************/
.gacntr{
    width: 100%;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 10vw;

}

.gacntr .achive{
    width: 100%;
    
}
.gacntr .achive h1{
    margin-bottom: 5vw;
}

.gacntr .achive .achive-flex{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.gacntr .achive .achive-flex img{
    width: 350px;
    transition: 3s linear;
}





  /************************************* gallary layout  *****************************/



    .testimonial-container{

        background-color: var(--doutside);
        padding: 40px 20px;
    }
   
    .testimonial-swiper {
      width: 100%;
      padding: 40px 20px;
      box-sizing: border-box;
    }

    .testimonial-slide {
      background:var(--dibside);
      padding: 20px;
      border-radius: 15px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
      display: flex;
      flex-direction: column;

      align-items: center;
      gap: 15px;
    }

    .testimonial-slide img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #00ffd5;
    }

    .testimonial-text {
      font-size: 15px;
      line-height: 1.6;
      color: #ddd;
    }

    .testimonial-author {
      font-weight: bold;
      color: #00ffd5;
      margin-top: auto;
    }

    .swiper-pagination-bullet {
      background: #00ffd5;
    }

