#about-section .container {
  text-align: justify;
}

#message-section .img-holder {
  border-radius: 10px;
  overflow: hidden;
}
#message-section .img-holder img {
  width: 100%;
  height: auto;
}
#message-section .message {
  text-align: justify;
}

#committee-section .person-card {
  text-align: center;
  margin-bottom: 20px;
}
#committee-section .person-card .person-img {
  width: 50%;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.2s ease-in-out;
}
#committee-section .person-card .desc {
  padding: 1rem;
}
#committee-section .person-card .desc .name {
  font-weight: bold;
  margin-bottom: 0;
}
#committee-section .person-card .desc .designation {
  font-size: 0.8rem;
  color: grey;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  line-height: 1.5em;
  height: calc(2 * 1.5em);
}
#section-bg-desk {
  height: 20vh;
  background: url("../img/front-desk.avif") fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
#section-bg-desk::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background: rgba(37, 130, 161, 0.2);
  z-index: 1;
}
#section-bg-desk > * {
  position: relative;
  z-index: 2;
}/*# sourceMappingURL=about.css.map */