/*webpage style*/
*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: verdana;
}
body{
  background-color: #EFEFEF;
  margin-bottom: 25px;
  
}
/* Page Resize */
#page_resize{
    width: 100%;
    margin: auto;
}

/*Topbar style*/

#top_bar{
  width: 100%;
  background-color: blue;
  display: flex;
  padding-left: 10%;
  font-size: 1.5rem;

}

.top a:link, 
.top a:visited {
color: rgb(255, 255, 255);
padding: .7rem .7rem;
text-decoration: none;
display: inline-block;


}

.top a:hover, 
#top a:active {

color: black;
}


.top_1 a:link, 
.top_1 a:visited {
color: rgb(255, 255, 255);
padding: .7rem .7rem;
text-decoration: none;
display: inline-block;


}

.top_1 a:hover, 
#top_1 a:active {

color: black;
}


@media screen and (max-width:850px){
  #top_bar { 
    
    display: inline-block;
    
  }
  .top_1{
    display:inline-block;
  }
}



/* Header style */

#head_bar{
    background-color: #FFFDD0;
    width: 100%;
    display: flex;
    padding-bottom: 10px;
    padding-top: 10px;
  }
  .head{
    width: 15vw;
    height: 100%;
    margin: auto;
    text-align: center;
  }

  .logo_set{
   height: 8rem;
   width: 8rem;

  }
  .head1{
  width: 85vw;
  margin-top: 20px;
  
  
  }

  .institute_name{
    color: rgb(0, 0, 0);
    font-size: 3em;
    font-weight:600;
    font-family: sans-serif;

    
   }

   @media screen and (max-width:850px){

    .institute_name{
      color: rgb(0, 0, 0);
      font-size: 1.8em;
      font-weight:600;
      font-family: sans-serif;
     }

     .head{
      width: 20%;
      height: 100%;
      margin: auto;
      text-align: center;
    }
  
    .logo_set{
     height: 8rem;
     width: 8rem;
     margin-left: 5px;
  
    }

    .head1{
      width: 80%;
      margin-top: 10px;
      text-align: center;
     
      
      }
   }
   
  
    
  /* Navigation style */
  
.topnav {
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2), 0 1px 2px 0 rgba(0, 0, 0, 0.19);
  
}

.topnav a {
  float: left;
  display: block;
  color: #000000;
  text-align: center;
  padding: 12px 14px;
  text-decoration: none;
  font-size: 16px;
  font-family: fangsong;
  font-weight: 600;
  
}

.topnav a:hover {
  background-color: #ddd;
  color: rgb(252, 7, 7);
  text-decoration: none;
}

.topnav a.active {
  background-color: blue;
  color: white;
  font-size: 16px;
  font-family: fangsong;
  font-weight: 600;
  padding-left: 14px;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 850px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 850px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}

/*  */

#img_slide{
  width:100%; 
  height: 500px;
}

@media screen and (max-width: 850px) {
  #img_slide{
    width:100%; 
    height: 300px;
  }
}

p{
  font-size: 20px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
h5{
  color: #ffffff;
  font-size: 20px;
}
.live{
background-color: red;
  
 padding: 1px;
 height: 35px;
 
}

.course{
  width: 100%;
  padding: 1px;
  margin-top: 20px;
  text-align: center;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
:root {
  --purple: #603f8b;
  --aqua: #ebdc11;
  --violet: #a16ae8;
  --fuchsia: #f10000;
  --white: #efefef;
  --black: #222;
  --trueBlack: #000;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}


.main {
  max-width: 100%;
  margin: 0 auto;
}

.cards {
  display: grid;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  width: 90%;

}

.cards_item {
  display: flex;
  width: 100%;
}

.card_image {
  display: flex;
  height: 200px;
  box-shadow: 0 50px 100px 0 var(--violet);
}

.card_image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.card {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background-color: blue;
  border-radius: 5px 25px 5px 50px;
  transition: transform 0.1s linear, box-shadow 0.2s;
}

.card_text:focus,
.card:focus {
  outline: 2px dashed var(--aqua);
}

.card:focus,
.card:hover {
  transform: scale(1.01);
  box-shadow: 0 10px 5px -5px rgba(0, 0, 0, 0.2);
}

.card_content {
  padding: 0.5rem 1rem 1rem;
  color: var(--white);
}

.card_title {
  position: absolute;
  top: 0;
  right: 0;
  width: 90%;
  height: auto;
  color: var(--black);
  padding: 0.5rem;
  border-radius: 5px 0 0 5px;
  transform: rotate(-3.3deg);
  transform-origin: left top;
  font-family: Georgia, Times, serif;
  font-weight: 600;
  font-size: 1.325rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: rgb(255, 255, 255);
  animation: 0s 0s fly-in 0 reverse both;
}

@media (min-width: 535px) {
  .card_title {
    animation: 0.5s 0.25s fly-out 1 both;
  }
}

.card:focus .card_title,
.card:hover .card_title {
  animation: 0.5s ease-in 0s fly-in 1 both;
}

.card_text {
  font-family: Segoe UI, Frutiger, Frutiger Linotype, Dejavu Sans, Helvetica,
    Helvetica Neue, Arial, sans-serif;
  line-height: 1;
  text-size-adjust: 0.2px;
  padding: 0 1rem;
}

.card_text p:first-of-type:first-letter {
  font-size: 1.8em;
  font-family: Georgia, Times, serif;
  margin-right: 0.05em;
}

@media (min-width: 480px) {
  .card_text {
    overflow: auto;
    max-height: 20rem;
    scrollbar-width: thin;
    scrollbar-color: var(--aqua) var(--violet);
  }

  .card_text::-webkit-scrollbar {
    width: 12px;
  }

  .card_text::-webkit-scrollbar-track {
    background: var(--violet);
  }

  .card_text::-webkit-scrollbar-thumb {
    background-color: var(--aqua);
  }
}

.card_text strong {
  color: var(--aqua);
}

.upcharge {
  position: relative;
  font-weight: 600;
  background-color: var(--violet);
  padding: 0.5rem 0.75rem;
  color: var(--trueBlack);
  border-radius: 0 10px;
  z-index: 0;
  overflow: hidden;
}

.upcharge::after,
.upcharge::before {
  content: "+";
  display: block;
  line-height: 0;
  font-size: 3rem;
  position: absolute;
  color: var(--purple);
  z-index: -1;
  opacity: 0.3;
}

.upcharge::before {
  left: 0;
  top: 0.5rem;
}

.upcharge::after {
  right: 0;
  bottom: 1.25rem;
}

.note {
  display: block;
  text-align: center;
  padding: 0.5rem;
  font-weight: 900;
  background-image: linear-gradient(
    -45deg,
    transparent 10%,
    var(--aqua) 10.5%,
    var(--aqua) 90%,
    transparent 90.5%
  );
  color: var(--black);
  font-size: 1.3em;
  font-style: italic;
  margin-top: 1rem;
}

@keyframes fly-in {
  0% {
    top: 0;
    right: 0;
    font-size: 1.325rem;
  }

  25% {
    top: 0;
    right: -200%;
    font-size: 1.325rem;
  }

  26% {
    font-size: 2rem;
  }

  100% {
    top: 2rem;
    right: 0;
    font-size: 2rem;
  }
}

@keyframes fly-out {
  0% {
    top: 2rem;
    right: 0;
    font-size: 2rem;
  }

  50% {
    top: 0;
    right: -200%;
    font-size: 1.325rem;
  }

  100% {
    top: 0;
    right: 0;
    font-size: 1.325rem;
  }
}


/*join student */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&display=swap');

/* start: Slider */
.wrapper {
    position: relative;
    max-width: 92%;
    margin: 0 auto;
    padding: 20px;
    
}
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: rgba(0, 0, 0, .5);
    font-size: 20px;
    cursor: pointer;
    border: none;
    outline: none;
    margin: -40px;

}
.arrow:hover {
    background-color: rgba(248, 1, 1, 0.7);
}
.arrow.prev {
    left: 0;
    
}
.arrow.next {
    right: 0;
}
.card-wrapper {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% / 4) - 12px);
    overflow-x: auto;
    padding: 24px;
    gap: 24px;
    cursor: grab;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 4px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    
    
    
}
.card-wrapper::-webkit-scrollbar {
    display: none;
}
.card-wrapper.grab {
    cursor: grabbing;
    user-select: none;
    scroll-snap-type: none;
    scroll-behavior: auto;
}
.card-wrapper.no-smooth {
    scroll-behavior: auto;
}
.card-item {
    scroll-snap-align: start;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, .1);
    background-color: blue;
    
    
}
.card-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #0603a0;
  
  
}
.card-info {
    padding: 16px;
    background: white;
}
.card-title {
    font-weight: 600;
    margin-bottom: 4px;
    display: inline-block;
    font-size: 20px;
    text-decoration: none;
    color: #000000;
}

.card-image{
  position: relative;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  background: #ffffff;
  padding: 3px;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 30px;
}
.card-image .card-img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  
}

.card_add{
  font-weight: 500;
    font-size: 20px;
    color: #000000;
    
}
.card_cou{
  color: #ff1100;
  font-style: italic;
}




/* end: Slider */



@media screen and (max-width: 850px) {
    .arrow {
        display: none;
    }
    .card-wrapper {
        margin-left: -16px;
        width: 100%;
        grid-auto-columns: 100%;
    }
}
/* verification page*/

.div1{
  background-image: url(admin/image/slider/verification.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 100%;
  height: 200px;
  padding-left: 150px;
  padding-top: 70px;
}
.heading{
  font-size: 50px;
  color: white;
}

#div2{
  background-color: rgb(255, 255, 255);
  height: 400px;
  
 
}

/*student verification page*/

*{
  
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  box-sizing:border-box;
}





.container_ver{
  position:relative;
  top:20px;
  left:25%;
  display:block;
  margin-bottom:120px;
  padding-bottom: 25px;
  width:700px;
  background:#fff;
  border-radius:5px;
  overflow:hidden;
  z-index:1;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.h2_heading{
  padding:40px;
  font-weight:500;
  text-transform:uppercase;
  color:rgb(0, 0, 0);
  
}



.input_roll{
  display:block;
  height:50px;
  width:90%;
  margin:0 auto;
  border:none;
  &::placeholder{
    -webkit-transform:translateY(0px);
      transform:translateY(0px);
    -webkit-transition:.5s;
      transition:.5s;
  }
  &:hover,
  &:focus,
  &:active:focus{
    color:#ff5722;
    outline:none;
    border-bottom:1px solid #ff5722;
    &::placeholder{
      color:#ff5722;
      position:relative;
      -webkit-transform:translateY(-20px);
      transform:translateY(-20px);
      
    }
  }
}



#rollno,
#pwd{
  position:relative;
  z-index:1;
  border-bottom:1px solid rgba(0,0,0,.1);
  padding-left:20px;
  font-family: 'Open Sans', sans-serif;
  text-transform:uppercase;
  color:#858585;
  font-weight:lighter;
  -webkit-transition:.5s;
  transition:.5s;
}






.btn_search{
  cursor:pointer; 
  display:inline-block;
  width:250px;
  height:60px;
  margin-left: 30%;
  border:none;
  font-family: 'Open Sans', sans-serif;
  text-transform:uppercase;
  color:#fff;
  -webkit-transition:.5s;
  transition:.5s;
  &:nth-of-type(1){
    background:#673ab7;
  }
  &:nth-of-type(2){
    background:#ff5722;
  }
  span{
    position:absolute;
    display:block;
    margin:-10px 20%;
    -webkit-transform:translateX(0);
    transform:translateX(0);
    -webkit-transition:.5s;
    transition:.5s;
  }
  &:hover{
    span{
      -webkit-transform:translateX(30px);
      transform:translateX(30px);
      }
   }
}


h3{
  position:absolute;
  top:-100%;
  left:20%; 
  text-transform:uppercase;
  font-weight:bolder;
  color:rgba(255,255,255,.3);
  -webkit-transition:.3s ease-in-out 1.2s;
  transition:.3s ease-in-out 1.2s;
}

.heading_veri{
  font-size: 4rem;
  color: white;
  text-align: left;
}


@media screen and (max-width:850px){
  .container_ver{
    position:relative;
    left:5%;
   right: 5%;
    width:90%;
  
  }

  .h2_heading{
    padding:40px;
    font-weight:500;
    font-size: 2rem;
    text-transform:uppercase;
    color:rgb(0, 0, 0);
    
  }

  .heading_veri{
    font-size: 3rem;
    margin-left: -50px;
    width: 100%;
    
  }
}
/**/
.sname{
  padding-top: 20px;
  padding-left: 40px;
  font-size: 20px;
}

/* table */

.container_new1{
  width: 100%;
  margin-bottom: 80px;
}
.container2{
  position:relative;
  top:20px;
  display:block;
  width:80%;
  background:#fff;
  border-radius:5px;
  overflow:hidden;
  z-index:1;
  margin: 0 auto;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.header_div{
  text-align: center;
  padding: 20px;
  
}
.heading_div{
color: white;
font-size: 2.5em;
}
.heading_div1{
  color: rgb(0, 0, 0);
  font-size: 2.5em;
  text-align: center;
  font-family: sans-serif;
  font-weight: 600;
  
  }

.title_div{
 color: #000;
 padding: 10px;
 font-size: 16px;
 font-weight: 550;

  }

.title_div1{
    color: #000;
    padding: 10px;
    font-size: 16px;
     }

table, td, th {
  border: 1px solid black;
  text-align: left;
  
}

table {
  border-collapse: collapse;
  width: 95%;
  margin: 25px;
  
}
th, td {
  padding: 35px;
}
th{
  text-align: center;
  background-image: url(admin/image/slider/verification.jpg);
}
.td_1{
  
 color: #000;
 padding: 10px;
 font-size: 16px;
 font-weight: 550;
 text-align: center;
}
.head1{
  font-style: bold;
}

.error {

  background: #ee5757;
  color: #ffffff;
  padding: 10px;
  width: 95%;
  border-radius: 5px;
  margin: 20px auto;
  font-family: 'Times New Roman', Times, serif;
  

}

.counters{
  padding: 3em 2em;
  background: blue;
  color: #FFF;
  text-align: center;
}

.counters > div {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 4em 2em;
}

.counter {
  position: relative;
}

.counter h1{

  font-size: 3em;
  margin-bottom: 0.5em;
}
.counter:not(:last-child)::before{

  
  background: #FFF;
  position: absolute;
  width: 2px;
  height: 3em;
  top: 50%;
  transform: translateY(-50%);
  right: -1em;

}


.veri_img{
  height: 260px;
  width: 210px;
}

.veri_img1{
  height: 160px;
  width: 160px;
}
@media screen and (max-width:850px){
  .counters > div {
    max-width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(1,1fr);
    gap: 2em 1em;
  }
  .counter h1{

    font-size: 2em;
    margin-bottom: 0.5em;
  }
  .heading_div{
    color: white;
    font-size: 1.5em;
    }

    .heading_div1{
     
      font-size: 1em;
      text-align: center;
      
      }

      .title_div1{
        padding: 3px;
        font-size: 12px;
         }

         .title_div{
          padding: 3px;
          font-size: 12px;
           }

           table {
            border-collapse: collapse;
            width: 90%;
            margin: 25px;
            
          } 
          
          .container2{
            position:relative;
            top:20px;
            display:block;
            width:100%;
            background:#fff;
            border-radius:5px;
            overflow:hidden;
            z-index:1;
            margin: 0 auto;
            box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
          }
}



/*teacher info*/

.div_bx{
  width: 100%;
  height: 100%;
display: flex;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
  
}
.div_bx1{
  width: 50%;
  height: 100%;
  
}
.div_bx2{
  width: 50%;
  height: 100%;
  
}

@media screen and (max-width:850px){
 
.div_bx{
  width: 100%;
  height: 100%;
  display: block;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
  
}
.div_bx1{
  width: 100%;
  
}
.div_bx2{
  width: 100%;
  
}

.veri_img{
  height: 160px;
  width: 160px;
}

.veri_img1{
  height: 100px;
  width: 80px;
}


  
}
/* Slide */

.slider_container1 {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  background-image: url(admin/image/slider/verification.jpg);
}

.slider1 {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  animation: 30s cubic-bezier(1, 0.95, 0.565, 1) sliding infinite;
}

.slide1 {
  position: relative;
  min-width: 100%;
  height: 100%;
  text-align: center;
  padding-top: 50px;
}

.slide1 img {
  width: 40%;
  height: 50%;
  border: 2px solid white;

}
.teacher{
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 600;
  
}

#teacher_11{
  color: #eeff00;
  font-size: 2rem;
  font-weight: 400;
  
}

.slide1 .caption {
  position: absolute;
  left: 0;
  bottom: 2%;
  font-size: 2rem;
  font-weight: 600;
  color: white;
  text-transform: capitalize;
  background: BLUE;
  backdrop-filter: blur(10px);
  padding: 1rem 5rem;
  border-radius: 0 2rem 2rem 0;
}

.slide1.one {
  background-image: url(admin/image/slider/verification.jpg);
}
.slide1.two {
  background-image: url(admin/image/slider/verification.jpg);
}


@keyframes sliding {
  0% {
    transform: translateX(0%);
  }
  20% {
    transform: translateX(0%);
  }
  25% {
    transform: translateX(-100%);
  }
  45% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(-100%);
  }
  
}

@media screen and (max-width:850px){
  .slider_container1 {
    position: relative;
    width: 100%;
    height: 100%;
    
   
  }

  .teacher{
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2px;
    
  }
  
  #teacher_11{
    color: #eeff00;
    font-size: 2rem;
    font-weight: 400;
    padding-bottom: 50px;
    
    
  }

  
    .slide1 .caption {
      position: absolute;
      left: 0;
      bottom: 2%;
      font-size: 1.5rem;
      
     
    }
    .slide1 img {
      width: 160px;
      height: 190px;
      border: 2px solid white;
  
    }
}



/*contact form*/


.form-wrapper{
  background-color: #ffffff;
  width: 95%;
  margin: 10px;
  padding: 40px;
  border-radius: 12px;
  animation: fadeIn 1s ease-out;
}
.title{
  font-size: 28px;
  text-align: center;
  color: #333;
  margin-bottom: 10px;
}
.subtitle{
  text-align: center;
  color: #666;
  font-size: 19px;
  margin-bottom: 30px;
}
.contact-form{
  width: 100%;
}

.form-row{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.form-column{
  flex: 1;
  min-width: 250px;
}
.form-label{
  display: block;
  color: #333;
  font-size: 14px;
  margin-bottom: 5px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.form-input,
.form-textarea{
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #000000;
  transition: border-color 0.3s, transform 0.3s;
}
.form-input:focus,
.form-textarea:focus{
  border-color: #3316da;
  outline: none;
  transform: scale(1.02);
}
.form-textarea{
  resize: none;
}
.submit-button{
  display: block;
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #23058f, #0600a8);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.submit-button:hover{
  background: linear-gradient(135deg, #09752a, #01251f);
  transform: scale(1.05);
}

@keyframes fadeIn{
  from{
      opacity: 0;
      transform: translateY(-20px);
  }
  to{
      opacity: 1;
      transform: translateY(0);
  }
}

@media (max-width: 768px){
  .form-wrapper{
      padding: 30px;
  }
  .title{
      font-size: 24px;
  }
  .subtitle{
      font-size: 14px;
  }
  .form-row{
      flex-direction: column;
  }
}

@media (max-width: 540px){
  .form-wrapper{
      padding: 20px;
  }
  .title{
      font-size: 20px;
  }
  .subtitle{
      font-size: 12px;
  }
  .form-row{
      flex-direction: column;
      gap: 15px;
  }
  .form-column{
      min-width: 100%;
  }
  .form-label{
      font-size: 12px;
  }
  .form-input,
  .form-textarea{
      padding: 10px;
  }
  .submit-button{
      padding: 10px;
      font-size: 14px;
  }
}

/*sumit*/

@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");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



.alert {
    position: fixed;
    top: 5%;
    right: 2%;
    background-image: linear-gradient(to right, #ff4b4b, #d12280);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    padding: 20px;
    border-radius: 10px;
    transform: translateX(150%);
    transition: transform 0.3s ease-in-out;
}

.alert p {
    margin: 30px;
    letter-spacing: 1px;
}

.alert i {
    display: flex;
    justify-content: flex-end;
    font-size: 24px;
    cursor: pointer;
}

/*our course*/

article {
  --img-scale: 1.001;
  --title-color: black;
  --link-icon-translate: -20px;
  --link-icon-opacity: 0;
  position: relative;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  background: #fff;
  transform-origin: center;
  transition: all 0.4s ease-in-out;
  overflow: hidden;

  
}

article a::after {
  position: absolute;
  inset-block: 0;
  inset-inline: 0;
  cursor: pointer;
  content: "";
}

/* basic article elements styling */
.course_hedding{
  font-size: 20px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-style: initial;
  color: rgb(160, 4, 4);
}


figure {
  margin: 0;
  padding: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

article img {
  max-width: 100%;
  transform-origin: center;
  transform: scale(var(--img-scale));
  transition: transform 0.4s ease-in-out;
}

.article-body {
  padding: 24px;
}

article a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #28666e;
}

article a:focus {
  outline: 1px dotted #28666e;
}

article a .icon {
  min-width: 24px;
  width: 24px;
  height: 24px;
  margin-left: 5px;
  transform: translateX(var(--link-icon-translate));
  opacity: var(--link-icon-opacity);
  transition: all 0.3s;
}


/* using the has() relational pseudo selector to update our custom properties */
article:has(:hover, :focus) {
  --img-scale: 1.1;
  --title-color: #28666e;
  --link-icon-translate: 0;
  --link-icon-opacity: 1;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}


/************************ 
Generic layout (demo looks)
**************************/

*,
*::before,
*::after {
  box-sizing: border-box;
}



.articles {
  display: grid;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

@media screen and (max-width: 960px) {
  article {
    container: card/inline-size;
  }
  .article-body p {
    display: none;
  }
}

@container card (min-width: 380px) {
  .article-wrapper {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 16px;
  }
  .article-body {
    padding-left: 0;
  }
  figure {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  figure img {
    height: 100%;
    aspect-ratio: 1;
    object-fit: cover;
  }
}

.sr-only:not(:focus):not(:active) {
  clip: rect(0 0 0 0); 
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap; 
  width: 1px;
}

/*Show Course */

.course_main{
  width: 100%;
  
  display: flex;

}
.course_1{
  background-color: rgb(255, 255, 255);
   width: 68%;
   margin: 10px;
   padding: 55px;
   margin-bottom: 25px;
 }

 .course_2{
  
   width: 30%;
   margin-left: 1px;
   margin-top: 10px;
   margin-bottom: 10px;
   padding: 15px;
   box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
   background-color: rgb(255, 255, 255);
   margin-bottom: 25px;
   height: fit-content;
   
 }

 
@media screen and (max-width:850px){
  .course_main{
    width: 100%;
    
    display: block;
  
  }
  .course_1{
    
     width: 100%;
    
   }
  
   .course_2{
    
     width: 100%;

   }
   .img_course{
    height: 250px;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
   }

   .img_course1{
    height: 200px;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
   }

}
 .heading_post{
  font-family: Cambria;
  font-size: 30px;
  margin-bottom: 20px;
 }
 .artical{
font-family: Sans-serif;
font-size: 20px;
padding-top: 20px;
 }

 .img_course{
  height: 450px;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
 }

 .img_course1{
  height: 250px;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
 }

 .coursebox{
  display: flex;
  
 }
 .coursebox1{
  width: 50%;
  text-align: left;
  margin-left: 20px;
 }

 .coursebox2{
  width: 50%;
  text-align: left;
  
 }
 .details_co{
  font-size: 1.2em;
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: 600;
 
 
 }



/* Image gallery stlyling */
.container_img {
  max-width: 100%;
  margin: 40px auto 0;
  text-align: left;
  padding: 10px;
}

.container__img-holder {
  max-width: 23%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 20px;
  margin-left: 16px;
  cursor: pointer;
}

.container .container__img-holder:nth-child(3n+1) {
  margin-left: 0;
}

.container__img-holder img {
  width: 100%;
  height: 220px;
  display: block;
}


/* Popup Styling */
.img-popup {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, .5);
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}

.img-popup img {
  max-width: 900px;
  width: 100%;
  opacity: 0;
  transform: translateY(-100px);
  -webkit-transform: translateY(-100px);
  -moz-transform: translateY(-100px);
  -ms-transform: translateY(-100px);
  -o-transform: translateY(-100px);
}

.close-btn {
  width: 35px;
  height: 30px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.close-btn .bar {
  height: 4px;
  background: #333;
}

.close-btn .bar:nth-child(1) {
  transform: rotate(45deg);
}

.close-btn .bar:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

.opened {
  display: flex;
}

.opened img {
  animation: animatepopup 1s ease-in-out .8s;
  -webkit-animation: animatepopup .3s ease-in-out forwards;
}



.submit-button_g{
  display: block;
  width: 20%;
  padding: 12px;
  background: linear-gradient(135deg, #23058f, #0600a8);
  color: #fff;
  border: none;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  margin: auto;
  margin-top: 20px;
  text-align: center;
}
.submit-button_g:hover{
  background: linear-gradient(135deg, #09752a, #01251f);
  transform: scale(1.05);
  color: #fff;
  text-decoration: none;
}

@keyframes animatepopup {

  to {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }

}

@media screen and (max-width: 850px) {

  .container .container__img-holder:nth-child(3n+1) {
    margin-left: 16px;
  }

  .container__img-holder {
    max-width: 43%;
    vertical-align: top;
    margin-bottom: 20px;
    margin-left: 16px;
    cursor: pointer;
  }

  .container__img-holder img {
    width: 100%;
    height: 180px;
    display: block;
  }

  .submit-button_g{
    display: block;
    width: 50%;
    padding: 12px;
    background: linear-gradient(135deg, #23058f, #0600a8);
    color: #fff;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    margin: auto;
    margin-top: 20px;
    text-align: center;
  }
}

.img_discription{
  font-size: 16px;
  color: rgb(0, 0, 0);
  text-align: center;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 500;

}

/*about center*/

.page_1{
  width: 100%;
  background-color: #ffee06;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding-top: 20px;
  margin-top: 10px;
 
}

.page_div{
background-color: white;
 display: flex;
 
}
.page_left{
  width: 50%;
  text-align: left;
  display: flex;
  padding-top: 50px;
}
.page_right{
  width: 50%;
}
.img_about1{
  height: 550px;
}


@media screen and (max-width:850px){
  .page_div{
    
     display: block;
     
    }
    .page_left{
      width: 100%;
      text-align: center;
      padding-top: 50px;
    }

    .img_about1{
      padding: 20px;
      width: 100%;
      height: 350px;
     
    }
    .page_right{
      width: 100%;
    }
    
}


/**/
/* From Uiverse.io by gharsh11032000 */ 

.container_10 {
 
  width: 100%;
  margin-left: 20px;
  padding: 20px;
}

.team-members {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 2fr));
  gap: 20px;
}
.member {
  background-color: white;
  border-radius: 8px;
  padding: 15px;
  text-align: left;
  
  
}
.member img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 10px;
  
}
.member h3 {
  margin: 0 0 5px 0;
  font-size: 16px;
}
.member p {
  margin: 0;
  font-size: 16px;
  color: #666;
}
#heading_12{
  color: rgb(241, 73, 7);
  font-size: 4rem;
}
.heading_2{
  padding-left: 20%;
  padding-right: 20%;
  
}


@media screen and (max-width:850px){
  #heading_12{
    color: rgb(241, 73, 7);
    font-size: 3rem;
  }
  .heading_2{
    padding-left: 2%;
    padding-right: 2%;
    
  }
}


/*reviews*/

.container_review{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  

}
.course1{
  background: rgb(237, 239, 240);
padding: 20px;
}

.testimonial-card{
  min-height: 450px;
  width: 350px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,.3);
  flex-flow: column;
  justify-content:space-between;
  margin: 10px;
 
}
.text1{
  padding: 2rem;
  height:450px;
  position: relative;
  font-size: 4px;
}

.image{
  
  height: 120px;
  width: 120px;
  border-radius: 50%;
  border: 2px solid rgb(226, 52, 52);
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  display:flex;
  justify-content:center;
  object-fit: cover;
  
}

.footer{
  background: linear-gradient(90deg, #1a2B96 0%, #d22B96 100%);
  height: 140px;
  border-radius: 0 0 10px 10px;
  position:relative;
  
}

.quote{
  font-size: 400%;
  float: right;
  opacity: .1;
  transform: rotate(10deg) translate(-10px, -40px);
 color:#4D3FA3;
}

.person{
  color:white;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -100%);
  font-size:1.5rem;
  font-weight: 600;
}

.person1{
  color:white;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -100%);
  font-size:1.5rem;
  font-weight: 600;
}

.person2{
  color:rgb(255, 238, 0);
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -100%);
  font-size:1.5rem;
  font-weight: 600;
}

.submit-button11{
  display: block;
  width: 20%;
  padding: 12px;
  background: linear-gradient(135deg, #23058f, #0600a8);
  color: #fff;
  border: none;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  margin: auto;
  margin-top: 20px;
  text-align: center;
}
.submit-button11:hover{
  background: linear-gradient(135deg, #09752a, #01251f);
  transform: scale(1.05);
  color: #fff;
  text-decoration: none;
}


@media screen and (max-width:850px){
  .container_review{
    display: block;
    margin: auto;
    text-align: center;
  }

  .testimonial-card{
    display: flex;
    margin: 0 auto;
    margin-bottom: 10px;
   
  }
  .submit-button11{
    
    width:70%;
  
  }
}
/* */

.banner{
 
  background-image: linear-gradient(to right, blue, rgb(131, 14, 185));
  color: white;
  text-align: center;
  padding-top: 25px;
  padding-left: 10%;
  padding-right: 10%;
  padding-bottom: 25px;
  

}

.title1{
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-size: 3em;
font-weight: 600;

}

.title2{

  font-size: 2em;
  font-weight: 600;
  font-family:  serif;
  }

  .title3{

    font-size: 2em;
    font-weight: 600;
    font-family:  serif;
    }

  @media screen and (max-width:850px){
    .banner{
      background-image: linear-gradient(to right, blue, rgb(131, 14, 185));
      color: white;
      text-align: center;
      padding-top: 10px;
      padding-left: 10px;
      padding-right: 10px;
      padding-bottom: 35px;
      
    
    }
    
    .title1{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 600;
    
    }
    
    .title2{

      font-size: 1.8rem;
      color: yellow;
      font-family:  serif;
      }
    
      .title3{
        font-size: 1.5rem;
        font-family:  serif;
        }
    
  }

  /*footer*/

 

  .bg-footer {
    background-color: #000;
    width: 100%;
    padding: 10px 0 20px;
    margin-top: -20px;
    object-fit: cover;
   
    
}


.footer-heading {
    letter-spacing: 2px;
}

.footer-link a {
    color: #ffffff;
    line-height: 30px;
    font-size: 14px;
    transition: all 0.5s;
}

.footer-link a:hover {
    color: #ff1606;
    text-decoration: none;
}

.contact-info {
    color: #ffffff;
    font-size: 20px;
}

.footer-social-icon {
    font-size: 15px;
    height: 34px;
    width: 34px;
    line-height: 34px;
    border-radius: 3px;
    text-align: center;
    padding-top: 10px;
    display: inline-block;
}

.facebook {
    background-color: #0d0aca;
    color: #ffffff;
    
}

.youtube {
    background-color: #ce0909;
    color: #ffffff;
}

.instagram {
    background-color: #ce0606;
    color: #ffffff;
}


.footer-alt {
    color: #ffffff;
}

.footer-heading {
    position: relative;
    padding-bottom: 12px;
    color: rgb(255, 230, 9);
    font-size: 16px;
    font-weight: 600;
}

.footer-heading:after {
    content: '';
    width: 25px;
    border-bottom: 1px solid #FFF;
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    border-bottom: 1px solid #1bbc9b;
}
.container_footer{
  width: 100%;
  padding: 50px;
 
  
}
.deploper{
  font-size: 20px;
  color: white;
}

@media screen and (max-width:850px){


  .bg-footer {
    background-color: #000;
    
    padding: 10px 0 20px;
    margin-top: -20px;

}
.contact-info {
  color: #ffffff;
  font-size: 16px;
}
.deploper{
  font-size: 14px;
  color: white;
}

  
}

/*contact us page*/



.page_resize_2{
  width: 100%;
  
  margin: 0 auto;
  margin-bottom: 50px;
  margin-top: 50px;
  
}

.page_resize1{
  width: 100%;
  display: flex;
  margin: 0 auto;
  margin-bottom: 50px;
  margin-top: 50px;
  
}


*{
  
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  box-sizing:border-box;
}





.container_ver1{
  position:relative;
  top:20px;
  left:2%;
  display:block;
  margin-bottom:50px;
  padding-bottom: 20px;
  width:50%;
  background:#fff;
  border-radius:5px;
  overflow:hidden;
  z-index:1;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.h2_heading1{
  padding:40px;
  font-weight:500;
  text-transform:uppercase;
  color:rgb(0, 0, 0);
  
}

.input_roll1{
  display:block;
  width:90%;
  margin:0 auto;
  padding: 10px;
 
 
}
.input_roll1:hover{
  border: 2px solid rgb(165, 160, 160);
}


.btn_search1{
  cursor:pointer; 
  display:inline-block;
  width:250px;
  height:60px;
  margin-left: 30%;
  border:none;
  font-family: 'Open Sans', sans-serif;
  text-transform:uppercase;
  color:#fff;
  -webkit-transition:.5s;
  transition:.5s;
  &:nth-of-type(1){
    background:#317503;
  }
  &:nth-of-type(2){
    background:#ff5722;
  }
  span{
    position:absolute;
    display:block;
    margin:-10px 20%;
    -webkit-transform:translateX(0);
    transform:translateX(0);
    -webkit-transition:.5s;
    transition:.5s;
  }
  &:hover{
    span{
      -webkit-transform:translateX(30px);
      transform:translateX(30px);
      }
   }
}


h3{
  position:absolute;
  top:-100%;
  left:20%; 
  text-transform:uppercase;
  font-weight:bolder;
  color:rgba(255,255,255,.3);
  -webkit-transition:.3s ease-in-out 1.2s;
  transition:.3s ease-in-out 1.2s;
}

.container_ver2{
  width: 35%;
 background-color: #FFFDD0;
 margin: 100px;
 margin-top: 15px;
 padding: 50px;
 box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 2px 0 rgba(0, 0, 0, 0.19);
}

.name_hed{
  text-align: center;
  font-size: 1.5em;
  font-weight: 600;
  
}
.name_hed1{
  text-align: left;
  font-size: 18px;
 font-weight: 600;

}
.name_con1{
  text-align: left;
  font-size: 16px;
  

}

.map{
  width: 100%;
  height: 700px;
  padding: 25px;
  padding-bottom: 40px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 2px 0 rgba(0, 0, 0, 0.19);
}
@media screen and (max-width:850px){
  .page_resize1{
    width: 100%;
    display: block;
    margin: 0 auto;
    margin-bottom: 50px;
    margin-top: 50px;
    
  }

  .container_ver1{
    margin: 5%;
    width:90%;
    
  }

  .container_ver2{
    width: 90%;
   background-color: #FFFDD0;
   margin: 5%;
   margin-top: 55px;
   padding: 50px;
   box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 2px 0 rgba(0, 0, 0, 0.19);
  }

  .map{
    width: 100%;
    height: 500px;
   
    
  }

  .btn_search1{
   
    width:200px;
  
    }
  
  
}
/*about page*/

.about_main{
  width: 100%;
  margin-bottom: 70px;
}

.about_div{
  width: 100%;
  display: flex;
  margin: 0 auto;
  margin-bottom: 50px;
  margin-top: 50px;
}

.about_left{
  width: 40%;
  text-align: center;
  padding: 100px;
}

.about_right{
  width: 60%;
  padding: 50px;
  
}

.img_div {
  border-radius: 50%;
  height: 350px;
  width: 350px;

  box-shadow: 0 14px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 2px 0 rgba(0, 0, 0, 0.19);
}

.img_div1 {
  
  height: 450px;
  width: 450px;
 padding: 25px;
  
}

.about_bottom{
 display: flex;
  width: 100%;
  padding: 50px;
  padding-top: 10px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 2px 0 rgba(0, 0, 0, 0.19);
}

.about_bottom1{
 width: 100%;
   padding-top: 10px;
   padding-left: 20px;
   padding-right: 30px;
   margin-bottom: 80px;
   
   
 }

 
.dir_head{
  font-size: 2em;
  font-weight: 600;
}

.dir_head1{
  font-size: 2em;
  font-weight: 600;
  text-align: center;
  padding: 20px;
}


@media screen and (max-width:850px){
  .about_div{
    
    display: block;
    margin-top: 1px;
  }
  .about_left{
    text-align: center;
    width: 100%;
    height: 250px;
    padding-top: 10px;
    padding-bottom: 10px;
   
  
  }

  .img_div {
    height: 250px;
    width: 250px;
   padding: 5px;
   margin-left: -35px;

  }
  .about_right{
    width: 90%;
    text-align: center;
    padding: 20px;
    margin-left: 5%;
    margin-top: 50px;
    margin-right: 5%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 2px 0 rgba(0, 0, 0, 0.19);
  }
  .about_bottom{
    display: block;
     width: 100%;
     padding: 50px;
     padding-top: 10px;
     box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 2px 0 rgba(0, 0, 0, 0.19);
   }

   .img_div1 {
  
    height: 250px;
    width: 250px;
   padding: 25px;
   margin-left: -20px;
    
  }
}

/*reviews page*/

.container_review1{
  position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px 10px;
    padding: 20px 10px;

}
.course1{
  background: rgb(237, 239, 240);
padding: 20px;
}

.testimonial-card1{
  width: 22%;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,.3);
  margin: 10px;
  
  
}
.text{
  padding: 1em;
  position: relative;
  font-size: 14px;
  height: 350px;
}
.image{
  
  height: 120px;
  width: 120px;
  border-radius: 50%;
  border: 2px solid rgb(226, 52, 52);
  position: absolute;
  bottom: -50%;
  left: 50%;
  transform: translateX(-50%);
  display:flex;
  justify-content:center;
  object-fit: cover;
  
}

.footer{
  background: linear-gradient(90deg, #1a2B96 0%, #d22B96 100%);
  height: 140px;
  border-radius: 0 0 10px 10px;
  position:relative;
  
}

.quote{
  font-size: 400%;
  float: right;
  opacity: .1;
  transform: rotate(10deg) translate(-10px, -40px);
 color:#4D3FA3;
}

.person{
  color:white;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -100%);
  font-size:1.5rem;
  font-weight: 600;
}

.person1{
  color:white;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -100%);
  font-size:1.5rem;
  font-weight: 600;
}

.person2{
  color:rgb(255, 238, 0);
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -100%);
  font-size:1.5rem;
  font-weight: 600;
}



.our_coursepage{
  width: 100%;
  margin-bottom: 100px;
}

.heading_says{
  font-size: 40px;
  color: white;
}
.hed15{
  font-size: 20px;
  color: rgb(2, 2, 2);
}


@media screen and (max-width:850px){
  .container_review1{
   
      display: block;
      
  
  }
  .testimonial-card1{
    width: 100%;
    
    
    
  }
  .heading_says{
    font-size: 25px;
    color: white;
    margin-left: -85px;
    
    
  }
}


/*video*/

.video_page{
  width: 100%;
  padding: 50px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 10px;
  padding: 20px 10px;
  
}
.video_title{
  font-size: 1.5em;
  padding: 10px;
  font-family: sans-serif;
  font-weight: 600;
  
}


.single-video {
  width: 25%;
  flex-grow: 1;
  margin: 0.5rem;
}

/* taking care of the video aspect-ratio */
figure {
  position: relative;
  padding: 0 0 56.25% 0;
}

figure iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}


@media screen and (max-width:850px){
  .single-video {
    width: 100%;
    flex-grow: 1;
    margin: 0.5rem;
  }

  
}

/*course category */

.course_11{
  width: 100%;
  padding: 100px;
}

.container_course{
  max-width: 100%;
  width: 100%;
  padding: 20px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-column-gap: 20px;
  
}

.card_course{
  background-color: #fff;
  position: relative;
  border-radius: 10px;
  box-shadow: 2px 5px 10px rgba(0,0,0,0.3);
  padding-top: 200px;
 margin-bottom: 70px;
  
}

.card_course img{
  width: 80%;
  height: 200px;
  object-fit: cover;
  position: absolute;
  top: -20px;
  border-radius: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.card_course-body{
  padding: 20px;
}

.card_course-body .card_course-title{
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.4;
  
}

.card_course-body .card_course-text{
  font-size: 6px;
  line-height: 1.4;
  
  margin-bottom: 30px;
}

.card_course-body .btn{
  width: 100%;
  display: block;
  height: 40px;
  text-align: center;
  background-color: rgb(0, 38, 255);
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-size: 16px;
  transition: 0.1s ease;
  
  
}

.card_course-body .btn:hover{
  background-color: rgb(50, 134, 1);
  color: #fff;
  
}

@media screen and (max-width:850px) {
  .container_course{
    max-width: 100%;
    width: 100%;
    padding: 20px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(1,1fr);
    grid-column-gap: 20px;
    
  }
  .course_11{
    width: 100%;
    padding: 20px;
  }
 

}

/*course show*/
.course_main_div{
  width: 100%;
  display: flex;

}
.course_1_div{
  background-color: rgb(255, 255, 255);
   width: 68%;
   margin: 10px;
   padding: 55px;
   margin-bottom: 25px;
 }

 .course_2_div{
  
   width: 30%;
   margin-left: 1px;
   margin-top: 10px;
   margin-bottom: 10px;
   padding: 15px;
   box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
   background-color: rgb(255, 255, 255);
   margin-bottom: 25px;
   height: fit-content;
   
 }

 @media screen and (max-width:850px){
  .course_main_div{
    width: 100%;
    display: block;
  
  }
  .course_1_div{
    background-color: rgb(255, 255, 255);
     width: 100%;
     
   }
  
   .course_2_div{
    
     width: 100%;
     
     
   }
}

 /* ADVERTISERS SERVICE CARD */
body {
  font-family: "Roboto", sans-serif !important;
}

.sec-icon {
  position: relative;
  display: inline-block;
  padding: 0;
  margin: 0 auto;
}

.sec-icon::before {
  content: "";
  position: absolute;
  height: 1px;
  left: -70px;
  margin-top: -5.5px;
  top: 60%;
  background: #333333;
  width: 50px;
}

.sec-icon::after {
  content: "";
  position: absolute;
  height: 1px;
  right: -70px;
  margin-top: -5.5px;
  top: 60%;
  background: #333;
  width: 50px;
}

.advertisers-service-sec {
  background-color: #ffffff;
}

.advertisers-service-sec span {
  color: rgb(255, 23, 131);
}

.advertisers-service-sec .col {
  padding: 0 1em 1em 1em;
  text-align: center;
}

.advertisers-service-sec .service-card {
  width: 90%;
  padding: 2em 1.5em;
  border-radius: 5px;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: 0.5s;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: #fff;
  margin: auto;
}

.advertisers-service-sec .service-card::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(#0dcaf0, rgb(255, 23, 131));
  position: absolute;
  left: 0%;
  top: -98%;
  z-index: -2;
  transition: all 0.4s cubic-bezier(0.77, -0.04, 0, 0.99);
}

.advertisers-service-sec h3 {
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 600;
  color: #1f194c;
  margin: 1em 0;
  z-index: 3;
}

.advertisers-service-sec p {
  color: #575a7b;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  z-index: 3;
}

.advertisers-service-sec .icon-wrapper {
  background-color: #2c7bfe;
  position: relative;
  margin: auto;
  font-size: 30px;
  height: 2.5em;
  width: 2.5em;
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: 0.5s;
  z-index: 3;
}

.advertisers-service-sec .service-card:hover:after {
  top: 0%;
}

.service-card .icon-wrapper {
  background-color: #ffffff;
  color: rgb(255, 23, 131);
}

.advertisers-service-sec .service-card:hover .icon-wrapper {
  color: #0dcaf0;
}

.advertisers-service-sec .service-card:hover h3 {
  color: #ffffff;
}

.advertisers-service-sec .service-card:hover p {
  color: #f0f0f0;
}
/* ADVERTISERS SERVICE CARD ENDED */



/*whatsapp link*/
.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#0b8d3b;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}
.float:hover
.float:active{
  background-color:#045722;
  color:#FFF;
}

@media screen and (max-width:850px){
  .float{
    position:fixed;
    width:60px;
    height:60px;
    bottom:40px;
    right:40px;
    
  }
}



/*Services page*/

.services_main{
  width: 100%;
  margin-bottom: 70px;
}

.service_div{
  width: 100%;
 padding-left: 35px;
padding-right: 15px;
padding-top: 35px;

}
.heading_service{
  font-size: 4rem;
  color: white;
}


@media screen and (max-width:850px){
  .about_div{
    
    display: block;
    margin-top: 1px;
  }
  .heading_service{
    font-size: 3rem;
    color: white;
  }

   
}

/*404 error*/


/*======================
    404 page
=======================*/


.page_404{ padding:40px 0; background:#fff; font-family: 'Arvo', serif;
}

.page_404  img{ width:100%;}

.four_zero_four_bg{
 
 background-image: url(https://cdn.dribbble.com/users/285475/screenshots/2083086/dribbble_1.gif);
    height: 400px;
    background-position: center;
 }
 
 
 .four_zero_four_bg h1{
 font-size:35px;
 font-weight: 600;
 }
 
  .four_zero_four_bg h3{
			 font-size:80px;
			 }
			 
			 .link_404{			 
	color: #fff!important;
    padding: 10px 20px;
    background: blue;
    margin: 20px 0;
    display: inline-block;}

    .link_404:hover{			 
        background: rgb(199, 12, 12);
        text-decoration: none;
        color: #fff
        }

    
	.contant_box_404{ margin-top:-50px;}


  /*hedding */

  @media screen and (max-width: 850px) {
    .heading{
      font-size: 30px;
      color: white;
    }
}

/*certificate demo*/


.main_container{
  width: 95%;
  display: grid;
  margin: 0 auto;
  padding-left: 10px;
  grid-template-columns: repeat(auto-fill, minmax(min(950px, 550px), 1fr));
  gap: 10px;
}

.img_demo{
  border-radius: 5px;
  width: 95%;
  height: 850px;
  aspect-ratio: 1; /* To make them a square */
  object-fit: fill;
}

.img_demo1{
  border-radius: 5px;
  width: 95%;
  height: 500px;
  aspect-ratio: 1; /* To make them a square */
  object-fit: fill;
}
@media screen and (max-width:850px){
  .main_container{
    width: 95%;
    display: grid;
    margin: 0 auto;
    padding-left: 10px;
    grid-template-columns: repeat(auto-fill, minmax(min(550px,100%), 1fr));
  }
  
  .img_demo{
    border-radius: 5px;
    width: 95%;
    height: 550px;
    gap: 10px;
    aspect-ratio: 1; /* To make them a square */
    object-fit: fill;
  }
}


/* Our Franchise*/



.card_our {
  width:90%;
  height: fit-content;
  margin:50px;
  background: #fff;
  border-radius: 15px;
  padding: 1rem;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  transition:.3s ease-in-out;
  box-shadow:.3px 4px 7px rgba(233, 15, 15, 0.2);
  
  &:hover {
    box-shadow:.3px 4px 7px rgba(0,0,0,.2);
  }
  
  .img-box {
    width: 590px;
    
    border-radius: 10px;
    
    img {
      width:100%;
      height:100%;
      border-radius: inherit;
      object-fit:cover;
    }
  }
  .content {
    padding: 1rem;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    
    .h4_heading1 {
      font-size: 3rem;
      font-weight: 600;
    }
    p {
      font-size: 2rem;
      color: rgb(46, 43, 43);
    }
  }
  
  .card-action {
    display:flex;
    justify-content:space-between;
    margin-top:2rem;
    
    .name-container {
      display:flex;
      gap:1rem;
      align-items:center;
      justify-content:center;
      
      .avatar {
         width:150px;
        height:150px;
        border-radius: 50%;
        outline-width: 1px;
        outline-color: orange;
        outline-offset: 1px;
        outline-style: dotted;
      }
      .name-box {
        display:flex;
        flex-direction: column;
        
        span {
          font-size:2rem;
          font-weight:600;
          color: #0603a0;
        }
        small {
          color:rgb(0, 0, 0);
          font-size: 2rem;
          font-weight:600;
        }
      }
    }
  }
}

@media screen and (max-width:800px){
  .card_our {
    margin:20px;
    display:block;
    .img-box {
      width: 100%;
      border-radius: 10px;
      
      img {
        width:100%;
        height:100%;
        
      }
      .h4_heading1 {
        font-size: 1.2rem;
        font-weight: 600;
      }
    }
    .card-action {
      display:flex;
      justify-content:space-between;
      margin-top:1rem;
      
      .name-container {
        display:flex;
        gap:0.5rem;
        align-items:center;
        justify-content:center;
        
        .avatar {
           width:100px;
          height:100px;
          border-radius: 50%;
          outline-width: 1px;
          outline-color: orange;
          outline-offset: 1px;
          outline-style: dotted;
        }
        .name-box {
          display:flex;
          flex-direction: column;
          
          span {
            font-size:1.2rem;
            font-weight:600;
            color: #0603a0;
          }
          small {
            color:rgb(0, 0, 0);
            font-size: 1.2rem;
            font-weight:600;
          }
        }
      }
    }
}
}
/* recent join student Page*/


.wrap {
  display: flex;
  align-items: stretch;
  width: 100%;
  gap: 24px;
  padding: 24px;
  flex-wrap: wrap;
}

.box {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  position: relative;
  padding: 8px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.box-top {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 12px;
  margin-bottom: 36px;
}

.box-image {
  width: 100%;
  height: 280px;
  padding: 10px;
  
}

.box_course{
  color: rgb(39, 10, 168);
 
  font-weight: 600;
}

.box-title {
  border-left: 3px solid var(--purple);
  padding-left: 12px;
  font-size: 18px;
  font-weight: 600;
}





/* RESPONSIVE QUERIES */

@media (min-width: 320px) {
  .title-flex {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
  }
  .user-follow-info {
    margin-top: 6px;
  }
}

@media (min-width: 460px) {
  .title-flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
  }
  .user-follow-info {
    margin-top: 6px;
  }
}

@media (min-width: 640px) {
  .box {
    flex-basis: calc(50% - 12px);
  }
  .title-flex {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
  }
  .user-follow-info {
    margin-top: 6px;
  }
}

@media (min-width: 840px) {
  .title-flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
  }
  .user-follow-info {
    margin-top: 6px;
  }
}

@media (min-width: 1024px) {
  .box {
    flex-basis: calc(33.3% - 16px);
  }
  .title-flex {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
  }
  .user-follow-info {
    margin-top: 6px;
  }
}

@media (min-width: 1100px) {
  .box {
    flex-basis: calc(25% - 18px);
  }
}
