.page-banner {
  margin-top: 80px;
  width: 100%;
  height: 150px;
  background-position: center;
  background-size: cover;
  position: relative;
}

.page-banner .bg-black-overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.page-banner .text-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  color: #FFFF;
}

.page-banner .text-overlay h1 {
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 800;
}

.page-banner .text-overlay p {
  margin-top: 0;
  font-size: 18px;
  font-style: italic;
}

.text-info-section {
  width: 100vw;
  min-height: 100vh;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.text-info-section .text-info {
  width: 100%;
  max-width: 800px;
  margin-top: 80px;
  text-align: start;
}

.text-info-section .text-info p {
  font-size: 18px;
  line-height: 1.5;
}

.team-info-section {
  width: 100vw;
  padding: 10px;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.team-info-section .container {
  width: 100%;
  max-width: 1064px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.team-info-section .container .team-info-card {
  width: 300px;
  height: 250px;
  position: relative;
  margin: 20px;
  margin-bottom: 80px;
}

.team-info-section .container .team-info-card .team-member-image {
  width: 300px;
  height: 250px;
  border-radius: 5px;
  background-color: red;
  overflow: hidden;
}

.team-info-section .container .team-info-card .team-member-image img {
  max-width: 100%;
}

.team-info-section .container .team-info-card .team-member-info {
  width: 80%;
  padding: 20px;
  border-radius: 5px;
  -webkit-box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
          box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
  background-color: white;
  position: absolute;
  top: 200px;
  left: 30px;
  right: 0;
  text-align: start;
}

.team-info-section .container .team-info-card .team-member-info h1 {
  margin: 0;
}

.team-info-section .container .team-info-card .team-member-info p {
  margin: 0;
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .page-banner .text-overlay {
    padding: 20px;
  }
  .page-banner .text-overlay h1 {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 800;
  }
  .page-banner .text-overlay p {
    margin-top: 0;
    font-size: 14px;
    font-style: italic;
  }
}
/*# sourceMappingURL=our_team_page_style.css.map */