/* Main content */
.about-us {
  max-width: 1440px;
  position: relative;
  margin: auto;
}
.about-us::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  z-index: -1;
}
.about-us-top {
  padding: 156px 100px 50px;
  position: relative;
  transition: padding 0.3s ease;
  color: var(--white);
}
.about-us-top::before {
  content: "";
  position: absolute;
  background: #15151f;
  background-image: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(0,87,255,0.35) 50%, rgba(21,21,31,1) 100%);
  background-blend-mode: saturation;
  inset: 0;
  left: 50%;
  height: 100%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -1;
}
/* Buttons */
.btn-component.hero {
  position: relative;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1.5px solid transparent;
  transition: background-color 0.3 ease;
}
.btn-component.hero::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  height: 1.5px;
  width: 100%;
  background-color: var(--blue-1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease-in-out;
}
.btn-component.hero:hover::after {
  transform: scaleX(1);
}
.icon-arrow {
  bottom: 16px;
  right: 0;
  height: 15px;
  width: 18px;
  transition: transform 0.2s ease;
}
.icon-arrow-hover {
  height: 15px;
  width: 18px;
}
.icon-arrow-hover {
  display: none;
}
.btn-component:hover .icon-arrow {
  transform: rotate(45deg);
}
.meet-team-btns {
  display: flex;
  padding-top: 30px;
  gap: 16px;
  height: 52px;
  text-transform: uppercase;
  transition: padding-top 0.3s ease, gap 0.3s ease;
}
/* Breadcrumbs */
.breads img[alt="arrow"] {
  content: url(../../icons/bread-arrow-white.svg);
  height: 16px;
  width: 16px;
  transition: transform 0.3s ease;
}
.breads img[alt="home"] {
  content: url(../../icons/home-white.svg);
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}
.breads-section {
  align-self: flex-start;
  padding-bottom: 30px;
  transition: padding 0.3s ease;
}
.breads-section .container {
  padding: 0;
}
.breads {
  display: flex;
  width: 100%;
  gap: 8px;
  align-items: center;
}
/* top side */
.about-us-top-l {
  display: flex;
  gap: 100px;
  padding-bottom: 100px;
  transition: gap 0.3s ease, padding-bottom 0.3s ease;
}
.meet-team .h4 {
  padding-bottom: 16px;
}
.meet-team .meet-team-description {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 600px;
}
.about-img {
  max-width: 540px;
  width: 100%;
  max-height: 350px;
  min-height: 200px;
  height: 100%;
  border-radius: 16px;
}
/* botom side */
.about-us-top-r {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px;
}
.mission-vission .caption-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  gap: 10px;
  background: var(--blue-1);
  border-radius: 30px;
  height: 35px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}
.mission-vission .h5 {
  padding-bottom: 16px;
}
/* Bottom section */
.admin-section.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 100px;
  transition: padding 0.3s ease;
}
.admin-section .h4 {
  padding-top: 70px;
  padding-bottom: 50px;
  transition: padding 0.3s ease;
}
.administration-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  transition: gap 0.3s ease;
}
.teacher-section.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 100px;
  transition: padding 0.3s ease;
}
.teacher-section .h4 {
  padding-top: 50px;
  padding-bottom: 50px;
  transition: padding 0.3s ease;
}
.teachers-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-bottom: 100px;
  transition: gap 0.3s ease, padding-bottom 0.3s ease;
}
/* circle */
.about-us-wrapper-cont {
  margin-right: -100px;
  height: auto;
  max-height: 638px;
  position: relative;
  overflow: hidden;
}
/* Target the image inside the div */
.about-us-wrapper-cont img {
  width: 100%;
  height: 100%;
  max-height: 638px;
  -o-object-fit: contain;
  object-fit: contain;
  object-position: center;
}

/* Responsive */
@media (max-width: 1440px) {
  .about-us {
    overflow: hidden;
  }
}
@media (max-width: 1100px) {
  .administration-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-us-top-l {
    gap: 50px;
  }
}
@media (max-width: 950px) {
  .admin-section {
    text-align: start;
  }
  .about-us-top {
    padding: 94px 20px 50px;
  }
  .breads-section {
    padding-bottom: 24px;
  }
  .about-us-top-l {
    flex-direction: column;
    align-items: end;
    gap: 30px;
    padding-bottom: 50px;
  }
  .about-us-top-l .meet-team {
    margin-right: auto;
  }
  .about-us-wrapper-cont {
    margin-right: -20px;
  }
  .meet-team-btns {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    padding-top: 24px;
  }
  .administration-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-us-top-r {
    gap: 50px;
  }
  .admin-section.container {
    padding: 0 20px;
  }
  .teacher-section.container {
    padding: 0 20px;
  }
  .teachers-container {
    padding-bottom: 0;
  }
  .mission-vission .caption-2 {
    margin-bottom: 16px;
  }
  /* workers section */
  .admin-section .h4 {
    padding-top: 50px;
    padding-bottom: 30px;
  }
  .teacher-section .h4 {
    padding-bottom: 30px;
  }
  /* Breadcrumbs */
  .breads img[alt="arrow"] {
    height: 14px;
    width: 14px;
  }
  .breads img[alt="home"] {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 767px) {
  .admin-section {
    .h4 {
      display: flex;
      width: 100%;
    }
  }
  .teacher-section {
    .h4 {
      display: flex;
      width: 100%;
    }
    .teachers-container {
      justify-items: start;
      width: 100%;
    }
  }
  .about-us-top-r {
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
  }
  .administration-container {
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
  }
  .teachers-container {
    -moz-column-gap: 8px;
    column-gap: 8px;
  }
}