/* Table of Contents
-----------------------------------------------------------------------------

1. CSS Reset
2. Base Typography
3. Base Classes
4. Structure
5. Pages
6. Modules

*/

/* 1. CSS Reset
------------------------------------------------------------------------------*/

html,
body,
br,
hr,
div,
span,
a,
object,
iframe,
ul,
ol,
dl,
li,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
q,
address,
small,
big,
cite,
dfn,
ins,
del,
i,
em,
b,
strong,
sup,
sub,
strike,
pre,
code,
samp,
kbd,
var,
tt,
form,
fieldset,
legend,
label,
input,
textarea,
option,
.nobox {
  background: transparent;
  border: 0;
  font-size: 100%;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

div,
section,
article,
main,
aside,
header,
footer,
dialog,
figure,
figcaption,
hgroup {
  display: block;
}
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}

blockquote,
q {
  quotes: none;
}
br {
  height: 0;
}
ul,
ol,
dl {
  list-style: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}
td {
  text-align: left;
  font-weight: normal;
}

img {
  border: 0;
  border-style: none;
}

fieldset {
  border: 1px solid transparent;
}
input {
  font-family: "Montserrat", sans-serif;
}
input[type="submit"] {
  letter-spacing: 0.045em;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  -webkit-appearance: none;
  transition: 300ms ease all;
  -webkit-transition: 300ms ease all;
  -o-transition: 300ms ease all;
}
input[type="text"],
input[type="email"],
textarea {
  letter-spacing: 0.045em;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  border-radius: 0;
  -webkit-appearance: none;
}
span {
  font-family: "Montserrat", sans-serif;
}
button {
  font-family: "Montserrat", sans-serif;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  outline: inherit;
}
select {
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
}

/* 2. Base Typography
------------------------------------------------------------------------------*/

/* Headers  */
.title-lrg-1 {
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 3.3125rem;
  line-height: 3.3125rem;
}
.title-lrg-2 {
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 2.5rem;
  line-height: 2.5rem;
}
.title-lrg-3 {
  font-weight: 700;
  font-size: 2.9375rem;
  line-height: 3rem;
}
.title-med-1 {
  color: #17254b;
  font-size: 1.5625rem;
  font-weight: 500;
}
.title-med-1 span {
  font-weight: 700;
}
.title-med-2 {
  font-size: 1.5625rem;
  font-weight: 700;
}
.title-sml-1 {
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 17px;
  line-height: 17px;
}
.title-sml-1 span {
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 23px;
}

.title-sml-2 {
  font-size: 1.5rem;
  line-height: 2rem;
}

/* Paragraphs */
p {
  color: #293d79;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.6875rem;
}

/* Links */
a {
  color: #293d79;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: 300ms ease all;
  -webkit-transition: 300ms ease all;
  -o-transition: 300ms ease all;
}
a:hover {
  color: #b91f3a;
  text-decoration: none;
}
a:active {
}
a:focus,
button:focus,
input[type="submit"]:focus {
  text-decoration: underline;
}

/* Other Type */
strong {
  font-weight: bold;
}
hr {
  border: 0 #000 solid;
  border-top-width: 1px;
  clear: both;
  height: 0;
}
ol {
  list-style: decimal;
}
ul {
  list-style: disc;
}

/* Google Web Font Smoothing */
html,
body,
p,
a,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Colors
*/

/* 3. Helper Classes
------------------------------------------------------------------------------*/

/* General */
.clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}
.icon {
  display: block;
  text-indent: -9999px;
  background-size: 100%;
  background-repeat: no-repeat;
  text-indent: -9999px;
  transition: 300ms ease all;
  -webkit-transition: 300ms ease all;
  -o-transition: 300ms ease all;
}
.icon:hover {
  transition: 300ms ease all;
  -webkit-transition: 300ms ease all;
  -o-transition: 300ms ease all;
}
.full-bg {
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.text-center {
  text-align: center;
}
.text-uppercase {
  text-transform: uppercase;
}
.body img {
  display: block;
  max-width: 100%;
  height: auto !important;
}
.body ul li,
.body ol li {
  color: #0b162c;
  font-weight: 400;
  letter-spacing: 0.045em;
  font-size: 17px;
  line-height: 30px;
  margin-left: 25px;
  margin-bottom: 10px;
}
.body h2,
.body h3,
.body h4,
.body h5,
.body h6,
.body p,
.body a,
.body ul,
.body ol,
.body img,
.body blockquote,
.body table {
  margin-bottom: 20px;
}
.body h2 {
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 2.5rem;
  line-height: 2.5rem;
}
.body h3 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 2.3125rem;
  font-style: italic;
}
.body h4 {
  font-size: 1.5625rem;
  font-style: italic;
  font-weight: 400;
  font-family: "Playfair Display", serif;
}
.body h5 {
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.body h6 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.body blockquote {
  padding: 30px 0;
}
.body blockquote,
.body blockquote p {
  letter-spacing: 0;
  width: 100%;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: 2.3125rem;
  font-style: italic;
}
.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.align-items-center {
  -ms-flex-align-items: center;
  -webkit-align-items: center;
  align-items: center;
}
.align-items-end {
  -ms-flex-align-items: flex-end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.align-items-start {
  -ms-flex-align-items: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.justify-content-center {
  -ms-flex-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.justify-content-end {
  -ms-flex-justify-content: flex-end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.flex-1 {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.flex-column {
  -webkit-flex-flow: column;
  flex-flow: column;
}
.flex-reverse {
  -ms-flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.no-scroll {
  overflow: hidden;
}
.image-square:after {
  display: block;
  content: "";
  width: 100%;
  padding-top: 100%;
}
.sixteen-nine:after {
  display: block;
  content: "";
  width: 100%;
  padding-top: 56.25%;
}
::selection {
  background: #b91f3a;
  color: #fff;
}
::-moz-selection {
  background: #b91f3a;
  color: #fff;
}
.h-100 {
  height: 100%;
}
.w-100 {
  width: 100%;
}
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.two-col {
  column-count: 2;
  column-gap: 70px;
}
.light-txt * {
  color: #fff;
}
.red {
  color: #b91f3a;
}
.blue {
  color: #293d79;
}
.bg-blue {
  background-color: #293d79;
}
.bg-lblue {
  background-color: #d7e0e7;
}
.bg-dblue {
  background-color: #17254b;
}
@media screen and (max-width: 768px) {
  .two-col {
    column-gap: 30px;
  }
}
@media screen and (max-width: 500px) {
  .two-col {
    column-gap: 0;
    column-count: 1;
  }
}

/* Buttons & Links */
.btn {
  font-family: "Roboto Condensed", sans-serif;
  text-align: center;
  white-space: nowrap;
  position: relative;
  font-weight: 700;
  display: inline-block;
  font-size: 2.5rem;
  line-height: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  background-color: #b91f3a;
  padding: 20px 45px;
  transition: 300ms ease all;
  -webkit-transition: 300ms ease all;
  -o-transition: 300ms ease all;
}
.btn:hover,
.btn:focus {
  text-decoration: underline;
  color: #fff;
}
.btn.btn-blue {
  background-color: #293d79;
}
.btn.btn-sml {
  font-size: 16px;
  line-height: 16px;
  padding: 15px 30px;
}

/* Overlays */
.overlay {
  position: relative;
}
.overlay > div {
  position: relative;
  z-index: 2;
}
.overlay:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.overlay-black-25:after {
  background: rgba(17, 17, 17, 0.25);
}

/* Margin & Padding */
.vp-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}
.vp-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}
.vp-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}
.vp-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}
.vp-150 {
  padding-top: 150px;
  padding-bottom: 150px;
}
.vp-200 {
  padding-top: 200px;
  padding-bottom: 200px;
}
.pb-15 {
  padding-bottom: 15px;
}
.pb-30 {
  padding-bottom: 30px;
}
.pb-50 {
  padding-bottom: 50px;
}
.pb-70 {
  padding-bottom: 70px;
}
.pb-100 {
  padding-bottom: 100px;
}
.pb-150 {
  padding-bottom: 150px;
}
.pt-150 {
  padding-top: 150px;
}
.pb-200 {
  padding-bottom: 200px;
}
.pt-30 {
  padding-top: 30px;
}
.pt-50 {
  padding-top: 50px;
}
.pt-70 {
  padding-top: 70px;
}
.pt-100 {
  padding-top: 100px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-70 {
  margin-top: 70px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-50 {
  margin-bottom: 50px;
}
.mb-70 {
  margin-bottom: 70px;
}
.mb-100 {
  margin-bottom: 100px;
}
.hp-15 {
  padding-left: 15%;
  padding-right: 15%;
}
@media screen and (max-width: 1024px) {
  .vp-200 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .vp-150 {
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .pt-150 {
    padding-top: 75px;
  }
  .pb-200 {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 768px) {
  .pb-100 {
    padding-bottom: 50px;
  }
  .vp-100 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .pt-100 {
    padding-top: 50px;
  }
  .mb-100 {
    margin-bottom: 50px;
  }
  .vp-50 {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .pt-50 {
    padding-top: 25px;
  }
  .pb-50 {
    padding-bottom: 25px;
  }
  .mb-50 {
    margin-bottom: 25px;
  }
  .pt-70 {
    padding-top: 35px;
  }
  .pb-70 {
    padding-bottom: 35px;
  }
  .vp-70 {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .mb-70 {
    margin-bottom: 35px;
  }
  .pb-200 {
    padding-bottom: 50px;
  }
  .vp-150 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .pt-150 {
    padding-top: 50px;
  }
  .vp-200 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .hp-15 {
    padding-left: 10%;
    padding-right: 10%;
  }
}
@media screen and (max-width: 500px) {
  .pb-100 {
    padding-bottom: 30px;
  }
  .vp-100 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .pt-100 {
    padding-top: 30px;
  }
  .hp-15 {
    padding-left: 5%;
    padding-right: 5%;
  }
  .hp.no-padding-mobile {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media screen and (max-width: 375px) {
  .hp-8 {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* States */
.is-visible {
  visibility: visible !important;
  opacity: 1 !important;
  transition: 300ms ease all;
  -webkit-transition: 300ms ease all;
  -o-transition: 300ms ease all;
}
.is-hidden {
  visibility: hidden;
  opacity: 0;
  transition: 300ms ease all;
  -webkit-transition: 300ms ease all;
  -o-transition: 300ms ease all;
}

/* Accessibility */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* fonts
font-family: 'Montserrat', sans-serif;
font-family: 'Roboto Condensed', sans-serif;
*/

/* colors
red: #b91f3a;
*/

/* 4. Structure
------------------------------------------------------------------------------*/

/* Page Layout */
html,
body {
  height: 100%;
  font-size: 1em;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  background-image: url(/assets/images/bgpattern.jpg);
  color: #293d79;
}
#wrapper {
  min-height: 100%;
  height: auto !important;
  margin: 0 auto;
  overflow: hidden;
}
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  position: relative;
}
#page {
  height: 100%;
}
#skipnav {
  position: absolute;
  z-index: 99999;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  padding-bottom: 25px;
  transition: none;
  -webkit-transition: none;
  -o-transition: none;
}
#skipnav:hover,
#skipnav:focus,
#skipnav:active {
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.03em;
  clip: auto;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 10px 0;
  background: #fff;
  border-left: none;
  border-right: none;
  text-align: center;
  font-weight: bold;
  color: #983222;
}
@media screen and (max-width: 1100px) {
  .container {
    width: 100%;
    padding: 0 5%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 960px) {
  html,
  body {
    font-size: 0.9em;
  }
}
@media screen and (max-width: 488px) {
  html,
  body {
    font-size: 0.8em;
  }
}

/* Header */
.no-banner #header {
  border-bottom: 1px solid #eee;
}
#header {
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  z-index: 9999;
  height: 130px;
  background-color: #fff;
  padding-left: 40px;
}
#header #header-logo {
  z-index: 3;
  width: 206px;
  height: 77px;
  background-image: url(/assets/uploads/logo1.svg);
}
#header nav li {
  list-style: none;
}
.is-header-desktop #header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align-items: center;
  -webkit-align-items: center;
  align-items: center;
}
.is-header-desktop #header nav {
  height: 100%;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-justify-content: flex-end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.is-header-desktop #header nav > ul {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.is-header-desktop #header nav li.level-1 {
  list-style: none;
  position: relative;
  margin-right: 30px;
}
.is-header-desktop #header nav li {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align-items: center;
  -webkit-align-items: center;
  align-items: center;
}
.is-header-desktop #header nav li.level-1-btn .btn {
  height: 100%;
  padding: 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.is-header-desktop #header nav li.level-1:first-child {
  margin-left: 0;
}
.is-header-desktop #header nav li.level-1 a {
  font-weight: 600;
  text-transform: uppercase;
  color: #293d79;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 18px;
}
.is-header-desktop #header nav li.level-1:hover a,
.is-header-desktop #header nav li.level-1 a.active {
  color: #b91f3a;
}
.is-header-desktop #header nav li.level-1 .dropdown-menu {
  min-width: calc(100% + 30px);
  padding: 15px;
  position: absolute;
  top: 31px;
  left: 0;
  background-color: rgba(255, 255, 255, 0.25);
}
.is-header-desktop #header nav li.level-1 .dropdown-menu ul li {
  padding: 2px 0;
}
.is-header-desktop #header nav li.level-1 .dropdown-menu ul li a {
  padding: 0;
  border-bottom: 1px solid transparent;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 10px;
  white-space: nowrap;
}
.is-header-desktop #header nav li.level-1 .dropdown-menu ul li a:hover {
  border-color: #fff;
}
.is-header-desktop #header nav .dropdown-menu[aria-hidden="true"] {
  opacity: 0;
  visibility: hidden;
}
.is-header-desktop #header nav .dropdown-menu[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}
#mobile-menu-trigger,
.mobile-menu-trigger-container {
  display: none;
}
@media screen and (max-width: 1250px) {
  .is-header-desktop #header nav li.level-1 {
    margin-right: 20px;
  }
  .is-header-desktop #header nav li.level-1 a {
    letter-spacing: 0.05em;
    font-size: 16px;
    line-height: 16px;
  }
  .is-header-desktop #header nav li.level-1-btn .btn {
    font-size: 1.5rem;
    padding: 0 20px;
  }
}
@media screen and (max-width: 960px) {
  #header {
    padding: 0 5%;
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align-items: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .mobile-menu-trigger-container {
    height: 100%;
    -ms-flex-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-justify-content: flex-end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #mobile-menu-trigger {
    display: block;
  }
  #mobile-menu-trigger {
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    z-index: 9999;
    display: block;
    width: 35px;
    height: 25px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
  }
  #mobile-menu-trigger span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background-color: #293d79;
    border-radius: 0;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
  }
  #mobile-menu-trigger span:nth-child(1) {
    top: 0px;
  }
  #mobile-menu-trigger span:nth-child(2),
  #mobile-menu-trigger span:nth-child(3) {
    top: 10px;
  }
  #mobile-menu-trigger span:nth-child(4) {
    top: 20px;
  }
  #mobile-menu-trigger.is-open span {
    background-color: #b91f3a;
  }
  #mobile-menu-trigger.is-open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
  }
  #mobile-menu-trigger.is-open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #mobile-menu-trigger.is-open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  #mobile-menu-trigger.is-open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
  }
  #header #header-nav li span.trigger-icon-container {
    position: relative;
    padding-left: 5%;
  }
  #header #header-nav li span.trigger-icon-container > span {
    position: relative;
  }
  #header #header-nav li span.level-1-trigger-icon {
    display: block;
    width: 15px;
    height: 15px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  #header #header-nav li span:before {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -1px;
    left: 0;
    height: 4px;
    background: #b91f3a;
  }
  #header #header-nav li span.level-1-trigger-icon:before {
    width: 100%;
  }
  #header #header-nav li span.level-1-trigger-icon:after {
    width: 100%;
  }
  #header #header-nav span:after {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -1px;
    left: 0;
    height: 4px;
    background: #b91f3a;
    transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
  }
  #header #header-nav span.is-active {
    transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
  }
  #header #header-nav span.is-active {
    transform: rotate(225deg);
    -moz-transform: rotate(225deg);
    -webkit-transform: rotate(225deg);
  }
  #header #header-nav .dropdown-menu {
    display: none;
  }
  #header #header-nav ul li {
    color: red;
    position: relative;
    float: inherit;
    text-align: left;
    list-style: none;
  }
  #header #header-nav ul li a,
  #header #header-nav ul li.multi-list-title {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    color: #fff;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-right: 25px;
    border-width: 0;
  }
  #header #header-nav ul li.level-1 a {
    width: 100%;
    padding-left: 5%;
    color: #293d79;
    font-size: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  #header #header-nav ul li.level-1 .dropdown-menu ul li a {
    padding: 5px 5%;
    text-transform: none;
    font-size: 16px;
    letter-spacing: 0.065em;
    font-weight: 700;
  }
  #header #header-nav ul li.level-1 .dropdown-menu ul {
    padding: 5px 0 10px 0;
  }
  #header #header-nav {
    position: fixed;
    top: 0;
    left: 100%;
    bottom: 0;
    right: -100%;
    z-index: 1;
    width: 100%;
    height: 100vh;
    overflow: scroll;
    padding-top: calc(100px + 5%);
    background-color: #fff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  #header #header-nav:before {
    display: block;
    content: "";
    width: 100%;
    height: 100px;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 100%;
    right: -100%;
    z-index: 2;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  #header.is-mobile-open #header-nav {
    left: 0;
    right: 0;
  }
  #header.is-mobile-open #header-nav:before {
    left: 0;
    right: 0;
  }
  .overflow-hidden {
    overflow: hidden;
    height: 100%;
  }
}

/* Footer */
#footer {
  width: 100%;
  background-image: url(/assets/images/footer.jpg);
  position: relative;
  padding: 80px 0 30px 0;
}
#footer li {
  list-style: none;
}
#footer .links li {
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 25px;
}
#footer .social {
  padding: 20px 0 50px 0;
}
#footer .social li {
  margin: 0 5px;
}
#footer .social li a {
  width: 22px;
  height: 22px;
}
#footer .social li a.facebook {
  background-image: url(/assets/images/facebook.svg);
}
#footer .social li a.instagram {
  background-image: url(/assets/images/instagram.svg);
}
#footer .social li a.twitter {
  background-image: url(/assets/images/twitter.svg);
}
#footer .info li {
  font-size: 14px;
  margin: 0 6px;
}
#footer .info li span {
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  #footer .links li {
    margin: 0 10px;
  }
}

/* 5. Pages
------------------------------------------------------------------------------*/

/* news */
.news .list .item {
  border-top: 1px solid #17254b;
  padding: 20px 0;
}
.news .list .item:first-child {
  border-top: none;
}
.news .list .item .text {
  padding-right: 5%;
}
.list.landing main .search {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.list.landing main .search button {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 0;
  left: 0;
}
.list.landing main .search button svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.list.landing main .search input {
  padding: 0 10px 0 30px;
  width: 190px;
  height: 30px;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #17254b;
  background-color: #d7e0e7;
}
.list.landing main .search input[type="search"]::-webkit-search-decoration,
.list.landing main .search input[type="search"]::-webkit-search-cancel-button,
.list.landing main .search input[type="search"]::-webkit-search-results-button,
.list.landing
  main
  .search
  input[type="search"]::-webkit-search-results-decoration {
  display: none;
}
.list.landing .pagination-container li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align-items: center;
  -webkit-align-items: center;
  align-items: center;
}
.list.landing .pagination-container li button {
  font-weight: 500;
  font-size: 15px;
  line-height: 15px;
  margin: 0 25px;
  color: #1a396d;
}
.list.landing .pagination-container li.active button {
  font-weight: 700;
}
.list.landing .pagination-container li button.prevBtn,
.list.landing .pagination-container li button.nextBtn {
  background-image: url(/assets/images/arrow_blue.svg);
  width: 20px;
  height: 20px;
  display: block;
  text-indent: -9999px;
  background-size: 100%;
  background-repeat: no-repeat;
  text-indent: -9999px;
  transition: 300ms ease all;
  -webkit-transition: 300ms ease all;
  -o-transition: 300ms ease all;
}
.list.landing .pagination-container li button.prevBtn {
  margin: 0 25px 0 15px;
}
.list.landing .pagination-container li button.nextBtn {
  margin: 0 15px 0 25px;
}
.list.landing .pagination-container button.firstBtn,
.list.landing .pagination-container button.lastBtn {
  background-image: url(/assets/images/arrow_blue_dbl.svg);
  width: 22px;
  height: 22px;
  display: block;
  text-indent: -9999px;
  background-size: 100%;
  background-repeat: no-repeat;
  text-indent: -9999px;
  transition: 300ms ease all;
  -webkit-transition: 300ms ease all;
  -o-transition: 300ms ease all;
}
.list.landing .pagination-container button.firstBtn,
.list.landing .pagination-container button.lastBtn {
  margin: 0;
}
.list.landing .pagination-container li button.nextBtn {
  transform: rotate(180deg);
}
.list.landing .pagination-container button.lastBtn {
  transform: rotate(180deg);
}
.list.landing .pagination-container li button.disabled {
  display: none;
}
.list.landing .pagination-record * {
  color: #888 !important;
  font-size: 13px;
  opacity: 0.75;
}
.list.detail .info * {
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  font-size: 18px;
  line-height: 18px;
}
.list.detail .info > div {
  padding: 5px 10px;
}
.list.detail .apply-share,
.news.detail .share {
  padding-top: 15px;
}
.list.detail .apply-share .btn {
  margin-right: 25px;
}
.list.detail .share {
  padding-top: 0;
}
.list.detail .share li {
  list-style: none;
  margin-right: 10px;
}
.list.detail .share li:last-child {
  margin-right: 0;
}
.list.detail .share li a:hover svg .st0 {
  fill: #ba232b;
}
.list.detail #more[aria-hidden="true"] {
  display: none;
}
@media screen and (max-width: 500px) {
  .news .list .item .text {
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    padding-right: 0;
  }
  .news .list .item .text,
  .news .list .item .button {
    width: 100%;
  }
  .news .list .item .button {
    padding-top: 10px;
  }
  .news .list .item .button .btn {
    width: 100%;
    text-align: center;
  }
  .list.landing main .search {
    width: 100%;
  }
  .list.landing main .search form {
    width: 100%;
  }
  .list.landing main .search input {
    width: 100%;
  }
}

/* 6. Modules
------------------------------------------------------------------------------*/

/* banners */
.banner {
  width: 100%;
  height: 500px;
  padding-bottom: 30px;
  position: relative;
}
.banner .container {
  height: 100%;
}
.banner .title-lrg-1 {
  margin-bottom: 10px;
  text-shadow: 0px 0px 10px rgb(23 37 75);
}
.banner .title-sml-1 {
  margin-bottom: 65px;
  text-shadow: 0px 0px 5px rgb(23 37 75);
}
.banner:after {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  content: "";
  width: 35px;
  height: 35px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-image: url(/assets/images/star.svg);
}
@media screen and (max-width: 960px) {
  .banner {
    height: 400px;
  }
}
@media screen and (max-width: 600px) {
  .banner {
    background-position: left -250px center;
  }
}
@media screen and (max-width: 500px) {
  .banner {
    background-position: left -300px center;
    padding-bottom: 0;
  }
  .banner .title-sml-1 {
    margin-bottom: 5vw;
  }
  .banner:after {
    display: none;
  }
}
@media screen and (max-width: 375px) {
  .banner {
    background-position: left -350px center;
  }
}

/* blocks */
.blocks .block {
  padding: 20px 0;
}
.blocks .block .text {
  padding-right: 5%;
}
.blocks .block .text .title-med-1 {
  margin-bottom: 5px;
}
.blocks .block .text .title-med-1:before {
  transform: translate(-12px, 5px);
  display: inline-block;
  content: "";
  width: 30px;
  height: 30px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-image: url(/assets/images/star.svg);
}
.blocks .block .image {
  width: 33%;
}
.blocks .block .image:after {
  display: block;
  content: "";
  width: 100%;
  padding-top: 80%;
}
@media screen and (max-width: 768px) {
  .blocks .block .text {
    padding-right: 0;
  }
  .blocks .block .image {
    width: 100%;
    margin-top: 20px;
  }
  .blocks .block .image:after {
    padding-top: 56.25%;
  }
}
@media screen and (max-width: 415px) {
  .blocks .block .text p {
  }
}

/* form styles */
.join-form {
  background-image: url(/assets/images/flag.png);
  background-blend-mode: soft-light;
  background-position: top left;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.join-form .form form input[type="text"],
.join-form .form form input[type="email"],
.join-form .form form input[type="tel"] {
  padding: 0 20px;
  background-color: #fff;
  color: #293d79;
  width: 100%;
  height: 50px;
  line-height: 50px;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.join-form .form form .dform_element.dform_text_input,
.join-form .form form .dform_element.dform_email {
  width: calc(20% - 9.6px);
}
.join-form .form form .dform_element {
  margin-right: 12px;
}
.join-form .form form .dform_element:nth-child(5) {
  margin-right: 0;
}
.join-form .form .dform {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.join-form .form .dform_element.dform_text_input label,
.join-form .form .dform_element.dform_email label,
.join-form .form .dform_element.dform_checkbox > label {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.join-form .form li {
  list-style: none;
}
.join-form .form .dform_element.dform_checkbox,
.join-form .form .dform_element.dform_radio {
  width: calc(50% - 6px);
  padding: 40px 0;
}
.join-form .form .dform_element.dform_radio {
  margin-right: 0;
}
.join-form .form .dform_element.dform_radio > label {
  text-align: center;
  width: 100%;
  display: block;
  margin-bottom: 10px;
}
.join-form .form .dform_element.dform_radio label,
.join-form .form .dform_element.dform_checkbox label {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.1em;
}
.join-form .form .dform_element.dform_checkbox ul.checkboxes,
.join-form .form .dform_element.dform_radio ul.radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.join-form .form .dform_element.dform_radio ul.radios li {
  margin: 0 10px;
}
.join-form .form form .submit_button {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.join-form .form form .submit_button input[type="submit"] {
  font-family: "Roboto Condensed", sans-serif;
  text-align: center;
  white-space: nowrap;
  position: relative;
  font-weight: 700;
  display: inline-block;
  font-size: 2.5rem;
  line-height: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  background-color: #b91f3a;
  padding: 20px 45px;
  transition: 300ms ease all;
  -webkit-transition: 300ms ease all;
  -o-transition: 300ms ease all;
}
.join-form .form form .submit_button input[type="submit"]:hover,
.join-form .form form .submit_button input[type="submit"]:focus {
  text-decoration: underline;
  color: #fff;
}
.join-form .form .dform_error {
  background-color: #b91f3a;
  font-size: 12px;
  padding: 2px 5px;
}
@media screen and (max-width: 768px) {
  .join-form .form form .dform_element:nth-child(1),
  .join-form .form form .dform_element:nth-child(2) {
    width: calc(50% - 6px);
    margin-bottom: 12px;
  }
  .join-form .form form .dform_element:nth-child(2) {
    margin-right: 0;
  }
  .join-form .form form .dform_element:nth-child(3),
  .join-form .form form .dform_element:nth-child(4),
  .join-form .form form .dform_element:nth-child(5) {
    width: calc(33.333% - 8px);
  }
  .join-form .form .dform_element.dform_checkbox,
  .join-form .form .dform_element.dform_radio {
    width: 100%;
    margin-right: 0;
  }
  .join-form .form .dform_element.dform_checkbox {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 415px) {
  .join-form .form form .dform_element:nth-child(1),
  .join-form .form form .dform_element:nth-child(2) {
    width: 100%;
    margin-right: 0;
  }
  .join-form .form form .dform_element:nth-child(3),
  .join-form .form form .dform_element:nth-child(4),
  .join-form .form form .dform_element:nth-child(5) {
    width: 100%;
    margin-right: 0;
    margin-bottom: 12px;
  }
  .join-form .form form .dform_element:nth-child(5) {
    margin-bottom: 0;
  }
}

.join-form-full .form {
  max-width: 600px;
}
.join-form-full .form form .dform_element {
  margin-bottom: 30px;
}
.join-form-full .form form .dform_element.dform_checkbox {
  margin-bottom: 0;
}
.join-form-full .form .dform_element.dform_text_input label,
.join-form-full .form .dform_element.dform_email label,
.join-form-full .form .dform_element.dform_checkbox > label,
.join-form-full .form .dform_element.dform_textarea label,
.join-form-full .form .dform_element.dform_select label,
.join-form-full .form .dform_element.dform_html label {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.join-form-full .form form input[type="text"],
.join-form-full .form form input[type="email"],
.join-form-full .form form input[type="tel"] {
  padding: 0 20px;
  text-transform: uppercase;
  color: #17254b;
  width: 100%;
  height: 50px;
  border: 1px solid #17254b;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.join-form-full .form form .dfcolumns {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.join-form-full .form form .dform_columns_3,
.join-form-full .form form .dform_columns_2 {
  margin-bottom: 0 !important;
}
.join-form-full .form form .dform_columns_2 .dfcolumns .column {
  width: calc(50% - 15px) !important;
}
.join-form-full
  .form
  form
  .dform_columns_2
  .dfcolumns
  .column[data-number="1"] {
  margin-right: 30px;
}
.join-form-full .form form .dform_select .dform_container {
  position: relative;
  display: block;
  width: 100%;
}
.join-form-full .form form .dform_select .dform_container select {
  padding: 0 32px 0 20px;
  line-height: 50px;
  color: #17254b !important;
  background-color: transparent;
  height: 50px;
  border: 1px solid #17254b;
  letter-spacing: 0.02em;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  width: 100%;
  margin: 0;
  outline: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.join-form-full .form form .dform_select .dform_container::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -3px;
  z-index: 2;
  pointer-events: none;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #17254b;
}
.join-form-full .form form textarea {
  resize: none;
  padding: 20px;
  text-transform: uppercase;
  color: #17254b;
  width: 100%;
  height: 175px;
  max-width: 100%;
  min-width: 100%;
  max-height: 300px;
  min-height: 175px;
  border: 1px solid #17254b;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.join-form-full .form li {
  list-style: none;
}
.join-form-full .form .dform_element.dform_checkbox ul.checkboxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.join-form-full .form .dform_element.dform_checkbox ul.checkboxes li {
  margin-bottom: 30px;
}
.join-form-full .form .dform_element.dform_checkbox ul.checkboxes li label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 10px;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-align-items: center;
  -webkit-align-items: center;
  align-items: center;
}
.join-form-full .form .dform_element.dform_html p {
  font-size: 16px;
}
.join-form-full .form .dform_element.dform_checkbox label {
  text-transform: uppercase;
  color: #17254b;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.join-form-full .form form .submit_button {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.join-form-full .form form .submit_button input[type="submit"] {
  font-family: "Roboto Condensed", sans-serif;
  text-align: center;
  white-space: nowrap;
  position: relative;
  font-weight: 700;
  display: inline-block;
  font-size: 2.5rem;
  line-height: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  background-color: #b91f3a;
  padding: 20px 45px;
  transition: 300ms ease all;
  -webkit-transition: 300ms ease all;
  -o-transition: 300ms ease all;
}
.join-form-full .form form .submit_button input[type="submit"]:hover,
.join-form .form form .submit_button input[type="submit"]:focus {
  text-decoration: underline;
  color: #fff;
}
.join-form-full .form .dform_error {
  background-color: #b91f3a;
  font-size: 12px;
  padding: 2px 5px;
}
@media screen and (max-width: 500px) {
  .join-form-full .form form .dform_columns_3 .dfcolumns .column {
    width: 100% !important;
  }
  .join-form-full
    .form
    form
    .dform_columns_3
    .dfcolumns
    .column[data-number="2"] {
    margin-right: 0;
    margin-left: 0;
  }
  .join-form-full
    .form
    form
    .dform_columns_2
    .dfcolumns
    .column[data-number="1"] {
    width: 100% !important;
    margin-right: 0;
  }
  .join-form-full
    .form
    form
    .dform_columns_2
    .dfcolumns
    .column[data-number="2"] {
    width: 100% !important;
  }
  .join-form-full .form .dform_element.dform_checkbox ul.checkboxes li {
    width: 100%;
  }
}

/* callout */
.callout .text {
  padding-right: 5%;
}
.callout .text .title-lrg-2 {
  margin-bottom: 5px;
}

/* events */
#nucleus-event-feed,
#nucleus-event-feed * {
  background: transparent;
  border: 0;
  font-size: 100%;
  margin: 0;
  outline: 0;
  vertical-align: baseline;
}
#nucleus-event-feed,
#nucleus-event-feed div,
#nucleus-event-feed section,
#nucleus-event-feed article {
  display: block;
}
#nucleus-event-feed,
#nucleus-event-feed *,
#nucleus-event-feed *:before,
#nucleus-event-feed *:after {
  -webkit-box-sizing: border-box !important;
  -moz-box-sizing: border-box !important;
  box-sizing: border-box !important;
}
#nucleus-event-feed a {
  text-decoration: none;
  cursor: pointer;
}
#nucleus-event-feed .visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
#nucleus-event-feed {
  font-size: 1em;
  --red: #b91f3a;
  --blue: #293d79;
}
#nucleus-event-feed .list .nef-list-item {
  list-style: none;
  width: 100%;
}
#nucleus-event-feed .list .nef-list-item .nef-event {
  position: relative;
  width: 100%;
  background-color: #fff;
  border: none;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.15);
  margin-bottom: 30px;
  cursor: pointer;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  transition: 150ms ease all;
}
#nucleus-event-feed .list .nef-list-item .nef-event:hover,
#nucleus-event-feed .list .nef-list-item .nef-event:focus {
  box-shadow: 0px 0px 8px 0px rgba(33, 56, 117, 0.75) !important;
  border-color: var(--blue) !important;
}
#nucleus-event-feed .list .nef-list-item .nef-event.featured {
  border-color: var(--red);
}
#nucleus-event-feed .list .nef-list-item .nef-event.featured:hover,
#nucleus-event-feed .list .nef-list-item .nef-event.featured:focus {
  border-color: var(--red) !important;
  box-shadow: 0px 0px 8px 0px rgba(218, 19, 51, 0.75) !important;
}
#nucleus-event-feed .list .nef-list-item .nef-event .event-mobile-box {
  display: flex;
  flex: 1;
  width: 100%;
}
#nucleus-event-feed .list .nef-list-item .nef-event .tags {
  position: absolute;
  top: -10px;
  left: 10px;
  display: flex;
  flex-wrap: wrap;
}
#nucleus-event-feed .list .nef-list-item .nef-event .tags .tag {
  margin: 0 10px 0 5px;
  height: 20px;
  position: relative;
  font-size: 10px;
  line-height: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #fff;
  padding: 6px 8px 5px 8px;
  background-color: #888;
}
#nucleus-event-feed .list .nef-list-item .nef-event .tags .tag svg {
  position: absolute;
  left: 0;
  top: 100%;
  fill: #888;
}
#nucleus-event-feed .list .nef-list-item .nef-event .tags .tag:before,
#nucleus-event-feed .list .nef-list-item .nef-event .tags .tag:after {
  position: absolute;
  top: 0;
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 10px solid #444;
  z-index: -1;
}
#nucleus-event-feed .list .nef-list-item .nef-event .tags .tag:before {
  left: -5px;
}
#nucleus-event-feed .list .nef-list-item .nef-event .tags .tag:after {
  right: -5px;
}
#nucleus-event-feed .list .nef-list-item .nef-event .tags .tag.featured {
  background-color: var(--red);
}
#nucleus-event-feed .list .nef-list-item .nef-event .tags .tag.featured svg {
  fill: var(--red);
}
#nucleus-event-feed .list .nef-list-item .nef-event .tags .tag.featured:before,
#nucleus-event-feed .list .nef-list-item .nef-event .tags .tag.featured:after {
  border-bottom-color: #780115;
}
#nucleus-event-feed .list .nef-list-item .nef-event .tags .tag.county {
  background-color: var(--blue);
}
#nucleus-event-feed .list .nef-list-item .nef-event .tags .tag.county svg {
  fill: var(--blue);
}
#nucleus-event-feed .list .nef-list-item .nef-event .tags .tag.county:before,
#nucleus-event-feed .list .nef-list-item .nef-event .tags .tag.county:after {
  border-bottom-color: #080d2c;
}
#nucleus-event-feed .list .nef-list-item .nef-event .title {
  flex: 1;
  padding: 15px;
}
#nucleus-event-feed .list .nef-list-item .nef-event .title h2 {
  font-size: 1rem;
  line-height: 1.5rem;
  color: var(--blue);
}
#nucleus-event-feed .list .nef-list-item .nef-event .title h2 span {
  color: var(--red);
}
#nucleus-event-feed .list .nef-list-item .nef-event .title p {
  padding-top: 5px;
  font-size: 13px;
  line-height: 18px;
  color: var(--blue);
}
#nucleus-event-feed .list .nef-list-item .nef-event .title p a {
  text-decoration: underline;
}
#nucleus-event-feed .list .nef-list-item .nef-event .mobile-link {
  display: none;
}
#nucleus-event-feed .list .nef-list-item .nef-event.featured .title h2 {
  font-size: 1.2rem;
  color: var(--blue);
}
#nucleus-event-feed .list .nef-list-item .nef-event.featured .title p {
  font-size: 14px;
  line-height: 21px;
}
#nucleus-event-feed .list .nef-list-item .nef-event.has-tags .title {
  padding-top: 25px;
}
#nucleus-event-feed .list .nef-list-item .nef-event .info {
  padding: 15px;
  background-color: #17254b;
  border-left: 1px solid #17254b;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align-items: center;
  -webkit-align-items: center;
  align-items: center;
}
#nucleus-event-feed .list .nef-list-item .nef-event .info p {
  color: #fff;
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 10px;
}
#nucleus-event-feed .list .nef-list-item .nef-event .info p .mobile-spacer {
  display: none;
}
#nucleus-event-feed .list .nef-list-item .nef-event .info .btn {
  display: block;
  padding: 10px;
  width: 100%;
  text-align: center;
  border: none;
  font-size: 1.2rem;
  line-height: 1.2rem;
  cursor: pointer;
  background-color: var(--red);
  color: #fff;
  transition: 150ms ease all;
}
#nucleus-event-feed .list .nef-list-item .nef-event .info .btn:hover,
#nucleus-event-feed .list .nef-list-item .nef-event .info .btn:focus {
  background-color: var(--red);
  text-decoration: underline;
}
#nucleus-event-feed .list .nef-list-item .nef-event.featured .info p {
  font-size: 13px;
  line-height: 18px;
}
#nucleus-event-feed .pagination li {
  display: inline-block;
  margin-right: 10px;
}
#nucleus-event-feed .pagination li a {
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  text-align: center;
  line-height: 1rem;
  font-size: 1rem;
  width: 30px;
  height: 30px;
  color: var(--blue);
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 4px;
  min-width: 30px;
  transition: 150ms ease all;
}
#nucleus-event-feed .pagination {
  border-top: 2px solid #ddd;
  padding-top: 30px;
}
#nucleus-event-feed .pagination li a:hover,
#nucleus-event-feed .pagination li a:focus {
  color: var(--red);
}
#nucleus-event-feed .pagination li a.disabled {
  color: #888;
}
#nucleus-event-feed .pagination li a.disabled:hover {
  cursor: default;
}
#nucleus-event-feed .pagination li.active a {
  background-color: var(--blue);
  color: #fff;
}
#nucleus-event-feed .pagination li.active a:hover,
#nucleus-event-feed .pagination li.active a:focus {
  color: #fff;
  background-color: var(--red);
}
.sort #open-sort-menu span {
  color: #293d79;
  font-size: 18px;
  line-height: 18px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}
.sort #open-sort-menu:after {
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #293d79;
  margin-top: 10px;
}
.sort {
  position: relative;
}
.sort #open-sort-menu {
  position: relative;
}
.sort #open-sort-menu .arrow {
  margin-left: 15px;
}
.sort #open-sort-menu[aria-expanded="true"] .arrow .st0 {
  fill: #232756;
}
.sort button:focus {
  text-decoration: none;
}
.sort #sort-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #17254b;
  padding: 30px;
  z-index: 2;
  border: 1px solid #fff;
}
.sort #sort-menu[aria-hidden="true"] {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.sort #sort-menu button {
  color: #fff;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: 16px;
  line-height: 16px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}
.sort #sort-menu button.active {
  font-weight: 600;
}
.sort #sort-menu button .circle {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #fff;
  margin-right: 15px;
}
.sort #sort-menu button.active .circle {
  background-color: #fff;
}
.sort #sort-menu button:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 600px) {
  #nucleus-event-feed .list .nef-list-item .nef-event {
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    border: none;
    margin-bottom: 20px;
  }
  #nucleus-event-feed .list .nef-list-item .nef-event:hover,
  #nucleus-event-feed .list .nef-list-item .nef-event:focus,
  #nucleus-event-feed .list .nef-list-item .nef-event.featured:hover,
  #nucleus-event-feed .list .nef-list-item .nef-event.featured:focus {
    box-shadow: none !important;
  }
  #nucleus-event-feed .list .nef-list-item .nef-event:hover .event-mobile-box,
  #nucleus-event-feed .list .nef-list-item .nef-event:focus .event-mobile-box {
    box-shadow: 0px 0px 8px 0px rgba(33, 56, 117, 0.75) !important;
    border-color: var(--blue) !important;
  }
  #nucleus-event-feed
    .list
    .nef-list-item
    .nef-event.featured:hover
    .event-mobile-box,
  #nucleus-event-feed
    .list
    .nef-list-item
    .nef-event.featured:focus
    .event-mobile-box {
    box-shadow: 0px 0px 8px 0px rgba(218, 19, 51, 0.75) !important;
    border-color: var(--red) !important;
  }
  #nucleus-event-feed
    .list
    .nef-list-item
    .nef-event.has-tags
    .event-mobile-container {
    padding: 10px 14px 8px 14px;
  }
  #nucleus-event-feed .list .nef-list-item .nef-event .event-mobile-box {
    order: 2;
    background-color: #fff;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.15);
    border: none;
  }
  #nucleus-event-feed .list .nef-list-item .nef-event .event-mobile-container {
    flex: 1;
    display: block;
    padding: 10px 14px 13px 14px;
  }
  #nucleus-event-feed .list .nef-list-item .nef-event .tags {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
  }
  #nucleus-event-feed .list .nef-list-item .nef-event .tags .tag {
    margin: 0 10px 5px 0;
  }
  #nucleus-event-feed .list .nef-list-item .nef-event .tags .tag:before,
  #nucleus-event-feed .list .nef-list-item .nef-event .tags .tag:after {
    display: none !important;
  }
  #nucleus-event-feed .list .nef-list-item .nef-event .info {
    border: none;
    border-radius: 0;
    order: 1;
    width: 100%;
    background-color: transparent;
    padding: 10px 0;
    text-align: left;
  }
  #nucleus-event-feed .list .nef-list-item .nef-event .info p {
    margin-bottom: 0;
    font-size: 11px !important;
    line-height: 11px !important;
    font-weight: 700;
    letter-spacing: 0.025em;
    color: var(--blue);
    opacity: 0.75;
  }
  #nucleus-event-feed .list .nef-list-item .nef-event .info p .mobile-spacer {
    display: inline;
  }
  #nucleus-event-feed .list .nef-list-item .nef-event .info p br {
    display: none;
  }
  #nucleus-event-feed .list .nef-list-item .nef-event .info .btn {
    display: none;
  }
  #nucleus-event-feed .list .nef-list-item .nef-event .title {
    width: 100%;
    flex: 0 1 auto;
    padding: 0 !important;
    margin-bottom: 5px;
  }
  #nucleus-event-feed .list .nef-list-item .nef-event .title h2 {
    font-size: 14px;
    line-height: 16px;
  }
  #nucleus-event-feed .list .nef-list-item .nef-event .mobile-link {
    display: flex;
    order: 3;
    width: 45px;
    background-color: #17254b;
    align-items: center;
    justify-content: center;
  }
  #nucleus-event-feed .list .nef-list-item .nef-event .mobile-link svg {
    width: 12px;
    fill: #ffffff;
  }
  #nucleus-event-feed
    .list
    .nef-list-item
    .nef-event.featured
    .event-mobile-box {
    border-color: var(--red);
  }
  #nucleus-event-feed .list .nef-list-item .nef-event.featured .mobile-link {
    background-color: #17254b;
  }
  #nucleus-event-feed .list .nef-list-item .nef-event.featured .title h2 {
    font-size: 18px;
    line-height: 21px;
  }
  #nucleus-event-feed .list .nef-list-item .nef-event .tags .tag {
    padding: 5px 7px 5px 8px;
  }
  #nucleus-event-feed .list .nef-list-item .nef-event .tags .tag svg {
    display: none;
  }
  #nucleus-event-feed .pagination {
    margin-top: 30px;
  }
}
@media screen and (max-width: 400px) {
  #nucleus-event-feed .list .nef-list-item .nef-event .tags .tag {
    margin: 0 5px 5px 0;
  }
  #nucleus-event-feed .list .nef-list-item .nef-event .title h2 {
    font-size: 13px;
  }
  #nucleus-event-feed .list .nef-list-item .nef-event .title p {
    font-size: 12px;
    line-height: 16px;
    padding-bottom: 5px;
  }
  #nucleus-event-feed .list .nef-list-item .nef-event.featured .title h2 {
    font-size: 14px;
    line-height: 16px;
  }
  #nucleus-event-feed .list .nef-list-item .nef-event.featured .title p {
    font-size: 13px;
    line-height: 18px;
  }
  #nucleus-event-feed .pagination {
    padding-top: 15px;
  }
  #nucleus-event-feed .pagination li {
    margin-right: 5px;
  }
}

.home .banner:after {
  display: none;
}
.home .blocks .block .text .title-med-1:before {
  display: none;
}
.about .top-banner {
  background-color: rgb(41, 61, 121) !important;
}
.about .top-banner h1 {
  font-size: 3.5rem;
  color: white;
  text-transform: uppercase;
  text-align: center;
  font-family: "Open Sans", ui-sans-serif, system-ui, -system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell,
    "Helvetica Neue", sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol";
  font-variation-settings: "wdth" 75, "wght" 800;
  padding: 1em 0;
}
.about .about-content {
  background-color: white;
  padding: 6em 0;
}
.about .about-content .content {
  width: 100%;
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 48em) {
  .about .about-content .content {
    max-width: 90%;
  }
}
@media (min-width: 60em) {
  .about .about-content .content {
    max-width: 75%;
  }
}
.about .image-full {
  width: 100%;
  height: 20em;
  object-position: top;
  object-fit: cover;
}
@media (min-width: 48em) {
  .about .image-full {
    height: 30em;
  }
}
@media (min-width: 60em) {
  .about .image-full {
    height: 35em;
  }
}
.about p {
  margin-top: 0;
  margin-bottom: 1rem;
  color: rgba(0, 0, 0, 0.75);
  font-family: "Open Sans", ui-sans-serif, system-ui, -system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell,
    "Helvetica Neue", sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol";
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
}
.about .about-content h2 {
  font-size: 2rem;
  margin-bottom: 0.46875rem;
  font-family: "Roboto", "Open Sans", ui-sans-serif, system-ui, -system-ui,
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu,
    Cantarell, "Helvetica Neue", sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: 500;
  line-height: 1.2;
  color: rgba(0, 0, 0, 0.75);
}
@media (min-width: 48em) {
  .about .about-content h2 {
    font-size: 3rem;
  }
}
.about .text-image {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 1rem 0;
}
.about .text-image .text {
  width: 100%;
}
@media (min-width: 48em) {
  .about .text-image .text {
    width: calc(100% - 25em);
  }
}
.about .text-image .img-container {
  width: 100%;
}
@media (min-width: 48em) {
  .about .text-image .img-container {
    width: 21em;
  }
}
.about .text-image .img-container img {
  width: 100%;
  height: 25em;
  object-fit: cover;
  object-position: top;
}
.btn-contain {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border-bottom: 1px solid #e3e4e6;
  padding-bottom: 1em;
}
.btn-cst {
  background-color: #293d79;
  color: white;
  font-variation-settings: normal;
  font-weight: 500;
  font-family: "Open Sans", ui-sans-serif, system-ui, -system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell,
    "Helvetica Neue", sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol";
  display: inline-block;
  text-align: center;
  border: 1px solid transparent;
  padding: 1rem 1.25rem;
  font-size: 1.125rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  text-decoration: none;
  transition: 0.3s all ease-in-out;
  text-transform: uppercase;
  margin: 0.5em;
}
.btn-cst:hover {
  background-color: white;
  border: 1px solid #293d79;
  color: #293d79;
}

.about .tag-contain {
  padding: 2em 0;
}
.about .tag-contain a {
  font-family: ui-monospace, SFMono-Regular, ui-monospace, Monaco, "Andale Mono",
    "Ubuntu Mono", monospace;
  font-size: 0.875rem;
  color: #474849;
  font-weight: 400;
  line-height: 2.3;
}
.about .tag-contain a::before {
  content: "#";
}
.about .tag-contain a:not(:last-col) {
  margin-right: 0.5rem;
}
.donate-popup {
  position: fixed;
  z-index: 99999;
  width: 100vw;
  height: 100svh;
  background-color: rgba(0,0,0,.7);
  top: 0;
  display: flex;
  padding: 40px 60px 40px 40px;
  justify-content: center;
  align-items: center;
  transition: .5s ease-in-out all;
  opacity: 1;
  visibility: visible;
}

.donate-popup.hidden {
  opacity: 0;
  visibility: hidden;
}

.donate-popup .popup-inner {
  padding: 40px;
  background-color: white;
  width: 100%;
  display: flex;
  flex-direction: column;
  max-width: 750px;
  height: 600px;
  position: relative;
  justify-content: space-between;
}

.donate-popup .popup-close {
  font-size: 40px;
  position: absolute;
  top: 40px;
  right: 40px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  color: #293d79;
}

.donate-popup .popup-close:focus {
  text-decoration: none;
}

.donate-popup .logo {
  margin-inline: auto;
  margin-bottom: 40px;
  display: block;
  width: fit-content;
}

.donate-popup .logo img {
  width: 200px;
}

.donate-popup .popup-inner p {
  text-align: center;
}

.donate-popup .btn {
  margin-block: 40px;
}

.donate-popup .donations {
  list-style-type: none;
}

.donate-popup li {
  margin-inline: 10px;
}

.donate-popup .donations p{
  display: inline;
  margin-right: 10px;
}

.donate-popup .donations span{
  font-weight: bold;
}

.donate-popup .donations .slick-prev,
.donate-popup .donations .slick-next {
  display: none !important;
}

@media screen and (max-width: 768px){
  .donate-popup {
    padding: 0;
  }
}

.banner-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  background-color: rgba(0, 0, 0, .75);
  transition: .25s all ease-in-out;
}

.banner-popup.--visible {
  z-index: 9999;
  opacity: 1;
}

.banner-popup .container {
  height: 100%;
  max-width: unset;
}

.banner-popup__close {
  position: absolute;
  color: white;
  font-size: 50px;
  right: 0;
}

.banner-popup__close:is(:focus, :hover) {
  text-decoration: unset;
}

.banner-popup__video {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.banner__hint {
  position: absolute;
  right: 0;
  top: 25px;
  background-color: white;
  font-size: 16px;
  color: black;
  padding-inline: 10px 30px;
  border-radius: 20px;
}

.banner__hint::before {
  position: absolute;
  width: 26px;
  height: 26px;
  content: 'i';
  background-color: #b91f3a;
  right: -2px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: white;
}

@media screen and (max-width: 1100px){
  .banner-popup__close {
    padding: 0 5%;
  }

  .banner__hint {
    right: 20px;
  }
}