:root {
  --white: #fff;
  --black: #000;
  --off-white: #EDECE6;
  --new-alma: #3A3203;
  --sunset-orange: #FF8751;
  --turquoise-village: #68D7E7;
  --soulful-gray: #D3CEC2;
  --fresh-clay: #A33F00;
  --desert-olive: #7C5D24;
  --deep-cobalt: #075B66;
  --clear-sky: #E0F2F2;
  --desert-sand: #FFD9B6;
  --heading: New Spirit;
  --body: Modern Era Med;
  --body-light: Modern Era Light;
}

@font-face {
  font-family: "New Spirit";
  src: url("../assets/fonts/new-spirit.otf");
  font-style: normal;
}

@font-face {
  font-family: "Modern Era Light";
  src: url("../assets/fonts/ModernEraTRIAL-Light.otf");
  font-style: normal;
}

@font-face {
  font-family: "Modern Era";
  src: url("../assets/fonts/ModernEraMonoTRIAL-Regular.otf");
  font-style: normal;
}

@font-face {
  font-family: "Modern Era Med";
  src: url("../assets/fonts/ModernEraTRIAL-Medium.otf");
  font-style: normal;
}

@font-face {
  font-family: "Modern Era Bold";
  src: url("../assets/fonts/MModernEraTRIAL-Bold.otf");
  font-style: normal;
}

* {
  font-family: var(--body-light);
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*:focus {
  outline: none;
}

*::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  background-color: var(--off-white);
  color: var(--new-alma);
  overflow-x: hidden;
  padding: 0rem;
  margin: 0rem;
}

h1, h1 span, 
h2, h2 span, 
h3, h3 span {
  font-family: var(--heading);
  font-size: 72px;
  letter-spacing: -1px;
  position: relative;
}

h1 span,
h2 span {
  background: var(--new-alma);
  color: var(--off-white);
  border-radius: 15px;
  padding: 10px 25px;
  line-height: 1.75;
  z-index: 1;
}

h3, h3 span {
  font-size: 32px;
}

p, ul li, ol li {
  font-size: 18px;
}

.p-rel {
  position: relative;
}

.font-heading {
  font-family: var(--heading);
}

.font-body-light {
  font-family: var(--body-light);
}

.font-body {
  font-family: var(--body);
}

.heading-line-ver {
  background: var(--new-alma);
  width: 25px;
  height: 75%;
  position: absolute;
  z-index: 2;
  top: 2rem;
  bottom: 2rem;
  border-radius: 25px;
}

.heading-line-horz {
  background: var(--off-white);
  width: 10rem;
  height: 15.5px;
  position: absolute;
  z-index: 2;
  top: 118px;
  left: 20px;
  display: flex;
  border-radius: 50px;
  align-items: center;
}

a {
  color: var(--new-alma);
}

.m-align {
  height: 100%;
  margin: auto;
}

.a-center {
  align-items: center;
}

.btn {
  padding: .75rem 1.75rem;
  background: transparent;
  border-radius: 1rem;
  font-size: 1.15rem;
  border: 1px solid;
  display: inline-block;
  transition: all 0.2s;
}

img {
  max-width: 100%;
}

nav {
  padding: 1.25rem 0rem;
  border-bottom: 1px solid var(--soulful-gray);
}

nav .row {
  align-items: center;
}

nav .nav-items ul {
  list-style: none;
  padding: 0rem;
  margin: 0rem;
  display: inline-flex;
  gap: 2rem;
  align-items: center;
}

nav .nav-items ul li:last-child {
  background: var(--new-alma);
  color: var(--off-white);
  padding: .75rem 1.5rem;
  border-radius: 1rem;
  font-size: 1.15rem;
  border: 1px solid;
  transition: all 0.2s;
}

nav .nav-items ul li:last-child:hover {
  background: var(--desert-olive);
  cursor: pointer;
}

nav .nav-items ul li:last-child a {
  color: var(--off-white);
  font-family: var(--body);
}

nav .logo {
  width: 221px;
  max-width: 100%;
  position: relative;
}

nav .nav-items a {
  font-family: var(--body-light);
  font-size: 18px;
  text-decoration: none;
}

header {
  padding: 3rem 1rem;
}

header .container {
  position: relative;
}

header img {
  mix-blend-mode: multiply;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0px;
  border-radius: 15px;
}

header h1 {
  display: inline-block;
  position: absolute;
}

header h1 span {
  outline: 12px solid;
}

#menu-item-175 svg {
  margin-left: .5rem;
  margin-top: -.25rem;
}

.s-01 {
  padding: 4rem 1rem 8rem 1rem;
}

.s-01 h2 {
  color: var(--desert-olive);
  font-size: 48px;
  margin-bottom: 45px;
}

.s-01 .content {
  width: 66rem;
  max-width: 100%;
  margin: auto;
}

.s-01 .btn {
  color: var(--desert-olive);
}

.s-01 .btn:hover {
  color: var(--off-white);
  background-color: var(--desert-olive);
  border-color: var(--desert-olive);
}

.s-02 {
  background: var(--white);
  padding: 6rem 1rem;
}

.s-02 .container {
  background-color: var(--new-alma);
  color: var(--clear-sky);
  overflow: hidden;
  border-radius: 1rem;
}

.s-02.invert .container {
  color: var(--new-alma);
  background-color: var(--clear-sky);
}

.heading h2 {
  font-size: 64px;
  margin: 0px;
}

.heading-01 {
  padding-bottom: 4rem;
}

.heading-01 span {
  color: var(--deep-cobalt);
  font-family: var(--body-light);
  font-size: 22px;
}

.heading-01 h2 {
  font-family: var(--body-light);
  font-size: 48px;
  line-height: 1.5;
  margin-top: 2rem;
}

.heading-01 h2 span {
  color: var(--turquoise-village);
  font-family: var(--body-light);
  font-size: 48px;
  line-height: 1.5;
  padding: 0rem .25rem .25rem .25rem;
  border-radius: 25px;
}

.s-02 hr {
  border-top: 1px solid var(--clear-sky);
  opacity: 1;
  padding: .5rem 0rem;
  margin-top: 1.5rem;
}

.s-02 .btn {
  color: var(--clear-sky);
  border-color: var(--clear-sky);
  margin-top: 5rem;
}

.s-02 .btn:hover {
  background-color: var(--clear-sky);
  border-color: var(--clear-sky);
  color: var(--new-alma);
}

.s-02.invert .btn {
  border-color: var(--new-alma);
  color: var(--new-alma);
}

.s-02.invert .btn:hover {
  background-color: var(--new-alma);
  border-color: var(--new-alma);
  color: var(--clear-sky);
}

.s-02.invert hr {
  border-top: 1px solid var(--new-alma);
}

.s-02 .content {
  padding: 2.5rem 2rem;
}

.s-02 img {
  height: 100%;
  object-fit: cover;
}

.s-03 {
  background-color: var(--white);
  padding: 4rem 1rem 6rem 1rem;
}

.s-03 .content {
  background-color: var(--off-white);
  margin-top: 1rem;
  border-radius: 1rem;
  padding: 3rem;
}

.s-03 .content h2 {
  color: var(--deep-cobalt);
  font-size: 64px;
  margin-bottom: 2rem;
}

.s-03 .content p {
  margin-bottom: 0rem;
}

.s-04 {
  background-color: var(--white);
  padding-bottom: 5rem;
  overflow: hidden;
}

.s-04 .content {
  background-color: var(--off-white);
  width: 66rem;
  max-width: 100%;
  margin: auto;
  border-radius: 1rem;
  overflow: hidden;
  padding: 5rem 3rem;
  padding-bottom: 20rem;
}

.s-04 .content h2 {
  font-family: var(--body);
  color: var(--deep-cobalt);
  font-size: 48px;
  margin-bottom: 2rem;
}

.s-04 .content p {
  color: var(--deep-cobalt);
  margin-bottom: 3rem;
  font-size: 22px;
}

.s-04 .content .btn {
  color: var(--off-white);
  background-color: var(--deep-cobalt);
  border-color: var(--deep-cobalt);
}

.s-04 .content .btn:hover {
  color: var(--off-white);
  background-color: var(--desert-olive);
  border-color: var(--desert-olive);
}

.s-04 .images {
  margin-top: -10rem;
}

.s-04 .images div:nth-child(2) img {
  margin-top: -5rem;
}

.s-05 {
  padding: 5rem 1rem;
  position: relative;
}

.s-05 h2 {
  font-family: var(--body-light);
  color: var(--desert-olive);
  font-size: 60px;
  margin: 0rem;
}

.s-05 .btn {
  color: var(--off-white);
  background-color: var(--desert-olive);
  border-color: var(--desert-olive);
}

.s-05 .btn:hover {
  background-color: var(--new-alma);
  border-color: var(--new-alma);
}

.s-05 .content {
  padding-top: 2rem;
  padding-bottom: 1rem;
  position: relative;
}

.s-05 .content img {
  margin-bottom: 2rem; 
  height: 15rem;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 1rem;
}

.s-05 .content h3 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.arrow-link {
  font-family: var(--body);
  font-size: 18px;
  text-decoration: none;
  display: block;
  margin-bottom: 1rem;
  transition: all 0.2s;
}

.arrow-link svg {
  margin-top: -.1rem;
  margin-left: .25rem;
  transition: all 0.2s;
}

.arrow-link:hover {
  color: var(--desert-olive);
}

.arrow-link:hover svg {
  margin-left: .5rem;
}

.post-deets, .post-categories {
  color: var(--desert-olive);
  display: flex;
  gap: .5rem;
}

.post-deets span {
  border: 1px solid;
  padding: 0px 8px;
  border-radius: .25rem;
  font-size: 14px;
}

.post-categories span {
  border-radius: .75rem;
}

/* .post-categories span:hover {
  cursor: pointer;
} */

.s-06 {
  padding: 4rem 1rem;
  overflow: hidden;
}

.s-06 .container {
  background-color: var(--soulful-gray);
  border-radius: 1rem;
  padding: 5rem 3rem 4rem 3rem;
}

.s-06 h2 {
  font-family: var(--body-light);
  font-size: 48px;
}

.s-06 h4 {
  color: var(--desert-olive);
  font-size: 18px;
  padding-bottom: 6rem;
}

.s-06 ul {
  padding: 0rem;
  list-style: none;
}

.s-06 ul li a {
  font-size: 1.75rem;
  text-decoration: none;
  letter-spacing: -1px;
  transition: all 0.3s;
}

.s-06 ul li a img {
  position: relative;
  left: 0rem;
  transition: all 0.3s;
}

.s-06 ul li a:hover img {
  position: relative;
  left: .5rem;
}

form {
  padding-top: 1.75rem;
  width: 80%;
  max-width: 100%;
}

form input {
  border: 1px solid var(--white);
  background-color: var(--white);
  color: var(--new-alma);
  width: 100%;
  border-radius: 1rem;
  padding: .5rem 1rem;
  font-size: 21px;
  margin-bottom: 1rem;
}

form .btn {
  background-color: var(--new-alma);
  color: var(--white);
  border-color: var(--new-alma);
  font-size: 21px;
}

form .btn:hover {
  background-color: var(--desert-olive);
  color: var(--white);
  border-color: var(--desert-olive);
}

footer {
  background-color: var(--new-alma);
  color: var(--white);
  padding: 10rem 1rem 3rem 1rem;
  position: relative;
}

footer a {
  color: var(--white);
  text-decoration: none;
  transition: all 0.2s;
}

footer a:hover {
  color: var(--sunset-orange);
}

footer ul {
  list-style: none;
}

footer ul li {
  margin-bottom: 10px;
}

footer img {
  width: 475px;
}

footer .addy {
  display: block;
  padding-top: 1.25rem;
}

.mobile-menu {
  display: none !important;
}

.header-page p {
  padding-top: 3rem;
  margin: 0rem;
  font-size: 32px;
  line-height: 1.25;
  font-weight: 400;
  padding-right: 1rem;
}

.header-page .header-bg-image {
  height: 100%;
  object-fit: cover;
}

.bg-white {
  background-color: var(--white);
}

.btn-dd {
  position: absolute;
  right: 0rem;
  cursor: pointer;
  z-index: 3;
}

.btn-dd:hover * {
  cursor: pointer;
}

.dd-content {
  display: none;
  background: var(--sunset-orange);
  color: var(--white);
  border-radius: 1rem;
  padding: 1rem;
}

.dd-content p {
  margin: 0rem;
}

.b-top {
  border-top: 1px solid var(--desert-olive);
  padding-top: 3rem;
  margin-top: 3rem;
}

.annual-reports .report > div {
  flex: 1;
  align-content: center;
  border-bottom: 1px solid var(--desert-olive);
  padding: 1rem 0rem;
}

.annual-reports .report p {
  margin: 0rem;
}

.annual-reports .report .btn {
  background-color: transparent;
  border-color: var(--new-alma);
  color: var(--new-alma);
}

.annual-reports .report .btn:hover {
  background-color: var(--desert-olive);
  border-color: var(--desert-olive);
  color: var(--white);
}

.annual-reports .content p, 
.annual-reports .content a {
  font-size: 32px;
}

.annual-reports .content a {
  color: var(--desert-olive);
  font-family: var(--body-light);
  display: inline-block;
  border-bottom: 1px solid;
}

.annual-reports .content a:hover {
  color: var(--deep-cobalt);
}

.focus-area {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
  padding: 1rem 0rem;
  border-top: 1px solid var(--desert-olive);
}

.focus-area h3 {
  font-family: var(--body-light);
}

.focus-area div {
  flex: 1;
}

.focus-area div:nth-child(2) {
  flex: 3;
}

.focus-area div:last-child {
  text-align: right;
}

.focus-area div:last-child img:hover {
  cursor: pointer;
}

.focus-area .dd-content {
  color: var(--black);
  background: transparent;
  text-align: left !important;
  padding: 1rem 0rem;
}

.s-02.block-style-01 {
  background-color: var(--turquoise-village);
  position: relative;
}

.s-02.block-style-01 .container {
  background-color: var(--turquoise-village);
  color: var(--deep-cobalt);
}

.s-02.block-style-01 img {
  position: absolute;
  width: 50%;
  top: 0;
  left: 0;
}

.s-02.block-style-02 {
  background-color: var(--deep-cobalt);
  position: relative;
}

.s-02.block-style-02 .container {
  background-color: var(--deep-cobalt);
  color: var(--turquoise-village);
}

.s-02.block-style-02 img {
  position: absolute;
  width: 50%;
  top: 0;
  right: 0;
}

.our-values {
  padding-top: 6rem;
}

.our-values .heading-01 h2 {
  font-family: var(--body);
  font-size: 48px;
  line-height: 1.25;
}

.our-values .content {
  padding: 3rem 2rem;
  min-height: 21.5rem;
}

.our-values .content h2 {
  font-size: 32px;
}

.our-values .content h3 {
  font-family: var(--body);
  font-size: 18px;
  margin-bottom: 2rem;
}

.our-values .content p {
  font-size: 16px;
}

.s-20 {
  background: var(--white);
  padding: 5rem 1rem;
}

.s-20 h2 {
  font-family: var(--body-light);
  font-size: 60px;
  margin-bottom: 2rem;
}

.s-20 p {
  margin-bottom: 2rem;
}

.s-20 .btn {
  background-color: var(--fresh-clay);
  border-color: var(--fresh-clay);
  color: var(--white);
}

.s-20 .btn:hover {
  background-color: var(--sunset-orange);
  border-color: var(--sunset-orange);
  color: var(--white);
}

.s-20 .boxes {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.s-20 .boxes .box {
  background-color: var(--desert-sand);
  color: var(--fresh-clay);
  border-radius: 1rem;
  padding: 2rem 4rem;
  text-align: center;
  width: 24rem;
  max-width: 100%;
  margin: auto;
}

.s-20 .boxes .box h3 {
  font-size: 64px;
}

.s-20 .boxes .box p {
  margin: 0rem;
}

.s-20 .boxes .box:nth-child(2) {
  margin-right: 0rem;
}

.archive-filter, 
.archive-nav {
  color: var(--desert-olive);
  display: flex;
  justify-content: center;
}

.archive-filter ul, 
.archive-nav ul {
  display: flex;
  gap: 1rem;
  list-style: none;
  flex-wrap: wrap;
  align-items: center;
}

.archive-filter ul li.active a, 
.archive-nav ul li.active a {
  background-color: var(--desert-olive);
  color: var(--white);
}

.archive-filter ul li a, 
.archive-nav ul li a {
  border: 1px solid var(--desert-olive);
  color: var(--desert-olive);
  text-decoration: none;
  border-radius: 25px;
  padding: 5px 10px;
  transition: all 0.2s;
}

.archive-nav ul {
  padding: 0rem;
  margin: 0rem;
  justify-content: center;
}

.archive-nav ul li a {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  justify-content: center;
  align-items: center;
  transition: all 0.2s;
}

.archive-nav ul li a:hover, 
.archive-filter ul li a:hover {
  border-color: var(--new-alma);
  color: var(--white) !important;
  background-color: var(--new-alma) !important;
}

.archive-list .col-md-8 {
  background-color: var(--sunset-orange);
  padding: 0rem;
  margin-top: 2rem;
  border-radius: 1rem;
  height: unset;
  overflow: hidden;
  width: 65%;
  margin-left: auto;
  margin-right: auto;
  height: 32.5rem;
}

.archive-list .col-md-8 .content {
  padding-top: 0rem;
  padding-bottom: 0rem;
  height: 100%;
}

.archive-list .col-md-8 .content img {
  height: 100%;
  width: 50%;
  object-fit: cover;
  margin-bottom: 0rem;
}

.archive-list .col-md-8 .content-info {
  position: absolute;
  width: 50%;
  right: 0;
  top: 0;
  padding: 2rem;
  height: 100%;
}

.archive-list .col-md-8 .content-info h3 {
  margin-bottom: 2rem;
}

.archive-list .col-md-8 .content-info .post-deets, 
.archive-list .col-md-8 .content-info .post-categories {
  color: var(--new-alma);
}

.archive-list .col-md-8 .content-info .post-deets {
  position: absolute;
  bottom: 2rem;
}

.archive-list {
  padding-top: 0rem;
}

.header-archive {
  padding: 4rem 1rem 1rem 1rem;
}

.content-info p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-archive-single {
  text-align: center;
}

.header-archive-single h1 {
  margin: 2rem 1rem;
  position: relative;
}

.header-archive-single .post-deets, .post-categories {
  justify-content: center;
}

.main-archive-single h2 {
  font-family: var(--body-light);
  color: var(--desert-olive);
  font-size: 48px;
  margin-bottom: 1rem;
}

.main-archive-single h3 {
  width: 45rem;
  max-width: 100%;
  margin: auto;
  padding-bottom: 2rem;
  padding-top: 1rem;
  line-height: 1.5;
}

.main-archive-single img {
  padding: 1rem 0rem 2rem 0rem;
  width: 45rem;
  max-width: 100%;
  margin: auto;
  display: block;
  align-content: center;
}

.archive-filter form {
  border: 1px solid var(--desert-olive);
  color: var(--desert-olive);
  text-decoration: none;
  border-radius: 25px;
  padding: 2.75px 10px;
  transition: all 0.2s;
  position: relative;
  padding-right: 1rem;
}

.archive-filter form input {
  background: transparent;
  border: 0px;
  font-size: 18px;
  margin: 0rem;
  padding: 0rem;
  padding-left: .25rem;
  width: 10rem;
  padding-right: 3.5rem;
}

.share {
  padding-top: 2rem;
}

.share p {
  font-size: 32px;
  margin: 0rem;
  color: var(--desert-olive);
}

.share a {
  text-decoration: none;
  margin-left: 1rem;
}

.main-archive-single .share img {
  height: 1.5rem;
  width: auto;
  padding: 0rem;
  display: inline-flex;
}

.mobile-only-cta {
  background-color: var(--desert-olive);
  color: var(--white);
  text-align: center;
  display: none;
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 1rem;
  z-index: 100000;
}

.mobile-only-cta a {
  color: var(--white);
  font-family: var(--body);
  text-decoration: none;
}

.mobile-view {
  display: none;
}

.modal-content {
  border-radius: 0rem;
  border: none;
  height: 100%;
}

.modal.show .modal-dialog {
  transform: none;
  margin: 0rem;
  border-radius: 0rem;
  height: 100%;
}

.modal-header {
  border: none;
}

.modal-header {
  border: none;
  padding: 2rem 1rem;
}

.modal-content {
  background-color: var(--off-white);
}

.modal-body ul {
  list-style: none;
  padding: 2rem 2.25rem;
  padding-top: 0rem;
}

.modal-body ul li {
  margin-bottom: 2rem;
}

.modal-body ul li a {
  font-size: 1.5rem;
    text-decoration: none;
}

.no-scroll {
  overflow: hidden;
}

.current-menu-item {
  font-weight: 600;
}

.focus-area div:first-child img {
  width: 100%;
}

.expand div:first-child {
  flex: 2;
}

.header-archive-single img {
  width: 45rem;
  height: auto;
  max-width: 100%;
}

.header-archive-single h1 {
  display: block;
}

.archive-list .col-md-8 .content-info h3 {
  -webkit-line-clamp: 3;
  margin-bottom: 1rem;
}

.is-resized img {
  margin-left: 0;
  margin-bottom: 0rem;
  padding-bottom: 0rem;
}

.category-news .archive-filter ul li:first-child a {
  background-color: var(--desert-olive);
  color: var(--white);
}

.archive-filter form button {
  color: var(--desert-olive);
  z-index: 2;
  background: transparent;
  border: 0;
  bottom: .25rem;
  position: absolute;
  right: 0;
  width: 3rem;
}

.s-05.board .content img {
  height: 30rem;
}

.s-05.board .staff .content img {
  height: auto;
}

.s-05.board .content h3 {
  -webkit-line-clamp: unset;
}

.s-05.board .staff .m-align {
  height: 100%;
  margin: auto;
  width: 12rem;
  max-width: 100%;
}

.s-05 .content img.btn-dd {
  height: auto;
  width: auto;
} 

.pg-contact {
  padding-left: 1rem;
  padding-right: 1rem;
}

header.pg-contact {
  padding: 6rem 1rem;
}

.pg-contact h1 {
  position: relative;
  margin-bottom: 2rem;
  line-height: 1.25;
}

.pg-contact h2 {
  font-size: 32px;
  margin-bottom: 2rem;
}

.s-500 .row {
  justify-content: space-evenly;
}

.s-501 {
  padding: 6rem 1rem;
}

.s-501 h2 {
  font-size: 72px;
}

.s-502 {
  padding-bottom: 6rem;
}

.s-502 h2 {
  margin-bottom: .5rem;
}

.s-500 h2, 
.s-502 p {
  color: var(--desert-olive);
}

.s-502 p {
  font-weight: 600;
}

.s-502 ul {
  padding: 0rem;
  list-style: none;
}

.s-502 ul li a {
  text-decoration: none;
}

.header-search-page {
  text-align: center;
}

.header-search-page form {
  margin: auto;
  width: 35rem;
  max-width: 100%;
  text-align: left;
}

.header-search-page form .btn {
  display: inline-block;
}

.header-search-page form label {
  display: block;
}

#how-to-apply .dd-coontent {
  padding: 2rem 0rem;
}

#how-to-apply .focus-area.expand {
  align-items: flex-start;
}

#how-to-apply h2 {
  font-size: 2rem;
  line-height: 1.25;
  padding-bottom: 2rem;
}

#how-to-apply .dd-coontent a {
  color: var(--desert-olive);
}

.staff .btn-dd {
  height: 1.75rem !important;
  top: 8.5rem !important;
  position: absolute !important;
  margin-bottom: 0rem !important;
}

.staff .dd-content {
  position: absolute !important;
  z-index: 10 !important;
  width: 100% !important;
  top: 12rem;
  left: 0 !important;
}

.board .dd-content {
  position: absolute;
  z-index: 1;
}

.ctct-form-embed.form_1 .ctct-form-defaults {
  padding: 0rem !important;
}

div.ctct-form-embed form.ctct-form-custom {
  margin: 0rem !important;
}

.ctct-form-embed.form_1 .ctct-form-custom .ctct-form-button {
  padding: 1rem 1.75rem !important;
  background: transparent !important;
  border-radius: 1rem !important;
  font-size: 1.15rem !important;
  display: inline-block !important;
  transition: all 0.2s;
  background-color: var(--new-alma) !important;
  color: var(--white) !important;
  border-color: var(--new-alma) !important;
  font-size: 21px !important;
  width: auto !important;
}

div.ctct-form-embed form.ctct-form-custom input.ctct-form-element {
  appearance: none !important;
  border: 1px solid var(--white);
  background-color: var(--white);
  color: var(--new-alma);
  width: 100%;
  border-radius: 1rem !important;
  padding: 1.5rem 1rem !important;
  font-size: 21px !important;
  margin-bottom: 1rem !important;
  box-shadow: unset !important;
} 

.ctct-form-embed.form_1 .ctct-form-custom .ctct-form-button:hover {
  background-color: var(--desert-olive) !important;
  color: var(--white) !important;
  border-color: var(--desert-olive) !important;
}

div.ctct-form-embed form.ctct-form-custom label.ctct-form-label, 
div.ctct-form-embed div.ctct-form-defaults p.ctct-gdpr-text {
  display: none !important;
}

div.ctct-form-embed form.ctct-form-custom div.ctct-form-field {
  margin: 0rem !important;
}

div.ctct-form-embed form.ctct-form-custom input.ctct-form-element {
  border: 1px solid white !important;
}

.ctct-form-checkbox {
  margin-bottom: 0rem;
}

div.ctct-form-embed form.ctct-form-custom div.ctct-form-listitem label.ctct-form-checkbox-label, div.ctct-form-embed form.ctct-form-custom div.ctct-form-listitem input[type=checkbox].ctct-form-checkbox {
  font-size: 18px;
}

div.ctct-form-embed form.ctct-form-custom .ctct-form-required:before {
  display: none;
}

.simple-sitemap-wrap h3 {
	margin: unset;
    padding-bottom: 1rem;
    padding-top: 0rem;
}

.simple-sitemap-wrap ul li {
	padding-bottom: .5rem;
}

body.category-news .post-deets span.category-news {
	display: none;
}

.s-1000 {
	background-color: var(--deep-cobalt);
	color: var(--turquoise-village);
	padding: 5rem 1rem;
}

.s-1000 h2 {
	font-family: var(--body);
    font-size: 60px;
    line-height: 66px;
    font-weight: 400;
    margin-bottom: 0;
    padding-bottom: 4rem;
}

.s-1000 h3 {
	color: var(--clear-sky);
    border-bottom: 1px solid var(--turquoise-village);
    padding-bottom: 1rem;
	margin-bottom: 0;
}

.s-1000 p {
	color: var(--clear-sky);
	margin: 0;
    padding: 1rem 0rem;
    border-bottom: 1px solid;
}

.s-1000 p:last-child {
	border-bottom: 0px solid;
}

.s-1000 .content {
	padding-right: 2rem;
}

.s-2000 {
	background-color: var(--white);
	padding: 5rem 1rem;
}

.s-2000 h2 {
	font-size: 60px;
    line-height: 66px;
    font-weight: 400;
    margin-bottom: 0;
    padding-bottom: 4rem;
	font-family: var(--body-light);
    color: var(--desert-olive);
}

.s-2000 h3 {
	font-family: var(--body-light);
	margin: 0;
}

.s-2000 p {
	font-family: var(--body-light);
}

.gm-drop-down-title {
    display: inline-flex;
    background-color: #F4F4F0;
    padding: 1rem;
    border-radius: 1rem;
    width: 100%;
    align-items: center;
}

.gm-drop-down-title > div:nth-child(1) {
    flex: 3; /* First column takes 2 parts */
}

.gm-drop-down-title > div:nth-child(2) {
    flex: 1; /* Second column takes 1 part */
    text-align: right;
}

.gm-drop-down-content {
	padding: 0rem 1rem 2rem 1rem;
    background-color: #f4f4f1;
    border-radius: 0 0 1rem 1rem;
	display: none;
	width: 100%;
}

.gm-drop-down-content hr {
	margin: 0;
    margin-bottom: 2rem;
    border-top-color: var(--soulful-gray);
}

p.gm-large {
    color: var(--desert-olive);
    font-weight: 400;
    font-size: 22px;
    line-height: 30.8px;
	margin-bottom: 2rem;
}

.gm-drop-down-content ul {
	line-height: 25.2px;
    font-size: 18px;
	padding-right: 1rem;
	color: var(--sunset-orange);
	list-style: disc;
}

.gm-drop-down-content ul li {
	margin-bottom: 1.25rem;
}

.gm-drop-down-content ul li p {
	color: var(--new-alma);
}

.gm-drop-downs {
	display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.gm-drop-down-title img:hover {
	cursor: pointer;
}

.gm-small {
	font-size: 16px;
    line-height: 22.4px;
    color: var(--desert-olive);
}

.s-3000 {
	background-color: var(--desert-olive);
	color: var(--off-white);
	padding: 5rem 1rem;
	text-align: center;
}

.s-3000 h2 {
	font-family: var(--body-light);
    font-size: 48px;
    line-height: 57.6px;
    font-weight: 400;
    margin-bottom: 0;
    padding-bottom: 4rem;
}

.s-3000 p {
	font-size: 32px;
    line-height: 38.4px;
}

.single-heroes_of_health .main-archive-single h2 {
    margin-bottom: 2rem;
}

.single-heroes_of_health .main-archive-single hr {
    margin: 2rem 0;
}

.single-heroes_of_health .main-archive-single h3 {
	width: 100%;
    margin: 0;
    padding: 0;
}