/* About Us Css */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 70vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(12, 158, 24, 0.3)),
    url(../Images/school.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-attachment: fixed;
  background-size: cover;
}
.hero-section .content h1 {
  font-size: 70px;
  font-weight: 700;
  color: white;
}
.aboutus .content-col:nth-child(1) {
  display: flex;
  align-items: center;
}
.aboutus .content-row{
  justify-content: space-between;
  gap: 40px;
}
.aboutus .content-col.info{
  padding: 20px;
}
.aboutus .content-col {
  flex-basis: calc(50% - 40px);
  margin-right: 10px;
  display: flex;
  align-items: center;
}
.aboutus .container .content-col h2 {
  font-size: 35px;
  text-align: center;
  margin-bottom: 0.5em;
}
.aboutus .container .content-col p {
  font-size: 15px;
  font-weight: 400;
  color: black;
}

.aboutus .container .content-col img {
  aspect-ratio: 20 / 13;
  object-fit: cover;
  object-position: center;
  min-width: 370px;
}
/* browser compatibility issues detected Planning to use in future */
/* .aboutus .container .content-col .mask{
  box-shadow: 2px 22px 10px rgba(100, 100, 100, 0.582);
  -webkit-mask-image: url(../Images/Mask.png);
  mask-image: url(../Images/Mask.png);
} */
.aboutus .container .content-row:nth-child(2) {
  flex-direction: row-reverse;
}
.aboutus .container .content-row {
  margin-bottom: 8em;
}
.boardOfDireactors .container h1 {
  text-align: center;
  color: var(--e-global-color-primary);
  font-weight: 700;
  font-size: 40px;
}
.boardOfDireactors .content-row {
  justify-content: space-around;
  gap: 40px;
}
.boardOfDireactors .content-col {
  max-width: 300px;
  text-align: center;
}
/* .boardOfDireactors .content-col .img{
  width: auto;
  height: 280px;
} */
.boardOfDireactors .content-col img {
  aspect-ratio: 12/16;
  width: 80%;
  height: 280px;
  object-fit: cover;
  object-position: center center;
}
.boardOfDireactors .content-col .name {
  font-size: 20px;
  font-weight: 600;
  color: var(--e-global-color-primary);
  text-transform: uppercase;

}
.boardOfDireactors .content-col .position{
  font-size: 15px;
  font-weight: 500;
  color: black;
  text-transform: uppercase;
}
.boardOfDireactors .content-col button {
  border: none;
  outline: none;
  color: var(--e-global-color-primary);
  font-size: 17px;
  cursor: pointer;
}

.boardOfDireactors .content-col p {
  height: 0;
  opacity: 0;
  overflow: hidden;
  text-align: left;
  padding-block: 10px;
  font-size: 14px;
  font-weight: 400;
  color: #383333;
  transition: 0.2s height ease, 0.2s opacity ease;
}

.boardOfDireactors .content-col p.More {
  height: auto; /* Allow the content to expand */
  opacity: 1; /* Make it visible */
}