@import url("https://fonts.googleapis.com/css2?family=Inter&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans&display=swap");
nav {
  display: flex;
  flex-direction: row;
  width: 100%;
  padding-inline: 160px;
  justify-content: space-between;
  align-items: center;
  padding-block: 20px;
}
nav .first {
  display: flex;
  flex-direction: row;
  align-items: center;
}
nav .first img {
  width: 77px;
  height: 62px;
}
nav .first .links-container a:nth-of-type(2) {
  border-bottom: 3px solid #0F76BC;
  padding-bottom: 5px;
  border-radius: 5px;
}
nav .last {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}

.modal-overlay {
  background-color: rgba(0, 0, 0, 0.387);
  position: fixed;
  z-index: 99998;
  width: 100%;
  height: 100%;
  cursor: pointer;
  display: none;
}

.modal {
  position: fixed;
  padding: 70px 40px 20px 40px;
  background-color: #0F76BC;
  color: #ffffff;
  max-width: 700px;
  min-width: 300px;
  height: 400px;
  border-radius: 10px;
  z-index: 99999;
  top: 60%;
  translate: -50% -50%;
  left: 50%;
  display: none;
}
.modal #close-modal {
  font-size: 40px;
  position: fixed;
  cursor: pointer;
  top: 20px;
  right: 20px;
}
.modal .modal-content {
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

.aboutUs {
  padding-top: 200px;
  align-items: center;
}
.aboutUs .gallery-first-section h1 {
  color: #0F76BC;
}

.history {
  min-height: 946px;
  background: linear-gradient(180deg, rgba(207, 228, 242, 0) -46.33%, #CFE4F2 60.34%), url("/static/img/about/OKC skyline.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  align-items: flex-end;
  display: flex;
}
.history .history-main {
  display: flex;
  gap: 50px;
  flex-direction: column;
}
.history .history-main h1 {
  font-size: 48px;
  color: #0F76BC;
}
.history .history-main .history-second {
  display: flex;
  gap: 100px;
}
.history .history-main .history-second p {
  text-align: left;
}

.pillars {
  background: linear-gradient(360deg, rgba(207, 228, 242, 0) -46.33%, #CFE4F2 60.34%);
  display: flex;
  gap: 55px;
  justify-content: space-between;
  width: 100%;
}
.pillars .pillars-img-container {
  width: 40%;
  height: 254px;
}
.pillars .pillars-img-container img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50px;
  width: 100%;
  height: 100%;
}
.pillars .pillars-second {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.pillars .pillars-second .pillars-type {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.pillars .pillars-second .circle-design div {
  border-radius: 50%;
}
.pillars .pillars-second .circle-design .first-circle {
  background-color: rgba(15, 118, 188, 0.2);
  width: 32px;
  height: 32px;
}
.pillars .pillars-second .circle-design .first-circle .second-circle {
  background-color: rgba(15, 118, 188, 0.3);
  width: 80%;
  height: 80%;
}
.pillars .pillars-second .circle-design .first-circle .second-circle .third-circle {
  background-color: rgba(15, 118, 188, 0.3);
  width: 80%;
  height: 80%;
}
.pillars .pillars-second .circle-design .first-circle .second-circle .third-circle .fourth-circle {
  background-color: rgba(15, 118, 188, 0.5);
  width: 80%;
  height: 80%;
}
.pillars .pillars-second > h1 {
  font-size: 32px;
}
.pillars .pillars-second .first-type-group, .pillars .pillars-second .second-type-group {
  display: flex;
  gap: 30px;
}
.pillars .pillars-second .first-type-group > div, .pillars .pillars-second .second-type-group > div {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 50px;
  align-items: center;
  display: flex;
  gap: 10px;
}
.pillars .pillars-second .first-type-group > div p, .pillars .pillars-second .second-type-group > div p {
  font-size: 16px;
}

.team {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.team > h1 {
  font-size: 48px;
}
.team .card-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}
.team .card-wrapper .card {
  height: 500px;
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  transition: all 0.5s ease;
  overflow-y: hidden;
}
.team .card-wrapper .card:hover .card-overlay {
  top: 0;
}
.team .card-wrapper .card:hover .card-content {
  bottom: -500px;
}
.team .card-wrapper .card img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  -o-object-position: top;
     object-position: top;
}
.team .card-wrapper .card .card-content {
  position: absolute;
  bottom: 0;
  background: rgba(151, 214, 255, 0.935);
  width: 100%;
  border-radius: 0px 0px 20px 20px;
  padding: 20px;
  transition: all 0.5s ease;
}
.team .card-wrapper .card .card-content h1 {
  font-size: 24px;
}
.team .card-wrapper .card .card-content p {
  font-size: 16px;
  color: #0F76BC;
}
.team .card-wrapper .card .card-overlay {
  background: rgba(15, 118, 188, 0.9);
  color: #ffffff;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  top: 510px;
  justify-content: center;
  transition: all 0.5s ease;
}
.team .card-wrapper .card .card-overlay .team-content {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
.team .card-wrapper .card .card-overlay a {
  color: #0F76BC;
  display: inline-block;
}
.team .card-wrapper .card .card-overlay .call-to-actions {
  display: flex;
  gap: 20px;
}
.team .card-wrapper .card .card-overlay .call-to-actions .read-more {
  background-color: #ffffff;
  padding: 10px 30px;
  border-radius: 20px;
  font-weight: 700;
}
.team .card-wrapper .card .card-overlay .call-to-actions .linkedIn {
  background-color: #ffffff;
  padding: 5px 12px;
  border-radius: 30%;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 1300px) {
  .team .card-wrapper .card {
    height: 400px;
  }
}
@media screen and (max-width: 910px) {
  .team {
    padding-bottom: 20px;
  }
  .team .card-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .team .card-wrapper .card {
    height: 450px;
  }
  .modal {
    max-width: 80vw;
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .history {
    background-position: top center;
    background: linear-gradient(180deg, rgba(207, 228, 242, 0) -46.33%, #CFE4F2 40.34%), url(/chmc/static/img/about/history-background.jpg);
  }
  .history .history-main .history-second {
    flex-direction: column;
  }
  .history .history-main .history-second p {
    font-size: 16px;
  }
  .pillars {
    flex-direction: column;
  }
  .pillars .pillars-img-container {
    width: 100%;
  }
}
@media screen and (max-width: 650px) {
  .team .card-wrapper {
    grid-template-columns: 1fr;
  }
  .team .card-wrapper .card {
    height: 500px;
  }
}
@media screen and (max-width: 550px) {
  .pillars {
    padding-top: 0;
    padding-bottom: 30px;
  }
  .pillars .pillars-second .first-type-group, .pillars .pillars-second .second-type-group {
    flex-direction: column;
  }
}/*# sourceMappingURL=about.css.map */