.profile__banner {
  background-image: url(../../images/profile_banner.webp);
  background-size: cover;
  background-position: bottom center;
}

.profile__banner .profile__banner--midText {
  font-size: 24px;
}

.profile__banner .profile__banner--bottomText {
  font-size: 26px;
  font-weight: 500;
}

.profile__intro__section {
  margin-bottom: 100px;
  color: white;
}

.profile__intro__section .profile__intro__columns {
  max-width: 70%;
  margin: 0 auto;
}

.profile__intro__columns .profile__intro__column:first-child {
  margin-right: 50px;
}

.profile__uec__logo {
  width: 260px;
}

.profile__intro__column p {
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 30px;
}

/* profile images section */

.profile__image__section {
  padding-bottom: 100px;
  color: white;
}

.profile__image__section .profile__images__columns {
  max-width: 70%;
  margin: 0 auto;
  margin-bottom: 80px;
}

.profile__images__columns h1 {
  font-size: 24px;
}

.profile__images__columns .profile__images__column:not(:last-child) {
  margin-bottom: 30px;
}

.profile__images__column img {
  width: 400px;
}

.profile__images__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.profile__images__wrapper img {
}

.sign__box .sign__text {
  text-align: right;
  margin-bottom: 15px;
  margin-top: 12px;
}

.sign__box h3 {
  font-size: 26px;
}

.sign__box h4 {
  font-size: 18px;
}

.sign__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sign__parents {
  display: flex;
  justify-content: space-between;
}

.sign__box:first-child {
  flex-direction: column;
}

.sign__box .sign-img {
  height: 130px;
}

.sign__parents .profile__uec__logo {
  visibility: hidden;
}

/* committee section */

.committee__section {
  color: white;
  background-image: url(../../images/committee_sectionBg.webp);
  background-size: cover;
  background-position: center center;
  width: 100%;

  padding: 60px 0px;
}

.committee__section .committee__header {
  margin-bottom: 70px;
}

.committee__header .committee__header--text {
  margin-bottom: 50px;
}
.committee__header--text h1 {
  font-size: 36px;
}

.committee__header--text p {
  font-size: 16px;
  line-height: 25px;
}

.committee__header__actions button {
  background-color: transparent;
  color: #999999;
  border: 1px solid #666666;
  /* padding: 10px 80px; */
  width: 230px;
  padding: 10px 0px;

  transition: background-color 0.3s ease;
}

.committee__header__actions .selectedCommitte {
  background-color: #7000fe;
  border: 1px solid #927eff;
  color: white;
}

.committee__section .committee__peoples {
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  row-gap: 30px;
  min-height: 350px;
}

.committee__people img {
  width: 250px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.committee__people span {
  color: #999999;
  font-size: 15px;
  margin-top: 15px;
}

@media (max-width: 1439px) {
  .profile__uec__logo {
    width: 240px;
  }
  .profile__banner h1 {
    margin-bottom: 20px;
  }
  .profile__banner .profile__banner--midText {
    font-size: 17px;
  }
  .profile__banner .profile__banner--bottomText {
    font-size: 20px;
  }

  .profile__intro__section {
    padding: 0px 15px;
  }

  .profile__intro__section .profile__intro__columns {
    flex-direction: column;
    align-items: center;
    max-width: 100%;
  }

  .profile__intro__columns .profile__intro__column:first-child {
    margin-right: 0px;
    margin-bottom: 40px;
  }

  .profile__images__wrapper {
    grid-template-columns: 1fr;
  }

  .profile__image__section {
    padding: 0px 15px;
  }
  .profile__image__section .profile__images__columns {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .profile__images__wrapper img {
    width: 100%;
  }

  .profile__image__section p {
    color: #999999;
    line-height: 20px;
  }
  .profile__intro__section .profile__intro__columns.sign__parents {
    align-items: flex-end;
    padding-right: 15px;
  }

  .sign__box {
    justify-content: flex-end;
    width: auto !important;
  }

  .sign__box .temp {
    margin-right: 80px;
  }

  .sign__parents .profile__uec__logo {
    display: none;
  }

  .sign__box .sign-img {
    height: 100px;
  }

  .committee__people img {
    width: 100%;
  }

  .committee__section {
    padding: 60px 15px;
  }

  .committee__header {
    width: 100%;
  }

  .committee__header__actions {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: scroll;
    justify-content: initial;
  }

  .committee__header__actions button {
    padding: 10px;

    display: block;
    white-space: nowrap;
  }

  .committee__header__actions button:not(:last-child) {
    margin-right: 7px;
  }

  .committee__header--text p {
    font-size: 15px;
    text-align: center;
  }

  .committee__header .committee__header--text {
    margin-bottom: 30px;
  }

  .committee__section .committee__header {
    margin-bottom: 25px;
  }

  .committee__header--text h1 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .sign__parents .sign__box {
    justify-content: flex-end;
    width: inherit !important;
  }
  .profile__intro__section .profile__intro__columns.sign__parents {
    align-items: flex-end;
    padding-right: 15px;
  }
}

@media (max-width: 425px) {
  .sign__parents {
    align-items: flex-end;
  }
  .sign__parents .sign__box {
    flex-direction: column;
    align-items: flex-end;
  }

  .sign__box .temp {
    margin-right: 0px;
  }

  .sign__box .sign-img {
    height: 60px;
  }

  .sign__box h3 {
    font-size: 20px;
  }

  .sign__box h4 {
    font-size: 14px;
  }
}
