/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
* {
  margin: 0;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  /* 4. Add accessible line-height */
  line-height: 1.5;
  /* 5. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 6. Improve media defaults */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input, button, textarea, select {
  font: inherit;
}

/* 8. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

/*
  10. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

.dark-bg {
  background: #03132C;
  color: #F7F4F3;
}

.dark-grey-bg {
  background: #2F323A;
  color: #FFFFFF;
}

.light-bg {
  background: #F1F7FB;
  color: #071A26;
}

/* Typefaces
----------------------------- */
/* Font Weights
----------------------------- */
/* Headings
----------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Archivo", sans-serif;
  line-height: 1;
}

h5,
h6 {
  line-height: 1.2;
}

h2,
h4 {
  font-weight: 700;
}

h1 {
  font-size: clamp(4.4rem, 10vw, 6.4rem);
  font-weight: 300;
}

h2,
.contact-info.card-cta.no-bkgd h2,
.center h2 {
  font-size: clamp(3.8rem, 3.5vw, 4.8rem);
  text-transform: uppercase;
  margin-bottom: 4.8rem;
  color: #2F323A;
}
h2::after,
.contact-info.card-cta.no-bkgd h2::after,
.center h2::after {
  content: "";
  display: block;
  width: 10rem;
  border-bottom: 3px solid #2685BF;
  border-radius: 0.5rem;
  margin-left: 0;
  margin-top: 2.4rem;
}

.news-resources h2,
.newsletter h2 {
  color: rgb(124, 181, 216);
}
.news-resources h2::after,
.newsletter h2::after {
  content: "";
  border-bottom: 3px solid #FFFFFF;
}

.center h2::after,
.contact-info.card-cta.no-bkgd h2::after {
  margin: 2.4rem auto 0;
}

.cta-banner h2 {
  color: #F7F4F3;
}
.cta-banner h2::after {
  margin: 2.4rem auto 0;
}

.card-cta h2,
.card-cta.no-bkgd h2 {
  margin-bottom: 2.4rem;
  color: rgb(124, 181, 216);
}
.card-cta h2::after,
.card-cta.no-bkgd h2::after {
  content: none;
}

footer h2 {
  color: rgb(124, 181, 216);
}
footer h2::after {
  content: none;
}

h3,
.article h3 > a {
  font-size: 3.6rem;
  font-weight: 400;
  color: #03132C;
}

h4 {
  font-size: 3rem;
}

h5 {
  font-size: 2.4rem;
  font-weight: 600;
}

h6 {
  font-size: 2.1rem;
  font-weight: 500;
}

/* body text
----------------------------- */
body {
  font-family: "Lora", serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.5;
  color: #071A26;
}

p {
  margin-bottom: 2.4rem;
}
p:last-of-type {
  margin-bottom: 0;
}

p a {
  display: inline-block;
}

ul, ol,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

li {
  margin-bottom: 2.7rem;
  position: relative;
  margin-left: 2.5rem;
}
li a {
  display: inline-block;
}
li::before {
  content: "";
  height: 0.3rem;
  border-radius: 0.3rem;
  background: linear-gradient(to right, #2685BF 0%, #05204A 50%, #071A26 100%);
  width: 2rem;
  display: block;
  position: absolute;
  top: 1.25rem;
  left: -2.5rem;
}

.center {
  text-align: center;
}

html {
  font-size: 62.5%;
}

.sr-only {
  position: absolute;
  left: -9999px;
  top: -9999px;
  visibility: hidden;
  opacity: 0;
  width: 0.1rem;
  height: 0.1rem;
}

.display-none {
  display: none;
}

footer svg {
  width: 4rem;
  height: 2rem;
}

footer svg,
footer .svg-inline--fa {
  border: 2px solid rgb(124, 181, 216);
  border-radius: 50%;
  padding: 1rem 0.75rem;
  color: #F7F4F3;
}

.full-width-section {
  padding: 7.2rem 1rem;
}
.full-width-section .inner-container {
  margin: 0 auto;
}

.inner-container {
  padding: 0 1rem;
  max-width: 168rem; /**1680px**/
  margin: 7.2rem auto;
  transition: margin 0.3s ease-in-out;
}
@media (min-width: 981px) {
  .inner-container {
    padding: 1.2rem 2.4rem;
  }
}
@media (min-width: 1200px) {
  .inner-container {
    margin: 9.6rem auto;
  }
}
@media (min-width: 1680px) {
  .inner-container {
    padding: 1.2rem 0;
  }
}

.row {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  gap: 4.8rem 2.4rem;
}

.one-col {
  max-width: 111rem;
  margin: auto;
}

.three-col {
  width: 100%;
}
@media (min-width: 768px) {
  .three-col {
    width: 48%;
  }
}
@media (min-width: 981px) {
  .three-col {
    width: 30%;
  }
}

@media (min-width: 1200px) {
  .four-col {
    width: 24%;
  }
}

.blog-container .four-col {
  width: 100%;
}
@media (min-width: 600px) {
  .blog-container .four-col {
    width: calc(50% - 2.4rem);
  }
}
@media (min-width: 981px) {
  .blog-container .four-col {
    width: calc(25% - 2.4rem);
  }
}

@media (min-width: 768px) {
  .eight-col {
    max-width: 80%;
    margin: auto;
  }
}
@media (min-width: 1200px) {
  .eight-col {
    max-width: 110rem;
  }
}

@media (min-width: 768px) {
  .one-third {
    width: 30%;
    flex: 1 1 30%;
  }
}
@media (min-width: 981px) {
  .one-third {
    width: 36%;
    flex: 0 0 36%;
  }
}

@media (min-width: 768px) {
  .two-third {
    width: 60%;
    flex: 1 1 60%;
  }
}
@media (min-width: 981px) {
  .two-third {
    width: 58%;
    flex: 0 0 58%;
  }
}
@media (min-width: 1200px) {
  .two-third {
    width: 59%;
    flex: 0 0 59%;
  }
}

@media (min-width: 981px) {
  .one-quarter {
    width: 25%;
    flex: 0 0 25%;
  }
}

@media (min-width: 981px) {
  .three-quarters {
    width: 70%;
    flex: 0 0 70%;
  }
}

.margin-0 {
  margin: 0;
}

.margin-top-0 {
  margin-top: 0;
}

.h-scroll {
  display: flex;
  flex-flow: row nowrap;
  gap: 2.4rem;
  align-items: flex-start;
  overflow-x: scroll;
}
@media (min-width: 981px) {
  .h-scroll {
    overflow-x: hidden;
    display: block;
  }
}

.multi-col p {
  margin-bottom: 2.4rem;
}
@media (min-width: 981px) {
  .multi-col {
    -moz-column-count: 4;
         column-count: 4;
  }
}

.interior-banner {
  padding: 4.8rem 1rem 7.2rem;
  background: #071A26;
  background: linear-gradient(to right, #2685BF 0%, #05204A 50%, #071A26 100%);
  text-align: center;
  transition: padding 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .interior-banner {
    padding: 7.2rem 1rem 9.6rem;
  }
}
@media (min-width: 1200px) {
  .interior-banner {
    padding: 10.8rem 1rem 12rem;
  }
}
.interior-banner .inner-container {
  margin: 0 auto;
}
.interior-banner h1 {
  color: #F7F4F3;
  text-align: center;
}

.interior-banner-overlay {
  background: #F1F7FB;
  box-shadow: 0 4px 4px #D7E8F3;
  padding: 2.4rem;
  border-radius: 1rem;
  transition: all 0.3s ease-in-out;
  position: relative;
  top: -2.4rem;
  margin-bottom: -2.4rem;
}
@media (min-width: 768px) {
  .interior-banner-overlay {
    padding: 4.8rem;
    top: -4.8rem;
    margin-bottom: -4.8rem;
  }
}
@media (min-width: 1200px) {
  .interior-banner-overlay {
    padding: 7.2rem 18.5rem;
    top: -6rem;
    margin-bottom: -6rem;
  }
}

.card-cta {
  background: #03132C;
  border-radius: 1rem;
  color: #F7F4F3;
  padding: 4.8rem 1.6rem;
}
.card-cta a {
  margin-top: 4.8rem;
}

.card-cta.no-bkgd {
  background: transparent;
  color: #071A26;
  padding: 0;
}

.icon-heading-content-block h2 {
  margin-bottom: 0;
}
.icon-heading-content-block:nth-child(even) {
  background: #F1F7FB;
  padding: 7.2rem 1rem;
}
.icon-heading-content-block:nth-child(even) .inner-container {
  margin: 0 auto;
}
@media (min-width: 981px) {
  .icon-heading-content-block:nth-child(even) {
    background: transparent;
    padding: 0;
  }
  .icon-heading-content-block:nth-child(even) .inner-container {
    margin: initial;
  }
}
@media (min-width: 981px) {
  .icon-heading-content-block .row {
    align-items: center;
    gap: 0;
  }
  .icon-heading-content-block:nth-child(odd) .inner-container {
    margin: 7.2rem 0 7.2rem auto;
  }
  .icon-heading-content-block:nth-child(odd) .one-quarter {
    padding-left: 4rem;
  }
  .icon-heading-content-block:nth-child(odd) .three-quarters {
    padding: 4.8rem 7.2rem 4.8rem 4.8rem;
    position: relative;
    right: -1rem;
    background: #F1F7FB;
  }
  .icon-heading-content-block:nth-child(even) .inner-container {
    margin: 7.2rem auto 7.2rem 0;
  }
  .icon-heading-content-block:nth-child(even) .one-quarter {
    order: 0;
    padding-right: 4rem;
  }
  .icon-heading-content-block:nth-child(even) .one-quarter h2 {
    float: right;
  }
  .icon-heading-content-block:nth-child(even) .three-quarters {
    order: -1;
    padding: 4.8rem 4.8rem 4.8rem 7.2rem;
    position: relative;
    left: -1rem;
    background: #F1F7FB;
  }
}
@media (min-width: 1200px) {
  .icon-heading-content-block:nth-child(odd) .inner-container {
    margin: 9.6rem 0 9.6rem auto;
  }
  .icon-heading-content-block:nth-child(even) .inner-container {
    margin: 9.6rem auto 9.6rem 0;
  }
}
@media (min-width: 1680px) {
  .icon-heading-content-block:nth-child(odd) .one-quarter {
    padding-left: 0;
  }
  .icon-heading-content-block:nth-child(odd) .three-quarters {
    padding: 4.8rem 10.8rem 4.8rem 4.8rem;
    right: -1rem;
  }
  .icon-heading-content-block:nth-child(even) .one-quarter {
    order: 0;
    padding-right: 0;
  }
  .icon-heading-content-block:nth-child(even) .three-quarters {
    padding: 4.8rem 4.8rem 4.8rem 10.8rem;
    left: -1rem;
  }
}

.cta-banner .inner-container {
  margin: 0 auto;
  padding: 7.2rem 1rem;
}

form {
  color: #F7F4F3;
}
form label,
form .mc_var_label,
form .mc_interest_label {
  color: #2685BF;
  margin-bottom: 0.6rem;
  display: block;
  text-align: left;
}
form label .mc_required,
form .mc_var_label .mc_required,
form .mc_interest_label .mc_required {
  color: #FFFFFF;
  margin-left: 0.5rem;
}
form input {
  border: 1px solid #2685BF;
  background: #FFFFFF;
  font-size: 2.1rem;
  line-height: 1.5;
  border-radius: 0.6rem;
  margin-bottom: 2.4rem;
}
form #mc_mv_EMAIL_7,
form #mc_mv_EMAIL_3 {
  margin-bottom: 0;
}
form .mc_signup_submit_button,
form input[type=submit] {
  width: 100%;
  padding: 1.6rem 1.2rem;
  font-family: "Archivo", sans-serif;
  background: #03132C;
  border: 3px solid transparent;
  color: #F7F4F3;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  margin-top: 1.2rem;
}
form .mc_signup_submit_button:hover, form .mc_signup_submit_button:focus,
form input[type=submit]:hover,
form input[type=submit]:focus {
  background: rgb(124, 181, 216);
  color: #03132C;
  border: 3px solid transparent;
}
form .mc_merge_var {
  margin-bottom: 0;
}
form .mc-indicates-required {
  order: -1;
  margin-top: 0;
  padding-bottom: 2.4rem;
  font-style: italic;
  text-align: left;
}
.newsletter {
  max-width: 86rem;
  margin: auto;
}
.newsletter p {
  margin-bottom: 2.4rem;
}
.newsletter form .mc_form_inside {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  width: 100%;
}
@media (min-width: 600px) {
  .newsletter form .mc_form_inside {
    align-items: flex-end;
  }
}
.newsletter form .mc_form_inside div {
  margin-bottom: 0;
}
.newsletter form .mc_form_inside div:nth-child(2), .newsletter form .mc_form_inside div:nth-child(3) {
  width: 47.5%;
  flex: 0 1 47.5%;
}
.newsletter form .mc_form_inside div:nth-child(4), .newsletter form .mc_form_inside div:nth-child(5) {
  width: 100%;
  flex: 1 1 100%;
}
.newsletter form .mc_form_inside div.mc_signup_submit {
  width: 100%;
  flex: 1 1 100%;
}
@media (min-width: 600px) {
  .newsletter form .mc_form_inside div:nth-child(4) {
    width: 60%;
    flex: 0 1 60%;
  }
  .newsletter form .mc_form_inside div:nth-child(4) input {
    border-radius: 0.6rem 0 0 0.6rem;
  }
  .newsletter form .mc_form_inside div.mc_signup_submit {
    width: 20%;
    flex: 1 1 20%;
  }
  .newsletter form .mc_form_inside div.mc_signup_submit input {
    border-radius: 0 0.6rem 0.6rem 0;
    padding: 0.8rem 1.2rem;
  }
}

@media (min-width: 1200px) {
  article {
    width: initial;
  }
}
article img {
  border-radius: 0.6rem 0.6rem 0 0;
}
article .article-content {
  padding: 4.8rem 1.2rem;
  background: #F1F7FB;
  color: #071A26;
  border-radius: 0 0 0.6rem 0.6rem;
}
article .article-content h3 {
  text-wrap: auto;
  margin-bottom: 1rem;
}
article .article-content h3 a {
  font-size: 3rem;
  font-weight: 400;
  color: #03132C;
}
article .article-content .date {
  color: #2685BF;
}
article .article-content p,
article .article-content .audio {
  margin: 2.4rem 0;
}
article .article-content .audio {
  background: #03132C;
}
article .article-content .author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
article .article-content .author img {
  width: 4.8rem;
  height: auto;
  border-radius: 50%;
}

.blog-container .inner-container {
  padding: 0 2.4rem;
  margin: 0 auto 7.2rem;
}
.blog-container .row {
  justify-content: flex-start;
}
.blog-container article {
  width: 100%;
}

.pagination {
  display: flex;
  justify-content: space-between;
  max-width: 80%;
  margin: 7.2rem auto 0;
}
.pagination li {
  margin-left: 0;
  margin-bottom: 0;
}
.pagination li::before {
  content: none;
}

.single .interior-banner {
  padding: 4.8rem 1rem;
}
.single .interior-banner h1 {
  line-height: 1.1;
}
.single .meta-content {
  margin: 4.8rem auto;
}
.single .author-date {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.4rem;
}
.single .author-date img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.single .post-categories a,
.single .post-tags a,
.single .post-content p a {
  display: inline-block;
}
.single iframe {
  margin-bottom: 2.4rem;
  height: 40rem;
}
.single .post-banner img {
  margin-bottom: 2.4rem;
  height: auto;
}
@media (min-width: 768px) {
  .single .post-banner img {
    width: 50%;
    margin-right: 2.4rem;
    float: left;
  }
}

.archive .interior-banner h1 {
  line-height: 1.1;
}

a {
  text-decoration: none;
  display: block;
  color: #2685BF;
  overflow-wrap: anywhere;
  font-size: 2.1rem;
  transition: color 0.3s ease-in-out;
}
a:hover, a:focus {
  color: #03132C;
}

nav a,
footer a {
  font-family: "Archivo", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
}

footer a {
  color: #F7F4F3;
  font-size: 2.1rem;
  word-break: break-all;
  word-wrap: anywhere;
}
footer a:hover {
  color: #2685BF;
}

.btn {
  padding: 1.2rem 1.6rem;
  border-radius: 1rem;
  display: inline-block;
  font-size: 2.1rem;
  line-height: 1;
  font-weight: 500;
  text-transform: capitalize;
  margin-top: 4.8rem;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
.btn:hover, .btn:focus {
  text-decoration: none;
}

.btn-lg {
  width: 30rem;
}

.btn-lt-outline {
  border: 0.3rem solid #2685BF;
  color: #2685BF;
  background: #F7F4F3;
}
.btn-lt-outline:hover, .btn-lt-outline:focus {
  background: #2685BF;
  color: #F7F4F3;
  text-decoration: none;
}

.btn-dark-outline {
  border: 0.3rem solid #03132C;
  color: #03132C;
  background: #F7F4F3;
}
.btn-dark-outline:hover, .btn-dark-outline:focus {
  background: #03132C;
  color: #F7F4F3;
  text-decoration: none;
}

.btn-dark-fill {
  background: #03132C;
  color: #F7F4F3;
}
.btn-dark-fill:hover, .btn-dark-fill:focus {
  background: rgb(124, 181, 216);
  color: #03132C;
  text-decoration: none;
}

header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #03132C;
  border-bottom: 1px solid rgb(124, 181, 216);
}
header .inner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1rem;
  position: relative;
  margin: 0 auto;
}
@media (min-width: 981px) {
  header .inner-container {
    padding: 1.2rem 2.4rem;
  }
}
@media (min-width: 1680px) {
  header .inner-container {
    padding: 1.2rem 0;
  }
}

.logo {
  position: absolute;
  top: -9999px;
  left: -9999px;
  visibility: hidden;
  width: 0.1rem;
  height: 0.1rem;
}
@media (min-width: 981px) {
  .logo {
    position: static;
    visibility: visible;
    width: auto;
    height: auto;
  }
}
.logo img {
  transition: width 0.3s ease-in-out;
}
@media (min-width: 981px) {
  .logo img {
    width: 25rem;
    max-width: 50rem;
  }
}
@media (min-width: 1680px) {
  .logo img {
    width: 35rem;
  }
}

.logo-icon {
  display: block;
}
.logo-icon img {
  width: 6rem;
  height: auto;
}
@media (min-width: 981px) {
  .logo-icon {
    display: none;
  }
}

.toggle-btn {
  z-index: 9999;
  margin-left: auto;
  display: block;
  cursor: pointer;
  border: none;
  outline: none;
  width: auto;
  height: auto;
  padding: 0;
  padding-left: 3rem;
  background: transparent;
}
.toggle-btn span {
  position: relative;
  background-color: #2685BF;
  border-radius: 0.3rem;
  width: 5rem;
  height: 1rem;
  display: block;
  margin-bottom: 1rem;
}
.toggle-btn span:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .toggle-btn {
    display: none;
  }
}

.active-state .toggle-btn span:first-child {
  display: none;
}
.active-state .toggle-btn span:nth-child(2) {
  transform: rotate(45deg);
  top: 1rem;
  right: 0;
}
.active-state .toggle-btn span:last-child {
  transform: rotate(-45deg);
  bottom: 1rem;
}

nav {
  width: 100%;
  background: #03132C;
  max-height: 100vh;
}

.off-canvas {
  position: absolute;
  top: 9rem;
  z-index: 99;
  left: -100vw;
  transition: all 0.5s ease-in-out;
}
@media (min-width: 768px) {
  .off-canvas {
    position: static;
  }
}

.active-state .off-canvas {
  left: 0;
}

nav ul li {
  line-height: 2.5;
  width: 100%;
  list-style: none;
  padding: 0;
  border-bottom: 1px solid rgb(124, 181, 216);
  position: relative;
  white-space: nowrap;
  margin-left: 0;
  margin-bottom: 0;
}
nav ul li::before {
  content: none;
}
@media (min-width: 768px) {
  nav ul li {
    border-bottom: none;
    line-height: 1;
  }
}
nav ul a {
  color: #FFFFFF;
  font-size: 2.4rem;
  text-align: left;
  white-space: nowrap;
  padding: 0.5rem 1rem 0 1rem;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  nav ul a {
    font-size: 2rem;
  }
}
nav ul a:hover, nav ul a:focus {
  color: #2685BF;
  text-decoration: none;
}
nav ul .current_page_item a {
  color: rgb(124, 181, 216);
}
nav ul.main-menu {
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-end;
}
@media (min-width: 768px) {
  nav ul.main-menu {
    flex-flow: row;
  }
}
nav ul.sub-menu {
  padding-left: 0;
  transition: all 0.4s ease-in-out;
}
@media (min-width: 768px) {
  nav ul.sub-menu {
    position: absolute;
    top: 4rem;
    left: 0;
    background: #03132C;
    border-radius: 0 0 0.5rem 0.5rem;
    visibility: hidden;
    opacity: 0;
  }
}
nav ul.sub-menu li::before {
  content: none;
}
@media (min-width: 768px) {
  nav ul.sub-menu li {
    line-height: 2;
    border-bottom: 1px solid rgb(124, 181, 216);
  }
}
nav ul.sub-menu li:first-child {
  border-top: 1px solid rgb(124, 181, 216);
}
@media (min-width: 768px) {
  nav ul.sub-menu li:first-child {
    border-top: none;
  }
}
@media (min-width: 768px) {
  nav ul.sub-menu a {
    padding: 0.5rem 1rem;
  }
}

@media (min-width: 768px) {
  ul.main-menu li:hover > ul {
    visibility: visible;
    opacity: 1;
  }
  ul.main-menu li:focus-within > ul,
  ul.main-menu li > ul:focus {
    visibility: visible;
    opacity: 1;
    display: block;
  }
}
footer .footer-top {
  background: #03132C;
}
footer .footer-top .inner-container {
  padding: 7.2rem 1rem;
  display: flex;
  flex-flow: row wrap;
  gap: 7.2rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  footer .footer-top .inner-container {
    gap: 0;
    justify-content: space-between;
  }
}
@media (min-width: 981px) {
  footer .footer-top .inner-container {
    padding: 7.2em 2.4rem;
  }
}
@media (min-width: 1680px) {
  footer .footer-top .inner-container {
    padding: 7.2rem 0;
  }
}
footer .footer-top .inner-container .col {
  width: 100%;
}
@media (min-width: 981px) {
  footer .footer-top .inner-container .col {
    width: calc(33.3333333333% - 1.5rem);
  }
}
@media (min-width: 1200px) {
  footer .footer-top .inner-container .col {
    width: calc(33.3333333333% - 2rem);
  }
}
@media (min-width: 1400px) {
  footer .footer-top .inner-container .col {
    width: calc(33.3333333333% - 3rem);
  }
}
@media (min-width: 768px) {
  footer .footer-top .inner-container .col-1 div,
  footer .footer-top .inner-container .col-3 div {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }
}
footer .footer-top .inner-container .col-1 div .location-contact-info,
footer .footer-top .inner-container .col-1 div .footer-menu-widget,
footer .footer-top .inner-container .col-3 div .location-contact-info,
footer .footer-top .inner-container .col-3 div .footer-menu-widget {
  margin-bottom: 4.8rem;
}
footer .footer-top .inner-container .col-1 div .location-contact-info:first-child,
footer .footer-top .inner-container .col-1 div .footer-menu-widget:first-child,
footer .footer-top .inner-container .col-3 div .location-contact-info:first-child,
footer .footer-top .inner-container .col-3 div .footer-menu-widget:first-child {
  margin-bottom: 2.4rem;
}
@media (min-width: 768px) {
  footer .footer-top .inner-container .col-1 div .location-contact-info:first-child,
  footer .footer-top .inner-container .col-1 div .footer-menu-widget:first-child,
  footer .footer-top .inner-container .col-3 div .location-contact-info:first-child,
  footer .footer-top .inner-container .col-3 div .footer-menu-widget:first-child {
    flex: 1 1 100%;
  }
}
footer .footer-top .inner-container .col-1 div .location-contact-info:last-child,
footer .footer-top .inner-container .col-1 div .footer-menu-widget:last-child,
footer .footer-top .inner-container .col-3 div .location-contact-info:last-child,
footer .footer-top .inner-container .col-3 div .footer-menu-widget:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  footer .footer-top .inner-container .col-1 div .location-contact-info:nth-child(2), footer .footer-top .inner-container .col-1 div .location-contact-info:last-child,
  footer .footer-top .inner-container .col-3 div .location-contact-info:nth-child(2),
  footer .footer-top .inner-container .col-3 div .location-contact-info:last-child {
    width: 47.5%;
  }
}
@media (min-width: 981px) {
  footer .footer-top .inner-container .col-1 div .location-contact-info:nth-child(2), footer .footer-top .inner-container .col-1 div .location-contact-info:last-child,
  footer .footer-top .inner-container .col-3 div .location-contact-info:nth-child(2),
  footer .footer-top .inner-container .col-3 div .location-contact-info:last-child {
    width: 100%;
  }
}
footer .footer-top .inner-container .col-2 div:first-child .social-widget {
  margin-bottom: 4.8rem;
}
footer .footer-top .inner-container .col-2 div:first-child .social-widget:first-child {
  margin-bottom: 2.4rem;
}
footer .footer-top .inner-container .col-2 div:first-child .social-widget:last-child {
  margin-bottom: 4.8rem;
}
footer .footer-top .inner-container .col-2 div:last-child .newsletter-subscribe:first-child {
  margin-bottom: 2.4rem;
}
footer .footer-top .inner-container .col-2 div:last-child .newsletter-subscribe:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  footer .footer-top .inner-container .col-2 {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    margin-bottom: 4.8rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-top .inner-container .col-2 {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  footer .footer-top .inner-container .col-2 .social {
    width: 30%;
  }
}
@media (min-width: 1200px) {
  footer .footer-top .inner-container .col-2 .social {
    margin-bottom: 7.2rem;
  }
}
@media (min-width: 768px) {
  footer .footer-top .inner-container .col-2 .newsletter {
    width: 65%;
  }
}
@media (min-width: 981px) {
  footer .footer-top .inner-container .col-2 .social,
  footer .footer-top .inner-container .col-2 .newsletter {
    width: 100%;
  }
}
footer .footer-top ul li {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-bottom: 2.4rem;
  margin-left: 0;
}
footer .footer-top ul li:last-child {
  margin-bottom: 0;
}
footer .footer-top ul li::before {
  content: none;
}
footer .footer-top p {
  color: #F7F4F3;
}
footer .footer-top form .mc_signup_submit_button,
footer .footer-top form input[type=submit] {
  background: #2685BF;
  color: #F7F4F3;
  transition: all 0.3s ease-in-out;
  border: 3px solid #2685BF;
}
footer .footer-top form .mc_signup_submit_button:hover, footer .footer-top form .mc_signup_submit_button:focus,
footer .footer-top form input[type=submit]:hover,
footer .footer-top form input[type=submit]:focus {
  background: #F7F4F3;
  color: #2685BF;
  border: 3px solid #2685BF;
}
@media (min-width: 981px) and (max-width: 1470px) {
  footer .footer-top form .mc_form_inside div:nth-child(4) {
    width: 100%;
    flex: 1 1 100%;
  }
  footer .footer-top form .mc_form_inside div:nth-child(4) input {
    border-radius: 0.6rem;
  }
  footer .footer-top form .mc_form_inside div.mc_signup_submit {
    width: 100%;
    flex: 1 1 100%;
  }
  footer .footer-top form .mc_form_inside div.mc_signup_submit input {
    border-radius: 0.6rem;
    padding: 0.8rem 1.2rem;
  }
}
footer .footer-top .menu {
  display: flex;
  flex-flow: row wrap;
  gap: 2.4rem;
}
footer .footer-top .menu li {
  margin-bottom: 0;
}
@media (min-width: 981px) {
  footer .footer-top .menu li {
    width: 45%;
  }
}
footer .footer-bottom {
  background: #010710;
  color: #FFFFFF;
  font-size: 1.8rem;
}
footer .footer-bottom .inner-container {
  padding: 2.4rem 1rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
@media (min-width: 981px) {
  footer .footer-bottom .inner-container {
    padding: 2.4rem;
  }
}
@media (min-width: 1680px) {
  footer .footer-bottom .inner-container {
    padding: 2.4rem 0;
  }
}
footer .footer-bottom a {
  text-transform: capitalize;
  font-size: 1.8rem;
  display: inline-block;
}
footer .footer-bottom p {
  max-width: 46rem;
}
footer .footer-bottom p:last-child {
  margin-bottom: 0;
}
@media (min-width: 920px) {
  footer .footer-bottom p:first-child {
    margin-bottom: 0;
  }
}

.hero-banner {
  background-color: #03132C;
  background-image: var(--bg-small);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .hero-banner {
    background-image: var(--bg-medium);
  }
}
@media (min-width: 1200px) {
  .hero-banner {
    background-image: var(--bg-large);
  }
}
.hero-banner .overlay {
  background: rgba(247, 244, 243, 0.65);
  padding: 7.2rem 1rem;
}
@media (min-width: 768px) {
  .hero-banner .overlay {
    max-width: 70%;
  }
}
@media (min-width: 981px) {
  .hero-banner .overlay {
    max-width: 50%;
    padding: 7.2rem 4.8rem;
    margin: 0 2.4rem 7.2rem;
  }
}
@media (min-width: 1200px) {
  .hero-banner .overlay {
    padding: 7.2rem 10.8rem;
    margin: 0 9.6rem 9.6rem;
  }
}
.hero-banner .banner-content h1 {
  color: #2685BF;
  margin-bottom: 4.8rem;
}
.hero-banner .banner-content ul {
  margin-top: 2.4rem;
}
.hero-banner .banner-content ul li {
  font-size: 2rem;
  margin-bottom: 2.4rem;
  margin-left: 0;
}
.hero-banner .banner-content ul li:last-child {
  margin-bottom: 0;
}
.hero-banner .banner-content ul li::before {
  content: none;
}

.sunday-service .one-third section {
  margin-bottom: 4.8rem;
}
.sunday-service .one-third section:last-of-type {
  margin-bottom: 0;
}
.sunday-service .one-third .time {
  color: rgb(124, 181, 216);
  font-size: 2.4rem;
  margin-bottom: 2.4rem;
}
.sunday-service .two-third h3 {
  margin-bottom: 2.4rem;
}
.sunday-service .two-third ul {
  margin-top: 2.4rem;
}

.believe .h-scroll p {
  flex: 0 0 90%;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .believe .h-scroll p {
    flex: 0 0 50%;
  }
}

.believe .col {
  width: 100%;
}
.believe .col:after {
  content: "";
  display: table; /* For modern browsers, creating a new block formatting context */
  clear: both; /* Clears both left and right floats */
}
@media (min-width: 768px) {
  .believe .col .btn {
    float: right;
  }
}

.news-resources p {
  margin-bottom: 4.8rem;
}

.news-scroll {
  margin-bottom: 7.2rem;
}
@media (min-width: 1200px) {
  .news-scroll {
    overflow-x: hidden;
    -moz-column-gap: 0;
         column-gap: 0;
    margin-bottom: 9.6rem;
  }
}
.news-scroll .row {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  overflow-x: scroll;
  -moz-column-gap: 2.4rem;
       column-gap: 2.4rem;
  justify-content: flex-start;
}
.news-scroll .four-col {
  flex: 0 0 40rem;
}
.news-scroll .four-col:last-child {
  display: none;
}
@media (min-width: 768px) {
  .news-scroll .four-col:last-child {
    display: flex;
    align-items: center;
  }
  .news-scroll .four-col:last-child .md-lg-view.btn {
    width: 100%;
    text-align: center;
  }
}
.news-scroll .sm-view.btn {
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  .news-scroll .sm-view.btn {
    display: none;
  }
}

/**
 * Custom Modal Styles for Staff Members
 * Save as: /css/staff-modal.css
 */
/* Modal Base */
.staff-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.staff-modal[aria-hidden=false],
.staff-modal.staff-modal-open {
  display: flex;
}

/* Overlay */
.staff-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

/* Dialog */
.staff-modal-dialog {
  position: relative;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  z-index: 10000;
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Content */
.staff-modal-content {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
}

/* Header */
.staff-modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.staff-modal-header h3 {
  margin: 0 0 0.25rem 0;
  font-size: 1.5rem;
}

.staff-modal-header .staff-position {
  margin: 0;
  color: #666;
  font-size: 0.95rem;
}

/* Close Button */
.staff-modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  margin-left: 1rem;
  color: #999;
  transition: color 0.2s;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.staff-modal-close:hover {
  color: #333;
}

/* Body */
.staff-modal-body {
  padding: 1.5rem;
  overflow-y: auto;
}

.staff-quote {
  font-style: italic;
  color: #555;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #f5f5f5;
  border-left: 4px solid #333;
}

/* Member Cards */
.staff-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.staff-member {
  flex: 0 0 auto;
  width: 280px;
  text-align: center;
}

.staff-thumbnail {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto 1rem;
}

.staff-member h3 {
  font-size: 1.25rem;
  margin: 0.5rem 0;
}

.staff-position {
  color: #666;
  font-size: 0.9rem;
  margin: 0.25rem 0 0.75rem;
}

.staff-read-more {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s;
  margin-top: 1rem;
}

.staff-read-more:hover {
  background: #555;
}

/* Horizontal scroll for member cards */
.horizontal-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
}

/* Large thumbnail in modal */
.staff-large-thumbnail {
  float: left;
  margin: 0 1.5rem 1rem 0;
  max-width: 300px;
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .staff-modal-dialog {
    width: 95%;
  }
  .staff-modal-header,
  .staff-modal-body {
    padding: 1rem;
  }
  .staff-large-thumbnail {
    float: none;
    max-width: 100%;
    margin: 0 0 1rem 0;
  }
  .staff-member {
    width: 240px;
  }
}
.page-ministries .area-one section:nth-last-child(-n+4) {
  display: none;
}
.page-ministries .area-two section:nth-child(-n+3) {
  display: none;
}

.how-to-give-cards .card-cta:nth-child(even) {
  background: rgb(124, 181, 216);
}
.how-to-give-cards .card-cta:nth-child(even) a {
  color: #03132C;
}
@media (min-width: 768px) {
  .how-to-give-cards .card-cta {
    width: 48%;
  }
  .how-to-give-cards .card-cta:last-child {
    width: 100%;
  }
  .how-to-give-cards .card-cta:nth-child(4) {
    background: #03132C;
  }
  .how-to-give-cards .card-cta:nth-child(4) a {
    color: rgb(124, 181, 216);
  }
  .how-to-give-cards .card-cta:nth-child(3), .how-to-give-cards .card-cta:last-child {
    background: rgb(124, 181, 216);
  }
  .how-to-give-cards .card-cta:nth-child(3) a, .how-to-give-cards .card-cta:last-child a {
    color: #03132C;
  }
}
@media (min-width: 1024px) {
  .how-to-give-cards .card-cta {
    width: 30%;
  }
  .how-to-give-cards .card-cta:nth-last-child(-n+2) {
    width: 48%;
  }
  .how-to-give-cards .card-cta:nth-child(even), .how-to-give-cards .card-cta:nth-child(odd) {
    background: #03132C;
  }
  .how-to-give-cards .card-cta:nth-child(even) a, .how-to-give-cards .card-cta:nth-child(odd) a {
    color: #2685BF;
  }
}

.blog-cat-options {
  background: transparent;
  max-height: auto;
}
.blog-cat-options .inner-container {
  padding: 0 2.4rem;
  margin: auto;
}
.blog-cat-options ul {
  display: flex;
  flex-flow: row wrap;
  gap: 1rem;
  margin-bottom: 2.4rem;
}
.blog-cat-options ul li {
  line-height: 2;
  border-bottom: none;
  width: auto;
  white-space: nowrap;
  border: 1px solid #2685BF;
  padding: 0.5rem;
  border-radius: 1rem;
  background: #F7F4F3;
  transition: all 0.3s ease-in-out;
}
.blog-cat-options ul li:hover, .blog-cat-options ul li:focus {
  background: #2685BF;
}
.blog-cat-options ul a {
  font-size: 2.1rem;
  text-transform: capitalize;
  padding: 0;
  color: #2685BF;
  transition: all 0.3s ease-in-out;
}
.blog-cat-options ul a:hover, .blog-cat-options ul a:focus {
  color: #F7F4F3;
}
.blog-cat-options .browse {
  color: #03132C;
  font-weight: 500;
  text-align: left;
  margin-bottom: 2.4rem;
}
.blog-cat-options .browse span {
  color: #2685BF;
}

iframe {
  width: 100%;
}

.newsletter-iframe-wrapper iframe {
  height: 768px;
}

.contact-info {
  text-align: center;
}/*# sourceMappingURL=styles.css.map */