@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  font-size: 16px;
}

ol, ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "articulat-cf", sans-serif;
  font-weight: normal;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  min-height: 100vh;
  scroll-behavior: smooth;
  -webkit-font-smoothing: subpixel-antialiased;
}

h1 {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
  font-weight: 700;
}
@media (max-width: 1000px) {
  h1 {
    font-size: 2rem;
  }
}

p {
  margin: 1rem 0;
  line-height: 1.33;
}

.bgSLBlue {
	background: #29adcf
}

.bgSLBlueWash {
	background: #8bc0db
}

.txBlack {
    color: #333 !important;
    font-weight: 500;
}

#cas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(87, 87, 87, 0.75);
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}
#cas .box {
  border: 1px solid white;
  padding: 0.5rem 1rem 1.75rem 1.75rem;
  max-width: 30rem;
  background: #780032;
  color: white;
}
#cas p {
  font-size: 1.1rem;
  line-height: 1.4;
}
#cas button {
  background: #AB0A0A;
  color: white;
  border: none;
  border-radius: 1rem;
  height: 2rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  transition: background 0.2s, color 0.2s;
  font-weight: 700;
  margin-top: 0.5rem;
  font-size: 1rem;
}
#cas button:hover {
  background: #ECA230;
  color: #000000;
  cursor: pointer;
}

header {
  background: #AB0A0A;
  color: white;
  z-index: 20;
  position: fixed;
  width: 100%;
  max-height: 7.5rem;
  min-height: 5rem;
}
@media (max-width: 1100px) {
  header {
    padding: 0;
    display: flex;
    align-items: center;
  }
  header input[type=checkbox]:checked ~ nav {
    transform: translateX(-100%);
  }
  header input[type=checkbox]:checked ~ label {
    background: #ECA230;
    color: #333;
    border-color: #ECA230;
  }
}
header input[type=checkbox] {
  display: none;
}
header a {
  display: block;
  color: #fff;
  text-decoration: none;
}
header a.button {
  background: #ECA230;
  color: #333;
  margin: 0 0 0 1rem;
  transition: background 0.2s;
  font-weight: 700;
}
header a.button:hover {
  background: #fff;
}
header .topRow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
}
@media (max-width: 1330px) {
  header .topRow {
    padding: 0 2rem;
  }
}
@media (max-width: 1100px) {
  header .topRow {
    align-items: center;
    width: 100%;
  }
}
@media (max-width: 500px) {
  header .topRow {
    padding: 0 1rem;
  }
}
header .logo {
  display: block;
  color: #fff;
  margin: 1rem 0;
  display: block;
  height: 4rem;
}
header .logo img {
  height: 100%;
}
@media (max-width: 1100px) {
  header .logo {
    margin: 0;
  }
}
@media (max-width: 500px) {
  header .logo {
    height: auto;
    width: calc(100% - 8rem);
    padding: 0.5rem 0;
  }
}
@media (max-width: 400px) {
  header .logo {
    height: auto;
    width: calc(100% - 6rem);
  }
}
header nav {
  padding: 0 2rem;
  transform: translate(0);
  font-size: 0.9rem;
  font-weight: 500;
  width: 100%;
  font-weight: 700;
}
header nav > ul {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: stretch;
  background: #780032;
  border-radius: 1rem;
  padding: 0;
}
@media (max-width: 1100px) {
  header nav > ul {
    background: #AB0A0A;
    padding: 1rem;
  }
}
header nav > ul svg {
  height: 1.4em;
  width: 1.5em;
  fill: #333;
  display: block;
  flex: 0 0 auto;
  transition: fill 0.2s;
  margin-left: 0.75rem;
}
header nav > ul > li {
  flex-grow: 1;
  position: relative;
}
header nav > ul > li a {
  border-right: none;
  padding: 1rem 0;
  border-radius: 0.5rem;
  text-align: center;
  width: 100%;
  transition: background 0.2s, color 0.2s;
  display: block;
  white-space: nowrap;
}
header nav > ul > li a:hover {
  background: #ECA230;
  color: #333;
}
header nav > ul > li a:hover svg {
  fill: #fff;
}
header nav > ul > li a.homeLink {
  padding: 0.75rem;
  display: flex;
  justify-content: center;
}
header nav > ul > li a.homeLink span span {
  display: none;
}
@media (max-width: 1100px) {
  header nav > ul > li a.homeLink {
    justify-content: flex-start;
    padding-left: 2rem;
    width: 100%;
  }
  header nav > ul > li a.homeLink span {
    display: flex;
    align-items: center;
  }
  header nav > ul > li a.homeLink span span {
    display: inline;
  }
}
header nav > ul > li.prt > a {
  border-radius: 0.5rem 0.5rem 0 0;
}
header nav > ul > li ul {
  position: absolute;
  top: 100%;
  text-align: left;
  display: none;
  transform: none;
  width: auto;
  background: #ECA230;
  max-width: 20rem;
  padding: 0.5rem 0;
  border-radius: 0 1rem 1rem 1rem;
}
@media (max-width: 1100px) {
  header nav > ul > li ul {
    position: relative;
    display: none;
    top: unset;
    left: unset;
    text-align: left;
    padding: 0;
    max-width: none;
    border-radius: 0 0 0.5rem 0.5rem;
    overflow: hidden;
  }
}
header nav > ul > li ul a {
  padding: 0.75rem 2rem 0.75rem 1.2rem;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #333;
  transition: background 0.2s, color 0.2s;
  border-radius: 0;
}
header nav > ul > li ul a:hover {
  color: #fff;
  background: #780032;
}
@media (max-width: 1200px) {
  header nav > ul > li ul a {
    padding: 0.75rem 1.95vw 0.75rem 1.4vw;
  }
}
@media (max-width: 1100px) {
  header nav > ul > li ul a {
    padding: 0.5em 2rem 0.5rem 2rem;
  }
}
header nav > ul > li:hover ul {
  display: block;
}
header nav > ul > li:hover > a {
  background: #ECA230;
  color: #333;
}
header nav > ul > li:last-of-type ul, header nav > ul > li:nth-last-child(2) ul {
  right: 0;
  border-radius: 0.5rem 0 0.5rem 0.5rem;
}
@media (max-width: 1100px) {
  header nav > ul > li:last-of-type ul, header nav > ul > li:nth-last-child(2) ul {
    border-radius: 0 0 0.5rem 0.5rem;
    overflow: hidden;
  }
}
@media (max-width: 1330px) {
  header nav > ul {
    font-size: 0.9rem;
  }
}
@media (max-width: 1180px) {
  header nav > ul {
    font-size: 0.8rem;
  }
}
@media (max-width: 1100px) {
  header nav > ul {
    font-size: 1rem;
    flex-direction: column;
    justify-content: flex-start;
    width: auto;
    padding-bottom: 2rem;
    overflow-y: scroll;
    transform: none;
    width: 20rem;
  }
  header nav > ul > li {
    flex-grow: 0;
  }
  header nav > ul > li a {
    border: none;
    text-align: left;
    padding: 0.5em 1rem;
    white-space: normal;
  }
  header nav > ul > li a:last-of-type {
    border: none;
  }
}
header nav a.button.inNav {
  display: none;
  margin: 0 auto 2rem;
  width: calc(100% - 2rem);
  text-align: center;
}
@media (max-width: 1100px) {
  header nav a.button.inNav {
    display: block;
  }
}
@media (max-width: 1100px) {
  header nav {
    position: fixed;
    width: auto;
    top: 5rem;
    left: 100%;
    transform: translateX(125%) translateY(0);
    transition: 0.6s transform;
    max-width: 90%;
    height: calc(100vh - 5rem);
    background: #AB0A0A;
    box-shadow: 0 1.5rem 2rem #575757;
    padding: 0;
  }
  header nav.constrain {
    padding: 0;
  }
}
header .button.donate {
  display: block;
  margin-left: 1rem;
}
header .button.donate.rightGroup {
  border-left: none;
  margin-left: 0;
}
@media (max-width: 1100px) {
  header .button.donate {
    display: none;
  }
}
header .button.menu {
  display: none;
  border: 1px solid white;
  padding: 0.5rem 2rem;
  cursor: pointer;
  margin: 0;
}
header .button.menu:hover {
  border-color: #ECA230;
}
@media (max-width: 1100px) {
  header .button.menu {
    display: block;
  }
}
@media (max-width: 400px) {
  header .button.menu {
    padding: 0.5rem 1rem;
  }
}
header .outNav {
  display: flex;
}
@media (max-width: 1100px) {
  header .outNav {
    display: none;
  }
}

#homeTitle {
  height: 32vw;
  min-height: 13rem;
  max-height: 30rem;
  background-position: center bottom;
  position: relative;
  background-size: cover;
}
@media (max-width: 500px) {
  #homeTitle {
    margin-top: 1rem;
  }
}
@media (max-width: 400px) {
  #homeTitle {
    margin-top: 2rem;
  }
}
#homeTitle .col {
  position: relative;
  height: 100%;
}
#homeTitle .constrain {
  position: relative;
  display: flex;
  height: 100%;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
#homeTitle h1 {
  color: #AB0A0A;
  font-style: italic;
  font-weight: 700;
  font-size: 2.4vw;
  line-height: 1.2;
  padding-left: 2rem;
}
@media (max-width: 1200px) {
  #homeTitle h1 {
    font-size: revert;
  }
}
@media (max-width: 42rem) {
  #homeTitle h1 {
    padding-left: 1rem;
  }
}
#homeTitle .button {
  margin-left: 2rem;
}
@media (max-width: 42rem) {
  #homeTitle .button {
    margin: 0 0 0 1rem;
  }
}
#homeTitle:after {
  content: "";
  display: block;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.75) 25%, rgba(255, 255, 255, 0) 75%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.button {
  background: #AB0A0A;
  color: #fff;
  border-radius: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  transition: background 0.2s, color 0.2s;
  font-weight: 700;
  margin: 1rem 1rem 0 0;
}
.button:hover {
  background: #ECA230;
  color: #333;
}

.decorate {
  position: absolute;
}
.decorate.sun {
  width: 10vw;
  height: 10vw;
  top: 100%;
  left: 75%;
  fill: #ECA230;
  transform: translateY(-50%);
}
.decorate.dc4r {
  width: 20vw;
  height: 20vw;
  top: 0%;
  left: 100%;
  fill: #F58220;
  transform: translate(-60%, 5%);
}
.decorate.dc4l {
  width: 25vw;
  height: 25vw;
  top: 10%;
  left: -10%;
  fill: #AB0A0A;
}

.ovHide {
  overflow: hidden;
}

.subPageHead {
  padding-top: 1rem;
}
.subPageHead h1 {
  color: #AB0A0A;
  margin: 3rem 0 0;
  font-size: 3.5rem;
  word-break: break-word;
}
@media (max-width: 1100px) {
  .subPageHead {
    padding: 0;
    min-height: 0;
  }
  .subPageHead h1 {
    font-size: 2.4rem;
  }
}
@media (max-width: 400px) {
  .subPageHead h1 {
    font-size: 1.9rem;
  }
}
@media (max-width: 300px) {
  .subPageHead h1 {
    font-size: 1.5rem;
  }
}
.subPageHead .bc {
  margin: 0.5rem 0 3rem;
  font-size: 0.9rem;
  color: #767676;
}
@media (max-width: 500px) {
  .subPageHead .bc {
    margin: 0.25rem 0 1.5rem;
  }
}
.subPageHead .bc ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.subPageHead .bc ul {
  margin-left: 1rem;
}
.subPageHead .bc a {
  text-decoration-color: #fff;
  color: #767676;
  transition: 0.3s text-decoration-color;
}
.subPageHead .bc a:hover {
  text-decoration-color: #767676;
}

.leftMenu ol.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  color: #767676;
  margin-top: 1rem;
}
.leftMenu ol.breadcrumb ul {
  margin-left: 1rem;
}
.leftMenu ol.breadcrumb a {
  text-decoration-color: #fff;
  color: #767676 !important;
  transition: 0.3s text-decoration-color;
}
.leftMenu ol.breadcrumb a:hover {
  text-decoration-color: #767676;
}

.highlights {
  padding: 4rem 0;
}
@media (max-width: 1000px) {
  .highlights {
    padding: 2rem 1rem 2rem 2rem;
  }
  .highlights .narrow {
    padding: 0;
  }
}

.hlItem .cont {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 3vw;
  position: relative;
}
@media (max-width: 42rem) {
  .hlItem .cont {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
}
.hlItem .cont .image {
  display: block;
  width: 50%;
  aspect-ratio: 1.65/1;
  flex-shrink: 0;
}
.hlItem .cont .image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  margin: 0;
}
.hlItem .cont h1 {
  color: #AB0A0A;
}
.hlItem .cont a.heading {
  text-decoration-color: transparent;
  transition:  .2s text-decoration-color;
}
.hlItem .cont a.heading:hover {
  text-decoration-color: #AB0A0A;
}
.hlItem .cont a {
  background: #AB0A0A;
}
.hlItem .cont a:hover {
  background: #ECA230;
  color: #333;
}

.slick-prev {
  left: -2.5rem;
}
@media (max-width: 1000px) {
  .slick-prev {
    left: -1.5rem;
  }
}

.slick-next {
  right: -2.5rem;
}

.slick-prev:before,
.slick-next:before {
  color: #AB0A0A;
  opacity: 1;
  font-size: 1.5rem;
  transition: 0.2s color;
}

.slick-prev:hover:before,
.slick-next:hover:before {
  color: #F58220;
}

.slick-dots {
  bottom: -3rem;
}
.slick-dots li {
  margin: 0;
}
.slick-dots li button:before {
  color: #AB0A0A;
  opacity: 0.5;
  font-size: 0.75rem;
}
.slick-dots li.slick-active button:before {
  opacity: 1;
  color: #AB0A0A;
}

.slick-prev.slick-disabled:before, .slick-next.slick-disabled:before {
  opacity: 0;
}

@media (max-width: 1100px) {
  #slider {
    width: calc(100% - 2.5rem);
  }
}
.latestNews h1 {
  color: #AB0A0A;
  padding: 0;
  margin: 0;
}
.latestNews .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.latestNews .title a {
  color: #AB0A0A;
  font-weight: 700;
  padding: 0;
  margin: 0;
  text-decoration: none;
  transition: 0.2s color;
}
.latestNews .title a span {
  text-decoration: underline;
}
.latestNews .title a:after {
  margin-left: 0.25rem;
  color: #AB0A0A;
  font-size: 1.5rem;
  transition: 0.2s color;
  content: "→";
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  transform: translateY(0.1em);
}
.latestNews .title a:hover {
  color: #F58220;
}
.latestNews .title a:hover:after {
  color: #F58220;
}

.newsItems {
  display: flex;
  gap: 2rem;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 4rem;
}
@media (max-width: 42rem) {
  .newsItems {
    flex-wrap: wrap;
  }
  .newsItems a {
    flex: 0 0 calc(50% - 1rem);
  }
}
.newsItems h2 {
  font-weight: 700 !important;
  font-size: 1.5rem !important;
  color: #333;
}
@media (max-width: 1000px) {
  .newsItems h2 {
    font-size: 1.25rem !important;
  }
}
.newsItems p {
  margin: 1rem 0 0.75rem;
}
.newsItems .image {
  display: block;
  width: 100%;
  aspect-ratio: 1.65/1;
  background: red;
  flex-shrink: 0;
}
.newsItems .image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  margin: 0;
}
.newsItems .meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 0.85rem;
  color: #333;
}
.newsItems a {
  width: 100%;
  text-decoration: none;
}
.newsItems a h2 {
  text-decoration: underline;
  text-decoration-color: #fff;
  transition: 0.2s text-decoration-color;
}
.newsItems a:hover h2 {
  text-decoration-color: #333;
}
.newsItems.inPage {
  flex-wrap: wrap;
  gap: 1.5rem;
}
.newsItems.inPage > a {
  flex: 0 0 calc(33% - 1rem);
  margin-bottom: 2rem;
}
.newsItems.inPage h2 {
  margin-top: 0 !important;
}

.caps {
  text-transform: uppercase;
}

.col {
  overflow-wrap: anywhere;
  z-index: 5;
  position: relative;
}

.col2 .dashItem,
.col4 .dashItem {
  background-color: #6fa48c;
  color: #fff;
}
.col2 .dashItem:hover,
.col4 .dashItem:hover {
  background-color: #145c65;
}
.col2 svg.border,
.col4 svg.border {
  color: #e3e1de;
}

.latestNews .latestItem {
  display: inline-flex;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  color: #145c65;
  text-decoration: none;
  transition: all 0.75s;
  padding: 0.75rem;
  margin: 0;
  vertical-align: top;
  border-radius: 0.5rem;
}
@media (max-width: 750px) {
  .latestNews .latestItem {
    margin: 0;
    padding: 0.5rem;
  }
}
@media (max-width: 600px) {
  .latestNews .latestItem {
    width: 100%;
    margin-bottom: 0.75rem;
  }
}
.latestNews .latestItem img {
  width: 5rem;
  margin-right: 0.75rem;
  display: block;
  -webkit-mask-image: url(/assets/images/NewsPhotoMask.svg);
  mask-image: url(/assets/images/NewsPhotoMask.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.latestNews .latestItem h3 {
  font-weight: 500;
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
  text-transform: uppercase;
}
.latestNews .latestItem h4 {
  color: rgba(51, 51, 51, 0.6);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  transition: color 0.4s;
}
.latestNews .latestItem p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.2;
  color: #333;
  transition: color 0.4s;
}
.latestNews .latestItem:hover {
  background: #f3f2f1;
}
@media (max-width: 350px) {
  .latestNews .latestItem {
    flex-direction: column;
    align-items: center;
  }
  .latestNews .latestItem h3, .latestNews .latestItem h4 {
    text-align: center;
  }
  .latestNews .latestItem img {
    margin: 0 auto 0.5rem;
  }
}

@media (max-width: 600px) {
  .latestItem + hr {
    display: none;
  }
}
.newsList {
  display: inline-flex;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  border-radius: 0.5rem;
  background-position: center center;
  color: #145c65;
  text-decoration: none;
  transition: all 0.75s;
  padding: 1rem;
  vertical-align: top;
}
@media (max-width: 400px) {
  .newsList {
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
  }
  .newsList img {
    margin: 0 0 0.5rem 0;
  }
  .newsList h2, .newsList h4 {
    text-align: center;
  }
}
.newsList img {
  width: 5rem;
  margin-right: 0.75rem;
  display: block;
  -webkit-mask-image: url(/assets/images/NewsPhotoMask.svg);
  mask-image: url(/assets/images/NewsPhotoMask.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.newsList h2 {
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 0.1rem;
  text-transform: uppercase;
}
.newsList h4 {
  color: rgba(51, 51, 51, 0.7);
  margin-bottom: 0.5rem;
  transition: color 0.4s;
}
.newsList p {
  margin: 0;
  line-height: 1.1;
  color: #333;
  transition: color 0.4s;
}
.newsList:hover {
  background: #f3f2f1;
}

@media (max-width: 500px) {
  #leadership {
    padding: 0;
  }
}
#leadership > div {
  flex-wrap: wrap;
  gap: 3rem;
}
@media (max-width: 500px) {
  #leadership > div {
    padding: 0;
    gap: 2rem;
  }
}
#leadership > div > div {
  flex: 0 0 calc(50% - 1.5rem);
}
@media (max-width: 500px) {
  #leadership > div > div {
    flex: 0 0 calc(50% - 1.5rem);
  }
}
@media (max-width: 400px) {
  #leadership > div > div {
    flex: 0 0 100%;
  }
}
#leadership > div h1,
#leadership > div h2 {
  color: #333;
  font-size: 1.25rem;
}
#leadership > div h1 {
  font-weight: 700;
}
#leadership > div h1 + h2 {
  margin: 0 !important;
}
#leadership > div a {
  text-decoration-color: transparent;
  transition: text-decoration-color 0.4s;
}
#leadership > div a:hover {
  text-decoration-color: #333;
}

.podMark {
  position: absolute;
  bottom: -3rem;
  left: calc((100% - 60rem) / 4);
  transform: translateX(-50%);
  width: 20%;
  max-height: 20rem;
  z-index: -1;
}

.insta h3 {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1.75rem;
  color: #145c65;
  text-align: center;
  padding: 0.75rem 0 0.5rem;
}
.insta h3 span {
  color: #6fa48c;
}
.insta hr {
  border: none;
  height: 2px;
  max-width: 52%;
  background: #e3e1de;
  color: #e3e1de;
}

.c1 .instaPosts {
  display: flex;
}
.c1 .instaPosts .col {
  padding: 0 1rem;
}

.instaItem {
  padding: 1rem 0;
  margin: 0 auto;
  text-decoration: none;
  width: 100%;
  transition: all 0.4s;
  display: block;
  max-width: 15rem;
}
.instaItem .image {
  position: relative;
}
.instaItem img {
  width: 90%;
  margin: 0 auto;
  display: block;
}
.instaItem img.border {
  width: 100%;
  position: absolute;
  top: -5%;
  left: 50%;
  transform: translateX(-50%);
}
.instaItem img.border svg {
  fill: currentColor;
}
.instaItem .details {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 100%;
  color: #fff;
  opacity: 0;
  text-align: center;
  transition: opacity 0.4s;
  background: rgba(20, 92, 101, 0.9);
  -webkit-mask-image: url(/assets/images/NewsPhotoMask.svg);
  mask-image: url(/assets/images/NewsPhotoMask.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.instaItem .details p {
  display: flex;
  align-items: stretch;
}
.instaItem .details p span {
  width: 50%;
  background: blue;
}
.instaItem .details img {
  height: 1rem;
  width: 1rem;
  margin-right: 0.33rem;
  display: inline-block;
}
.instaItem .details .numbers {
  display: flex;
  justify-content: space-around;
  width: 60%;
}
.instaItem .details span {
  display: inline-flex;
  align-items: center;
}
.instaItem:hover .details {
  opacity: 1;
}

.icon {
  width: 7rem;
  height: auto;
  margin: auto;
  display: block;
}
@media (max-width: 600px) {
  .icon {
    width: 18vw;
  }
}

main {
  flex-grow: 1;
  margin-top: 7.5rem;
  position: relative;
}
main .watermark {
  width: calc((100vw - 65rem) / 2 * 0.9);
  position: fixed;
  top: 50%;
  left: 0;
  text-align: right;
}
main .watermark img {
  width: 12.5vw;
  min-width: 17.5rem;
  right: 0;
  position: absolute;
}
@media (max-width: 1100px) {
  main {
    margin-top: 4rem;
  }
}
@media (max-width: 400px) {
  main {
    margin-top: 2rem;
  }
}

div.content {
  max-width: 74rem;
  margin: auto;
  padding: 0rem 2rem 3rem;
}
div.content.wide {
  max-width: 74rem;
}
div.content.wide .pageContent {
  margin-left: 15rem;
}
@media (max-width: 750px) {
  div.content {
    padding-bottom: 1rem;
  }
}
@media (max-width: 400px) {
  div.content {
    padding: 1rem;
  }
}
div.content.fullWidth {
  max-width: none;
  padding: 0;
}
div.content.fullWidth.resourceContainer {
  max-width: 80rem;
}
div.content.fullWidth .pageContent {
  margin: 0 auto;
  max-width: none;
}
div.content.fullWidth.customHead .pageContent>*:first-child {
	padding-top: 4rem
}
div.content .meAligner {
  display: none;
}
@media (max-width: 750px) {
  div.content .meAligner {
    display: flex;
    justify-content: flex-start;
    padding-top: 2rem;
    margin-top: 1rem;
    border-top: 1px solid #f3f2f1;
  }
}
@media (max-width: 1000px) {
  div.content .meAligner.resourceTags {
    display: flex;
    justify-content: center;
    padding-top: 2rem;
    margin-top: 1rem;
    border-top: 1px solid #f3f2f1;
  }
}
div.content .leftMenu {
  position: sticky;
  top: 12rem;
  width: 13rem;
  float: left;
  margin-bottom: 2rem;
}
div.content .leftMenu.mobEnd {
  display: none;
}
@media (max-width: 1100px) {
  div.content .leftMenu {
    top: 7rem;
  }
}
@media (max-width: 750px) {
  div.content .leftMenu {
    display: none;
  }
  div.content .leftMenu.mobEnd {
    display: block;
    width: 20rem;
  }
}
div.content .leftMenu h2 {
  color: #333;
  font-size: 1rem;
  width: 100%;
  text-transform: uppercase;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #333;
  font-weight: 700;
  transition: color 0.4s;
}
div.content .leftMenu svg {
  height: 1.4em;
  width: 1.5em;
  fill: #AB0A0A;
  display: block;
  flex: 0 0 auto;
  transition: fill 0.4s;
}
div.content .leftMenu ul ul {
  display: none;
  padding-bottom: 0.5rem;
}
div.content .leftMenu ul ul li {
  border-bottom: none;
  padding: 0.5rem 0 0;
}
div.content .leftMenu ul ul li a {
  padding-left: 1rem;
}
div.content .leftMenu ul li {
  padding: 0 0 0.5rem;
}
div.content .leftMenu ul li.here > a {
  font-weight: 700;
  text-decoration-color: #AB0A0A;
}
div.content .leftMenu ul li.active ul {
  display: block;
}
div.content .leftMenu a {
  text-decoration-color: transparent;
  color: #AB0A0A;
  font-weight: 400;
  transition: text-decoration-color 0.4s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
div.content .leftMenu a:hover {
  text-decoration-color: #AB0A0A;
}
div.content .leftMenu a:hover svg {
  fill: #ECA230;
}
div.content .leftMenu.resourceTags ul li:hover ul {
  display: block;
}
@media (max-width: 1000px) {
  div.content .leftMenu.resourceTags {
    width: 100%;
    float: none;
    display: block;
    position: relative;
    top: 0;
  }
  div.content .leftMenu.resourceTags + .pageContent {
    margin-left: 0;
  }
}
div.content .leftMenu > a {
  padding: 0.25rem 0;
}
div.content .leftMenu > a:first-of-type {
  margin-top: 0.5rem;
}
div.content .leftMenu > a:last-of-type {
  margin-bottom: 0.5rem;
}
div.content .pageContent {
  margin-left: 20rem;
}
@media (max-width: 1200px) {
  div.content .pageContent {
    margin-left: 18rem;
  }
}
@media (max-width: 1000px) {
  div.content .pageContent {
    margin-left: 15rem;
  }
}
@media (max-width: 750px) {
  div.content .pageContent {
    width: 100%;
    max-width: none;
    margin: auto;
    margin-left: 0;
  }
}
div.content .pageContent h1 {
  color: #AB0A0A;
  font-weight: 700;
  font-size: 2.5rem;
  margin: 0.75em 0 0.5em;
}
div.content .pageContent h1:first-child {
  margin-top: 0;
}
@media (max-width: 1000px) {
  div.content .pageContent h1 {
    font-size: 1.75em;
  }
}
div.content .pageContent h2 {
  color: #333;
  font-weight: 500;
  font-size: 2rem;
  margin: 0.75em 0 0.5em;
  line-height: 1.25;
}
div.content .pageContent h2:first-child {
  margin-top: 0;
}
@media (max-width: 1000px) {
  div.content .pageContent h2 {
    font-size: 1.5em;
  }
}
div.content .pageContent p + h2 {
  margin-top: 1em;
}
div.content .pageContent h3 {
  color: #333;
  font-weight: 500;
  font-size: 1.5rem;
  margin: 0.75em 0 0.5em;
  line-height: 1.25;
}
@media (max-width: 1000px) {
  div.content .pageContent h3 {
    font-size: 1.25em;
  }
}
div.content .pageContent h4 {
  color: #333;
  font-weight: 500;
  font-size: 1.1rem;
  margin: 0.75em 0 0.5em;
  line-height: 1.25;
}
div.content .pageContent p + h3 {
  margin-top: 1em;
}
div.content .pageContent p {
  font-weight: 100;
}
div.content .pageContent p:first-of-type {
  margin-top: 0;
}
div.content .pageContent p.error {
  color: #c0311a;
  font-weight: bold !important;
}
div.content .pageContent sup {
  font-size: 75%;
  vertical-align: super;
}
div.content .pageContent ul,
div.content .pageContent ol {
  padding: 0 0 1rem 1.5rem;
  font-weight: 100;
  line-height: 1.3;
}
div.content .pageContent ul {
  list-style: disc;
}
div.content .pageContent ul ul {
  list-style: circle;
  margin-top: 0.25rem;
}
div.content .pageContent ul + p {
  margin-top: 0;
}
div.content .pageContent ol {
  list-style: decimal;
}
div.content .pageContent li {
  margin-bottom: 0.25rem;
}
div.content .pageContent li:last-of-type {
  margin-bottom: 0;
}
div.content .pageContent strong, div.content .pageContent b {
  font-weight: 500;
}
div.content .pageContent em {
  font-style: italic;
  color: inherit;
}
div.content .pageContent a {
  color: #AB0A0A;
  transition: color 0.4s;
}
div.content .pageContent a:hover {
  color: #f4811f;
}
div.content .pageContent a.button {
  color: #fff;
  background: #AB0A0A;
  transition: background 0.4s;
}
div.content .pageContent a.button svg {
  height: 1.4em;
  width: 1.5em;
  fill: #fff;
  display: block;
  transition: fill 0.4s;
  margin-left: 0.5rem;
}
div.content .pageContent a.button:hover {
  background: #ECA230;
}
div.content .pageContent img {
  max-width: 100%;
  max-height: 40rem;
  margin: auto;
  display: block;
}
div.content .pageContent img.ic75 {
	max-width: 75%
}

div.content .pageContent img.ic66 {
	max-width: 66%
}

div.content .pageContent img.ic50 {
	max-width: 50%
}

div.content .pageContent img.ic33 {
	max-width: 33%
}

div.content .pageContent img.ic25 {
	max-width: 25%
}

div.content .pageContent .roundedBox img {
	margin: 0
}
div.content .pageContent > .c1 > .col, div.content .pageContent > .c2, div.content .pageContent > .c3, div.content .pageContent > .c4, div.content .pageContent > .c5 {
  padding: 0;
}
div.content .pageContent .resourceBoxes h3 {
  margin: 0;
}
div.content .pageContent .resourceBoxes a {
  color: #000000;
  text-decoration: none;
  transition: all 0.4s;
}
div.content .pageContent .resourceBoxes a .image {
  transition: opacity 0.4s;
}
div.content .pageContent .resourceBoxes a.external {
  width: calc(50% - 1rem);
}
@media (max-width: 500px) {
  div.content .pageContent .resourceBoxes a.external {
    width: 80%;
  }
}
div.content .pageContent .resourceBoxes a:hover {
  background: #AB0A0A;
}
div.content .pageContent .resourceBoxes a:hover h3,
div.content .pageContent .resourceBoxes a:hover span {
  color: #fff;
}
div.content .pageContent .resourceBoxes a:hover .image {
  opacity: 0.75;
}
div.content div.pageTitle {
  position: relative;
  margin: 0 0 3rem;
}
@media (max-width: 750px) {
  div.content div.pageTitle {
    margin: 0 0 2rem;
  }
}
div.content div.pageTitle .image {
  width: 100%;
}
div.content div.pageTitle .border {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
}
div.content table {
  width: 100% !important;
  border-collapse: collapse;
}
div.content table th {
  font-weight: 700;
  color: #fff;
  background: #AB0A0A;
  font-size: 1.3rem;
  padding: 0.5em;
  text-align: left;
}
div.content table td {
  font-weight: 100;
  padding: 0.75rem;
}
div.content table td span {
  display: block;
  color: #AB0A0A;
  padding-top: 0.25em;
}
div.content table tr:nth-of-type(even) {
  background: rgba(245, 130, 32, 0.15);
}

div.videoPlayerEmbed {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
  margin: 1rem 0 2rem;
}
div.videoPlayerEmbed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.arrowBack {
  height: 1rem;
  width: 1rem;
  margin-right: 0.75rem;
}

.arrowForward {
  height: 1rem;
  width: 1rem;
  margin-left: 0.5rem;
}

footer {
  background: #AB0A0A;
  color: #fff;
  z-index: 10;
  position: relative;
}
footer .aoc > div {
  justify-content: flex-start;
}
footer .logo {
  width: 100%;
  display: block;
  flex-shrink: 0;
}
@media (max-width: 750px) {
  footer .logo {
    max-width: 20rem;
    margin: auto;
  }
}
footer .logo img {
  width: 100%;
  height: 100%;
}
footer .acknowledgement {
  font-size: 0.9rem;
  max-width: 40vw;
}
@media (max-width: 1000px) {
  footer .acknowledgement {
    max-width: 50vw;
  }
}
@media (max-width: 750px) {
  footer .acknowledgement {
    max-width: none;
  }
}
footer .logos {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  max-width: 20rem;
}
footer .logos > div {
  display: flex;
  width: 100%;
}
footer .logos > div > div {
  flex: 0 0 50%;
}
footer .logos img {
  width: 90%;
  margin: auto;
}
footer .footBar {
  background: #780032;
}
@media (max-width: 1000px) {
  footer .footBar .twothree > div {
    gap: 3rem !important;
  }
}
footer a {
  color: #fff;
  transition: color 0.4s;
}
footer a:hover {
  color: #ECA230;
}
footer a.button {
  background: #ECA230;
  color: #333;
}
footer a.button:hover {
  background: #fff;
}
footer nav {
  margin-bottom: 1rem;
}
footer nav a {
  font-weight: 700;
  line-height: 1.3;
}
footer p {
  margin: 0 0 1rem;
}
footer .social a {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  margin-bottom: 1rem;
  transition: color 0.4s;
  word-break: break-all;
}
footer .social a:hover {
  color: #ECA230;
}
footer .social a:hover svg {
  fill: #ECA230;
}
footer .social a svg {
  height: 1.8rem;
  width: 2em;
  margin-right: 0.5em;
  fill: #fff;
  transition: 0.4s fill;
}
footer .baseline a {
  text-decoration-color: transparent;
  transition: text-decoration-color 0.2s;
  margin-right: 2rem;
}
footer .baseline a:hover {
  color: #fff;
  text-decoration-color: #fff;
}
footer .twothree > div {
  gap: 6vw !important;
}
@media (max-width: 1330px) {
  footer .twothree > div {
    flex-direction: column-reverse;
    align-items: center;
    gap: 4rem !important;
  }
  footer .twothree > div .c3.even > div > div[class^=col] {
    flex: 0 0 auto;
  }
  footer .twothree > div .c3 > div {
    justify-content: space-between;
    gap: 4rem;
  }
}
@media (max-width: 1330px) and (max-width: 750px) {
  footer .twothree > div .c3 > div {
    gap: 2rem;
    flex: 1 1 auto;
  }
}
@media (max-width: 1330px) and (max-width: 700px) {
  footer .twothree > div .c3 > div {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media (max-width: 1000px) {
  footer .twothree > div {
    gap: 1rem !important;
  }
}

.texGreen {
  background: #145c65 url(/assets/images/BGTexDGreen.png);
  background-size: cover;
  color: white;
}
.texGreen.c1 .col {
  padding: 0;
}

.texGrey {
  background: #e3e1de url(/assets/images/BGTexGrey.png);
  background-size: cover;
}

.colGrey {
  background: #e3e1de;
}

.constrain {
  max-width: 80rem;
  margin: auto;
  padding: 0 2rem;
}
.constrain.back {
  margin-top: 3rem;
  padding: 0;
}
@media (max-width: 600px) {
  .constrain {
    padding: 0 1rem;
  }
}

.narrow {
  max-width: 60rem;
  margin: auto;
  padding: 0 2rem;
}
@media (max-width: 500px) {
  .narrow {
    padding: 0 1rem;
  }
}

.content.constrain {
  max-width: 50rem;
  margin: auto;
  padding: 3rem 0;
}

.content.narrow {
  max-width: 40rem;
  margin: auto;
  padding: 3rem 0;
}
@media (max-width: 42rem) {
  .content.narrow {
    padding: 2rem;
  }
}

.constWide>div {
	max-width: 80rem;
	margin: auto
}

.constMedium>div {
	max-width: 60rem;
	margin: auto
}

.constNarrow>div {
	max-width: 40rem;
	margin: auto
}

.c2 > div,
.c3 > div,
.c4 > div,
.c5 > div {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.c1,
.c2,
.c3,
.c4,
.c5 {
  position: relative;
}

.c1 .col {
  padding: 0 2rem;
}
@media (max-width: 1000px) {
  .c1 .col {
    padding: 0;
  }
}

@media (max-width: 1000px) {
  .pageContent .c2 > div {
    padding: 0;
    flex-direction: column;
    gap: 2rem;
  }
  .pageContent .c2 > div.brRev {
    flex-direction: column-reverse;
  }
}
@media (max-width: 400px) {
  .pageContent {
    gap: 1rem;
  }
}

.c2 {
  padding: 0 2rem;
}
@media (max-width: 750px) {
  .c2 {
    flex-direction: column-reverse;
  }
  .c2 > div {
    flex-direction: column;
    gap: 2rem;
  }
  .c2 > div.brRev {
    flex-direction: column-reverse;
  }
  .c2 > div > .col1, .c2 > div > .col2 {
    width: 100%;
    padding-bottom: 1rem;
  }
}

.c2.even > div > div[class^=col] {
  flex: 0 0 48%;
}
@media (max-width: 750px) {
  .c2.even > div > div[class^=col] {
    flex: none;
    width: 100%;
  }
}

.c2.onetwo > div {
  display: flex;
  gap: 2rem;
}
.c2.onetwo > div > .col1 {
  flex: 0 0 33%;
}
.c2.onetwo > div > .col2 {
  flex: 0 0 67%;
}
@media (max-width: 750px) {
  .c2.onetwo > div > .col1 {
    width: 100%;
  }
  .c2.onetwo > div > .col2 {
    width: 100%;
  }
}

.c2.twoone > div {
  display: flex;
  gap: 2rem;
}
.c2.twoone > div > .col1 {
  flex: 0 0 67%;
}
.c2.twoone > div > .col2 {
  flex: 0 0 35%;
}
@media (max-width: 750px) {
  .c2.twoone > div > .col1 {
    width: 100%;
  }
  .c2.twoone > div > .col2 {
    width: 100%;
  }
}

.c2.twothree > div {
  display: flex;
  gap: 2rem;
  width: 100%;
}
.c2.twothree > div > .col1 {
  flex: 0 0 30%;
}
.c2.twothree > div > .col2 {
  flex: 0 0 70%;
}
@media (max-width: 750px) {
  .c2.twothree > div > .col1 {
    width: 100%;
  }
  .c2.twothree > div > .col2 {
    width: 100%;
  }
}

.c2.twofour > div {
  display: flex;
  gap: 2rem;
}
.c2.twofour > div > .col1 {
  flex: 0 0 25%;
}
.c2.twofour > div > .col2 {
  flex: 0 0 75%;
}
@media (max-width: 750px) {
  .c2.twofour > div > .col1 {
    width: 100%;
  }
  .c2.twofour > div > .col2 {
    width: 100%;
  }
}

.c2.even.padCols > div[class^=col] {
  flex: 0 0 calc(50% - 1rem);
}
@media (max-width: 750px) {
  .c2.even.padCols > div[class^=col] {
    flex: none;
    width: 100%;
    margin-bottom: 2rem;
  }
  .c2.even.padCols > div[class^=col]:last-of-type {
    margin-bottom: 0;
  }
}
.c3 div[class^=col] {
	flex: 0 0 30%
}
.c4.even div[class^=col] {
	flex: 0 0 25%
}
@media (max-width: 1000px) {
  .c4.even > div > div[class^=col] {
    flex: 0 0 50%;
    padding-bottom: 2rem;
  }
}
@media (max-width: 500px) {
  .c4.even > div > div[class^=col] {
    flex: 0 0 100%;
    padding-bottom: 1rem;
  }
}

.c4.even.padCols > div > div[class^=col] {
  flex: 0 0 calc(25% - 1rem);
}
@media (max-width: 1000px) {
  .c4.even.padCols > div > div[class^=col] {
    flex: 0 0 calc(50% - 1rem);
    padding-bottom: 2rem;
  }
}
@media (max-width: 500px) {
  .c4.even.padCols > div > div[class^=col] {
    flex: 0 0 100%;
    padding-bottom: 1rem;
  }
}

.c5.even > div > div[class^=col] {
  flex: 0 0 20%;
}
@media (max-width: 1000px) {
  .c5.even > div > div[class^=col] {
    padding-bottom: 2rem;
  }
}

.c5.padCols > div > div[class^=col] {
  flex: 1 1 auto;
  padding: 0 1rem;
}
@media (max-width: 1000px) {
  .c5.padCols > div > div[class^=col] {
    padding-bottom: 2rem;
  }
}

.c5.even.padCols > div > div[class^=col] {
  flex: 0 0 calc(20% - 1rem);
}
@media (max-width: 1000px) {
  .c5.even.padCols > div > div[class^=col] {
    padding-bottom: 2rem;
  }
}

.sp1 {
  height: 1rem;
}

.sp2 {
  height: 2rem;
}

.sp3 {
  height: 3rem;
}

.sp4 {
  height: 4rem;
}

.sp5 {
  height: 5rem;
}

.member {
  margin-bottom: 2rem;
  background: rgba(171, 10, 10, 0.05);
  padding: 0.5em 1.5rem;
}
.member .addresses {
  display: flex;
  margin-bottom: 0.5rem;
}
.member .addresses span {
  width: 33.33%;
  flex-shrink: 0;
  padding-right: 1rem;
}
.member .contacts {
  display: flex;
  margin-bottom: 0.5rem;
}
.member .contacts a {
  width: 33.33%;
  flex-shrink: 0;
  padding-right: 1rem;
}
.member .internet {
  display: flex;
  margin-bottom: 0.5rem;
}
.member .internet a {
  width: 50%;
  flex-shrink: 0;
  padding-right: 1rem;
}
.member .logoBox {
  max-width: 12rem;
  aspect-ratio: 12/7;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: #fff;
  width: 100%;
}
.member .logo {
  max-width: 100%;
  max-height: 20rem !important;
  margin: auto;
}
.member a {
  text-decoration: none;
}
.member h4 {
  margin-bottom: 0;
}
.member p {
  margin: 0;
}
.member .c1 .col {
  padding: 0;
}
.member .c1 .col p {
  margin-bottom: 0.5em;
}
@media (max-width: 1000px) {
  .member .addresses {
    flex-wrap: wrap;
  }
  .member .addresses span {
    order: 2;
    width: 50%;
  }
  .member .addresses .logoBox {
    order: 1;
    width: 100%;
    max-width: none;
    justify-content: flex-start;
    margin-bottom: 1rem;
  }
  .member .contacts {
    flex-wrap: wrap;
    margin-bottom: 0;
  }
  .member .contacts a {
    width: 50%;
    margin-bottom: 1rem;
  }
}
@media (max-width: 500px) {
  .member .addresses {
    margin-bottom: 0;
  }
  .member .addresses span {
    width: 100%;
    margin-bottom: 1rem;
  }
  .member .contacts {
    margin-bottom: 0;
  }
  .member .contacts a {
    width: 100%;
    margin-bottom: 1rem;
  }
  .member .internet {
    flex-wrap: wrap;
    margin-bottom: 0;
  }
  .member .internet a {
    width: 100%;
    margin-bottom: 1rem;
  }
}

div.content .pageContent .members h4 {
  color: #575757;
  padding-top: 0;
  margin-top: 0;
  font-weight: 400;
  font-size: 0.8rem;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 0;
}
div.content .pageContent .members p {
  font-weight: 400;
  margin: 1rem 0;
}
div.content .pageContent .members hr {
  height: 1px;
}

div.content .pageContent .member h4 {
  margin-bottom: 0;
}
div.content .pageContent .member .contacts h4,
div.content .pageContent .member .internet h4 {
  margin-top: 0;
}
div.content .pageContent .member p {
  font-weight: 400;
  margin: 0 0 1rem 0;
}
div.content .pageContent .member .internet p {
  margin-bottom: 0.5rem;
}
div.content .pageContent .member hr {
  height: 1px;
  margin-bottom: 1rem;
  border: none;
  color: #575757;
  background: #575757;
}

@media (max-width: 1200px) {
  .calnews {
    flex-wrap: wrap;
  }
  .calnews div.image {
    width: 9rem;
  }
}
@media (max-width: 1200px) and (max-width: 600px) {
  .calnews div.image {
    width: 8rem;
  }
}
@media (max-width: 1200px) {
  .calnews div.details {
    width: 100%;
  }
}
@media (max-width: 1000px) {
  .c4,
  .c5 {
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
}
.bgPurple {
  background: #780032;
  color: #fff;
}

.pBot {
  padding-bottom: 2rem;
}
.pBot.p2x {
  padding-bottom: 4rem;
}

.pBoth {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.pBoth.p2x {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.pTop {
  padding-top: 2rem;
}
.pTop.p2x {
  padding-top: 4rem;
}

@media (max-width: 1000px) {
  .pBot {
    padding-bottom: 1rem;
  }
  .pBot.p2x {
    padding-bottom: 2rem;
  }
  .pBoth {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .pBoth.p2x {
    padding-bottom: 2rem;
    padding-top: 2rem;
  }
  .pTop {
    padding-top: 1rem;
  }
  .pTop.p2x {
    padding-top: 2rem;
  }
}
.resourceSearch {
  position: relative;
  max-width: 30rem;
  margin: auto;
}
.resourceSearch input {
  width: 100%;
  border: 2px solid rgba(51, 51, 51, 0.25);
  width: 100%;
  height: 2rem;
  font-size: 1rem;
  padding: 0 1rem;
  border-radius: 1rem;
  outline-color: #575757;
}
.resourceSearch button {
  padding: 0.25rem 0.75rem;
  margin: 0;
  border: none;
  background: none;
  position: absolute;
  top: 0.625rem;
  right: 0;
  cursor: pointer;
  border-radius: 0.875rem;
  height: 1.75rem;
}
.resourceSearch button svg {
  height: 1.25rem;
  width: 1.25rem;
}
.resourceSearch button:hover svg {
  fill: #333;
}
@media (max-width: 1000px) {
  .resourceSearch button {
    right: 0.2rem;
  }
}

div.searchTopics {
  overflow: hidden;
}
div.searchTopics div {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  background: #AB0A0A;
  border-radius: 1rem;
  column-gap: 0.5rem;
  overflow: hidden;
  padding: 0 1rem;
}
div.searchTopics div a {
  text-align: center;
  text-decoration: none;
  color: #fff !important;
  transition: all 0.4s;
  line-height: 2rem;
  padding: 0 0.5rem;
}
div.searchTopics div a:hover {
  background: #ECA230;
}
div.searchTopics div a.here {
  background: #145c65;
  color: #fff;
}
div.searchTopics div a.notHere {
  color: red;
}

p.fine {
  font-size: 0.75rem;
  color: #145c65;
  margin-bottom: 0.25rem;
}

p.mapLegend {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0.5rem 0 0;
  font-size: 0.9rem;
  line-height: 1.1;
}
p.mapLegend img {
  width: 10px;
  margin-right: 10px;
}

.resourceBoxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  max-width: 80rem;
  gap: 2rem;
  margin: auto;
  width: 100%;
}
.resourceBoxes a {
  text-decoration-color: transparent;
  width: 23%;
}
.resourceBoxes a.audio .roundedBox {
  padding-top: 5rem;
}
@media (max-width: 1000px) {
  .resourceBoxes a {
    width: 32%;
    margin: 0 0 1rem 0;
  }
}
@media (max-width: 600px) {
  .resourceBoxes a {
    width: 48%;
    margin: 0 0 1.5rem 0;
  }
}
@media (max-width: 500px) {
  .resourceBoxes a {
    width: 100%;
    max-width: 23rem;
    margin: 0 auto 1rem;
  }
}
.resourceBoxes .roundedBox {
  background: rgba(51, 51, 51, 0.1);
  border: 1px solid rgba(51, 51, 51, 0.25);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: text-decoration-color 0.4s;
}
.resourceBoxes .roundedBox:hover a {
  background: #333;
  color: #fff;
}
.resourceBoxes h3 {
  font-weight: 500;
  color: #333;
  font-size: 1.1rem;
  flex-grow: 1;
  transition: 0.4s color;
}
.resourceBoxes span {
  transition: 0.4s color;
}
.resourceBoxes .image img {
  width: 100%;
  aspect-ratio: 2/1;
  object-fit: cover;
  object-position: center;
}
.resourceBoxes .text {
  padding: 1rem;
}
.resourceBoxes svg.border {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #6fa48c;
  transition: 0.4s color;
}
.resourceBoxes span {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #333;
  margin-top: 1rem;
  text-transform: uppercase;
}
.resourceBoxes span svg {
  flex-shrink: 0;
  height: 1.5rem;
  width: 1.5rem;
  margin: 0 0 0 0.5rem;
}
.resourceBoxes.external {
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  padding: 0;
}
.resourceBoxes.external a {
  height: auto;
  margin-bottom: 1rem;
}
.resourceBoxes.external a:only-child {
  width: 50%;
  margin: auto;
}
@media (max-width: 600px) {
  .resourceBoxes.external {
    flex-wrap: wrap;
  }
  .resourceBoxes.external a {
    width: 100%;
    max-width: none;
  }
}
.resourceBoxes.members {
  align-items: stretch;
}
.resourceBoxes.members .roundedBox {
  height: auto;
  display: flex;
  justify-content: flex-start;
  margin: 0;
  flex: 0 0 48%;
}
@media (max-width: 600px) {
  .resourceBoxes.members .roundedBox {
    width: 100%;
    text-align: center;
  }
}
.resourceBoxes.members .roundedBox .details {
  flex-grow: 1;
  padding: 1rem;
}
@media (max-width: 1100px) {
  .resourceBoxes.members .roundedBox {
    flex-direction: column;
  }
  .resourceBoxes.members .roundedBox .image {
    position: relative;
  }
}
@media (max-width: 750px) {
  .resourceBoxes.members .roundedBox {
    flex: 0 0 60%;
  }
}
@media (max-width: 600px) {
  .resourceBoxes.members .roundedBox {
    flex: 0 0 80%;
  }
}
@media (max-width: 400px) {
  .resourceBoxes.members .roundedBox {
    flex: 0 0 100%;
  }
}
.resourceBoxes.members .roundedBox:hover a {
  background: #AB0A0A;
}
.resourceBoxes.members a {
  width: fit-content;
  margin-bottom: 0.25rem;
  transition: all 0.4s;
  border-radius: 1rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  background: #AB0A0A;
  color: #fff !important;
  height: 2rem;
  width: auto;
}
.resourceBoxes.members a:hover {
  background: #ECA230 !important;
  color: #333 !important;
}
.resourceBoxes.members h3 {
  padding-bottom: 0.25rem;
}
.resourceBoxes.members p {
  margin: 0 0 1rem;
}
.resourceBoxes.members audio {
  position: relative;
  width: 100%;
}
.resourceBoxes.members p + audio {
  margin-top: 0;
}
.resourceBoxes.members .links {
  display: flex;
  justify-content: space-between;
}

audio {
  position: absolute;
  width: 60%;
  margin-top: 1rem;
}

.boxGrid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 1.5rem;
}

div.content .pageContent .courseLink {
  text-decoration: none;
  padding: 0 1.25rem 1.5rem;
  width: 48%;
  height: auto;
  margin: 0 0 4%;
  box-shadow: none;
  background: rgba(171, 10, 10, 0.05);
  display: flex;
  flex-direction: column;
  transition: 0.4s background;
}
div.content .pageContent .courseLink.fw {
  width: 100%;
}
@media (max-width: 1000px) {
  div.content .pageContent .courseLink {
    width: 100%;
  }
}
div.content .pageContent .courseLink p {
  color: #333;
  flex-grow: 1;
}
div.content .pageContent .courseLink h2 {
  margin-bottom: 0.5rem;
  padding-bottom: 0;
  text-transform: none;
}
div.content .pageContent .courseLink h4 {
  color: #575757;
  padding-top: 0;
  margin-top: 0;
  font-weight: 400;
  line-height: 1.2;
}
div.content .pageContent .courseLink h3, div.content .pageContent .courseLink h4, div.content .pageContent .courseLink p {
  transition: 0.4s color;
  padding-left: 0;
  padding-right: 0;
  text-align: left;
}
div.content .pageContent .courseLink hr {
  color: #575757;
  background: #575757;
  height: 1px;
  margin: 0 0 0.75rem;
  transition: 0.4s color, 0.4s background;
  border: none;
}
div.content .pageContent .courseLink .button {
  display: inline-block;
  align-self: flex-start;
}
div.content .pageContent .courseLink:hover {
  background: #AB0A0A;
}
div.content .pageContent .courseLink:hover h3, div.content .pageContent .courseLink:hover h4, div.content .pageContent .courseLink:hover p, div.content .pageContent .courseLink:hover hr, div.content .pageContent .courseLink:hover .button {
  color: #fff;
}
div.content .pageContent .courseLink:hover hr {
  background: #fff;
}
div.content .pageContent .courseLink:hover .button {
  background: #ECA230;
}

div.content .courseData h3 {
  margin: 0 0 2rem;
}

span.button {
  display: flex;
}

.exp {
  cursor: pointer;
  margin-left: 0.33em !important;
  display: flex;
}
@media (max-width: 750px) {
  .exp {
    margin-left: 0 !important;
  }
  .exp + div {
    padding-left: 1.33rem;
  }
}

.tgl {
  width: 0.75em;
  height: 1em;
  margin-right: 0.25em;
  transition: 0.4s transform;
  transform-origin: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tgl .remove {
  display: none;
}
.tgl.close .remove {
  display: inline;
}
.tgl.close .add {
  display: none;
}

p.finePrint {
  color: #575757;
  font-size: 0.9rem;
  font-style: italic;
  text-align: center;
}

form {
  padding-top: 0.5rem;
}
@media (max-width: 1000px) {
  form {
    padding: 0.5rem 0 0;
  }
}
form label {
  display: block;
  margin-bottom: 0.5rem;
  color: #575757;
}
form input, form textarea {
  font-family: "articulat-cf", sans-serif;
  border: 2px solid #e3e1de;
  width: 100%;
  font-size: 1rem;
  padding: 0.5rem;
  margin-bottom: 0.25rem;
  outline-color: #ECA230;
}
form textarea {
  min-height: 10rem;
}
form div[id^=submit] label,
form div[id^=submit] input[type=reset] {
  display: none;
}
form div[id^=submit] input[type=submit] {
  background: #AB0A0A;
  color: #fff;
  border: none;
  width: auto;
  padding: 0 2rem;
  transition: all 0.4s;
  border-radius: 1rem;
}
form div[id^=submit] input[type=submit]:hover {
  cursor: pointer;
  background: #ECA230;
  color: #333;
}
form > span > div {
  margin-bottom: 1rem;
}
form .required.error {
  background: rgba(192, 49, 26, 0.1);
  border: 2px solid #c0311a;
}
form .error .error {
  color: #c0311a;
  padding-bottom: 1rem;
  display: block;
}
form .boolDiv {
  display: flex;
  justify-content: flex-start;
}
@media (max-width: 1000px) {
  form .boolDiv label {
    padding-top: 0.3rem;
  }
}
form .boolDiv label {
  margin: 0.5rem 0;
}
form .boolDiv input {
  width: auto;
  margin-right: 0.5rem;
}
form textarea,
form input[type=text],
form input[type=button],
form input[type=submit],
form input[type=”email”],
form input[type=”number”],
form .input-checkbox {
  -webkit-appearance: none;
  border-radius: 0;
}
form .noSpin::-webkit-inner-spin-button,
form .noSpin::-webkit-outer-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}
form .noSpin {
  -moz-appearance: textfield !important;
}
form.search {
  padding: 1rem 1rem 2rem;
  display: flex;
  align-items: stretch;
}
form.search input {
  height: 100%;
  margin: 0;
  border-radius: 0;
}
form.search .searchFor {
  outline: none;
  border-right: none;
}
form.search .searchFor:focus {
  border-color: #145c65;
  border-right: 2px solid #145c65;
}
form.search div[id^=submit] input[type=submit] {
  border-radius: 0 1rem 1rem 0;
}
form.searchHead {
  display: flex;
  padding: 0;
  align-items: center;
}
form.searchHead input {
  height: 2rem;
  padding: 0;
  width: 0rem;
  margin: 0;
  border: none;
  background: transparent;
  background: #fff;
  transition: width 0.5s;
  outline: none;
  border-radius: 1rem 0 0 1rem;
  transform: translateX(1rem);
}
form.searchHead input.nim:focus {
  width: 15rem;
}
form.searchHead button {
  height: 2rem;
  width: 2rem;
  display: block;
  background: white;
  border-radius: 50%;
  border: none;
  -webkit-appearance: none;
  padding: 0.5rem;
  transition: background 1s;
  margin: 0;
}
form.searchHead button svg {
  height: 100%;
  width: 100%;
}
form.searchHead button:hover {
  cursor: pointer;
  background: #ECA230;
}
form.searchHead.inNav {
  display: none;
}
form.searchHead.inNav input {
  flex-shrink: 1;
  flex-grow: 1;
}
@media (max-width: 1100px) {
  form.searchHead {
    display: none;
  }
  form.searchHead button {
    z-index: 10;
  }
  form.searchHead.inNav {
    display: flex;
    width: 100%;
    padding: 0 1rem 1rem 0;
  }
  form.searchHead input {
    padding-left: 1rem;
  }
}

.content .pageContent .searchResult {
  padding: 1rem 1rem 0.1rem;
  transition: background 1s;
  border-radius: 0.5rem;
  cursor: default;
}
.content .pageContent .searchResult:hover {
  background: #f3f2f1;
}
.content .pageContent .searchResult h2 {
  font-size: 1.5rem;
}

.errorMessage {
  color: #c0311a;
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(192, 49, 26, 0.1);
  border: 2px solid #c0311a;
  line-height: 1.4;
}

.successMessage {
  color: #fff;
  margin-bottom: 1rem;
  padding: 1rem;
  background: #6fa48c;
  line-height: 1.4;
}

.alCenter {
  text-align: center;
  width: 100%;
}

:target {
  display: block;
  position: relative;
  top: -14rem;
  visibility: hidden;
}
@media (max-width: 1100px) {
  :target {
    top: -10rem;
  }
}

#DonationAmount_wrap input {
  padding-left: 2rem;
  background: url(/assets/images/dollar-sign-solid.svg);
  background-repeat: no-repeat;
  background-position: 0.5rem;
  background-size: 1rem;
  font-size: 1.1rem;
}

#QuickSelect_wrap > label {
  display: none;
}
#QuickSelect_wrap .boolWrap {
  display: flex;
  flex-wrap: wrap;
}
#QuickSelect_wrap .boolDiv {
  width: 45%;
}

#Regularity_wrap .boolWrap {
  display: flex;
  flex-wrap: wrap;
}
#Regularity_wrap .boolDiv {
  width: 45%;
}

.loginLoginButton input:hover {
  cursor: pointer;
}

.loginLegend {
  color: #AB0A0A;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0.75em 0 0.5em;
}

.loginLoginButton input[type=submit] {
  background: #AB0A0A;
  color: #fff;
  border: none;
  border-radius: 1rem;
  height: 2rem;
  line-height: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  transition: background 0.2s, color 0.2s;
  font-weight: 700;
  margin: 1rem 1rem 0 0;
  width: auto;
}
.loginLoginButton input[type=submit]:hover {
  background: #ECA230;
  color: #333;
}

.loginUsernameLabel input,
.loginPasswordLabel input {
  margin-top: 0.5rem;
}

.resourceImageContent {
  position: relative;
  margin: auto;
  margin-bottom: 2rem;
}
.resourceImageContent img {
  width: 100%;
  aspect-ratio: 2/1;
  object-fit: cover;
}

.memberResourceLinks audio {
  position: relative;
  width: 100%;
  margin: 1rem 0 2rem;
}

.newsdate {
  text-align: right;
  padding-bottom: 20px;
}