.module-team_section .sections .section {
  margin: 5rem auto 0;
}
.module-team_section .sections .section-title {
  margin-bottom: 4rem;
}
.module-team_section .members {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  margin-bottom: 4rem;
}
.module-team_section .members .member {
  width: 20%;
  margin: 0 2rem 2rem;
  cursor: pointer;
}
.module-team_section .members .member:hover .image {
  position: relative;
}
.module-team_section .members .member:hover .image::before {
  opacity: 1;
  color: #fff;
}
@media only screen and (max-width: 600px) {
  .module-team_section .members .member {
    display: flex;
    align-content: center;
    justify-content: center;
  }
  .module-team_section .members .member .content {
    padding-left: 2rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .module-team_section .members .member .content .name {
    font-size: 1.4rem;
  }
  .module-team_section .members .member .content .position {
    font-size: 1rem;
  }
  .module-team_section .members .member .image {
    border-radius: 15px;
  }
}
.module-team_section .members .image {
  display: block;
  width: 20vw;
  height: 20vw;
  background-size: cover !important;
  background-position: center !important;
  background-color: #E1F2FB;
  border-radius: 40px;
  margin-bottom: 1rem;
  overflow: hidden;
  position: relative;
}
.module-team_section .members .image::before {
  content: "+";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  font-size: 4rem;
  font-weight: 100;
  color: transparent;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, rgba(17, 18, 47, 0.8) 48%, rgba(0, 30, 98, 0.8) 100%);
  opacity: 0;
  transition: opacity 0.4s ease, color 1s ease;
}
.module-team_section .members .content span {
  display: block;
}
.module-team_section .members .content span.name {
  font-family: 'Aleo' !important;
  color: #00348D;
  font-size: 1.8rem;
  font-weight: 500;
}
.module-team_section .members .content span.position {
  color: #006fb4;
  font-size: 1.3rem;
  font-weight: 400;
}
.module-team_section .members .member-modal {
  background-color: rgba(3, 16, 64, 0.9);
}
.module-team_section .members .member-modal .modal-content {
  border-radius: 40px;
  display: flex;
  flex-direction: row;
  padding: 3rem;
  position: relative;
}
.module-team_section .members .member-modal .modal-content .close {
  font-size: 1.5rem;
  color: #006fb4;
  position: absolute;
  top: -3rem;
  right: 0;
  display: block;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.module-team_section .members .member-modal .modal-content .close i {
  margin-left: 10px;
}
.module-team_section .members .member-modal .modal-content .left .socials {
  margin-top: 3rem;
  border-top: 2px solid #006fb4;
  padding-top: 1rem;
}
.module-team_section .members .member-modal .modal-content .left .socials a {
  display: inline-block;
  width: 2.5rem;
  font-size: 2rem;
  text-align: center;
  margin-right: 10px;
  color: #006fb4;
  transition: all linear 0.2s;
}
.module-team_section .members .member-modal .modal-content .left .socials a:hover {
  color: #031040;
}
.module-team_section .members .member-modal .modal-content .right {
  padding: 0 3rem;
}
@media only screen and (max-width: 1000px) {
  .module-team_section .members .member-modal .modal-content {
    flex-wrap: wrap;
    padding: 2rem;
  }
  .module-team_section .members .member-modal .modal-content .left {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .module-team_section .members .member-modal .modal-content .left .content {
    text-align: center;
  }
  .module-team_section .members .member-modal .modal-content .left .socials {
    margin-top: 1.5rem;
    margin-bottom: 3rem;
  }
  .module-team_section .members .member-modal .modal-content .left .socials a {
    width: 2rem;
    font-size: 1.5rem;
  }
  .module-team_section .members .member-modal .modal-content .right {
    max-height: 35vh;
    overflow-y: auto;
    padding: 0;
  }
}
@media only screen and (max-width: 1300px) {
  .module-team_section .members .member {
    width: 18%;
  }
  .module-team_section .members .content .name {
    font-size: 1.2rem !important;
  }
  .module-team_section .members .content .position {
    font-size: 0.9rem !important;
  }
}
@media only screen and (max-width: 900px) {
  .module-team_section .members .member {
    width: 80%;
  }
  .module-team_section .members .content {
    padding-left: 0 !important;
    width: 60% !important;
  }
}
