section.coming-soon.career {
  padding: 52px 0;
}
section.coming-soon.career .cs-container .heading {
  margin-bottom: 24px;
}
section.coming-soon.career .cs-container .heading h2 {
  font-size: 32px;
  font-weight: 600;
  color: #57885d;
}
section.coming-soon.career .cs-container .content p {
  margin-bottom: 8px;
}
section.coming-soon.career .cs-container .content ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
section.coming-soon.career .cs-container .content ul li {
  font-weight: 600;
}

section.cpo {
  padding: 52px 0;
  background: #f0f0f0;
}
section.cpo .cs-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
section.cpo .cs-container .col {
  background: #fff;
  padding: 36px 48px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 10px;
}
section.cpo .cs-container .col h2 {
  color: #57885d;
  margin-bottom: 12px;
  position: relative;
}
section.cpo .cs-container .col ol {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 16px;
  list-style-type: decimal !important;
}

@media (max-width: 1024px) {
  section.cpo {
    padding: 52px 0;
    background: #f0f0f0;
  }
  section.cpo .cs-container {
    display: grid;
    grid-template-columns: 100%;
    gap: 36px;
  }
  section.cpo .cs-container .col {
    background: #fff;
    padding: 36px 48px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 10px;
  }
  section.cpo .cs-container .col h2 {
    font-size: 36px;
    font-weight: 600;
    color: #57885d;
    margin-bottom: 12px;
    position: relative;
  }
  section.cpo .cs-container .col ol {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 16px;
    list-style-type: decimal !important;
  }
  section.leadership {
    padding: 52px 0;
  }
  section.leadership .cs-container .heading {
    margin-bottom: 36px;
    text-align: center;
  }
  section.leadership .cs-container .heading h2 {
    color: hsl(128, 24%, 65%);
    margin-bottom: 12px;
    font-size: 28px;
  }
  section.leadership .cs-container .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  section.leadership .cs-container .content .row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  section.leadership .cs-container .content .row .col {
    height: 300px;
    width: 300px;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, 300px);
  }
  section.leadership .cs-container .content .row .col img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
    z-index: 0;
  }
  section.leadership .cs-container .content .row .col .front {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    height: 300px;
    width: 300px;
    padding: 24px;
    transition: all 0.3s ease;
  }
  section.leadership .cs-container .content .row .col .front::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.6));
    z-index: 1;
  }
  section.leadership .cs-container .content .row .col .front h3, section.leadership .cs-container .content .row .col .front p {
    position: relative;
    z-index: 2;
    color: #fff !important;
  }
  section.leadership .cs-container .content .row .col .front h3 {
    font-size: 24px;
  }
  section.leadership .cs-container .content .row .col .back {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    height: 300px;
    width: 300px;
    padding: 24px;
    transition: all 0.3s ease;
  }
  section.leadership .cs-container .content .row .col .back::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.7);
    z-index: 1;
  }
  section.leadership .cs-container .content .row .col .back h3, section.leadership .cs-container .content .row .col .back p {
    position: relative;
    z-index: 2;
    color: #fff !important;
  }
  section.leadership .cs-container .content .row .col .back h3 {
    font-size: 24px;
  }
  section.leadership .cs-container .content .row .col:hover .front, section.leadership .cs-container .content .row .col:hover .back {
    transform: translateX(-100%);
  }
}/*# sourceMappingURL=career.css.map */