*{

    padding: 0;

    margin: 0;

    box-sizing: border-box;

}

.praktani-sansat{
    width: 100%;
    background-color: var(--body-clr);
  }
.praktani-sansat .background{

  background-image: url(/user/images/syllabus.jpg);

  background-size: cover;

   

}
.praktani-sansat .ex_background{
    
    background-image: url(/user/images/ALL-TEACHERS-GROUP-IMG.JPG);

    background-size: cover;
}

.praktani-sansat .background .rgba{

    background: rgba(0,0,0,0.7);

}

.praktani-sansat .background .rgba .heading{

    padding:  8% 3%;

    color: white;

    font-size: 45.4px;

    text-align: center;
    font-family: 'Poppins', sans-serif !important;

}

.praktani-sansat .background .rgba .heading h1{

    font-family: 'Poppins', sans-serif !important;

    font-weight: 700;

}
  /* .portfolio .section-head{
    max-width: 700px;
    margin: 0px auto 25px;
    text-align: center;
  }
  .section-head h1{
    position: relative;
    font-size: 32px;
    margin: 10px 0px 30px;
    color: var(--primary-clr);
  } */
  /* .button-group{
    text-align: center;
    margin-bottom: 40px;
  }
  .button-group .button{
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    background-color: #c8d1d8;
    color: var(--primary-clr);
    font-style: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s;
    border: none;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
  }
  .button-group .button.active{
    background-color: var(--primary-clr);
    color: var(--body-clr);
  }
  .button-group .button:hover{
    background-color: var(--primary-clr);
    color: var(--body-clr);
  } */
  div.gallery-lab{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding:  10px 0px 40px 0px;
  }
  .for-praktani-sansat{
    width: 50% !important;
    height: 100%;
  }
  div.gallery-lab .item{
    position: relative;
    margin: 4px;
    width: calc(33.33% - 8px);
    overflow: hidden;
    cursor: pointer;
  }
  .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.3s;
  }
  div.gallery-lab .item:hover img{
    transform: scale(1.15);
  }
  .item .overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(5,85,92,0.7);
    color: var(--body-clr);
    padding: 15px;
    overflow: hidden;
    border-radius:0px;
    transition: opacity 0.2s ease-in-out;
    opacity: 0;
  }
  .item:hover .overlay{
    opacity: 1;
  }
  .item .overlay a{
    display: inline-block;
    padding: 8px 16px;
    border: 2px solid var(--body-clr);
    color: var(--body-clr);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
  }
  .item .overlay a:hover{
    background-color: var(--body-clr);
    color: var(--primary-clr);
  }
  
  
  @media(max-width: 1024px){
    div.gallery-lab .item{
      width: calc(50% - 8px);
    }
  }
  
  @media(max-width: 600px){
    div.gallery-lab .item{
      width: 100%;
      margin: 4px 0px;
    }
}