@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  scrollbar-width: none;
  font-family: "Poppins", sans-serif;
}

*::-webkit-scrollbar {
  display: none;
}

.main-seaction .header-sec {
  width: 100%;
  height: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #777777;
}
.main-seaction .header-sec .heading {
  font-size: 3rem;
  color: rgb(247, 247, 247);
  font-weight: 300;
}

.gallery-sec {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
}
.gallery-sec .gallery-heading {
  font-size: 2.5rem;
  font-weight: 400;
  margin: 2rem;
  color: #0b3636;
}
.gallery-sec .department {
  display: flex;
  flex-wrap: wrap;
  width: 85%;
  justify-content: center;
}
.gallery-sec .department .dept {
  width: 20rem;
  height: 20rem;
  margin: 2rem;
  border-radius: 1.5rem;
}
.gallery-sec .department .dept img.dept-img {
  width: 100%;
  height: 100%;
  border-radius: 1.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.1s ease-out;
}
.gallery-sec .department .dept img.dept-img:hover {
  transform: scale(1.05);
}

.footer {
  width: 100%;
  height: 7rem;
  margin-top: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #777777;
}
.footer .Copyright {
  font-size: 1.5rem;
  color: #0b3636;
}/*# sourceMappingURL=virtual.css.map */