.who-section {
  padding: 2.5rem 0;
  background-color: #fff;
  overflow: hidden;
  position: relative;
}
@media (min-width: 992px) {
  .who-section {
    padding: 3.75rem 0;
  }
}
@media (min-width: 1200px) {
  .who-section {
    padding: 0rem 0;
  }
}
@media (min-width: 1200px) {
  .who-section::after {
    content: "";
    position: absolute;
    top: calc(100% - 150px);
    left: 20%;
    width: 1px;
    height: 100%;
    background-color: rgb(186, 186, 186);
    z-index: 0;
  }
  .who-section::before {
    content: "";
    position: absolute;
    top: -150px;
    right: 20%;
    width: 1px;
    height: 100%;
    background-color: rgb(186, 186, 186);
    z-index: 0;
  }
}
.who-section .container {
  position: relative;
  z-index: 2;
}
.who-section .who-header {
  margin-bottom: 3.25rem;
}
.who-section .who-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.875rem 1.25rem;
}
@media (min-width: 768px) {
  .who-section .who-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .who-section .who-grid {
    -ms-grid-columns: 1fr 1.375rem 1fr 1.375rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.875rem 1.375rem;
  }
}
@media (min-width: 1200px) {
  .who-section .who-grid {
    -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr 2rem 1fr;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem 2rem;
  }
}
.who-section .who-col {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
}
.who-section .who-divider-v {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: #e0e0e0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 575px) {
  .who-section .who-divider-v {
    display: none;
  }
}
.who-section .who-card {
  width: 100%;
}
.who-section .who-img-wrap {
  width: 100%;
  overflow: hidden;
  margin-bottom: 1.25rem;
  background-color: #e0e0e0;
}
.who-section .who-img-wrap figure {
  position: relative;
  padding-bottom: 64%;
  margin: 0;
}
.who-section .who-img-wrap figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.who-section .who-info {
  padding: 0 4px;
}
.who-section .who-name {
  font-size: 1.25rem;
  font-weight: 500;
  color: #0d2137;
  margin-bottom: 0.5rem;
  text-transform: capitalize;
  line-height: 1.3;
  max-width: 95%;
}
@media (min-width: 1200px) {
  .who-section .who-name {
    font-size: 1.25rem;
  }
}
@media (min-width: 1600px) {
  .who-section .who-name {
    font-size: 1.75rem;
  }
}
.who-section .who-desc {
  font-size: 0.875rem;
  color: #949494;
  line-height: 1.65;
  margin: 0;
}