*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/*--============aboutus part start=============--*/

.aboutus{
    /* border: 1px solid white; */
    padding:80px 100px 50px 100px;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}

.aboutus .about-inner{
    height: 600px;
    width: 50%;
    /* border: 2px solid yellow; */
}

.aboutus .about-inner img{
  height:600px;
  width: 100%;
}
.aboutus .about-text{
    height:600px;
    width: 50%;
    padding: 0px 50px 40px 50px;
    /* border: 3px solid green; */
}

.aboutus .about-text h1{
    font-family: "Righteous", sans-serif;
    color: #82c6c5;
    font-size: 50px;
    font-weight: 300;
    letter-spacing: 2px;
}

.aboutus .about-text h2{
    color:#f7d40c;
    display: inline-block;
    letter-spacing: 2px;
    font-weight: 400;
    font-family: "Righteous", sans-serif;
    margin-bottom: 20px;
}

.aboutus .about-text p{
  color: rgb(196, 194, 194);
  text-align: justify;
  letter-spacing: 1px;
  margin-top: 10px;
  font-family: "Roboto", sans-serif;

}

.hidden-left {
    transition: 1s;
  transform: translateX(-130%);
}

.hidden-right {
  transition: 1s;
  transform: translateX(130%);
}

.show {
  opacity: 1;
  transform: translateX(0);
}

/* Mobile devices (up to 767px) */
@media (max-width: 767px) {
  .aboutus .about-inner{
    height: auto;
      width: 100%;
  }
  .aboutus .about-inner img{
    height:300px;
    margin-top: 20px;
    width: 100%;
  }
  .aboutus .about-text{
      height:auto;
      width: 100%;
      padding: 0px 0px 0px 0px;
  }
  .aboutus{
      padding:20px 10px 20px 10px;
  }
}

/* Tablets (768px to 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .aboutus .about-inner{
        width: 100%;
    }
    .aboutus .about-text{
        height:auto;
        width: 100%;
        padding: 30px 0px 0px 0px;
    }
    .aboutus{
        padding:60px 40px 20px 40px;
    }
}

/* Small Laptops / Desktop (1025px to 1366px) */
@media (min-width: 1025px) and (max-width: 1366px) {
   .aboutus{
        padding:50px 20px 20px 20px;
    }
    .aboutus .about-text{
        padding: 0px 0px 0px 20px;
    }
    .aboutus .about-inner img{
      height:550px;
      margin-top: 20px;
      width: 100%;
    }
}
/*--============aboutus part close=============--*/


/*--============employee part start=============--*/

.employee {
  color: white;
  /* border: 1px solid white; */
}

.head-employee {
  /* border: 1px solid greenyellow; */
  text-align: center;
  padding: 60px 0;
}

.head-employee h1 {
  font-family: "Righteous", sans-serif;
  color: #82c6c5;
  font-size: 50px;
  font-weight: 400;
  letter-spacing: 2px;
  display: inline-block;
  border-bottom: 2px solid #f7d40c;
}

.inner-employee {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  width: 100%;
  padding:0 200px 40px 200px;
}

.inner-e {
  height: 500px;
  width: 30%;
  border: 3px double #f7d40c;
  transform: scale(0.8);
  opacity: 0;
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.inner-e.zoomed {
  transform: scale(1);
  opacity: 1;
}

.inner-img {
  height: 400px;
  width: 100%;
  overflow: hidden;
}

.inner-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.inner-t {
  height: 100px;
  width: 100%;
  text-align: center;
  padding-top: 25px;
}

.inner-t h2 {
  font-family: "Righteous", sans-serif;
  font-weight: 400;
  letter-spacing: 2px;
  color: #82c6c5;
}

.inner-t p {
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  margin-top: 5px;
  letter-spacing: 2px;
  color: rgb(208, 208, 208);
}

/* Mobile devices (up to 767px) */
@media (max-width: 767px) {
   .head-employee{
    text-align: left;
   }
   .head-employee h1 {
    font-size: 40px;
    border-bottom: none;
  }
  .inner-employee {
    padding: 0 0px;
  }
  .inner-e {
    height: 500px;
    width: 100%;
  }

}

/* Tablets (768px to 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .head-employee h1 {
    font-size: 39px;
  }

  .inner-employee {
    gap:10px;
    width: 100%;
    padding:0 20px 0 30px;
  }
  .inner-e {
    height: 400px;
    width: 32%;
  }

  .inner-img {
    height: 300px;
    width: 100%;
    overflow: hidden;
  }

}

/* Small Laptops / Desktop (1025px to 1366px) */
@media (min-width: 1025px) and (max-width: 1366px) {
    .inner-employee {
      padding: 0 50px;
    }
}
/*--============employee part close=============--*/
