@charset "UTF-8";
/*@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@200;700&family=Playfair+Display:wght@400;500;700&display=swap");*/
:root {
  --font-1: "Lato", Arial;
  --font-heading: "Outfit", "Montserrat", Arial;
  --font-2: "Playfair Display", Georgia;
  --header-background: #fff;
  --header-font: var(--font-1);
  --mobile-toggle: 2px;
  --light-grey: #C3C4C7;
  --lightest-grey: #F5F5F5;
  --dark-blue: #1A202A;
  --blue: #0043a6;
  --green: rgb(17, 110, 68);
  --light-green: rgb(1, 158, 87);
  --grey: #4B4B4B;
  --dark-grey: #252525;
  --yellow: #483b22;
  --white: #fff;
  --black: #252525;
  --max-width: 1300px;
  --inner-width: 1280px;
  --innermost-width: 820px;
  --header-nav-background: #fffc;
  --header-nav-text: #123;
  font-size: 15px;
}

* {
  box-sizing: border-box;
}
.custom-accordion {
    border-bottom: 1px solid #cfcfcf;
}

.accordion-toggle {
    width: 100%;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;

    color: var(--blue);
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    font-family: inherit;
}

.accordion-toggle::before {
    content: ">";
    color: #000;
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
    width: 30px;
    transition: transform .2s ease;
}

.accordion-toggle.active::before {
    transform: rotate(90deg);
}

.accordion-content {
    display: none;
    padding: 0 0 25px 55px;
    color: #111;
    font-size: 20px;
    line-height: 1.6;
}

.accordion-content p:first-child {
    margin-top: 0;
}

.accordion-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.accordion-content li {
    margin-bottom: 8px;
}

.image-w-copy{
  display: flex;
  height: 100%;
}
.image-w-copy .stacked-with-border{
  text-align: center;
  border: 1px solid var(--grey);
  padding: 2rem;
  background: #fff;

}
.image-w-copy .stacked-with-border .image img{
  max-width: 50%;
  margin-bottom: 2rem;
}

.image-w-copy .side-to-side{
  display: flex;
  column-gap: 2rem;

}
.side-to-side .image, .side-to-side .copy{
  width: 50%;
  align-content: center;
}
h3.title{
  color: var(--blue);
  font-size: 1.2rem;
}

.section-heading{
  text-transform: uppercase;
  text-align: center;
  font-size: 2em;
  font-weight: bold;
  color: var(--blue);
}
.section-sub-heading{
  text-transform: uppercase;
  text-align: center;
  font-size: 1.2em;

}
.group-of-columns{
  padding-top: 2rem;
  padding-bottom: 2rem;
}
body {
  margin: 0;
}

.content {
  font-family: var(--font-1);
}
.content a {
  color: inherit;
}
.content p {
  font-size: 1rem;
}
.content h1, .content h2, .content h3, .content h4, .content h5, .content h6 {
  margin: 0;
  padding: 0;
  line-height: 1.3em;
  font-weight: normal;
  font-size: 1em;
  color: inherit;
}
.content a {
  display: inline-block;
  vertical-align: top;
}
.content img {
  vertical-align: bottom;
}
.content input, .content textarea {
  font-family: "Inter", sans-serif;
}
.content h2 {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.4em;
}
.content ul, .content ol {
  padding-left: 1.75rem;
}
.content ul li, .content ol li {
  margin-bottom: 0.25rem;
}
.content .xl-text {
  font-size: 3.2rem;
}
.content .lg-text {
  font-size: 2.2rem;
  line-height: 1.3em;
}
.content .md-text {
  font-size: 1.6rem;
  line-height: 1.3em;
}
.content .sm-text {
  font-size: 1.2rem;
}
.content .thin {
  font-weight: 100;
}
.content .light {
  font-weight: 300;
}
.content .regular {
  font-weight: 400;
}
.content .medium {
  font-weight: 500;
}
.content .semi-bold {
  font-weight: 600;
}
.content .bold {
  font-weight: 700;
}
.content .extra-bold {
  font-weight: 800;
}
.content .heavy {
  font-weight: 900;
}
.content .gold-serif {
  font-family: var(--font-2);
  color: var(--yellow);
  line-height: 1.2em;
}
.content .serif {
  font-family: var(--font-2);
}
.content .min-space {
  line-height: 0.75em;
}
.content .single-space {
  line-height: 1em;
}
.content .double-space {
  line-height: 2em;
}
.content .uppercase {
  text-transform: uppercase;
}
.content .lowercase {
  text-transform: lowercase;
}
.content .two-column {
  column-count: 2;
}
@media screen and (max-width: 619px) {
  .content .two-column {
    column-count: 1;
  }
}
.content hr {
  margin: 0.5rem 0 3rem 0;
  border: none;
  border-top: 1px solid var(--yellow);
}
.content p + hr {
  margin-top: -1rem;
}
.content a.button {
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  padding: 1rem 2rem;
  display: inline-block;
  font-weight: bold;
  background: var(--green);
  color: var(--white);
  transition: all 0.3s;
  border: none;
  border-radius: 0;
}
.content a.button:hover {
  background: var(--light-green);
  color: var(--black);
}
.content .drop-cap {
  font-size: 5em;
  float: left;
  margin: 0 0.18em 0.18em 0;
  padding-top: 0.25em;
}
.content details {
  border-top: 1px solid #ddd;
}
.content details .content {
  padding: 0 0 2rem;
}
.content details:last-child {
  border-bottom: 1px solid #ddd;
}
.content details summary {
  padding: 2rem 0;
  cursor: pointer;
  position: relative;
}
.content details summary h3 {
  font-weight: 600;
}
.content .status {
  position: absolute;
  right: 2rem;
  top: 2rem;
  font-family: "fontello";
  color: #999;
}
.content .status:before {
  content: "\f004";
}
.content details[open] > summary {
  color: blue;
}
.content details[open] > summary .status:before {
  content: "\f005";
}
.content details summary::-webkit-details-marker, .content details summary::marker {
  display: none;
  content: " ";
}
.content blockquote {
  margin: 0;
  font-size: 2rem;
  text-transform: uppercase;
}
.content blockquote ::before, .content blockquote ::after {
  content: "“";
}
.content blockquote ::after {
  content: "”";
}
.content .text-align-right {
  text-align: right;
  justify-content: end;
}
.content .text-align-right .button:last-child {
  margin-right: 0;
}
.content .alignleft {
  margin-right: 1em;
  float: left;
}
.content .alignright {
  margin-left: 1em;
  float: right;
}
.content .aligncenter {
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.content .bypostauthor {
  font-size: inherit;
}
.content .gallery-caption {
  font-size: inherit;
}
.content .screen-reader-text {
  font-size: inherit;
}
.content .sticky {
  font-size: inherit;
}
.content .wp-caption-text {
  font-size: inherit;
}
.content .wp-caption {
  font-size: inherit;
}
.content .text-center {
  text-align: center;
}
.content img {
  max-width: 100%;
  height: auto;
}

.sr-only {
  display: none;
}

nav, .nav {
  position: relative;
}
nav ul, nav li, .nav ul, .nav li {
  padding: 0;
  margin: 0;
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

@media screen {
  #menu-toggle {
    display: none;
  }
  label[for=menu-toggle] {
    line-height: 0;
  }
  .menu-toggle-button {
    display: block;
  }
}
.outer-width {
  margin: 0 auto;
}

.inner-width {
  width: 100%;
  max-width: var(--inner-width);
  margin: 0 auto;
}

.inner-inner-width {
  width: 100%;
  max-width: var(--innermost-width);
  padding: 4rem 3rem;
  margin: 0 auto;
}
.inner-inner-width .banner-sized-image {
  margin: 0 -3rem;
  margin-bottom: 4rem;
}

@media screen and (max-width: 619px) {
  .inner-inner-width .banner-sized-image {
    margin-top: 2rem;
  }
}
@media screen and (min-width: 860px) {
  .column-bleed {
    width: 100%;
  }
  .column-bleed .group .col.xs-4-4 .content-area {
    justify-content: center;
  }
  .column-bleed .group .col.xs-4-4 .content-area .content {
    max-width: var(--inner-width);
  }
  .column-bleed .group .col.md-50 .content-area {
    justify-content: end;
  }
  .column-bleed .group .col.md-50 .content-area .content {
    max-width: calc(var(--inner-width) / 2);
  }
  .column-bleed .group .col.md-50:last-child .content-area {
    justify-content: start;
  }
}
.group {
  display: flex;
  flex-wrap: wrap;
  min-width: 100%;
}
.group:after {
  content: " ";
  display: table;
  clear: both;
}
.group > .col {
  display: flex;
  letter-spacing: normal;
  word-spacing: normal;
}
.group > .col .content {
  width: 100%;
}
.group > .col img {
  max-width: 100%;
  height: auto;
}
.group.col-gap-1x {
  margin-left: -0.5em;
  margin-right: -0.5em;
}
.group.col-gap-1x > .col {
  padding-left: 0.5em;
  padding-right: 0.5em;
  overflow: initial;
}
.group.col-gap-2x {
  margin-left: -1em;
  margin-right: -1em;
}
.group.col-gap-2x > .col {
  padding-left: 1em;
  padding-right: 1em;
  overflow: initial;
}
.group.row-gap-1x {
  margin-top: -0.5em;
  margin-bottom: -0.5em;
}
.group.row-gap-1x > .col {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  overflow: initial;
}
.group.top-gutter {
  margin-top: 0.5em;
}
.group.bottom-gutter {
  margin-bottom: 0.5em;
}
.group.horizontal-gutters {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.group.left-gutter {
  margin-left: 0;
  padding-left: 0.5em;
}
.group.right-gutter {
  margin-right: 0;
  padding-right: 0.5em;
}
.group.vertical-gutters {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0.5em;
  padding-right: 0.5em;
}

.group {
  font-size: 1rem;
}

.content, .slideStrip {
  font-size: 1.2rem;
}

.xs-10, .xs-1-10 {
  width: 10%;
}

.xs-20, .xs-2-10 {
  width: 20%;
}

.xs-30, .xs-3-10 {
  width: 30%;
}

.xs-40, .xs-4-10 {
  width: 40%;
}

.xs-50, .xs-5-10 {
  width: 50%;
}

.xs-60, .xs-6-10 {
  width: 60%;
}

.xs-70, .xs-7-10 {
  width: 70%;
}

.xs-80, .xs-8-10 {
  width: 80%;
}

.xs-90, .xs-9-10 {
  width: 90%;
}

.xs-100, .xs-10-10 {
  width: 100%;
}

.xs-1-4, .xs-25 {
  width: 25%;
}

.xs-2-4 {
  width: 50%;
}

.xs-3-4, .xs-75 {
  width: 75%;
}

.xs-1-3, .xs-33 {
  width: 33.3332%;
}

.xs-2-3, .xs-66 {
  width: 66.6667%;
}

.xs-4-4, .xs-3-3 {
  width: 100%;
}

body.admin-bar .header-nav {
  top: 32px;
}
body .header-nav {
  top: 0;
  position: fixed;
  background: #fff;
  color: var(--header-nav-text);
  transition: all 0.5s;
  transform: translateY(0);
}
body .header-logo svg, body .header-logo img {
  margin-top: 5px;
  fill: var(--lightest-grey);
  width: 120px;
  height: auto;
}
body.float .header-nav {
  transform: translateY(-130px);
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
}
body.float .header-logo svg {
  fill: var(--white);
}
body.backing-up.float .header-nav {
  transform: translateY(0);
}

@media screen and (max-width: 782px) {
  body.admin-bar {
    margin-top: 46px;
  }
  body.admin-bar .header-nav {
    top: 46px;
  }
}
@media screen and (max-width: 619px) {
  .inner-inner-width {
    padding: 1rem 1rem;
  }
  label[for=menu-toggle] {
    line-height: 0;
  }
  .header-nav {
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
  }
  .header-nav .inner-width {
    display: flex;
    padding: 0.6rem;
  }
  .header-nav-bar .s_center {
    position: relative;
    z-index: 2;
    padding-left: 1rem;
  }
  .menu-icon:before, .menu-icon:after, .menu-icon .menu-icon-extra {
    content: "";
    position: absolute;
    right: 0;
    height: var(--mobile-toggle);
    width: 100%;
    background: var(--light-grey);
    border-radius: 0;
    transform: rotate(0);
    transition: all 0.3s 0s;
    right: 0;
  }
  .menu-icon .menu-icon-extra {
    top: calc(50% - var(--mobile-toggle) / 2);
    border-radius: 0;
  }
  .menu-icon:before {
    top: calc(25% - var(--mobile-toggle) / 2);
    border-radius: 0;
  }
  .menu-icon:after {
    bottom: calc(25% - var(--mobile-toggle) / 2);
    border-radius: 0;
  }
  #menu-toggle:checked ~ .menu-toggle-sibling .menu-icon:before, #menu-toggle:checked ~ .menu-toggle-sibling .menu-icon .menu-icon-extra {
    height: var(--mobile-toggle);
    width: 100%;
    top: calc(50% - var(--mobile-toggle) / 2);
    transform: rotate(45deg);
    right: 0;
  }
  #menu-toggle:checked ~ .menu-toggle-sibling .menu-icon:after {
    height: var(--mobile-toggle);
    width: 100%;
    bottom: calc(50% - var(--mobile-toggle) / 2);
    transform: rotate(-45deg);
    right: 0;
  }
  #menu-toggle:checked ~ .menu-toggle-sibling .menu-icon .menu-icon-extra {
    height: 0;
  }
  .main-nav {
    display: flex;
    width: 100%;
    flex-direction: column;
    background: var(--white);
  }
  .main-nav .menu-item .menu-item-link {
    padding: 2rem 1.5rem;
    color: var(--light-grey);
  }
  @keyframes menuShow {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes menuHide {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  .menu-toggle-button {
    font-size: 1rem;
    display: inline-block;
    padding: 1em;
    cursor: pointer;
    z-index: 100;
    transition: all 0.5s;
    position: absolute;
    top: 0rem;
    right: 1rem;
  }
  .mobile-menu-overlay .main-nav {
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100vh;
    transition: all 0.5s;
    transform: translateY(-100%);
    left: 0;
    right: 0;
    position: fixed;
    padding-top: 4rem;
  }
  .mobile-menu-overlay .main-nav .menu-item {
    display: block;
    opacity: 0;
    animation: menuHide 0.5s;
  }
  .mobile-menu-overlay .main-nav .primary-nav, .mobile-menu-overlay .main-nav .secondary-nav {
    display: block;
    position: static;
    text-align: left;
  }
  .mobile-menu-overlay .header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }
  .main-nav .sub-menu {
    position: relative;
    top: 0;
    left: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    min-width: 0;
    margin: 0;
    display: block;
  }
  .main-nav .sub-menu .menu-item {
    border: none;
    font-size: 1.5rem;
  }
  .main-nav .sub-menu .menu-item .menu-item-link {
    padding: 1rem;
  }
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s 0s;
  }
  #menu-toggle:checked ~ .menu-toggle-sibling .mobile-menu-overlay .main-nav {
    z-index: 1;
    transform: translateY(0%);
  }
  #menu-toggle:checked ~ .menu-toggle-sibling .mobile-menu-overlay .main-nav .menu-item {
    opacity: 1;
    animation: menuShow 2s;
  }
  #menu-toggle:checked ~ .menu-overlay {
    visibility: visible;
    cursor: pointer;
    opacity: 1;
  }
  #menu-toggle:checked ~ .menu-toggle-sibling .header-logo svg {
    fill: var(--white);
  }
  .menu-item-has-children {
    position: relative;
  }
  .menu-item-has-children > .menu-toggle-switch {
    position: absolute;
    top: 0;
    right: 0;
    height: 1em;
    width: 1em;
    text-align: center;
    display: flex;
    font-size: 2.35rem;
    transform: translateY(50%) rotateZ(0);
  }
  .menu-item-has-children > .menu-toggle-switch:before {
    content: " ";
    position: absolute;
    top: 25%;
    bottom: 25%;
    left: calc(50% - 1px);
    width: 2px;
    background: var(--light-grey);
    transition: all 0.3s;
  }
  .menu-item-has-children > .menu-toggle-switch:after {
    content: " ";
    position: absolute;
    top: calc(50% - 1px);
    left: 25%;
    right: 25%;
    height: 2px;
    background: var(--light-grey);
    transition: all 0.3s;
  }
  .menu-item-has-children > .menu-toggle-switch.open:after {
    background: var(--yellow);
  }
  .menu-item-has-children > .menu-toggle-switch.open:before {
    top: 50%;
    bottom: 50%;
  }
  .menu-item-has-children > .menu-toggle-switch.open + .sub-menu {
    max-height: 70vh;
    overflow: visible;
  }
  .menu-image img {
    display: none;
  }
  .menu-item-link {
    display: block;
    font-family: var(--font-1);
    text-decoration: none;
  }
  .menu-item, .sub-menu {
    width: 100%;
    user-select: none;
  }
  .menu-item .menu-item-has-children > .menu-item-link, .sub-menu .menu-item-has-children > .menu-item-link {
    width: calc(100% - 40px);
  }
  .sub-menu {
    background: var(--black);
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s;
  }
  .header-nav {
    z-index: 2;
  }
  .main-nav .menu-item {
    border-bottom: 1px solid currentColor;
  }
  .main-nav .menu-item .menu-item-link {
    color: inherit;
    font-size: 3vh;
    padding: 1.25rem;
  }
  .main-nav .menu-item .sub-menu .menu-item-link {
    font-size: 1.5rem;
    padding-left: 1rem;
  }
  .mobile-swap, .mobile-swap .column-bleed > .group {
    flex-direction: column-reverse;
  }
}
@media screen and (min-width: 620px) {
  .header-nav {
    top: 0;
    position: fixed;
    transition: all 0.5s;
    transform: translateY(0);
  }
  .header-nav .menu-item {
    color: inherit;
    font-family: var(--header-font);
  }
  .header-nav .inner-width {
    display: flex;
    justify-content: space-between;
  }
  .main-nav {
    display: flex;
  }
  .main-nav .primary-nav {
    display: flex;
  }
  .main-nav .primary-nav .menu-item {
    align-self: center;
    position: relative;
    list-style: none;
    padding: 0.5rem;
  }
  .main-nav .primary-nav .menu-item:before {
    content: " ";
    display: block;
    position: absolute;
    right: 0;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: currentColor;
    text-decoration: none;
    transform-origin: 100% 50%;
    transition: transform 0.3s;
    will-change: transform;
  }
  .main-nav .primary-nav .menu-item:hover, .main-nav .primary-nav .menu-item:focus-within {
    background: none;
  }
  .main-nav .primary-nav .menu-item:hover:before, .main-nav .primary-nav .menu-item:focus-within:before {
    transform: scaleX(1);
    transform-origin: 0 50%;
  }
  .main-nav .primary-nav .menu-item:focus-within {
    color: var(--green);
  }
  .menu-item-link {
    padding: 4px 5px;
    color: inherit;
    text-decoration: none;
  }
  .header-nav {
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
  }
  .header-nav .inner-width {
    padding: 2rem;
  }
}
@media screen and (min-width: 620px) and (orientation: landscape) {
  .header-nav .inner-width {
    padding: 1rem 2rem;
  }
}
@media screen and (min-width: 620px) {
  .sub-menu {
    position: absolute;
    transform: scaleY(0);
    transform-origin: top;
    transition-timing-function: ease;
    opacity: 0;
    transition: all 0.2s;
    top: 32px;
    left: 0;
    min-width: 100%;
    width: 220px;
    z-index: 2;
    background: var(--green);
    color: var(--white) !important;
  }
  .sub-menu .menu-item-link, .sub-menu .menu-item {
    display: block;
    width: 100%;
  }
  .secondary-nav {
    font-size: 0.8em;
  }
  .footer-nav .sub-menu {
    top: auto;
    bottom: 100%;
    transform-origin: bottom;
    flex-direction: column-reverse;
  }
  .footer-nav .sub-menu li:first-child:after {
    top: auto;
    bottom: -0.5em;
    z-index: 0;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  }
  .menu-item {
    position: relative;
    z-index: 1;
    transition: all 0.3s;
  }
  .menu-item .menu-item-link {
    outline: none;
  }
  .menu-item-has-children {
    position: relative;
  }
  .menu-item-has-children:hover > .sub-menu, .menu-item-has-children:focus-within > .sub-menu {
    transform: scaleY(1);
    opacity: 1;
  }
  .sm-1-8 {
    width: 12.5%;
  }
  .sm-2-8 {
    width: 25%;
  }
  .sm-3-8 {
    width: 37.5%;
  }
  .sm-4-8 {
    width: 50%;
  }
  .sm-5-8 {
    width: 62.5%;
  }
  .sm-6-8 {
    width: 75%;
  }
  .sm-7-8 {
    width: 87.5%;
  }
  .sm-8-8 {
    width: 100%;
  }
  .sm-10, .sm-1-10 {
    width: 10%;
  }
  .sm-20, .sm-2-10 {
    width: 20%;
  }
  .sm-30, .sm-3-10 {
    width: 30%;
  }
  .sm-40, .sm-4-10 {
    width: 40%;
  }
  .sm-50, .sm-5-10 {
    width: 50%;
  }
  .sm-60, .sm-6-10 {
    width: 60%;
  }
  .sm-70, .sm-7-10 {
    width: 70%;
  }
  .sm-80, .sm-8-10 {
    width: 80%;
  }
  .sm-90, .sm-9-10 {
    width: 90%;
  }
  .sm-100, .sm-10-10 {
    width: 100%;
  }
  .sm-1-4, .sm-25 {
    width: 25%;
  }
  .sm-2-4 {
    width: 50%;
  }
  .sm-3-4, .sm-75 {
    width: 75%;
  }
  .sm-1-3, .sm-33 {
    width: 33.3332%;
  }
  .sm-2-3, .sm-66 {
    width: 66.6667%;
  }
  .sm-4-4, .sm-3-3 {
    width: 100%;
  }
}
@media screen and (min-width: 860px) {
  .md-1-12 {
    width: 8.3333333333%;
  }
  .md-2-12 {
    width: 16.6666666667%;
  }
  .md-3-12 {
    width: 25%;
  }
  .md-4-12 {
    width: 33.3333333333%;
  }
  .md-5-12 {
    width: 41.6666666667%;
  }
  .md-6-12 {
    width: 50%;
  }
  .md-7-12 {
    width: 58.3333333333%;
  }
  .md-8-12 {
    width: 66.6666666667%;
  }
  .md-9-12 {
    width: 75%;
  }
  .md-10-12 {
    width: 83.3333333333%;
  }
  .md-11-12 {
    width: 91.6666666667%;
  }
  .md-12-12 {
    width: 100%;
  }
  .md-10, .md-1-10 {
    width: 10%;
  }
  .md-20, .md-2-10 {
    width: 20%;
  }
  .md-30, .md-3-10 {
    width: 30%;
  }
  .md-40, .md-4-10 {
    width: 40%;
  }
  .md-50, .md-5-10 {
    width: 50%;
  }
  .md-60, .md-6-10 {
    width: 60%;
  }
  .md-70, .md-7-10 {
    width: 70%;
  }
  .md-80, .md-8-10 {
    width: 80%;
  }
  .md-90, .md-9-10 {
    width: 90%;
  }
  .md-100, .md-10-10 {
    width: 100%;
  }
  .md-1-4, .md-25 {
    width: 25%;
  }
  .md-2-4 {
    width: 50%;
  }
  .md-3-4, .md-75 {
    width: 75%;
  }
  .md-1-3, .md-33 {
    width: 33.3332%;
  }
  .md-2-3, .md-66 {
    width: 66.6667%;
  }
  .md-4-4, .md-3-3 {
    width: 100%;
  }
}
@keyframes funk {
  0%, 100% {
    clip-path: polygon(0 100%, 0 0, 19% 3rem, 44% 7.5rem, 61% 6rem, 80% 3.5rem, 89% 2rem, 100% 0rem, 100% 100%);
  }
  15% {
    clip-path: polygon(0 100%, 0 0, 19% 4rem, 33% 3rem, 57% 5rem, 80% 3rem, 87% 1rem, 100% 2rem, 100% 100%);
  }
  50% {
    clip-path: polygon(0 100%, 0 0, 20% 1.5rem, 53% 5rem, 69% 4rem, 82% 3rem, 94% 1.5rem, 100% 1rem, 100% 100%);
  }
  30%, 75% {
    clip-path: polygon(0 100%, 0 0, 10% 5rem, 33% 3rem, 57% 5rem, 75% 2.5rem, 87% 1rem, 100% 2rem, 100% 100%);
  }
}
.background-image {
  background-position-x: center;
  background-position-y: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.background-image.no-scroll {
  background-attachment: fixed;
}
.background-image.contain {
  background-size: contain;
}
.background-image.cover {
  background-size: cover;
}
.background-image.top {
  background-position-y: top;
}
.background-image.bottom {
  background-position-y: bottom;
}
.background-image.left {
  background-position-x: left;
}
.background-image.right {
  background-position-x: right;
}

.content {
  width: 100%;
}

.has_parallax.prefered-dim {
  overflow: hidden;
}

.button {
  border-radius: 5px;
  padding: 1rem 2rem;
}

@media screen and (max-width: 619px) {
  .content {
    width: 100%;
  }
  .content a.button {
    width: 100%;
    width-max-width: 400px;
  }
}
.black-background {
  background-color: var(--black);
  color: var(--white);
}
.black-background a.button {
  background: var(--yellow);
  color: var(--black);
}
.black-background a.button:hover {
  background: var(--grey);
  color: var(--light-grey);
}

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

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

.light-grey-background {
  background-color: var(--lightest-grey);
  color: var(--black);
}

.orange-background {
  background-color: var(--yellow);
  color: var(--black);
}
.orange-background a.button {
  background: var(--black);
  color: var(--light-grey);
}
.orange-background a.button:hover {
  background: var(--grey);
  color: var(--lightest-grey);
}

.teal-background {
  background-color: var(--green);
  --background-image: linear-gradient(0deg, var(--blue), var(--dark-blue));
  color: var(--white);
}
.teal-background a.button {
  background: var(--blue);
  color: var(--light-grey);
  border: 1px solid currentColor;
}
.teal-background a.button:hover {
  background: var(--grey);
  color: var(--lightest-grey);
}

.sunny-morning-background {
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(164, 228, 246, 0) 100%, rgba(255, 250, 219, 0) 80%), linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(164, 228, 246) 35%, rgb(255, 250, 219) 80%);
}

.night-sky-background {
  background: #000;
  background: linear-gradient(0deg, rgb(2, 0, 36) 0%, rgba(9, 9, 121, 0) 83%, rgba(113, 0, 191, 0) 100%), linear-gradient(90deg, rgb(2, 0, 36) 0%, rgb(9, 9, 121) 78%, rgb(113, 0, 191) 100%);
  color: var(--white);
}

.dawn-sky-background {
  background: #000;
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(109, 252, 255, 0.3729866947) 48%, rgba(253, 255, 165, 0) 100%, rgb(255, 213, 123) 100%), linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(109, 252, 255) 42%, rgb(255, 221, 188) 79%, rgb(253, 255, 165) 100%, rgb(255, 213, 123) 100%);
}

.peach-background {
  background: linear-gradient(45deg, rgb(2, 0, 36) 0%, rgb(255, 254, 218) 0%, rgb(255, 211, 186) 100%), linear-gradient(90deg, rgb(2, 0, 36) 0%, rgba(255, 254, 218, 0) 0%, rgb(255, 186, 234) 73%);
}

body.debug .inner-width {
  border: 1px solid rgba(0, 0, 0, 0.5);
}
body.debug .content-area {
  border: 1px dashed rgba(0, 0, 0, 0.5);
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.1333333333), rgba(255, 255, 255, 0.1333333333) 5px, rgba(204, 204, 204, 0.1333333333) 5px, rgba(204, 204, 204, 0.1333333333) 10px);
}
body.debug .content {
  border: 1px dotted rgba(0, 0, 0, 0.5);
}

.content-area {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 2rem;
}

.full-bleed > .content-area {
  position: static;
}

.prefered-dim {
  position: relative;
  overflow: initial;
  display: flex;
}
.prefered-dim:before {
  content: "";
}
.prefered-dim .content, .prefered-dim .inner-width .content {
  z-index: 1;
  position: relative;
}

.v-align-top {
  align-items: flex-start;
}
.v-align-top .col {
  vertical-align: top;
}

.v-align-bottom {
  align-items: flex-end;
}
.v-align-bottom .col {
  vertical-align: bottom;
}

.v-align-center {
  align-items: center;
}
.v-align-center .col {
  vertical-align: middle;
}

._16by9:before {
  padding-top: 56.25%;
}

._4by3:before {
  padding-top: 75%;
}

.square:before {
  padding-top: 100%;
}

._full-height:before {
  padding-top: 100vh;
}

.banner:before {
  padding-top: 25%;
}

@media screen and (max-width: 619px) {
  .xs_16by9:before {
    padding-top: 56.25%;
  }
  .xs_4by3:before {
    padding-top: 75%;
  }
  .xs_3by4:before {
    padding-top: 150%;
  }
  .xs_square:before {
    padding-top: 100%;
  }
  .xs_full-height:before {
    padding-top: 100vh;
  }
}
.parallax {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  background-size: cover;
  z-index: 0;
}
.parallax img {
  width: 100%;
  height: auto;
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0px;
  bottom: 0;
  background-color: inherit;
  opacity: 0.5;
}
.background-overlay + .content {
  position: relative;
}

@keyframes shine {
  0% {
    background-position: -300%;
  }
  100% {
    background-position: 0%;
  }
}
.number-animation + .text-content {
  height: 1rem;
}
.number-animation sup {
  position: absolute;
  top: -0.5rem;
}

.headline-block {
  max-width: 400px;
  font-family: var(--font-1);
}
.headline-block .word {
  white-space: pre;
}
.headline-block h1 {
  font-size: min(6vw, 3rem);
  text-transform: uppercase;
  font-weight: bold;
}
.headline-block h2 {
  font-size: min(5vw, 2rem);
  text-transform: uppercase;
  font-weight: normal;
}
.headline-block span {
  display: inline-block;
}
.headline-block span.reveal-up {
  overflow: hidden;
}
.headline-block span.reveal-up span {
  display: inline-block;
  transition: transform 1s 0.3s;
  opacity: 0.5;
  transform: translateY(1.5em);
}
.headline-block span.reveal-up.wasViewed span {
  opacity: 1;
  transform: translateY(0em);
}
.headline-block .fade-in span {
  opacity: 0;
  transform: translateX(-20px);
  transition: transform 1s 0.3s, opacity 1s 0.3s;
}
.headline-block .fade-in.wasViewed span {
  transform: translateX(0);
  opacity: 1;
}
.headline-block div[data-index="1"] span {
  transition-delay: 0.1s;
  animation-delay: 0.2s;
}
.headline-block div[data-index="2"] span {
  transition-delay: 0.3s;
  animation-delay: 0.4s;
}
.headline-block div[data-index="3"] span {
  transition-delay: 0.5s;
  animation-delay: 0.6s;
}
.headline-block div[data-index="4"] span {
  transition-delay: 0.7s;
  animation-delay: 0.8s;
}
.headline-block div[data-index="5"] span {
  transition-delay: 0.9s;
  animation-delay: 1s;
}
.headline-block div[data-index="6"] span {
  transition-delay: 1.1s;
  animation-delay: 1.2s;
}

ul.button-bar {
  padding-top: 0rem;
  padding-left: 0;
  margin: 0;
  justify-content: center;
  text-align: center;
  display: flex;
  margin-bottom: -1rem;
}
ul.button-bar .button-bar-item {
  margin: 0 0.5em 1em;
  font-size: min(2.8vw, 1rem);
}
ul.button-bar .button-bar-item .button {
  padding: 0 1.5em;
  line-height: 2em;
  background: inherit;
  color: var(--black);
  border: 1px solid currentColor;
}

ul.tabs {
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin: 2rem 0 4rem;
}
ul.tabs .tab-title {
  margin: 0 1rem;
}
ul.tabs .tab-title .tab {
  font-size: min(2.8vw, 1rem);
  background: var(--white);
  color: var(--black);
  border: 1px solid currentColor;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0 1.5em;
  line-height: 2em;
  transition: all 0.3s;
}
ul.tabs .tab-title.active .tab {
  background: var(--light-grey);
}

ul.tab-contents {
  list-style: none;
  margin: 4rem 0;
  padding: 0;
}
ul.tab-contents .tab-content {
  position: absolute;
  width: 100%;
  left: -9999px;
  top: 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity 1s;
}
ul.tab-contents .tab-content.active {
  visibility: visible;
  position: relative;
  opacity: 1;
  left: 0px;
  display: block;
}

/* General slideStrip CSS*/
.disable-select {
  user-select: none;
}

.slideStrip {
  position: relative;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  width: 100%;
}
.slideStrip ul li {
  width: 100%;
}
.slideStrip ul li img {
  width: 100%;
  height: auto;
}

.slideStrip ol.controls {
  position: relative;
  z-index: 1;
  padding: 0;
  text-align: center;
}
.slideStrip ol.controls .button {
  font-size: 1em;
  width: 1em;
  height: 1em;
  background-color: #eee;
  border-radius: 0.5em;
  margin: 0.2em;
  cursor: pointer;
  display: inline-block;
}
.slideStrip ol.controls .button.active {
  background-color: #cccccc;
}

/*Fading slideStrip CSS*/
ul.fade-strip {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
ul.fade-strip li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.5s;
}
ul.fade-strip li.active {
  z-index: 1;
  opacity: 1;
}

/*Sliding slideStrip CSS*/
ul.slide-strip {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 50%;
  transition-property: transform;
  transition-duration: 0.5s;
}
ul.slide-strip li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0em;
  overflow: hidden;
  opacity: 0;
}

ul.slide-strip.moving {
  transition-duration: 0s;
  cursor: -webkit-grabbing;
}

ul.fade-strip li {
  opacity: 0;
}
ul.fade-strip li.active {
  opacity: 1;
}
ul.fade-strip li.slide-sizer {
  width: 100%;
  min-height: 0;
  visibility: hidden;
  display: block;
  position: static;
  transition: height;
  transition-duration: inherit;
  transition-delay: 0;
  will-change: height;
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2em;
  padding: 0 1rem;
  width: 100%;
}
.image-gallery img {
  max-width: 100%;
  height: auto;
  width: 100%;
}

@media screen and (max-width: 680px) {
  .image-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .image-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
.grid-offset {
  display: grid;
  grid-template-rows: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 1rem;
  padding: 0 0rem 1rem;
  position: relative;
  height: 45rem;
}
.grid-offset .block {
  grid-area: 1/1/3/4;
}
.grid-offset .block + .block {
  grid-area: 1/4/3/6;
}
.grid-offset .block + .block + .block {
  grid-area: 3/3/5/6;
}
.grid-offset .block + .block + .block + .block {
  grid-area: 3/1/5/3;
}

.grid-2 {
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 1rem;
  padding: 0 0rem 1rem;
  position: relative;
  height: 45rem;
}
.grid-2 .block {
  grid-area: 1/1/4/4;
}
.grid-2 .block + .block {
  grid-area: 1/4/2/6;
}
.grid-2 .block + .block + .block {
  grid-area: 2/4/3/6;
}
.grid-2 .block + .block + .block + .block {
  grid-area: 3/4/4/6;
}

.post-list {
  padding: 2rem 1rem 4rem;
}
.post-list .listing-title {
  font-size: 1rem;
  font-family: var(--font-1);
  text-transform: uppercase;
}

@media screen and (min-width: 1081px) {
  .post-list {
    padding: 2rem 0 4rem;
  }
  .grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    position: relative;
    width: 100%;
    height: 30rem;
    padding: 0 0rem 0.5rem;
  }
  .grid .block {
    grid-area: 1/1/4/6;
  }
  .grid .block + .block {
    grid-area: 1/6/4/9;
  }
}
@media screen and (max-width: 1080px) {
  .grid {
    display: grid;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    width: 100%;
    height: 22rem;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(3, 1fr);
    padding: 0 0rem 0.5rem;
  }
  .grid .block {
    grid-area: 1/1/4/5;
  }
  .grid .block + .block {
    grid-area: 1/5/4/9;
  }
}
@media screen and (max-width: 720px) {
  .grid {
    display: block;
    height: auto;
  }
  .grid .block {
    height: 20rem;
    margin-bottom: 1rem;
  }
}
.grid .content, .grid-2 .content, .grid-offset .content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
}

.post-listing.wrap-in-strip {
  flex-wrap: wrap;
  gap: 0;
  margin: 0 -0.5rem;
}
.post-listing.wrap-in-strip .block {
  margin-bottom: 1rem;
}
.post-listing.wrap-in-strip .block .card {
  margin: 0.5rem;
}

.post-listing {
  display: flex;
  padding-bottom: 1rem;
  gap: 1rem;
}
.post-listing .content-area {
  display: block;
}
.post-listing .content-area .content {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.post-listing .content-area .background-image {
  margin: -1rem;
}
.post-listing .content-area time {
  position: absolute;
  bottom: 1rem;
}

.card, .full-bleed-card, .card-stack {
  height: 100%;
  position: relative;
}
.card a, .full-bleed-card a, .card-stack a {
  text-decoration: none;
}
.card .background-image, .full-bleed-card .background-image, .card-stack .background-image {
  background-size: cover;
}
.card .background-overlay, .full-bleed-card .background-overlay, .card-stack .background-overlay {
  opacity: 1;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 60%);
}
.card .content-area, .full-bleed-card .content-area, .card-stack .content-area {
  position: relative;
  overflow: hidden;
  padding: 1rem;
}

.full-bleed-card {
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.full-bleed-card .post-title {
  color: #fff;
  font-weight: bold;
  font-size: 1.5em;
  margin: 0.5em 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}
.full-bleed-card .post-title:hover {
  color: #ddd;
}
.full-bleed-card time {
  color: #fff;
  font-size: 12px;
}

.card {
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}
.card .post-title {
  font-weight: 500;
  margin: 0.5em 0;
}
.card time {
  font-size: 12px;
}

.black-background .card {
  background: #333;
}

.post-badge {
  background: #9be;
  display: inline-block;
  font-size: 10px;
  text-transform: uppercase;
  padding: 0.3em 0.6em;
  border-radius: 3px;
}
