* {
  font-family: Nunito, sans-serif;
}

.text-blk {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  line-height: 15px;
}

.responsive-cell-block {
  min-height: 75px;
}

.responsive-container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  display: flex;
  column-gap: 150px; /* Adds 20px space between columns */;
  flex-wrap: wrap;
  margin-top: 50px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  justify-content: center;
}

.outer-container {
  padding-top: 30px;
  padding-right: 80px;
  padding-bottom: 0px;
  padding-left: 80px;
  background-color: #F5f5f5;
}

.inner-container {
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
}

.section-head-text {
  display: flex;
  font-size: 35px;
  font-weight: 700;
  line-height: 30px;
  color: rgb(0, 135, 177);
}

.section-subhead-text {
  display: flex;
  font-size: 25px;
  font-weight: 700;
  line-height: 35px;
  color: rgb(153, 153, 153);
}

.img-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.team-card {
  display: flex;
  flex-direction: column;
}

.name {
  font-size: 18px;
  font-weight: 600;
  color: #E49D14;
  margin-top: 10px;
  margin-bottom: 0px;
  text-align: center;
}

.position {
  font-size: 15px;
  font-weight: 600;
  color: rgb(0, 135, 177);
  margin-top: 0px;
  margin-bottom: 0px;
  text-align: center;
}

.team-img {
  display: flex;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 1px solid #E49D14;
  box-shadow: 0 0 8px rgba(0, 0, 0, .8);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .8);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, .8);
  margin-bottom: 10px;
}

.team-card-container {
  width: 250px;
  margin: 0 0 30px 0;
}

@media (max-width: 500px) {
  .outer-container {
    padding: 10px 20px 10px 20px;
  }

  .section-head-text {
    text-align: center;
  }
}