#hero-i .container {
  text-align: left;
  justify-content: end;
  align-items: start;
  min-height: 729px;
  padding-bottom: 100px;
}

#hero-i .title {
  text-align: left;
}

.section-text {
  padding: 93px 0 105px 0;
}

.section-text p {
  max-width: 920px;
  text-transform: capitalize;
}

.members-featured {
  color: #fff;
}

.members-featured .el {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: 59px;
  min-height: 768px;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.members-featured .el:nth-child(2) .container {
  max-width: 794px;
  width: 100%;
  margin: 0 0 0 auto;
}

.members-featured .top {
  margin-bottom: 98px;
}

.members-featured .stitle {
  font-size: 30px;
  font-weight: 400;
}

.members-featured .title {
  text-transform: uppercase;
  max-width: 670px;
}

.members-featured .button {
  background: transparent;
  border: 1px solid #fff;
  margin-top: 29px;
}

.members-featured .button:hover {
  border-color: var(--light-blue);
  background: var(--light-blue);
  color: #fff;
}

.members-featured .name {
  text-transform: uppercase;
}

.members-featured .role {
  font-weight: 400;
  margin-bottom: 0;
}

.member-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s linear;
  z-index: 99;
  padding: 20px;
  cursor: default;
}

.member-overlay.active {
  pointer-events: unset;
  opacity: 1;
}

.member-overlay .member-inner {
  max-width: 1000px;
  width: 100%;
  display: flex;
  background: #fff;
  position: relative;
}

.member-overlay .member-inner .svg-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.member-overlay.active .member-inner .svg-icon {
  pointer-events: all;
  z-index:999;
}

.member-overlay .member-inner .bottom {
  margin-top: auto;
  color: var(--light-blue);
  text-transform: uppercase;
  font-family: 'Normalidad Wide';
  font-weight: 700;
  font-size: 18px;
}

.member-overlay .member-inner .bottom svg {
  margin-left: 5px;
}

.member-overlay .img {
  width: 450px;
  margin-bottom: 0;
}

.member-overlay .img img {
  max-width: 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.member-overlay .text {
  display: flex;
  flex-direction: column;
  width: 550px;
  color: #000;
  padding: 44px 50px 62px 50px;
}

.member-overlay .text-inner,
.member-overlay .text-inner p {
  font-size: 16px;
  font-weight: 600;
  font-family: 'Open Sans';
}

.member-overlay .text-inner {
  margin-bottom: 20px;
}

.member-overlay .role {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.members {
  padding-top: 76px;
}

.members .container {
  width: 1427px;
}

.members .title {
  text-transform: uppercase;
  text-align: center;
}

.members .inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 16px;
  margin: 53px 0 112px 0;
}

.members .inner .el>.img {
  width: 100%;
  aspect-ratio: 332 / 443;
  overflow: hidden;
  margin-bottom: 15px;
}

.members .inner .el>.img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.members .el {
  cursor: pointer;
}

.members .name {
  margin-bottom: 5px;
}

#bottom-cta {
  background: #173542;
  color: #fff;
  text-align: center;
  padding: 42px 0 72px 0;
}

#bottom-cta p {
  font-family: 'Normalidad Wide';
  font-weight: 700;
  font-size: 24px;
  line-height: 42px;
  letter-spacing: 0.10em;
  margin-bottom: 0;
}

#bottom-cta h2 {
  text-transform: uppercase;
}

#bottom-cta .container .button {
  height: 50px;
  line-height: 50px;
  margin-top: 28px;
  font-size: 18px;
}

#bottom-cta .container .button:nth-of-type(2) {
  background: transparent;
  border: 1px solid #fff;
  margin-left: 21px;
}

#bottom-cta .container .button:nth-of-type(2):hover {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

@media screen and (max-width: 992px) {
  .members .inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .member-overlay .text,
  .member-overlay .img {
    width: 50%;
  }
}

@media screen and (max-width: 768px) {
  #bottom-cta p {
    font-size: 20px;
  }

  #bottom-cta {
    padding: 40px 0;
  }

  #bottom-cta h2 {
    margin-bottom: 30px;
  }

  #bottom-cta .container .button {
    margin-top: 15px;
  }

  .section-text {
    padding: 60px 0;
  }

  .members-featured .el {
    min-height: unset;
    background-position: 80% 50%;
    padding-top: 100px;
  }

  .members-featured .top {
    margin-bottom: 50px;
  }

  .members-featured .button {
    margin-top: 15px;
  }

  .members-featured .el:nth-child(2) {
    background-position: 20% 50%;
  }

  .members .inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .members-featured .stitle {
    font-size: 20px;
    line-height: 24px;
  }

  .member-overlay .member-inner {
    flex-direction: column;
  }

  .member-overlay .text,
  .member-overlay .img {
    width: 100%;
  }

  .member-overlay .text {
    padding: 20px;
  }

  .member-overlay .img img {
    width: 100%;
    max-height: 290px;
    object-position: 50% 10%;
  }
}

@media screen and (max-width: 567px) {
  #hero-i .container {
    padding-top: 100px;
    padding-bottom: 50px;
    min-height: 220px;
  }

  #hero-i .stitle {
    font-size: 20px;
    line-height: 24px;
  }

  .member-overlay.active .member-inner .svg-icon {
    filter: invert(1);
  }

  #bottom-cta p {
    font-size: 16px;
  }

  #bottom-cta .container .button {
    margin-left: auto !important;
    margin-right: auto !important;
    display: block;
    width: fit-content;
    height: 38px;
    line-height: 38px;
    font-size: 14px;
  }

  .member-overlay .member-inner {
    max-height: 95%;
    overflow: auto;
  }

  .member-overlay .member-inner .bottom {
    font-size: 14px;
  }

  .member-overlay .member-inner .bottom svg {
    scale: 0.8;
  }

  .members {
    padding-top: 60px;
  }

  .members .inner {
    margin: 30px 0 60px 0;
  }

  .members .inner .el>.img {
    margin-bottom: 5px;
  }

  .members .name {
    font-size: 18px;
    margin-bottom: 0;
  }

  .members .role {
    margin-left: 1px;
  }

  #bottom-cta br {
    display: none;
  }
}