* {
  font-family: 'Poppins', sans-serif;
}

body {
  margin: 0;
  padding: 0;
  color: white;
  /* background: rgb(30,30,30); */
  background: url("../assets/bg5.jpeg");
  background-size: cover;

}

.loader {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 1;
  overflow: visible;
  background-repeat: no-repeat;
  background: url("../assets/placeholder.gif");
  background-size: cover;
}

.disappear {
  animation: vanish 1s forwards;
}

@keyframes vanish {
  100% {
    opacity: 0;
    visibility: hidden;
  }
}


.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background-color: #1A2421;
  color: #fff;
}

.nav-links a {
  color: #fff;
}

/* LOGO */
.logo img {
  width: 12em;
  height: 3.5em;
  margin-left: 20%;
}

/* NAVBAR MENU */
.menu {
  display: flex;
  gap: 1em;
  font-size: 18px;
}

.menu li:hover {
  background-color: white;
  border-radius: 5px;
  transition: 0.3s ease;
}

.menu li a:hover {
  color: black;
}

.menu li {
  padding: 3px 14px;
}

input[type=checkbox] {
  display: none;
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  font-size: 24px;
  user-select: none;
}

/* APPLYING MEDIA QUERIES */
@media (max-width: 768px) {
  .menu {
    display: none;
    position: absolute;
    background-color: #1A2421;
    right: 0;
    left: 0;
    text-align: center;
    padding: 16px 0;
    width: 100%;
  }

  .menu li:hover {
    display: inline-block;
    background-color: white;
    transition: 0.3s ease;
  }

  .menu li a:hover {
    color: black;
  }

  .menu li+li {
    margin-top: 12px;
  }

  input[type=checkbox]:checked~.menu {
    display: block;
  }

  .hamburger {
    display: block;
  }

  .dropdown {
    left: 50%;
    top: 30px;
    transform: translateX(35%);
  }
}

.card {
  color: white;
  background: none;
}


.teamHeading {
  /* color:rgba(255, 255, 0, 0.587); */
  font-size: 2.5rem;
  text-align: center;
  margin-top: 1rem;
}

/* Our Team
-------------------------------------------------------*/

.our-team .team-row {
  margin-left: -40px;
  margin-right: -40px;
}

.our-team .team-wrap {
  padding: 0 40px;
}

.our-team .container-fluid {
  padding: 0 50px;
}

.team-img img {
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  overflow: hidden;
  width: 100%;
}

.team-member,
.team-img {
  position: relative;
  overflow: hidden;
}

/* .team-title {
    margin: 30px 0 7px;
  } */

.overlay {
  background-color: rgba(20, 20, 20, .7);
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.team-details {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 0;
  padding: 5%;
  overflow: hidden;
  width: 100%;
  z-index: 2;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.team-details p {
  color: #fff;
}

.team-img:hover .team-details {
  opacity: 1;
  margin-top: -80px;
}

.team-img:hover .overlay {
  opacity: 1;
}

.socials a {
  display: inline-block;
  width: 37px;
  height: 37px;
  background-color: transparent;
}

.socials i {
  line-height: 37px;
  color: #616161;
  font-size: 14px;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  text-align: center;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.team-details .socials i {
  color: #fff;
}

.socials a:hover i {
  color: #fff;
  background-color: #355c7d;
}


.subDepartmentHeading {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* margin: 1rem; */

  /* width: 50%; */

}

.subDepartmentHeading>h3 {
  font-size: 1.5rem;
  /* border-bottom:1px solid grey; */
  border-width: 0.2rem;
  width: 40%;
  /* letter-spacing: 0.1rem; */
}


.myTeam {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.aerosingle {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.team-member {
  margin: 1rem;
}

.my-card {
  margin: 1rem;
  border-radius: 5rem;
  border: none;
}

.my-card>img {
  border-radius: 5rem;
  /* padding:0 1rem; */

}

.socialHandles {
  display: flex;
  align-items: center;
  justify-content: center;
  /* justify-content: space-between; */
  /* justify-content:safe; */

}

.my-icon {
  margin: 0rem 1.5rem;
  cursor: pointer;
}

.team-member-name {
  font-size: 1rem;
  text-align: center;

}

.team-member-intro {
  font-size: 0.8rem;
  text-align: center;
  color: #f4eded;
}

.my-img {
  height: 15rem;
  width: 12rem;
  align-self: center;
}

.card-text {
  overflow: hidden;
  height: 12rem;
}

.container {
  /* border: 1px solid peachpuff; */
  padding-top: 4.5rem;
}

.team-member-designation {
  font-size: 0.9rem;
  text-align: center;
  font-weight: 400;
  color: #b2b2b2;
}

@media (max-width:990px) {
  .myTeam {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: center;
    /* align-items: center; */
  }

  .teamHeading,
  .teamText {
    text-align: center;

  }

}

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

.teamText {
  font-size: 0.8rem;
  color: rgb(171, 169, 169);
  text-align: center;
}

/* footer styles */



/* 

.footer{
  padding: 0;
  background-color: #1b1b1b;
}


.upper{
  display: flex;
  justify-content: space-around;
  align-items: center;
 
.left{
  width:30rem;
  height:24rem;
 
  display: flex;
  flex-direction: column;
 
  
  justify-content:center;
  align-items: center;
  
  margin-right:1rem;
}
.footer-title{
  font-size:2rem;
  text-transform: uppercase;
  font-weight: 700;
}
.right{
  width:30rem;
  
 
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items:start;
}
.footer-social-handles{
  display: flex;
  flex-direction: column;
}
.footer-icon{
  margin: 0 1rem;
  
}
.follow-us{
 font-size:2.3rem;
  
}

.map>iframe{
  height: 15rem;
  
}
.reach-us{
  font-size:2rem;
}
.address{
  
  margin: 1rem auto;
  font-size: 1rem;
}
.all-icons{
  display: flex;
  justify-content: center;
  align-items: center;
  
}
.copyright-text{
  text-align: center;

}
.left{
  padding:0 1rem;
} */

.my-footer {
  margin-top: 30px;
  color: white;
  width: 100%;
  /* border: 1px solid white; */
}

.footer-title {
  font-size: 2rem;
}

.footer-paragraph {
  font-size: 1.5rem;
}

.social-link>a {
  font-size: 1.5rem;
  text-decoration: none;
  color: white;
  margin-right: 1rem;
}

@keyframes vanish {
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background-color: #1b1b1b;
  color: #fff;
}

.nav-links a {
  color: #fff;
}

/* LOGO */
.logo img {
  width: 12em;
  height: 3.5em;
  margin-left: 20%;
}

/* NAVBAR MENU */
.menu {
  display: flex;
  gap: 1em;
  font-size: 18px;
  margin-right: 2rem;
}

/* .menu li:hover {
    background-color: #1A2421;
    border-radius: 5px;
    transition: 0.3s ease;
  } */

.menu li {
  padding: 5px 14px;
}

.menu li:hover {
  background-color: #fff;
  color: #1b1b1b;
  border-radius: 3rem;

  transition: 0.5s ease;
}

.menu li a:hover {
  color: black;
}

input[type=checkbox] {
  display: none;
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  font-size: 40px;
  user-select: none;
  cursor: pointer;
}

/* APPLYING MEDIA QUERIES */
@media (max-width: 768px) {
  .menu {
    display: none;
    position: absolute;
    background-color: #1b1b1b;
    right: 0;
    left: 0;
    text-align: center;
    padding: 16px 0;
  }


  .menu li:hover {
    display: inline-block;
    /* background-color: rgb(30,30,30); */
    background-color: #fff;
    color: #1b1b1b;
    transition: 0.3s ease;
  }

  .menu li a:hover {
    color: black;
  }

  .menu li+li {
    margin-top: 12px;
  }

  input[type=checkbox]:checked~.menu {
    display: block;
    z-index: 2;
  }

  .hamburger {
    display: block;

  }

  .dropdown {
    left: 50%;
    top: 30px;
    transform: translateX(35%);

  }

  .team-member-intro {
    display: none;
  }
}