/* 1. VARS
------------------------------------------------------------------------------*/
html {
  --dblue: #0b162c;
  --white: #ffffff;
  --red: #bf0426;
  --blue: #1e3559;
  --lblue: #9cc4f2;
  --grey: #f1f2f2;
}

/* 2. Site Helpers
------------------------------------------------------------------------------*/

/* Colors */
.color-white,
.color-white * {
  color: var(--white) !important;
}
.color-dblue,
.color-dblue * {
  color: var(--dblue) !important;
}
.color-blue,
.color-blue * {
  color: var(--blue) !important;
}
.color-lblue,
.color-lblue * {
  color: var(--lblue) !important;
}
.color-red,
.color-red * {
  color: var(--red) !important;
}

/* Background Colors */
.bg-white {
  background-color: var(--white) !important;
}
.bg-dblue {
  background-color: var(--dblue) !important;
  color: var(--white);
}
.bg-blue {
  background-color: var(--blue) !important;
  color: var(--white);
}
.bg-red {
  background-color: var(--red) !important;
  color: var(--white);
}
.bg-lblue {
  background-color: var(--lblue) !important;
}
.bg-dblue *,
.bg-red *,
.bg-blue * {
  color: var(--white);
}
.bg-grey {
  background-color: var(--grey) !important;
}

/* Headers  */
.title-lrg-1 {
  font-family: 'Playfair Display SC', serif;
  font-size: 3.469rem;
  line-height: 4.031rem;
  font-weight: 700;
  text-transform: uppercase;
}
.title-lrg-1 em {
  font-weight: 400;
}
.title-lrg-1.equal-line-height {
  line-height: 3.469rem;
}
.title-lrg-2 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 4.96rem;
  letter-spacing: -.025em;
}
.title-med-1 {
  font-family: 'Playfair Display';
  font-weight: 900;
  font-size: 2.5rem;
  line-height: 2.5rem;
}
.title-med-2 {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 2rem;
}
.title-med-3 {
  font-family: 'Playfair Display';
  font-weight: 900;
  font-size: 1.5rem;
  line-height: 2rem;
}
.title-med-2.equal-line-height {
  line-height: 2rem;
}
.title-sml-1 {
  font-size: 1.5rem;
  line-height: 1.5rem;
  letter-spacing: .3em;
  text-transform: uppercase;
}
.title-sml-2 {
  font-size: 1.25rem;
  line-height: 1.25rem;
  letter-spacing: .3em;
  text-transform: uppercase;
}
.title-sml-3 {
  font-size: 10.5px;
  line-height: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .3em;
}
@media screen and (max-width: 768px){
  .title-med-2 {
    letter-spacing: .01em;
  }
  .title-sml-1 {
    letter-spacing: .05em;
  }
  .title-sml-2 {
    letter-spacing: .05em;
  }
  .title-sml-3 {
    letter-spacing: .05em;
  }
}
@media screen and (max-width: 375px){
  .title-lrg-1 {
    font-size: 11vw;
    line-height: 12vw;
  }
  .title-lrg-1.equal-line-height {
    line-height: 3rem;
  }
}

/* Paragraphs */
p {
  color: var(--dblue);
  font-weight: 400;
  letter-spacing: .04em;
  font-size: 1rem;
  line-height: 1.5rem;
}
p.text-med {
  font-size: 1.125rem;
  line-height: 2rem;
}

/* Links */
a {
  color: var(--dblue);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: 300ms ease all;
  -webkit-transition: 300ms ease all;
  -o-transition: 300ms ease all;
}
a:hover {
  text-decoration: none;
  color: var(--red);
}
a.no-color-change:hover {
  color: var(--dblue);
}
a:focus,
button:focus,
input[type=submit]:focus {
  text-decoration: none;
}
a.back-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align-items: center;
  -webkit-align-items: center;
  align-items: center;
}
a.back-link:before {
  margin-right: 10px;
  display: block;
  content: '';
  width: 16px;
  height: 16px;
  background-image: url(/assets/images/arrow_blue.svg);
  background-position: center;
  background-repeat: no-repeat;
}

/* 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;
}

/* Buttons */
.btn {
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  display: inline-block;
  font-size: 1rem;
  line-height: 1rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--dblue) !important;
  background-color: rgba(255,255,255,.5);
  padding: 15px 45px;
  width: auto;
  transition: 300ms ease all;
  -webkit-transition: 300ms ease all;
  -o-transition: 300ms ease all;
}
.btn:hover,
.btn:focus {
  background-color: var(--white);
}
.btn.blue {
  background-color: var(--dblue) !important;
  color: var(--white) !important;
}
.btn.blue:hover,
.btn.blue:focus {
  background-color: var(--red) !important;
  color: var(--white) !important;
}
.btn.red {
  background-color: var(--red) !important;
  color: var(--white) !important;
}
.btn.red:hover,
.btn.red:focus {
  background-color: var(--dblue) !important;
  color: var(--white) !important;
}
.btn.btn-sm {
  font-size: 1.15rem;
  line-height: 1.15rem;
  width: auto;
  padding: 10px 20px;
}
.btn.btn-outline {
  border: 3px solid var(--dblue);
  background-color: rgba(255,255,255,.5);
  font-size: 1rem;
  line-height: 1rem;
  font-weight: 500;
  padding: 20px 25px;
  letter-spacing: .2em;
  width: auto;
}
.btn.btn-outline:hover,
.btn.btn-outline:focus {
  background-color: rgba(255,255,255,1);
  color: var(--dblue) !important;
}
.btn.btn-rounded {
  background-color: var(--white);
  border-radius: 50px;
  padding: 10px 50px;
}
.btn.btn-rounded:hover {
  color: var(--red) !important;
}
@media screen and (max-width: 960px) {
  .btn,
  .btn.btn-outline {
    background-color: var(--white);
  }
}

/* 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,.25);
}

/* Background Blend Modes */
.image-bg-blend {
  position: relative;
  background-blend-mode: luminosity;
}
.image-bg-blend.multiply {
  background-blend-mode: multiply;
}
.image-bg-blend > * {
  position: relative;
  z-index: 3;
}
.image-bg-blend:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  opacity: .5;
  background-color: var(--dblue);
}
.image-bg-blend:before {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  opacity: .5;
}
.image-bg-blend.bg-red:before {
  background-color: var(--red);
}
.image-bg-blend.bg-lblue:before {
  background-color: var(--blue);
}

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

/* Page Layout */
html, body {
  height: 100%;
  font-size: 1em;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: var(--dblue);
}
#wrapper {
  min-height: 100%;
  height: auto !important;
  margin: 0 auto;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-flex-flow: column;
  flex-flow: column;
}
main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-flex-flow: column;
  flex-flow: column;
}
.container {
  width: 90%;
  max-width: 1280px;
  margin: auto;
  position: relative;
}
.container.container-1050 {
  max-width: 1050px;
}
#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: var(--red);
}
.no-banner main {
  padding-top: 83px;
}
@media screen and (max-width: 1200px) {
  .container {
    padding: 0 32px;
    width: 100vw;
  }
  html,
  body {
    font-size: 0.9em;
  }
}
@media screen and (max-width: 960px) {
  html,
  body {
    font-size: 0.8em;
  }
  .no-banner main {
    padding-top: 83px;
  }
}
@media screen and (max-width: 768px) {
  html,
  body {
    font-size: 0.7em;
  }
  .container {
    padding: 0 20px;
  }
}
@media screen and (max-width: 500px) {
  html,
  body {
    font-size: 0.6em;
  }
}
@media screen and (max-width: 415px) {
  .no-banner main {
    padding-top: 106px;
  }
}

/* Header */
#header-sticky-wrapper {
  width: 100%;
  height: 135px;
}
#header {
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  height: 83px;
  background-color: rgba(11, 22, 44, 0.75);
  transition: 300ms ease all;
  -webkit-box-shadow: 0px 5px 20px 0px rgba(11, 22, 44, 0.5);
  -moz-box-shadow: 0px 5px 20px 0px rgba(11, 22, 44, 0.5);
  box-shadow: 0px 5px 20px 0px rgba(11, 22, 44, 0.5);
}
.no-banner #header {
  background-color: var(--dblue);
}
#header.is-fixed {
  height: 83px;
  background-color: var(--dblue);
}
#header #header-logo,
#header #header-logo svg {
  z-index: 3;
  width: 140px;
  height: 60px;
}
#header #header-nav li {
  list-style: none;
}
#header > .container {
  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;
}
#header .header-main {
  height: 100%;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-flex-flow: column;
  flex-flow: column;
  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;
}
#header .header-main .header-top {
  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;
  position: relative;
  z-index: 2;
}
#header .header-main .header-top nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
#header .header-main .header-top nav ul li {
  display: block;
}
#header .header-main .header-top nav ul li a {
  text-align: center;
  display: block;
  font-weight: 700;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  min-width: 160px;
  padding: 0 25px;
  height: 36px;
  line-height: 36px;
}
#header .header-main .header-top nav ul li a:hover {
  background-color: var(--white) !important;
}
#header .header-main .header-top nav ul li a.bg-dblue:hover {
  color: var(--dblue) !important;
}
#header .header-main .header-top nav ul li a.bg-red:hover {
  color: #ba232b !important;
}
#header #header-nav .search {
  justify-content: center;
}
#header .search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
#header .search button {
  position: relative;
  border-bottom: 3px solid transparent;
  width: 36px;
  height: 36px;
}
#header .search button svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 1.5px;
}
#header .search button[aria-expanded="true"] {
  border-color: #fff;
}
#header .search form.hidden {
  width: 0;
  overflow: hidden;
  max-width: 0;
}
#header .search input {
  width: 195px;
  border-bottom: 3px solid #fff;
  height: 36px;
  font-size: 15px;
  letter-spacing: 0.1em;
  color: #fff;
}
#header
  .header-main
  .header-top
  .search
  input[type="search"]::-webkit-search-decoration,
#header
  .header-main
  .header-top
  .search
  input[type="search"]::-webkit-search-cancel-button,
#header
  .header-main
  .header-top
  .search
  input[type="search"]::-webkit-search-results-button,
#header
  .header-main
  .header-top
  .search
  input[type="search"]::-webkit-search-results-decoration {
  display: none;
}
.is-header-desktop #header #header-nav #mobile-nav-bottom {
  display: none;
}
.is-header-desktop #header #header-nav {
  width: 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 #header-nav > ul {
  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;
  -ms-flex-align-items: center;
  -webkit-align-items: center;
  align-items: center;
}
.is-header-desktop #header #header-nav li.level-1 {
  list-style: none;
  position: relative;
  margin-left: 60px;
}
.is-header-desktop #header #header-nav li.level-1.has-dropdown-menu {
  transition: 300ms ease all;
}
.is-header-desktop #header #header-nav li.level-1:first-child {
  margin-left: 0;
}
.is-header-desktop #header #header-nav li.level-1 > a {
  display: block;
  letter-spacing: 0.01em;
  font-size: 15px;
  line-height: 15px;
  padding-bottom: 10px;
  border-bottom: 3px solid transparent;
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: 18px;
}
.is-header-desktop #header #header-nav li.level-1:hover > a {
  border-color: #fff;
}
.is-header-desktop #header #header-nav li.level-1 .dropdown-menu {
  padding: 20px 0 25px 0;
  color: #fff;
  min-width: 200%;
  position: absolute;
  top: 100%;
  cursor: default;
  left: 0;
  background-color: #1e3559;
  border-left: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-right: 1px solid transparent;
}
.is-header-desktop #header.is-fixed #header-nav li.level-1 .dropdown-menu {
  border-left-color: #dad9d9;
  border-bottom-color: #dad9d9;
  border-right-color: #dad9d9;
}
.is-header-desktop #header #header-nav li.level-1 .dropdown-menu ul li {
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
}
.is-header-desktop
  #header
  #header-nav
  li.level-1
  .dropdown-menu
  ul
  li:last-child {
  border-bottom: none;
}
.is-header-desktop
  #header
  #header-nav
  li.level-1
  .dropdown-menu
  ul
  li.section-header
  a {
  font-style: normal;
  padding: 10px 30px;
  font-size: 13px;
  color: #a2cbf9;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
#header #header-nav li.level-1 .dropdown-menu ul li a {
  display: block;
  color: #fff;
  padding: 5px 30px;
  white-space: nowrap;
  text-transform: none;
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.is-header-desktop
  #header
  #header-nav
  li.level-1
  .dropdown-menu
  ul
  li
  a.level-2-link {
  font-style: normal;
  padding: 15px 30px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: none;
  -webkit-transition: none;
  -o-transition: none;
}
#header #header-nav li.level-1 .dropdown-menu ul li a:hover {
  text-decoration: underline;
}
.is-header-desktop #header #header-nav .dropdown-menu[aria-hidden="true"] {
  opacity: 0;
  visibility: hidden;
}
.is-header-desktop #header #header-nav .dropdown-menu[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}
.is-header-desktop #header #header-nav .expand-menu[aria-hidden="true"] {
  height: 0;
  overflow: hidden;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}
.is-header-desktop
  #header
  #header-nav
  .level-2-link#em-issues-link[aria-expanded="true"] {
  padding: 35px 30px 15px 30px;
  margin-top: 20px;
}
.is-header-desktop #header #header-nav .expand-menu {
  position: relative;
  height: auto;
}
.is-header-desktop #header #header-nav .expand-menu#em-issues {
  -moz-column-count: 2;
  -webkit-column-count: 2;
  column-count: 2;
}
.is-header-desktop #header #header-nav .expand-menu#em-areas {
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.is-header-desktop #header #header-nav .expand-menu#em-areas ul {
  display: block;
  width: 100%;
  -moz-column-count: 2;
  -webkit-column-count: 2;
  column-count: 2;
}
.is-header-desktop #header #header-nav .expand-menu:after {
  display: block;
  content: "";
  width: calc(100% - 60px);
  height: 1px;
  position: absolute;
  left: 30px;
  background-color: #a2cbf9;
}
.is-header-desktop #header #header-nav .expand-menu#em-areas:after {
  bottom: 0;
}
.is-header-desktop #header #header-nav .expand-menu#em-issues:after {
  top: -63px;
}
.is-header-desktop #header #header-nav .expand-menu ul {
  padding-bottom: 5px;
  page-break-inside: avoid;
  break-inside: avoid-column;
  display: table;
}
.is-header-desktop #header #header-nav li.level-1:hover > a {
  border-color: var(--white);
  font-weight: 700;
}
.is-header-desktop #header #header-nav li.level-1 > a.active {
  font-weight: 700;
}
#mobile-menu-trigger,
.mobile-menu-trigger-container {
  display: none;
}
.is-header-desktop #header #header-nav li.level-1 .dropdown-menu.dropdown-menu-full {
  width: 100vw;
  min-width: 100vw;
  max-width: 100vw;
  position: fixed;
  left: 0;
  top: 83px;
  right: 0;
}
.is-header-desktop #header #header-nav li.level-1 .dropdown-menu.dropdown-menu-full li a {
  padding: 0;
  letter-spacing: 0;
}
.is-header-desktop #header #header-nav li.level-1 .dropdown-menu.dropdown-menu-full .block-row {
  display: flex;
  justify-content: space-between;
}
.is-header-desktop #header #header-nav li.level-1 .dropdown-menu.dropdown-menu-full .block-row .block-col {
  width: 18%;
}
.is-header-desktop #header #header-nav li.level-1 .dropdown-menu.dropdown-menu-full .block-row .block-col .block {
  padding-top: 20px;
}
.is-header-desktop #header #header-nav li.level-1 .dropdown-menu.dropdown-menu-full .block-row .block-col .block:first-child {
  padding-top: 0;
}
#header #header-nav li.level-1 .dropdown-menu.dropdown-menu-full .block-row .block-col .block-header {
  margin-bottom: 7px;
  display: block;
}
.is-header-desktop #header #header-nav li.level-1 .dropdown-menu.dropdown-menu-full .block-row .block-col li {
  margin-bottom: 10px;
}
#header #header-nav li.level-1 .dropdown-menu.dropdown-menu-full .block .block-header {
  font-family: 'Playfair Display';
  font-weight: 900;
  color: var(--lblue);
  font-size: 1.17rem;
  line-height: 1.5rem;
}
#header #header-nav .trending-search .title {
  color: var(--dblue);
  text-transform: uppercase;
  letter-spacing: .3em;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5rem;
}
#header #header-nav .trending-search li a {
  /* font-size: 1.5rem !important;
  line-height: 1.5rem !important; */
  font-weight: 500 !important;
}
@media screen and (max-width: 1200px) {
  .is-header-desktop #header #header-nav li.level-1 {
    margin-left: 30px;
  }
  .is-header-desktop
    #header
    #header-nav
    li.level-1.has-issues-dropdown-menu {
    position: static;
  }
  .is-header-desktop
    #header
    #header-nav
    li.level-1
    .dropdown-menu#ddm-issues {
    min-width: 0;
    left: auto;
    right: 0;
    top: 73px;
  }
}
@media screen and (max-width: 960px) {
  #header #header-nav li.level-1 .dropdown-menu#ddm-issues .container {
    padding: 0 calc(5% + 19.8px) !important;
  }
  #header #header-nav .dropdown-menu a.level-2-link {
    padding: 1rem calc(5% + 19.8px) !important;
  }
  #header #header-nav li.level-1 .dropdown-menu#ddm-issues ul li a {
    padding: 1rem 0 !important;
  }
  #header {
    height: 83px;
  }
  #header #header-logo,
  #header #header-logo svg {
    width: 140px;
    height: 60px;
  }
  #header .header-main .header-top nav ul li a {
    letter-spacing: 0.1em;
    padding: 0 15px;
    min-width: 0;
  }
  .is-header-desktop #header #header-nav li.level-1 {
    margin-left: 15px;
  }
  .is-header-desktop #header #header-nav li.level-1 > a {
    letter-spacing: 0.01em;
  }
  .is-header-desktop #header #header-nav li.level-1 {
    position: static;
  }
  .is-header-desktop #header #header-nav li.level-1 .dropdown-menu {
    top: 83px;
    min-width: calc(100vw - 20px);
    left: 0;
    right: 0;
  }
  #header .search button {
    width: 30px;
    height: 30px;
  }
  #header .search input {
    height: 30px;
  }
  #header .header-main .header-top nav ul li a {
    height: 30px;
    line-height: 30px;
  }
  #header .header-main {
    -ms-flex-justify-content: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  #header.is-mobile-open #header-logo .st0 {
    fill: transparent;
  }
  #header.is-mobile-open #header-logo .st1 {
    fill: var(--white);
  }
  #header.is-mobile-open #header-logo .st2 {
    fill: var(--white);
  }
  #header .search {
    display: none;
  }
  .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;
    position: absolute;
    right: 5vw;
    top: 39px;
    -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: #fff;
    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: #a2cbf9 !important;
  }
  #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.level-1-trigger-icon {
    display: block;
    position: absolute;
    top: 50%;
    left: 2.5%;
    margin-top: -7px;
    margin-left: -7px;
    width: 14px;
    height: 14px;
    -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: 3px;
    background: #a2cbf9;
  }
  #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: 3px;
    background: #a2cbf9;
    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;
    padding-top: 1.5rem;
  }
  #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 {
    color: #fff;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-right: 5%;
    display: block;
    border-width: 0;
  }
  #header #header-nav ul li.level-1 a {
    position: relative;
    padding: 1.5rem 0 !important;
  }
  #header #header-nav ul li.level-1 > a {
    text-transform: uppercase;
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
    letter-spacing: .1em;
    padding-left: calc(5% + 19.8px) !important;
  }
  #header #header-nav {
    position: fixed;
    top: 20px;
    left: 100%;
    bottom: 0;
    right: -100%;
    z-index: 1;
    width: 100%;
    height: 100vh;
    overflow: scroll;
    padding-top: 93px;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 20px;
    background-color: var(--dblue);
    -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: 93px;
    background-color: var(--dblue);
    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%;
  }
  #header #header-nav .dropdown-menu a.level-2-link {
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  #header #header-nav .dropdown-menu ul {
    padding: 0 0 1.5rem 0;
  }
  #header #header-nav .expand-menu {
    padding: 0 5%;
  }
  #header #header-nav .expand-menu[aria-hidden="true"] {
    display: none;
  }
  #header #header-nav .expand-menu ul {
    padding: 16px 5%;
  }
  #header #header-nav li span.level-2-trigger-icon {
    display: block;
    position: absolute;
    top: 50%;
    left: 2.5%;
    margin-top: -6px;
    margin-left: -6px;
    width: 12px;
    height: 12px;
    -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.level-2-trigger-icon:before {
    width: 100%;
  }
  #header #header-nav li span.level-2-trigger-icon:after {
    width: 100%;
  }
  #header #header-nav .expand-menu ul li.section-header a {
    margin-bottom: 8px;
    font-size: 16px;
    color: #a2cbf9;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  #header #header-nav .expand-menu ul li a {
    padding: 8px 0 !important;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    text-transform: none;
    font-size: 15px;
    font-style: italic;
    letter-spacing: 0;
  }
  #header #header-nav li.level-1 .dropdown-menu.dropdown-menu-full .block .block-header {
    font-size: 14px;
    line-height: 16px;
  }
  #header #header-nav .trending-search {
    padding-top: 1.5rem;
    padding-bottom: 5rem;
  }
  #header #header-nav .trending-search .title {
    color: var(--lblue);
    opacity: .5;
  }
  #header #header-nav .trending-search ul li {
    text-align: center;
  }
  #header #header-nav .trending-search li a {
    font-size: 18px !important;
    line-height: 18px !important;
  }
  #header #header-nav .trending-search .search {
    display: flex;
  }
  #header #header-nav .trending-search .search form,
  #header #header-nav .trending-search .search form.hidden {
    display: flex;
    flex: 1;
    width: 100%;
    max-width: 100%;
  }
  #header #header-nav .trending-search .search form input {
    width: 100%;
    max-width: 100%;
  }
  #header #header-nav .trending-search .search button[aria-expanded="true"] {
    border-color: transparent;
  }
}
@media screen and (max-width: 800px) {
  #header .search input {
    width: 170px;
  }
}
@media screen and (max-width: 768px) {

}
@media screen and (max-width: 550px) {
  #header #header-logo,
  #header #header-logo svg {
    width: 90px;
    height: 40px;
  }
  #header .header-main .header-top {
    transform: translateX(20px);
    margin-left: -20px;
  }
  #mobile-menu-trigger {
    right: 20px;
    top: 37px;
  }
  #header .header-main .header-top nav ul li a {
    height: 26px;
    line-height: 26px;
    font-size: 11px;
    padding: 0 10px;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 500px) {
  #header #header-nav ul li.level-1 a {
    padding-left: 10%;
  }
  #header #header-nav li span.level-1-trigger-icon,
  #header #header-nav li span.level-2-trigger-icon {
    left: 5%;
  }
}
@media screen and (max-width: 415px) {
  #header.is-fixed {
    height: 106px;
  }
  #header .header-main .header-top {
    margin-left: 0;
    transform: none;
    position: absolute;
    z-index: 3;
    width: 100vw;
    left: 0;
  }
  #header .header-main .header-top nav ul li a.bg-dblue {
    width: 50vw;
  }
  .no-banner #header .header-main .header-top nav ul li a.bg-dblue,
  #header.is-fixed .header-main .header-top nav ul li a.bg-dblue,
  #header.is-mobile-open .header-main .header-top nav ul li a.bg-dblue {
    background-color: #1e3559 !important;
  }
  #header .header-main .header-top nav ul li a.bg-red {
    width: 50vw;
  }
  #header #header-logo {
    position: absolute;
    bottom: 20px;
    left: 20px;
  }
  #header {
    height: 106px;
  }
  #mobile-menu-trigger {
    top: auto;
    right: 20px;
    bottom: 20px;
  }
}

/* Footer */
#footer {
  width: 100%;
  position: relative;
  z-index: 100;
}
#footer li {
  list-style: none;
}
#footer .top .links li {
  padding: 5px 0;
}
#footer .top .links a {
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.2em;
  font-size: 13.5px;
}
#footer .top .links a:hover,
#footer .top .links a:focus {
  font-weight: 700;
}
#footer .top .social li {
  margin: 0 15px;
}
#footer .top .social a {
  width: 40px;
  height: 40px;
}
#footer .top .social a svg .st0 {
  transition: 300ms ease all;
  -webkit-transition: 300ms ease all;
  -o-transition: 300ms ease all;
}
#footer .top .social a:hover svg .st0 {
  fill: #ba232b !important;
}
#footer .top .logo {
  width: 145px;
  height: 145px;
  background-image: url(/assets/images/emblem.svg);
}
#footer .bottom {
  padding: 20px 0;
}
#footer .bottom p {
  font-size: 8px;
  line-height: 12px;
  opacity: 0.5;
}
@media screen and (max-width: 768px) {
  #footer .top .social li {
    margin: 0 5px;
  }
  #footer .top .logo {
    width: 100px;
    height: 100px;
  }
  #footer .top .social a,
  #footer .top .social a svg {
    width: 30px !important;
    height: 30px !important;
  }
  #footer .top .links a {
    letter-spacing: 0.1em;
    font-size: 13px;
  }
}
@media screen and (max-width: 500px) {
  #footer .top .links {
    order: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  #footer .top .logo {
    order: 2;
  }
  #footer .top .social {
    padding-top: 25px;
    order: 3;
    width: 100%;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}

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

/* form select */
.form-select {
  display: block;
  width: 100%;
  padding: .375rem 2.25rem .375rem .75rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--dblue);
  background-color: var(--white);
  background-image: url(/assets/images/arrow_blue_down.svg);
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 16px 12px;
  border: 1px solid #d3d0c7;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  appearance: none;
}
.form-select:focus {
    border-color: var(--lblue);
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(156,196,242,.25)
}

/* dropdown filters bar */
.dropdown-filters-bar {
  gap: 1.5rem;
}

/* icon info box */
.icon-info-box p.date {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.17rem;
  letter-spacing: 0;
}
.icon-info-box p.info {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 10.5px;
}

/* ee pagination */
.ee-paginate {
  display: flex;
  align-items: center;
}
.ee-paginate .prev,
.ee-paginate .next {
  display: flex;
}
.ee-paginate .prev a,
.ee-paginate .next a {
  font-size: 1rem;
  font-family: 'Playfair Display', serif;
  line-height: 1rem;
  font-style: italic;
}
.ee-paginate .next {
  justify-content: flex-end;
}
.ee-paginate ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.ee-paginate ul li {
  list-style: none;
}
.ee-paginate ul li a.active {
  text-decoration: underline;
}

/* article filter section */
.article-filter-section .top {
  border-bottom: 1px solid #e2e0da;
}
.article-filter-section .top .active-filters .actions a {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .05em;
}
.article-filter-section .top .active-filters .filters a {
  font-weight: 400;
  font-size: 13px;
  letter-spacing: .05em;
  display: flex;
  align-items: center;
}
.article-filter-section .top .active-filters .filters a:before {
  display: block;
  content: '';
  width: 10px;
  height: 10px;
  background-image: url(/assets/images/close.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  margin-right: .25rem;
}
.article-filter-section .main .main-left {
  width: 275px;
}
.article-filter-section .top .filter-list-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
.article-filter-section .top .filter-list-button svg {
  width: 24px;
  height: 24px;
}
.article-filter-section .main {
  position: relative;
}
.article-filter-section .main .main-left .filter-list-block * {
  font-size: 13px;
  letter-spacing: .05em;
}
.article-filter-section .main .main-left .filter-list-block .title {
  font-weight: 700;
}
.article-filter-section .main .main-left .filter-list-block li {
  list-style: none;
  margin-top: 10px;
}
.article-filter-section .main .main-left .filter-list-block a {
  font-weight: 400;
}
.article-filter-section .main .main-left .filter-list-block a.hidden {
  display: none;
}
.article-filter-section article,
.article-filter-section .article {
  min-height: 165px;
}
.article-filter-section article .image-container,
.article-filter-section .article .image-container {
  position: relative;
}
.article-filter-section article .image,
.article-filter-section .article .image,
.video-thumb .image {
  width: 120px;
  height: 120px;
  border-radius: 100%;
  overflow: hidden;
  background-color: #576271;
  background-blend-mode: luminosity;
  transition: 300ms ease all;
}
.article-filter-section article .image.br-0,
.article-filter-section .article .image.br-0,
.video-thumb .image.br-0 {
  border-radius: 0 !important;
}
.article-filter-section article .image.image-secondary,
.article-filter-section .article .image.image-secondary {
  width: 60px;
  height: 60px;
  position: absolute;
  bottom: 0;
  right: 1.5rem;
  border: 1px solid var(--grey);
}
.article-filter-section article .image.default-image,
.article-filter-section .article .image.default-image {
  position: relative;
}
.article-filter-section article .image.default-image:before,
.article-filter-section .article .image.default-image:before {
  display: block;
  content: '';
  background-color: #576271;
  opacity: .5;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  transition: 300ms ease all;
}
.article-filter-section article:hover .image.default-image:before,
.article-filter-section .article:hover .image.default-image:before {
  opacity: 0;
}
.article-filter-section article:hover .image,
.article-filter-section .article:hover .image,
.video-thumb:hover .image {
  background-blend-mode: normal;
}
.article-filter-section article .arrow,
.article-filter-section .article .arrow {
  width: 35px;
}
.article-filter-section article .arrow:after,
.article-filter-section .article .arrow:after {
  width: 35px;
  height: 35px;
  display: block;
  content: '';
  background-image: url(/assets/images/arrow_blue.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  transform: rotate(180deg);
  opacity: 0;
  transition: 300ms ease all;
}
.article-filter-section article:hover .arrow:after,
.article-filter-section .article:hover .arrow:after {
  opacity: 1;
}
.article-filter-section article:before,
.article-filter-section .article:before {
  display: block;
  content: '';
  width: 0;
  height: 100%;
  background-color: var(--dblue);
  transition: 300ms ease all;
}
.article-filter-section article:hover:before,
.article-filter-section .article:hover:before {
  width: 1.5rem;
}

.article-filter-section article.video,
.article-filter-section .article.video {
  min-height: 0;
}
.article-filter-section article.video .image,
.article-filter-section .article.video .image,
.video-thumb .image {
  width: 100%;
  height: auto;
  border-radius: 0;
}

@media screen and (max-width: 960px) {
  .article-filter-section .main .main-left {
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .article-filter-section .top .active-filters {
    padding-right: 1rem;
  }
  .article-filter-section .top .filter-list-button {
    display: flex;
  }
  .article-filter-section .top .filter-list-button svg * {
    transition: 300ms ease all;
  }
  .article-filter-section .top .filter-list-button.opened svg * {
    fill: var(--red);
  }
  .article-filter-section .main .main-left {
    width: calc(50% + 20px);
    position: absolute;
    right: calc(-50% - 40px);
    top: -1px;
    border-top: 1px solid #e2e0da;
    border-left: 1px solid #e2e0da;
    border-bottom: 1px solid #e2e0da;
    background-color: var(--white);
    transition: 300ms ease all;
    padding: 0 20px 20px 20px !important;
    max-height: calc(100vh - 212px);
    min-height: 50vh;
    overflow-y: scroll;
    z-index: 100;
  }
  .article-filter-section .main .main-left .filter-list-block {
    padding-top: 20px !important;
  }
  .article-filter-section .main .main-left.opened {
    right: -20px;
  }
}
@media screen and (max-width: 600px) {
  .article-filter-section article .image-container,
  .article-filter-section .article .image-container {
    display: none;
  }
  .article-filter-section article .arrow,
  .article-filter-section .article .arrow {
    display: none !important;
  }
  .article-filter-section .top {
    flex-wrap: wrap;
  }
  .article-filter-section .top .title-sml-2 {
    width: 100%;
    margin-bottom: .75rem;
  }
  .article-filter-section .top .active-filters {
    padding-left: 0 !important;
  }
}
@media screen and (max-width: 415px) {
  .article-filter-section .main .main-left {
    width: calc(75% + 20px);
    right: calc(-75% - 40px);
  }
}

/* resources links */
.resources-links {
  padding-left: 1.5rem;
  border-left: 1px solid #d3d0c7;
}
.resources-links li {
  list-style: none;
  margin-bottom: 10px;
}
.resources-links li a {
  color: var(--lblue) !important;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.17rem;
  line-height: 1.5rem;
}
.resources-links li a:hover {
  color: var(--white) !important;
}
.bg-red .resources-links li a {
  color: var(--white) !important;
}
.bg-red .resources-links li a:hover {
  color: var(--lblue) !important;
}

/* breadcrumbs */
.breadcrumbs {
  padding-left: 1.5rem;
  border-left: 1px solid #d3d0c7;
}
.breadcrumbs ul {
  gap: .25rem;
}
.breadcrumbs li {
  list-style: none;
  font-size: 13.5px;
  line-height: 30px;
  letter-spacing: .05em;
}
.breadcrumbs li a {
  font-weight: 400;
}
.breadcrumbs li a:hover {
  color: var(--red);
}

/* cat tabs */
.cat-tabs a {
  text-transform: uppercase;
  letter-spacing: .3em;
  font-size: 1.3125rem;
  line-height: 1.3125rem;
  font-weight: 400;
  padding: .75rem 1.5rem;
  border-bottom: 1px solid transparent;
  white-space: nowrap;
}
.cat-tabs a.active {
  font-weight: 700;
  border-color: #d9d6ce;
}
@media screen and (max-width: 768px) {
  .cat-tabs a {
    letter-spacing: .1em;
    padding: .75rem;
  }
}
@media screen and (max-width: 415px) {
  .cat-tabs a {
    letter-spacing: .01em;
  }
}
@media screen and (max-width: 320px) {
  .cat-tabs {
    flex-wrap: wrap;
  }
}

/* team feed */
.team-feed {
  gap: 3.75rem;
}

/* page tabs */
.page-tabs a {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 2.125rem;
  line-height: 2.125rem;
  font-weight: 900;
  border-bottom: 1px solid transparent;
  padding: .75rem 1.5rem;
  white-space: nowrap;
}
.page-tabs a.active {
  border-color: #d9d6ce;
}
@media screen and (max-width: 415px) {
  .page-tabs {
    flex-direction: column;
  }
  .page-tabs a {
    padding: .75rem;
    font-size: 2rem;
    line-height: 2rem;
  }
}
@media screen and (max-width: 320px) {
  .page-tabs {
    flex-wrap: wrap;
  }
}

/* banners */
.banner {
  width: 100%;
  position: relative;
  background-color: var(--dblue);
  height: auto;
}
.banner.banner-mh-600 {
  max-height: 600px;
}
.banner .content p.text-med {
  max-width: 700px;
}
.banner:after {
  display: block;
  content: "";
  width: 100%;
}
.banner.banner-large:after {
  padding-top: 58%;
}
.banner .banner-fixed-wrapper {
  position: fixed;
  height: auto;
  width: 100vw;
  z-index: 3;
}
.banner.banner-large .banner-fixed-wrapper:after {
  display: block;
  content: "";
  width: 100%;
  padding-top: 58%;
}
.banner.banner-auto-height:after {
  display: none;
}
.banner.banner-auto-height .container {
  position: relative;
  left: auto;
  transform: none;
  padding-top: 83px;
}
.banner.banner-auto-height > .image-bg-blend {
  position: relative;
  top: auto;
  left: auto;
}
.banner.banner-large .title-lrg-1 {
  margin-bottom: 4vw;
  text-shadow: 0px 9px 15px rgba(11, 22, 44, 1);
  font-size: 4.96rem;
  line-height: 5.5rem;
}
.banner .banner-fixed {
  width: 100%;
  height: 100%;
  position: absolute;
}
.banner .banner-fixed:before {
  z-index: 2;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(11, 22, 44, 0.3);
}
.banner .banner-fixed:after {
  z-index: 3;
  display: block;
  content: "";
  width: 170px;
  height: 155px;
  background-image: url(/assets/images/ribbon3.svg);
  background-size: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
}
.banner .container {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.banner .title-lrg-1 em {
  display: block;
  font-weight: 700;
}
.after-fixed-banner {
  background-color: #fff;
  position: relative;
  z-index: 99;
}
.banner.banner-large .container {
  padding-top: 83px;
}
.banner.video-banner:after {
  display: block;
  content: '';
  width: 100%;
  padding-top: 56.25%;
}
.banner.video-banner.video-banner-half-height:after {
  padding-top: 28.125%;
}
.banner.video-banner:before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-color: var(--blue);
  opacity: .8;
  z-index: 2;
}
.banner.video-banner .container {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  padding-top: 83px;
  z-index: 3;
}
.banner.video-banner .video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .3;
  overflow: hidden;
}
.banner.video-banner .video-container video {
  min-width: 100%;
  max-height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
.banner.video-banner.video-banner-half-height .video-container video {
  height: auto;
  max-height: 5000vh;
}
.banner > .image-bg-blend {
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 960px) {
  .banner.video-banner.video-banner-half-height:after {
    padding-top: 56.25%;
  }
  .banner.video-banner.video-banner-half-height .video-container video {
    height: auto;
    max-height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .banner .banner-fixed:after {
    width: 100px;
    height: 90px;
  }
  .banner .container {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
  }
  .banner > .image-bg-blend {
    position: relative;
    top: auto;
    left: auto;
  }
  .banner:after {
    display: none;
  }
  .banner .content {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 600px) {
  .banner.banner-large .title-lrg-1 {
    font-size: 9vw;
    line-height: 9vw;
  }
}
@media screen and (max-width: 500px) {
  .banner .banner-fixed:after {
    width: 80px;
    height: 73px;
  }
  .banner.banner-large .banner-fixed-wrapper:after {
    display: none;
  }
  .banner.banner-fixed-outer,
  .banner .banner-fixed-wrapper {
    height: calc(50vh + 106px);
  }
  .banner.video-banner .title-lrg-1 {
    font-size: 7vw;
    line-height: 8vw;
  }
}
@media screen and (max-width: 415px) {
  .banner.banner-large .container {
    padding-top: 106px;
  }
  .banner.video-banner .container {
    padding-top: 106px;
  }
}

/* form styles */
.form form {
  width: 100%;
  display: block;
}
.form form .dfcolumns {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.form form .dform_columns_3,
.form form .dform_columns_2 {
  margin-bottom: 0 !important;
}
.form form .dform_columns_3 .dfcolumns .column {
  width: calc(33.333% - 12px) !important;
}
.form form .dform_columns_3 .dfcolumns .column[data-number="2"] {
  margin-right: 18px;
  margin-left: 18px;
}
.form form .dform_columns_2 .dfcolumns .column[data-number="1"] {
  width: calc(50% - 9px) !important;
  margin-right: 18px;
}
.form form .dform_columns_2 .dfcolumns .column[data-number="2"] {
  width: calc(50% - 9px) !important;
}
.form form .dform_columns_4 .dfcolumns .column {
  margin-right: 18px;
}
.form form .dform_columns_4 .dfcolumns .column[data-number="1"] {
  width: calc(40% - 13.5px) !important;
}
.form form .dform_columns_4 .dfcolumns .column[data-number="2"],
.form form .dform_columns_4 .dfcolumns .column[data-number="3"],
.form form .dform_columns_4 .dfcolumns .column[data-number="4"] {
  width: calc(20% - 13.5px) !important;
}
.form form .dform_columns_4 .dfcolumns .column[data-number="4"] {
  margin-right: 0;
}
.form form input[type="email"],
.form form input[type="text"],
.form form input[type="tel"] {
  line-height: 50px;
  border-bottom: 3px solid #fff;
  height: 50px;
  padding: 0;
  width: 100%;
  background-color: transparent;
  color: var(--white) !important;
  font-size: 16px;
}
.form form input[type="email"]:focus,
.form form input[type="text"]:focus,
.form form input[type="tel"]:focus {
  border-color: #a2cbf9 !important;
}
.form form textarea {
  padding: 10px;
  min-height: 80px;
  height: 80px;
  max-height: 160px;
  min-width: 100%;
  max-width: 100%;
}
.form form .dform_label .req {
  display: none;
}
.form form .dform_text_input .dform_label,
.form form .dform_email .dform_label,
.form form .dform_email .dform_label,
.form form .dform_select .dform_label,
.form form .dform_html .dform_label {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.form form .dform_element.dform_file_upload .dform_label {
  font-size: 16px;
}
.form form .dform_element {
  margin-bottom: 40px;
}
.form form .dform_element.dform_file_upload {
  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;
}
.form form .submit_button {
  text-align: center;
  padding-top: 40px;
}
.form form input[type="file"] {
  margin-left: 15px;
  font-style: italic;
  font-size: 16px;
}
.form form input[type="file"]::file-selector-button {
  font-style: normal;
  cursor: pointer;
  margin-right: 15px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  border: none;
  outline: none;
  padding: 10px 50px;
  border-radius: 10px;
  background-color: #fff;
  transition: 300ms ease all;
}
.form form input[type="file"]::-webkit-file-upload-button {
  font-style: normal;
  cursor: pointer;
  margin-right: 15px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  border: none;
  outline: none;
  padding: 10px 50px;
  border-radius: 10px;
  background-color: #fff;
  transition: 300ms ease all;
}
.form form input[type="file"]::-ms-browse {
  font-style: normal;
  cursor: pointer;
  margin-right: 15px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  border: none;
  outline: none;
  padding: 10px 50px;
  border-radius: 10px;
  background-color: #fff;
  transition: 300ms ease all;
}
.form form input[type="file"]::file-selector-button:hover {
  background-color: #ba232b;
  color: #fff;
}
.form form input[type="file"]::-webkit-file-upload-button:hover {
  background-color: #ba232b;
  color: #fff;
}
.form form input[type="file"]::-ms-browse:hover {
  background-color: #ba232b;
  color: #fff;
}
.form form input[type="submit"] {
  width: auto;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1rem;
  padding: 15px 45px;
  background-color: rgba(255,255,255,.5);
  color: var(--dblue) !important;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.form form input[type="submit"]:hover,
.form form input[type="submit"]:focus {
  background-color: var(--white) !important;
}
.form form .dform_html span {
  font-size: 12px;
  opacity: .5;
}
.form form ::placeholder {
  color: #a9aeb8;
  opacity: 1;
}
.form form :-ms-input-placeholder {
  color: #a9aeb8;
}
.form form ::-ms-input-placeholder {
  color: #a9aeb8;
}
.form form .dform_error {
  background-color: #ba232b;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 2px 5px;
}
.form.form-light form input[type="email"],
.form.form-light form input[type="text"],
.form.form-light form input[type="tel"] {
  border-color: var(--dblue);
  color: var(--dblue) !important;
}
.form.form-light form input[type="submit"] {
  background-color: var(--dblue);
  color: var(--white) !important;
}
.form form .dform_select .dform_container {
  position: relative;
  display: block;
  width: 100%;
}
.form form .dform_select .dform_container select {
  line-height: 50px;
  letter-spacing: 0.045em;
  color: #a9aeb8 !important;
  background-color: transparent;
  height: 50px;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 3px solid #fff;
  font-size: 16px;
  width: 100%;
  margin: 0;
  outline: none;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.form form .dform_select .dform_container select:focus {
  color: var(--white) !important;
  border-bottom-color: #a2cbf9 !important;
}
.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 #fff;
}
.form.form-light form .dform_select .dform_container select {
  border-color: var(--dblue);
}
.form.form-light form .dform_select .dform_container select:focus {
  border-bottom-color: #a2cbf9 !important;
  color: var(--dblue) !important;
}
.form.form-light form .dform_select .dform_container::after {
  border-top-color: var(--dblue);
}
.form form .dform_element.dform_entries_list .dform_label {
  font-size: 16px;
}
.form form .dform_entries_list {
  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;
}
.form form .dform_entries_list .dform_container {
  position: relative;
  display: block;
  width: auto;
}
.form form .dform_entries_list .dform_container select {
  margin: 0 0 0 15px;
  padding: 0 44px 0 0;
  line-height: 50px;
  letter-spacing: 0.045em;
  color: #a9aeb8 !important;
  background-color: transparent;
  height: 50px;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 3px solid #fff;
  font-size: 16px;
  width: 100%;
  outline: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.form form .dform_entries_list .dform_container select:focus {
  color: var(--white) !important;
  border-bottom-color: #a2cbf9 !important;
}
.form form .dform_entries_list .dform_container select option,
.form form .dform_entries_list .dform_container select:focus option {
  color: var(--dblue) !important;
}
.form form .dform_entries_list .dform_container::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  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 #fff;
}
.form.form-light form .dform_entries_list .dform_container select {
  border-bottom-color: var(--dblue) !important;
}
.form.form-light form input[type="file"]::file-selector-button {
  background-color: var(--dblue);
  color: #fff;
}
.form.form-light form input[type="file"]::-webkit-file-upload-button {
  background-color: var(--dblue);
  color: #fff;
}
.form.form-light form input[type="file"]::-ms-browse {
  background-color: var(--dblue);
  color: #fff;
}
.form.form-light form input[type="file"]::file-selector-button:hover {
  background-color: #fff;
  color: var(--dblue);
}
.form.form-light form input[type="file"]::-webkit-file-upload-button:hover {
  background-color: #fff;
  color: var(--dblue);
}
.form.form-light form input[type="file"]::-ms-browse:hover {
  background-color: #fff;
  color: var(--dblue);
}
.bg-lgrey .form.form-light form input[type="submit"] {
  background-color: #fff;
  color: var(--dblue) !important;
}
.bg-lgrey .form.form-light form input[type="submit"]:hover,
.bg-lgrey .form.form-light form input[type="submit"]:focus {
  background-color: var(--dblue) !important;
  color: var(--white) !important;
}
.form.form-light form .dform_entries_list .dform_container::after {
  border-top-color: var(--dblue);
}
.bg-lgrey .form.form-light form ::placeholder {
  color: rgba(11, 22, 44, 0.5) !important;
  opacity: 1;
}
.bg-lgrey .form.form-light form :-ms-input-placeholder {
  color: rgba(11, 22, 44, 0.5) !important;
}
.bg-lgrey .form.form-light form ::-ms-input-placeholder {
  color: rgba(11, 22, 44, 0.5) !important;
}
.bg-lgrey .form.form-light form .dform_entries_list .dform_container select {
  color: rgba(11, 22, 44, 0.5) !important;
}
.bg-lgrey
  .form.form-light
  form
  .dform_entries_list
  .dform_container
  select:focus {
  color: var(--dblue) !important;
}
.dform_container .checkboxes li {
  list-style: none;
}

.form.pages-form fieldset {
  background-color: #f9f9f9;
  border: 1px solid #e1e1e1;
  margin-bottom: 40px;
}
.form.pages-form fieldset .dform_element {
  margin-bottom: 20px;
}
.form.pages-form fieldset .body * {
  font-size: 13px;
  line-height: 21px;
  margin-bottom: 20px;
}
.form.pages-form fieldset .body > *:last-child {
  margin-bottom: 0;
}
.form.pages-form fieldset .dfcolumns {
  padding: 40px 40px 20px 40px;
}
.form.pages-form fieldset input[type="email"],
.form.pages-form fieldset input[type="text"],
.form.pages-form fieldset input[type="tel"] {
  background-color: #fff;
  border: 1px solid #e1e1e1;
  padding: 0 15px;
}
.form.pages-form fieldset legend {
  background-color: #fff;
  padding: 3px 5px 3px 0;
  margin-left: -1px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.form.pages-form.no-fieldset-label fieldset .dfcolumns {
  padding: 30px 40px 20px 40px;
}
.form.pages-form.no-fieldset-label fieldset legend {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
@media screen and (max-width: 960px) {
  .form form .dform_element.dform_entries_list .dform_label {
    width: 100%;
  }
  .form form .dform_entries_list .dform_container {
    width: 100%;
  }
  .form form .dform_entries_list .dform_container select {
    margin: 0;
  }
  .form form input[type="submit"] {
    background-color: var(--white);
  }
}
@media screen and (max-width: 600px) {
  .form form input[type="file"]::file-selector-button {
    padding: 10px;
  }
  .form form input[type="file"]::-webkit-file-upload-button {
    padding: 10px;
  }
  .form form input[type="file"]::-ms-browse {
    padding: 10px;
  }
  .form form .dform_columns_4 .dfcolumns .column[data-number="2"] {
    margin-right: 0;
  }
  .form form .dform_columns_4 .dfcolumns .column[data-number="1"],
  .form form .dform_columns_4 .dfcolumns .column[data-number="2"],
  .form form .dform_columns_4 .dfcolumns .column[data-number="3"],
  .form form .dform_columns_4 .dfcolumns .column[data-number="4"] {
    width: calc(50% - 9px) !important;
  }
}
@media screen and (max-width: 500px) {
  .form form .dform_element.dform_file_upload .dform_label {
    width: 100%;
    margin-bottom: 10px;
  }
  .form form input[type="file"] {
    margin-left: 0;
  }
  .form form .dform_columns_3 .dfcolumns .column {
    width: 100% !important;
  }
  .form form .dform_columns_3 .dfcolumns .column[data-number="2"] {
    margin-right: 0;
    margin-left: 0;
  }
  .form form .dform_columns_2 .dfcolumns .column[data-number="1"] {
    width: 100% !important;
    margin-right: 0;
  }
  .form form .dform_columns_2 .dfcolumns .column[data-number="2"] {
    width: 100% !important;
  }
  .form form .dform_element {
    margin-bottom: 25px;
  }
  .form form .dform_columns_4 .dfcolumns .column[data-number="1"],
  .form form .dform_columns_4 .dfcolumns .column[data-number="2"],
  .form form .dform_columns_4 .dfcolumns .column[data-number="3"],
  .form form .dform_columns_4 .dfcolumns .column[data-number="4"] {
    width: 100% !important;
    margin-right: 0;
  }
}

/* line title */
.line-title {
  display: flex;
  align-items: center;
  position: relative;
}
.line-title:after {
  display: block;
  content: '';
  width: 100%;
  height: 1px;
  background-color: #d3d0c7;
  position: absolute;
  left: 0;
  top: 50%;
}
.line-title > * {
  position: relative;
  z-index: 2;
  background-color: var(--white);
}
.line-title .actions {
  background-color: transparent;
}
.line-title .actions > div {
  position: relative;
  z-index: 2;
  background-color: var(--white);
}
.line-title .actions a.link {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.125rem;
}

/* articles */
article,
.article {
  display: block;
}
article h3,
.article h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.17rem;
  line-height: 1.5rem;
}
article.line-slide-article,
.article.line-slide-article {
  position: relative;
  min-height: 100%;
}
article.line-slide-article h3,
.article.line-slide-article h3 {
  font-size: 2.5rem;
  line-height: 2.5rem;
}
article.line-slide-article:before,
.article.line-slide-article:before {
  display: block;
  content: '';
  width: 0;
  background-color: var(--dblue);
  transition: 300ms ease all;
}
article.line-slide-article:hover:before,
.article.line-slide-article:hover:before {
  width: 1.5rem;
}
article p,
.article p {
  font-size: 13.5px;
  line-height: 18.5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
article .info *,
.article .info * {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 400;
}
article .info .tag,
.article .info .tag {
  font-weight: 700;
}
article .info .author,
.article .info .author {
  text-transform: none;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0;
  line-height: 1.125rem;
}
article .image.image-placeholder,
.article .image.image-placeholder {
  background-color: var(--dblue);
  position: relative;
}
article .image.image-placeholder svg,
.article .image.image-placeholder svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  opacity: .5;
}
article.video .image,
.article.video .image {
  position: relative;
}
article.video .image svg,
.article.video .image svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
article.video .image:before,
.article.video .image:before {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--blue);
  opacity: .5;
}
article.video.video-large,
.article.video.video-large {
  position: relative;
}
article.video.video-large .video-large-content,
.article.video.video-large .video-large-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  box-sizing: border-box;
}
article.video.video-large:before,
.article.video.video-large:before {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--blue);
  opacity: .5;
}
article.video.video-large.gallery-image:before,
.article.video.video-large.gallery-image:before {
  top: auto;
  bottom: 0;
  height: 50%;
  background-color: none;
  opacity: 0;
  background: linear-gradient(to bottom, rgba(11,22,44,0) 0%,rgba(11,22,44,.9) 100%);
}
article.video.video-large.gallery-image.has-caption:before,
.article.video.video-large.gallery-image.has-caption:before {
  opacity: 1;
}
article.video.video-large h3,
.article.video.video-large h3 {
  font-size: 2.5rem;
  line-height: 2.5rem;
}
article.video.video-large p,
.article.video.video-large p {
  font-size: 1.125rem;
  line-height: 2rem;
}
article.video.video-large .info *,
.article.video.video-large .info * {
  font-size: 1rem;
}
article.box,
.article.box {
  background-color: var(--white);
  /* box-shadow: 0px 10px 33px 0px rgba(11,22,44,.3); */
  position: relative;
  transition: 300ms ease all;
  display: block;
}
article.box .title-med-1,
.article.box .title-med-1,
article.large-text .title-med-1,
.article.large-text .title-med-1 {
  font-size: 2.5rem;
  line-height: 2.5rem;
}
article.box.ribbon-box:before,
.article.box.ribbon-box:before {
  display: block;
  content: '';
  width: 44px;
  height: 92px;
  position: absolute;
  top: 0;
  left: 5rem;
  background-image: url(/assets/images/ribbon.svg);
  background-size: 100%;
}
article.box .image,
.article.box .image {
  background-color: var(--white);
  border: 1px solid var(--dblue);
}
article.box .info *,
.article.box .info * {
  font-size: 1rem;
  font-weight: 400;
}
article.large-text .info *,
.article.large-text .info * {
  font-size: 1rem;
}
article.box .info .tag,
.article.box .info .tag {
  position: relative;
  display: inline-block;
}
article.box .info .tag:after,
.article.box .info .tag:after {
  display: block;
  content: '';
  width: 100%;
  height: 1px;
  background-color: var(--red);
  left: 0;
  bottom: -3px;
  position: relative;
}
.article.person {
  width: 255px;
}
.article.person .image {
  width: 100%;
  border-radius: 100%;
  background-color: #576271;
  background-blend-mode: luminosity;
}
@media screen and (max-width: 820px) {
  article.video.video-large .video-large-content,
  .article.video.video-large .video-large-content {
    padding: 20px 40px !important;
  }
  article.video.video-large.gallery-image .video-large-content,
  .article.video.video-large.gallery-image .video-large-content {
    padding: 20px !important;
  }
}
@media screen and (max-width: 768px) {
  article h3,
  .article h3 {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  article .info *,
  .article .info * {
    letter-spacing: .05em;
  }
  article.video .play,
  .article.video .play {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
  }
  article.box.ribbon-box:before,
  .article.box.ribbon-box:before {
    width: 22px;
    height: 46px;
    left: 1.5rem;
  }
  article.box.ribbon-box .top,
  .article.box.ribbon-box .top {
    padding-left: calc(1.5rem + 22px) !important;
    padding-top: 0 !important;
  }
  article.video.video-large p,
  .article.video.video-large p {
    display: none;
  }
  article.video.video-large.gallery-image p,
  .article.video.video-large.gallery-image p {
    display: block;
  }
  article.video.video-large h3,
  .article.video.video-large h3 {
    margin-bottom: 0 !important;
  }
}
@media screen and (max-width: 600px) {
  .articles-3 .col-4:first-child {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .articles-3 .col-4:nth-child(2),
  .articles-3 .col-4:nth-child(3) {
    width: 50%;
  }
}
@media screen and (max-width: 500px) {
  article.box,
  .article.box {
    padding: 20px !important;
  }
  .articles-3 .col-4:nth-child(2),
  .articles-3 .col-4:nth-child(3) {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  article.box.ribbon-box .row,
  .article.box.ribbon-box .row {
    padding: 40px 0 0 0 !important;
    margin: 0;
  }
  article.box.ribbon-box .image,
  .article.box.ribbon-box .image {
    width: 100%;
    margin-bottom: 20px;
  }
  article.box.ribbon-box .text,
  .article.box.ribbon-box .text {
    width: 100%;
    padding: 0 !important;
  }
  article.box.ribbon-box .image:after,
  .article.box.ribbon-box .image:after {
    width: 100%;
    display: block;
    content: '';
    padding-top: 56.25%;
  }
  article.box.ribbon-box:before,
  .article.box.ribbon-box:before {
    width: 25px;
    height: 52px;
    left: 20px;
  }
  article.box.ribbon-box .top,
  .article.box.ribbon-box .top {
    padding-left: 45px !important;
  }
}
@media screen and (max-width: 320px) {
  article.video.video-large h3,
  .article.video.video-large h3 {
    font-size: 2rem;
    line-height: 2rem;
  }
}

/* Sliders */
.events-slider .swiper-slide {
  align-self: stretch;
  height: auto;
}
.swiper-container {
  position: relative;
}
.video-slider-container .swiper-button-prev,
.video-slider-container .swiper-button-next {
  width: 64px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  border: 3px solid var(--dblue);
  padding: 0;
  margin: -30px 0 0 0;
}
.video-slider-container .swiper-button-prev.swiper-button-disabled,
.video-slider-container .swiper-button-next.swiper-button-disabled {
  opacity: 0;
}
.video-slider-container .swiper-button-prev {
  left: -32px;
}
.video-slider-container .swiper-button-next {
  right: -32px;
}
.video-slider-container .swiper-button-prev svg,
.video-slider-container .swiper-button-next svg {
  width: 28px;
  height: 28px;
}
.video-slider-container .swiper-button-prev:after,
.video-slider-container .swiper-button-next:after,
.video-slider-thumbs .swiper-button-prev:after,
.video-slider-thumbs .swiper-button-next:after,
.latest-slider-container .swiper-button-prev:after,
.latest-slider-container .swiper-button-next:after {
  display: none;
}
.video-slider-thumbs .swiper-button-prev,
.video-slider-thumbs .swiper-button-next,
.latest-slider-container .swiper-button-prev,
.latest-slider-container .swiper-button-next {
  width: 20px;
  height: 20px;
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  padding: 0;
  margin: 0;
}
.video-slider-thumbs .swiper-slide .image:before {
  transition: 300ms ease all;
}
.video-slider-thumbs .swiper-slide .image svg {
  transition: 300ms ease all;
}
.video-slider-thumbs .swiper-slide .image span {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  color: var(--white);
  transition: 300ms ease all;
  display: flex;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.17rem;
  line-height: 1.17rem;
}
.video-slider-thumbs .swiper-slide.swiper-slide-thumb-active .image svg {
  opacity: 0;
}
.video-slider-thumbs .swiper-slide.swiper-slide-thumb-active .image span {
  opacity: 1;
}
.video-slider-thumbs .swiper-slide.swiper-slide-thumb-active .image:before {
  opacity: .75;
}
@media screen and (max-width: 768px) {
  .video-slider-container .swiper-button-prev,
  .video-slider-container .swiper-button-next {
    width: 40px;
    height: 40px;
    margin-top: -20px;
  }
  .video-slider-container .swiper-button-prev {
    left: -20px;
  }
  .video-slider-container .swiper-button-next {
    right: -20px;
  }
  .video-slider-container .swiper-button-prev svg,
  .video-slider-container .swiper-button-next svg {
    width: 20px;
    height: 20px;
  }
  .latest-slider-container .bg-grey {
    padding: 20px !important;
  }
  .video-slider-thumbs .swiper-slide p.caption {
    display: none;
  }
}
@media screen and (max-width: 375px) {
  .video-slider-container {
    padding-bottom: calc(80px + 1rem);
  }
  .video-slider-container .swiper-button-prev,
  .video-slider-container .swiper-button-next {
    width: calc(50% - 10px);
    margin-top: 0;
    bottom: calc(20px + 1rem);
    top: auto;
  }
  article.video.video-large .video-large-content,
  .article.video.video-large .video-large-content {
    padding: 20px !important;
  }
  .video-slider {
    margin-bottom: 0 !important;
  }
  .video-slider-container .swiper-button-prev {
    left: 0;
  }
  .video-slider-container .swiper-button-next {
    right: 0;
  }
}
@media screen and (max-width: 320px) {
  .video-slider-thumbs {
    display: none;
  }
}

/* callouts */
@media screen and (max-width: 768px) {
  .side-by-side-callouts {
    margin: 0;
  }
  .side-by-side-callouts .col-6 {
    margin-bottom: 20px !important;
  }
  .side-by-side-callouts .col-6:last-child {
    margin-bottom: 0 !important;
  }
  .side-by-side-callouts .col-6.pr-4 {
    padding-right: 0 !important;
  }
  .side-by-side-callouts .col-6.pl-4 {
    padding-left: 0 !important;
  }
}

/* body */
.floated-image {
  width: 30%;
  margin-left: 20px;
  float: right;
  margin-bottom: 20px;
}
.body.two-col {
  column-count: 2;
  column-gap: 32px;
}
.body.half-width {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.body h1,
.body h2,
.body h3,
.body h4,
.body h5,
.body h6,
.body p,
.body a,
.body ul,
.body ol,
.body img,
.body blockquote,
.body table,
.body .embed-container {
  margin-bottom: 32px;
}
.body > *:last-child {
  margin-bottom: 0;
}
.body img {
  display: block;
  max-width: 100%;
}
.body li {
  color: var(--dblue);
  font-weight: 400;
  letter-spacing: .04em;
  font-size: 1rem;
  line-height: 1.5rem;
  margin-left: 15px;
  margin-bottom: 10px;
}
.body h1 {
  font-size: 2.5rem;
  line-height: 3rem;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
}
.body h2 {
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
}
.body h3 {
  font-size: 1.3125rem;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: .2em;
}
.body h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.17rem;
  line-height: 1.17rem;
}
.body h5 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .3em;
}
.body h6 {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .3em;
}
.body a {
  color: var(--red) !important;
  text-decoration: none !important;
  font-style: normal !important;
}
.body.article-body p {
  font-size: 1.0625rem;
  line-height: 1.875rem;
  font-family: 'Playfair Display', serif;
}
.body.article-body li {
  font-size: 1.0625rem;
  line-height: 1.875rem;
  font-family: 'Playfair Display', serif;
}
/* .body.large-text-body p {
  font-size: 1.125rem;
  line-height: 2rem;
}
.body.large-text-body li {
  font-size: 1.125rem;
  line-height: 2rem;
} */
.body .float-box {
  float: right;
  width: 47%;
}
.grey-box {
  min-height: 100%;
}
.grey-box h2,
.body .float-box h2 {
  border-bottom: 1px solid #d3d0c7;
}
.grey-box li,
.body .float-box li {
  list-style: none;
}
.grey-box li a,
.body .float-box li a {
  color: var(--red) !important;
  font-weight: 400 !important;
}
.grey-box li a:hover,
.body .float-box li a:hover {
  text-decoration: underline !important;
}
@media screen and (max-width: 768px) {
  .body .float-box {
    float: none;
    width: 100%;
    margin-left: 0 !important;
  }
}

/* pagination */
.pagination li {
  font-size: 15px;
  line-height: 15px;
  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;
}
.pagination li.padded {
  margin: 0 25px;
}
.pagination li a {
  font-weight: 400;
  font-size: 15px;
  line-height: 15px;
  margin: 0 25px;
}
.pagination li a.active {
  font-weight: 700;
}
.pagination li a.page-next,
.pagination li a.page-previous {
  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;
}
.pagination li a.page-first,
.pagination li a.page-last {
  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;
}
.pagination li a.page-next {
  transform: rotate(180deg);
}
.pagination li a.page-last {
  transform: rotate(180deg);
}
@media screen and (max-width: 500px) {
  .pagination li.padded {
    margin: 0 15px;
  }
  .pagination li a {
    margin: 0 15px;
  }
}

/* hover boxes */
.box {
  display: block;
  position: relative;
  width: 100%;
}
/* .box:hover,
.box:focus {
  -webkit-box-shadow: 0px 5px 10px 0px rgba(11, 22, 44, 0.25);
  -moz-box-shadow: 0px 5px 10px 0px rgba(11, 22, 44, 0.25);
  box-shadow: 0px 5px 10px 0px rgba(11, 22, 44, 0.25);
} */
.large-hover-boxes .box {
  width: calc(96vw - 20px);
  padding: 120px 8vw 4vw 4vw;
  margin-left: -4vw;
}
.large-hover-boxes .box .title-lrg-1 {
  font-size: 4.25vw;
  line-height: 4.25vw;
}
.large-hover-boxes .box p {
  font-size: 15px;
  line-height: 27px;
}
.large-hover-boxes .box:before {
  opacity: 0;
  display: block;
  content: "";
  width: 44px;
  height: 92px;
  position: absolute;
  top: 0;
  left: 6%;
  background-image: url(/assets/images/ribbon.svg);
  background-size: 100%;
  transition: 300ms ease all;
}
.large-hover-boxes .box:hover:before,
.large-hover-boxes .box:focus:before {
  opacity: 1;
}
.large-hover-boxes .box:hover:after,
.large-hover-boxes .box:focus:after {
  opacity: 1;
}
.large-hover-boxes .box .btn {
  display: none;
}
.large-hover-boxes .box:after {
  opacity: 0;
  position: absolute;
  top: 62px;
  right: 6%;
  display: block;
  content: "";
  width: 30px;
  height: 30px;
  background-image: url(/assets/images/arrow_blue.svg);
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(180deg);
}
.small-hover-boxes .box {
  width: calc(96vw - 20px);
  padding: 4vw 8vw 4vw 4vw;
  margin-left: -4vw;
  margin-bottom: -3px;
}
.small-hover-boxes .box:hover {
  z-index: 2;
}
.small-hover-boxes .box:before {
  display: block;
  content: "";
  width: calc(100% - 12vw);
  position: absolute;
  top: 0;
  left: 4vw;
  height: 3px;
  background-color: #0b162c;
  transition: 300ms ease all;
}
.small-hover-boxes .box:after {
  display: block;
  content: "";
  width: calc(100% - 12vw);
  position: absolute;
  bottom: 0;
  left: 4vw;
  height: 3px;
  background-color: #0b162c;
  transition: 300ms ease all;
}
.small-hover-boxes .box:hover:after,
.small-hover-boxes .box:hover:before {
  background-color: #fff;
}
.small-hover-boxes .box:first-child:before {
  display: none;
}
.small-hover-boxes .box:last-child:after {
  display: none;
}
.small-hover-boxes .box .title-sml-1 {
  margin-top: 15px;
  line-height: 18px;
}
.med-hover-boxes .box {
  width: 100%;
  padding: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: -3px;
  margin-bottom: -3px;
}
.med-hover-boxes .box:hover {
  z-index: 2;
}
.med-hover-boxes .box:before {
  display: block;
  content: "";
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  background-color: #0b162c;
  transition: 300ms ease all;
}
.med-hover-boxes .box:after {
  display: block;
  content: "";
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background-color: #0b162c;
  transition: 300ms ease all;
}
.med-hover-boxes .box:hover:after,
.med-hover-boxes .box:hover:before {
  background-color: #fff;
}
.med-hover-boxes .box:last-child:after {
  display: none;
}
.med-hover-boxes .box .title-med-1,
.column-hover-boxes .box .title-med-1 {
  font-weight: 900;
  font-style: italic;
  padding-top: 20px;
}
.med-hover-boxes .box.featured .title-med-1 {
  padding-top: 40px;
}
.med-hover-boxes .box p {
  margin-top: 15px;
}
.med-hover-boxes .box .image {
  width: 21%;
  margin-left: 45px;
}
.med-hover-boxes .box .date,
.column-hover-boxes .box .date {
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0.3em;
  border-bottom: 1px solid #ba232b;
}
.med-hover-boxes .box .feat {
  display: block;
  padding: 0 25px 0 69px;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: 0.18em;
}
.med-hover-boxes .box.featured .text:before {
  display: block;
  content: "";
  width: 44px;
  height: 92px;
  position: absolute;
  top: 0;
  left: 4vw;
  background-image: url(/assets/images/ribbon.svg);
  background-size: 100%;
}
.med-hover-boxes .career .title .btn {
  width: auto;
}
.med-hover-boxes .career:hover .title .btn {
  background-color: #0b162c !important;
  color: #fff !important;
}
.med-hover-boxes .career .text > div,
.med-hover-boxes .career .title {
  width: 100%;
}
.column-hover-boxes .box {
  width: calc(30.66666666vw - 13.333333333333px);
  padding: 4vw;
  background-color: #fff;
}
.column-hover-boxes .box:nth-child(1) {
  margin-left: -4vw;
}
.column-hover-boxes .box:nth-child(1):hover {
  z-index: 3;
}
.column-hover-boxes .box:nth-child(3):hover {
  z-index: 3;
}
.column-hover-boxes .box:nth-child(3) {
  margin-right: -4vw;
}
.column-hover-boxes .box:nth-child(2) {
  z-index: 2;
}
.column-hover-boxes .box:nth-child(2):before {
  display: block;
  content: "";
  width: 3px;
  position: absolute;
  top: 0;
  left: -3px;
  height: 100%;
  background-color: #0b162c;
  transition: 300ms ease all;
}
.column-hover-boxes .box:nth-child(2):after {
  display: block;
  content: "";
  width: 3px;
  position: absolute;
  top: 0;
  right: -3px;
  height: 100%;
  background-color: #0b162c;
  transition: 300ms ease all;
}
.column-hover-boxes .box:nth-child(2):hover:before,
.column-hover-boxes .box:nth-child(2):hover:after {
  background-color: #ffffff;
}
.column-hover-boxes .box .date {
  display: inline-block;
}
.column-hover-boxes .box .title-med-1 {
  padding-bottom: 20px;
}
.med-hover-boxes .box.career .title-med-1 {
  padding-top: 0;
}
@media screen and (max-width: 1200px) {
  .large-hover-boxes .box {
    width: calc(100vw - 20px);
    padding: 120px 5vw 5vw 5vw;
    margin-left: -5vw;
  }
  .small-hover-boxes .box {
    width: calc(100vw - 20px);
    padding: 5vw;
    margin-left: -5vw;
  }
  .med-hover-boxes .box {
    width: calc(100vw - 20px);
    padding: 20px 5vw 5vw 5vw;
    margin-left: -5vw;
  }
  .med-hover-boxes .box.career {
    padding: 5vw;
  }
  .med-hover-boxes .box:before,
  .med-hover-boxes .box:after {
    width: calc(100% - 10vw);
    left: 5vw;
  }
  .med-hover-boxes .box.featured .text:before {
    top: 2px;
  }
  .large-hover-boxes .box:before {
    left: 5vw;
  }
  .column-hover-boxes .box {
    width: calc(33.3333333vw - 13.333333333333px);
    padding: 5vw;
  }
  .column-hover-boxes .box:nth-child(1) {
    margin-left: -5vw;
  }
  .column-hover-boxes .box:nth-child(3) {
    margin-right: -5vw;
  }
  .small-hover-boxes .box:before {
    width: calc(100% - 10vw);
    left: 5vw;
  }
  .small-hover-boxes .box:after {
    width: calc(100% - 10vw);
    left: 5vw;
  }
}
@media screen and (max-width: 960px) {
  .large-hover-boxes .box:before {
    opacity: 1;
    height: 46px;
    width: 22px;
  }
  .large-hover-boxes .box {
    padding: 70px 5vw 5vw 5vw;
    margin-bottom: 30px;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(11, 22, 44, 0.5);
    -moz-box-shadow: 0px 5px 15px 0px rgba(11, 22, 44, 0.5);
    box-shadow: 0px 5px 15px 0px rgba(11, 22, 44, 0.5);
  }
  .large-hover-boxes .box .title-lrg-1 {
    font-size: 4vw;
    line-height: 4vw;
  }
  .large-hover-boxes .box .btn {
    display: block;
    max-width: 100%;
    margin-top: 30px;
  }
  .large-hover-boxes .box:after {
    display: none;
  }
  .small-hover-boxes .box:focus {
    -webkit-box-shadow: 0px 5px 15px 0px rgba(11, 22, 44, 0.5);
    -moz-box-shadow: 0px 5px 15px 0px rgba(11, 22, 44, 0.5);
    box-shadow: 0px 5px 15px 0px rgba(11, 22, 44, 0.5);
  }
  .med-hover-boxes .box .image {
    width: 33.333%;
    margin-left: 30px;
  }
  .med-hover-boxes .box.featured .text:before {
    height: 46px;
    width: 22px;
  }
  .med-hover-boxes .box .feat {
    padding: 0 15px 0 37px;
  }
  .med-hover-boxes .box .title-med-1 {
    padding-top: 15px;
  }
  .med-hover-boxes .box.featured .title-med-1 {
    padding-top: 25px;
  }
}
@media screen and (max-width: 768px) {
  .med-hover-boxes .box {
    padding: 15px 5vw 5vw 5vw;
  }
  .med-hover-boxes .box.featured .text:before {
    left: 5vw;
  }
  .med-hover-boxes .box:before,
  .med-hover-boxes .box:after {
    width: calc(100% - 10vw);
    left: 5vw;
  }
  .med-hover-boxes .box .image {
    display: none;
  }
  .column-hover-boxes .box {
    width: calc(100vw - 20px);
    padding: 5vw;
    margin-left: -5vw;
    margin-right: -5vw;
  }
  .column-hover-boxes .box:nth-child(1) {
    margin-bottom: -3px;
  }
  .column-hover-boxes .box:nth-child(2):before {
    width: calc(90vw - 20px);
    left: 5vw;
    height: 3px;
    top: 0;
  }
  .column-hover-boxes .box:nth-child(2):after {
    width: calc(90vw - 20px);
    right: auto;
    left: 5vw;
    bottom: 0;
    top: auto;
    height: 3px;
  }
  .column-hover-boxes .box:nth-child(3) {
    margin-top: -3px;
  }
}
@media screen and (max-width: 600px) {
  .med-hover-boxes .box .date {
    font-size: 12px;
    letter-spacing: 0.15em;
  }
  .med-hover-boxes .box .feat {
    font-size: 14px;
    letter-spacing: 0.15em;
  }
  .med-hover-boxes .career .text {
    display: block;
    width: 100%;
  }
  .med-hover-boxes .career .text .title .title-med-1 {
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 100%;
    padding-bottom: 2.5vw;
  }
  .med-hover-boxes .career .text .title .btn {
    background-color: #0b162c !important;
    color: #fff !important;
  }
}
@media screen and (max-width: 500px) {
  .large-hover-boxes .box {
    text-align: center;
  }
  .large-hover-boxes .box .title-lrg-1 {
    font-size: 7vw;
    line-height: 8vw;
  }
  .large-hover-boxes .box p {
    font-size: 14px;
    line-height: 21px;
  }
  .med-hover-boxes .box .title-sml-1 {
    display: none;
  }
}
@media screen and (max-width: 415px) {
  .med-hover-boxes .box .date {
    letter-spacing: 0.1em;
  }
  .med-hover-boxes .box .feat {
    letter-spacing: 0.1em;
  }
  .large-hover-boxes .box {
    width: calc(100vw - 20px);
  }
  .med-hover-boxes .box {
    width: calc(100vw - 20px);
  }
  .small-hover-boxes .box {
    width: calc(100vw - 20px);
  }
  .column-hover-boxes .box {
    width: calc(100vw - 20px);
  }
  .column-hover-boxes .box:nth-child(2):before {
    width: calc(90vw - 20px);
  }
  .column-hover-boxes .box:nth-child(2):after {
    width: calc(90vw - 20px);
  }
}
@media screen and (max-width: 375px) {
  .med-hover-boxes .box .date {
    font-size: 11px;
    letter-spacing: 0.05em;
  }
  .med-hover-boxes .box .feat {
    font-size: 13px;
    letter-spacing: 0.05em;
    padding: 0 10px 0 32px;
  }
}


/* 6. Pages
------------------------------------------------------------------------------*/

/* team detail */
.team.detail .bio-top .left {
  width: 65%;
}
.team.detail .bio-top .right {
  width: 35%;
}
.team.detail .bio-top .right .image {
  border-radius: 100%;
  position: relative;
  z-index: 2;
}
.team.detail .bio-top .right a {
  text-transform: uppercase;
  font-size: 10.5px;
  letter-spacing: .2em;
  line-height: 10.5px;
}
.team.detail .body {
  padding-top: 32px;
}
.team.detail .body.body-full {
  max-height: 250px;
  overflow-y: hidden;
  padding-bottom: 32px;
  position: relative;
}
.team.detail .body.body-full:after {
  display: block;
  content: '';
  width: 100%;
  height: 32px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
}
.team.detail .body.body-full.expanded {
  max-height: 1000vh;
}
.team.detail .bio-top .left {
  padding-right: 32px;
}
.team.detail .bio-top .left .quote {
  position: relative;
}
.team.detail .bio-top .left .quote blockquote {
  color: var(--lblue);
  font-family: 'Playfair Display';
  font-style: italic;
  font-size: 1.3125rem;
}
.team.detail .bio-top .left .quote:after {
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background-color: var(--grey);
  position: absolute;
  top: 0;
  left: 100%;
}
.team.detail .expertise a {
  font-weight: 400;
  font-size: 13px;
}
.team.detail .expertise a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 600px) {
  .team.detail .bio-top .left,
  .team.detail .bio-top .right {
    width: 100%;
  }
  .team.detail .bio-top .left {
    padding-right: 0;
  }
  .team.detail .bio-top .right {
    padding-top: 32px;
  }
  .team.detail .bio-top .left .quote:after {
    display: none;
  }
}

/* news */
.news.landing .filter-sort > span,
.news.landing .filter-sort > button,
.news.landing .filter-sort > a,
.news.landing .sort-container > button {
  display: block;
  padding: 10px 20px;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 15px;
  letter-spacing: 0.2em;
}
.news.landing .sort-container > button,
.news.landing .filter-sort > button,
.news.landing .filter-sort > a {
  font-weight: 400;
  color: #0b162c;
}
.news.landing .sort-container > button:hover,
.news.landing .filter-sort > button:hover,
.news.landing .filter-sort > a:hover,
.news.landing .filter-sort > button.active,
.news.landing .filter-sort > a.active {
  font-weight: 700;
}
.news.landing .filter-sort > span {
  font-weight: 700;
  margin-right: 20px;
}
.news.landing .sort .sort-container {
  position: relative;
}
.news.landing .sort button:focus {
  text-decoration: none;
}
.news.landing .sort button.open-sort-menu.open {
  font-weight: 700;
}
.news.landing .sort button.open-sort-menu[aria-expanded="true"] {
  background-color: #1e3559;
  color: #fff;
  font-weight: 700;
}
.news.landing .sort .sort-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #1e3559;
  padding: 20px;
  z-index: 5;
}
.news.landing .sort .sort-menu[aria-hidden="true"] {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.news.landing .sort .sort-menu button {
  white-space: nowrap;
  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: 13px;
  line-height: 14px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}
.news.landing .sort .sort-menu button.active,
.news.landing .sort .sort-menu button:hover {
  font-weight: 700;
}
.news.landing .sort .sort-menu button .circle {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-right: 10px;
}
.news.landing .sort .sort-menu button.active .circle {
  background-color: #fff;
}
.news.landing .sort .sort-menu button:last-child {
  margin-bottom: 0;
}
.news.landing main .search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.news.landing main .search button {
  position: relative;
  border-bottom: 3px solid #fff;
  width: 36px;
  height: 36px;
}
.news.landing main .search button svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 1.5px;
}
.news.landing main .search button[aria-expanded="true"] {
  border-color: #0b162c;
}
.news.landing main .search form[data-hidden="true"] {
  width: 0;
  overflow: hidden;
}
.news.landing main .search input {
  width: 195px;
  border-bottom: 3px solid #0b162c;
  height: 36px;
  font-size: 15px;
  letter-spacing: 0.1em;
  color: #0b162c;
}
.news.landing main .search input[type="search"]::-webkit-search-decoration,
.news.landing main .search input[type="search"]::-webkit-search-cancel-button,
.news.landing main .search input[type="search"]::-webkit-search-results-button,
.news.landing
  main
  .search
  input[type="search"]::-webkit-search-results-decoration {
  display: none;
}
.news.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;
}
.news.landing .pagination-container li button {
  font-weight: 400;
  font-size: 15px;
  line-height: 15px;
  margin: 0 25px;
}
.news.landing .pagination-container li.active button {
  font-weight: 700;
}
.news.landing .pagination-container li button.prevBtn,
.news.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;
}
.news.landing .pagination-container li button.prevBtn {
  margin: 0 25px 0 15px;
}
.news.landing .pagination-container li button.nextBtn {
  margin: 0 15px 0 25px;
}
.news.landing .pagination-container button.firstBtn,
.news.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;
}
.news.landing .pagination-container button.firstBtn,
.news.landing .pagination-container button.lastBtn {
  margin: 0;
}
.news.landing .white .pagination-container li button.prevBtn,
.news.landing .white .pagination-container li button.nextBtn {
  background-image: url(/assets/images/arrow.svg);
}
.news.landing .white .pagination-container button.firstBtn,
.news.landing .white .pagination-container button.lastBtn {
  background-image: url(/assets/images/arrow_dbl.svg);
}
.news.landing .pagination-container li button.nextBtn {
  transform: rotate(180deg);
}
.news.landing .pagination-container button.lastBtn {
  transform: rotate(180deg);
}
.news.landing .white .pagination-container li button.nextBtn {
  transform: none;
}
.news.landing .white .pagination-container li button.prevBtn {
  transform: rotate(180deg);
}
.news.landing .pagination-container li button.disabled {
  display: none;
}
.news.landing .pagination-record * {
  color: #888 !important;
  font-size: 13px;
  opacity: 0.75;
}
.news.landing .white .pagination-record * {
  color: #fff !important;
}
.news.detail .info .title-med-1 {
  font-weight: 900;
  font-style: italic;
  font-size: 3.125rem;
  line-height: 3.125rem;
}
.news.detail .info .date {
  margin: 20px 0 25px 0;
  display: inline-block;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0.3em;
  border-bottom: 1px solid #ba232b;
}
.news.detail.careers-detail .info .apply-share,
.news.detail .info .share {
  padding-top: 25px;
}
.news.detail .info .apply-share .btn {
  margin-right: 25px;
}
.news.detail.careers-detail .info .share {
  padding-top: 0;
}
.news.detail .info .share li {
  list-style: none;
  margin-right: 25px;
}
.news.detail .info .share li:last-child {
  margin-right: 0;
}
.news.detail .info .share li a:hover svg .st0 {
  fill: #ba232b;
}
.news.detail .info .body .embed-container {
  margin-bottom: 40px;
  margin-top: 10px;
}
.news.detail .info .print-logo {
  display: none;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.news.detail .info .print-subtitle {
  display: none;
}
.issues.detail .citations-title {
  display: block;
  border-bottom: 1px solid #0b162c;
  margin-top: 30px;
}
.issues.detail .citations {
  padding-bottom: 15px;
}
.issues.detail .citations[aria-hidden="true"] {
  display: none;
}
.issues.detail .citations[aria-hidden="false"] {
  display: block;
}
.issues.detail .citations * {
  font-size: 12px !important;
  line-height: 16px !important;
  letter-spacing: 0 !important;
}
@media screen and (max-width: 1200px) {
  .news.landing .filter-sort > span,
  .news.landing .filter-sort > button,
  .news.landing .filter-sort > a,
  .news.landing .sort-container > button {
    padding: 10px;
  }
  .news.landing .filter-sort > span {
    margin-right: 10px;
  }
}
@media screen and (max-width: 960px) {
  .news.landing main .search {
    width: 100%;
    margin-top: 30px;
  }
  .news.landing main .search input {
    border-bottom: none;
  }
  .news.landing main .search button {
    border-bottom: none;
  }
  .news.landing main .search form[data-hidden="true"] {
    width: auto;
  }
  .news.landing .sort .sort-menu {
    width: 100%;
  }
  .news.landing .sort .sort-container {
    position: static;
  }
  .news.landing .categories {
    position: relative;
  }
}
@media screen and (max-width: 768px) {
  .news.landing .filter-sort > span,
  .news.landing .filter-sort > button,
  .news.landing .filter-sort > a,
  .news.landing .sort-container > button {
    letter-spacing: 0.15em;
  }
  .news.landing .sort .sort-menu button.sort-btn {
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 600px) {
  .news.landing .categories {
    width: 100%;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
  }
  .news.landing .categories > div {
    width: 100%;
  }
  .news.landing .sort .sort-menu button.sort-btn {
    letter-spacing: 0;
  }
}
@media screen and (max-width: 500px) {
  .news.landing .filter-sort > span,
  .news.landing .filter-sort > button,
  .news.landing .filter-sort > a,
  .news.landing .sort-container > button {
    width: 100%;
  }
  .news.landing .sort .sort-container {
    width: 100%;
  }
  .news.landing .sort .sort-menu {
    position: relative;
    max-height: 0;
    overflow: hidden;
    width: 100%;
    padding: 0;
  }
  .news.landing .sort .sort-menu[aria-hidden="false"] {
    padding: 20px;
    max-height: 500vh;
  }
  .news.landing .pagination li button {
    margin: 0 10px;
  }
  .news.landing .pagination-container li button.prevBtn {
    margin: 0 10px 0 10px;
  }
  .news.landing .pagination-container li button.nextBtn {
    margin: 0 10px 0 10px;
  }
  .news.landing .sort {
    background-color: #dad9d9;
    -ms-flex-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .news.landing .filter-sort > span {
    width: 100%;
    margin-right: 0;
    text-align: center;
  }
  .news.landing #news > .vp-30 {
    padding-top: 0;
  }
}
@media screen and (max-width: 415px) {
  .news.landing .sort .sort-menu button {
    white-space: normal;
    text-align: left;
    letter-spacing: 0;
  }
  .news.landing .sort .sort-menu button .text {
    width: calc(100% - 24px);
  }
}
@media screen and (max-width: 320px) {
  .news.landing .pagination-container li button.prevBtn,
  .news.landing .pagination-container li button.nextBtn {
    width: 15px;
    height: 15px;
  }
  .news.landing .pagination-container button.firstBtn,
  .news.landing .pagination-container button.lastBtn {
    width: 17px;
    height: 17px;
  }
  .news.landing .pagination li button {
    margin: 0 8px;
    font-size: 13px;
    line-height: 13px;
  }
  .news.landing .pagination-container li button.prevBtn {
    margin: 0 8px 0 8px;
  }
  .news.landing .pagination-container li button.nextBtn {
    margin: 0 8px 0 8px;
  }
  .news.landing .filter-sort > span,
  .news.landing .filter-sort > button,
  .news.landing .filter-sort > a,
  .news.landing .sort-container > button {
    padding: 10px 5px;
    font-size: 14px;
  }
}

/* mobile text size corrections */
@media screen and (max-width: 768px) {
  p,
  p.text-med,
  .line-title .actions a.link,
  article .info .author,
  .article .info .author
   {
    font-size: 1.4rem;
    line-height: 2rem;
  }
  .btn,
  .btn.btn-outline,
  .title-sml-2 {
    font-size: 1.4rem;
    line-height: 1.4rem;
  }
  article.box .info *,
  .article.box .info *,
  article.large-text .info *,
  .article.large-text .info * {
    font-size: 1.25rem;
  }
}