@import url(https://fonts.googleapis.com/css?family=PT+Sans:400,400i,700&display=swap);

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  overflow-x: hidden;
}
body {
  background: #fff;
  font-family: "PT Sans", sans-serif;
  color: #1a1818;
}

.text-justify {
  text-align: justify;
}



/* Remove browser default arrow */
summary {
    list-style: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #14558a;
    font-size: 16px;
    margin-bottom: 20px;
}

/* Chrome, Edge, Safari */
summary::-webkit-details-marker {
    display: none;
}

/* Firefox */
summary::marker {
    display: none;
}

/* Custom arrow */
summary::after {
    content: "";
    width: 9px;
    height: 9px;
    border-right: 2px solid #14558a;
    border-bottom: 2px solid #14558a;
    transform: rotate(45deg);
    margin-top: -5px;
    transition: transform 0.25s ease;
}

/* When documents are open */
details[open] summary::after {
    transform: rotate(225deg);
    margin-top: 5px;
}

/* Text switching */
.summary-closed {
    display: none;
}

details:not([open]) .summary-opened {
    display: none;
}

details:not([open]) .summary-closed {
    display: block;
}

/* details .documents-table .td.name, .documents-table .th.name,
details .documents-table .td.name, .documents-table .th.date{
  background-color: #2f597d !important;
  color: white;
}

details .documents-table .documents-table-results .td.name,
details .documents-table .documents-table-results .td.date{
  background-color: transparent !important;
} */


.institution-app {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.institution-app.mounted {
  opacity: 1;
}
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4 {
  font-weight: normal;
}
h1.has-no-margin,
.h1.has-no-margin,
h2.has-no-margin,
.h2.has-no-margin,
h3.has-no-margin,
.h3.has-no-margin,
h4.has-no-margin,
.h4.has-no-margin {
  margin: 0 !important;
}
h1.has-border-bottom,
.h1.has-border-bottom,
h2.has-border-bottom,
.h2.has-border-bottom,
h3.has-border-bottom,
.h3.has-border-bottom,
h4.has-border-bottom,
.h4.has-border-bottom {
  border-bottom: solid 1px #d0d0d0;
  padding-bottom: 20px;
  margin: 30px 0;
}
.has-border-bottom {
  border-bottom: solid 1px #d0d0d0;
  padding-bottom: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
}
h1,
.h1 {
  font-size: 36px;
}
@media (max-width: 859px) {
  h1,
  .h1 {
    font-size: 24px;
  }
}
h2,
.h2 {
  font-size: 30px;
}
@media (max-width: 859px) {
  h2,
  .h2 {
    font-size: 20px;
  }
}
h3,
.h3 {
  font-size: 20px;
  font-weight: bold;
  color: #0a2b60;
}
@media (max-width: 859px) {
  h3,
  .h3 {
    font-size: 18px;
  }
}
h4 {
  font-size: 20px;
  margin-top: 10px;
}
@media (max-width: 859px) {
  h4 {
    font-size: 18px;
  }
}
.blue {
  color: #0a2b60;
}
.border-top {
  border-top: 1px solid #f3c9ce !important;
}
.border-bottom {
  border-bottom: 1px solid #f3c9ce !important;
}
a {
  text-decoration: none;
  color: #2f597d;
}
.no-margin-top {
  margin-top: 0;
}
.text-center {
  text-align: center;
}
address {
  font-style: normal;
}
.styled-list {
  padding-left: 0;
}
/* .styled-list li {
  list-style: none;
  background-image: url(../img/plus.svg);
  background-position: left 6px;
  background-repeat: no-repeat;
  margin: 0 0 10px 10px;
  padding-left: 15px;
} */

.styled-list li {
    list-style: none;
    background: none;
    position: relative;
    margin: 0 0 10px 10px;
    padding-left: 20px;
}

.styled-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width:  9px;
    height: 9px;

    background-color: #c71932;

    -webkit-mask: url("../img/plus.svg") center / contain no-repeat;
    mask: url("../img/plus.svg") center / contain no-repeat;
}

.main-content li {
  margin-bottom: 8px;
}
.underline {
  text-decoration: underline;
}
@media screen and (min-width: 859px) {
  .two-col {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
    width: 100%;
  }
  .mobile-only {
    display: none;
    margin: 0;
  }
}
.breathe {
  padding-top: 20px;
}
.breathe-mini {
  padding-top: 10px;
}
@media (max-width: 859px) {
  .breathe-mobile {
    padding-top: 20px;
  }
}
.relative {
  position: relative;
}
.visuallyhidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}
.container {
  width: calc(100% - 30px);
  max-width: 1174px;
  margin: 0 auto;
  padding-bottom: 40px;
}
.container.no-padding {
  padding-bottom: 0;
}
.full-width {
  width: 100%;
}
@media (min-width: 860px) {
  .half-width {
    width: calc(50% - 20px);
  }
}
@media (max-width: 859px) {
  .half-width {
    width: 100%;
  }
  .half-width-mobile {
    width: calc(50% - 20px);
  }
}
.page-header {
  border-top: 10px solid #b10f24;
  position: relative;
  z-index: 2;
}

/* SUB Header */
.top-sub-nav {
  background-color: #0a2b60;
}
/* 
@media (max-width: 477px) {
  .top-sub-nav .small{
    font-size: 12px;
  }
  } */
/* SUB Header */

.page-header .header-logo {
  margin: 10px 0;
}
.page-header .header-logo svg {
  max-width: 100%;
  height: auto;
}
.page-header .header-menu-top {
  font-size: 0;
  margin-bottom: 20px;
}
.page-header .header-menu-top a {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  background: #0a2b60;
  color: #fff;
  font-size: 16px;
  -webkit-transition: 0.2s ease-in-out background;
  transition: 0.2s ease-in-out background;
}
.page-header .header-menu-top a:hover {
  background: #133b7a;
}
.page-header .header-menu-top path {
  fill: #fff;
}
.page-header .header-menu-top .home {
  border-radius: 0 0 0 20px;
  border-right: 1px solid #b18855;
}
.page-header .header-menu-top .contact {
  border-radius: 0 0 20px 0;
}
.page-header .header-menu-top .contact svg {
  position: relative;
  top: 4px;
}
@media screen and (max-width: 768px) {
  .page-header .header-menu-top .home {
    display: none;
  }
  .page-header .header-menu-top .contact {
    border-radius: 0 0 20px 20px;
  }
}
.page-header .slabel {
  margin-top: 5px;
  margin-right: 4px;
  width: 32px;
  min-width: 32px;
  height: 32px;
  border: 2px solid #2f597d;
  padding: 0;
  background-color: #e7e7e7;
  background-image: url(img/search.svg);
  background-position: center center;
  background-repeat: no-repeat;
  text-indent: -999em;
  border-radius: 50%;
  z-index: 9;
  cursor: pointer;
  color: #2f597d;
}
.page-header .slabel.active {
  background-image: none;
  text-indent: 0;
  font-weight: 900;
}
.page-header #searchform {
  width: 240px;
  height: 40px;
  line-height: 40px;
  border-radius: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page-header #searchform {
    position: absolute;
    right: 10px;
    left: 10px;
    top: 96px;
    width: calc(100% - 20px);
    display: none;
  }
  .page-header #searchform.active {
    display: block;
  }
}
.page-header #searchform .slabel {
  position: absolute;
  top: 5px;
  right: 4px;
  margin-top: 0;
  margin-right: 0;
}
.page-header #searchform input[type="search"] {
  height: 40px;
  line-height: 40px;
  border-radius: 20px;
  background: none;
  color: #1a1818 !important;
  outline: none;
  border: none;
  padding: 0 50px 0 20px;
  font-size: 16px;
  width: 100%;
  background: #e7e7e7;
  -webkit-appearance: none;
}
@media screen and (max-width: 768px) {
  .page-header #searchform input[type="search"] {
    width: 100%;
    border-radius: 20px 20px 0 0;
  }
}
.page-header #searchform input[type="search"].has-value {
  border-radius: 20px 20px 0 0;
  border: 1px solid #ccc;
  border-bottom: none;
}
.page-header #searchform .search-path {
  z-index: 10;
  position: relative;
  background: #e7e7e7;
  border-radius: 0 0 20px 20px;
  text-align: center;
  font-size: 14px;
  border: 1px solid #ccc;
  border-top: none;
  display: none;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}
@media screen and (max-width: 768px) {
  .page-header #searchform .search-path {
    display: block;
  }
}
.page-header #searchform .search-path [type="radio"] {
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
}
.page-header #searchform .has-value + .search-path {
  display: block;
}
@media screen and (max-width: 768px) {
  .page-header {
    border-bottom: 1px solid rgba(177, 136, 85, 0.5);
  }
  .page-header .header-logo {
    max-width: 200px;
  }
  .page-header .header-logo svg {
    max-width: 100%;
    height: auto;
  }
  .page-header .header-menu-top {
    margin-bottom: 10px;
  }
}
.search-window {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0);
}
@media screen and (max-width: 768px) {
  .search-window.active {
    display: block;
    background: rgba(0, 0, 0, 0.7);
  }
}
body.navopen .header-nav-toggle {
  position: fixed;
  top: 10px;
  right: 10px;
}
.header-nav {
  border-top: 1px solid #b10f24;
  border-bottom: 1px solid #b10f24;
  z-index: 9;
}
.header-nav-toggle {
  display: none;
  position: relative;
  width: 40px;
  min-width: 40px;
  height: 40px;
  text-indent: -999em;
  border-radius: 30px;
  border: 2px solid #e7e7e7;
  padding: 0;
  background-color: #2f597d;
  -webkit-transition: 0.5s ease-in-out all;
  transition: 0.5s ease-in-out all;
}
.header-nav-toggle svg {
  width: 16px;
  height: 16px;
  margin: 10px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.5s ease-in-out all;
  transition: 0.5s ease-in-out all;
}
.header-nav-toggle svg g {
  -webkit-transition: 0.5s ease-in-out all;
  transition: 0.5s ease-in-out all;
}
.header-nav-container {
  z-index: 9;
}
.header-nav-container ul,
.header-nav-container li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.header-nav-container > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 9;
}
.header-nav-container > ul > li {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.header-nav-container > ul > li > a {
  display: block;
  line-height: 40px;
  height: 40px;
  padding: 0 15px;
  color: #1a1818;
  -webkit-transition: 0.2s ease-in-out all;
  transition: 0.2s ease-in-out all;
  text-align: center;
}

@media (max-width: 1150px) {
  .header-nav-container > ul > li > a {
    padding: 0 10px;
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .header-nav-container > ul > li > a {
    text-align: left;
  }
  .header-nav-container > ul > li:hover > ul > li {
    width: 100% !important;
}
}

.header-nav-container > ul > li > a span {
   /* display: inline-block;
  width: 8px;
  height: 8px;
  position: relative;
  top: -2px;
  margin-left: 7px;
  background-image: url(../img/plus.svg);
  -webkit-transition: 0.2s ease-in-out all;
  transition: 0.2s ease-in-out all;  */
}
.header-nav-container > ul > li > a span i {
  font-size: 12px;
  margin-left: 2px;
  color: #c71932;
}

.header-nav-container > ul > li > a:hover{
  background: #0a2b60;
  color: #fff;
}
.header-nav-container > ul > li > a:hover i {
    color: #fff;
}

/* .header-nav-container > ul > li > a:hover i::before {
    content: "\f068";
    font-size: 12px;
} */

.header-nav-container > ul > li.subnavopen span {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.header-nav-container > ul > li > ul {
  display: none;
  position: absolute;
  /* width: 100%; */
  top: 100%;
  /* right: 0; */
  /* left: 0; */
  padding: 20px;
  background: #0a2b60;
  color: #fff;
}
/* .header-nav-container > ul > li > ul > li {
  width: calc(33% - 40px);
} */
.header-nav-container > ul > li > ul > li > a {
  padding: 10px 20px;
  display: block;
  width: 100%;
  height: auto;
  line-height: auto;
  color: #fff;
  /* padding: 20px;
  transition: 0.2s ease-in-out background;
  -webkit-transition: 0.2s ease-in-out background;
  background-image: url(../img/plus.svg);
  background-position: 10px 25px;
  background-repeat: no-repeat; */
}
.header-nav-container > ul > li > ul > li > a:hover {
  background-color: #133b7a;
}
.header-nav-container > ul > li > ul > li p {
  font-size: 14px;
}
.header-nav-container > ul > li:hover > ul {
  /* flex-direction: column; */

  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: flex-start;
}

.header-nav-container > ul > li:hover > ul > li {
    width: 33.3333%;
    box-sizing: border-box;
}

/* @media screen and (max-width: 1000px) {
  .header-nav-container ul li a span {
    display: none;
  }
  } */
  /* @media screen and (max-width: 991px) {
     .header-nav-container ul li span {
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url(../img/plus-white.svg);
    background-repeat: none;
    background-size: 20px 20px;
    position: absolute;
    right: 10px;
    top: 7px;
    z-index: 99;
    -webkit-transition: 0.3s ease-in-out all;
    transition: 0.3s ease-in-out all;
  }
  } */
@media screen and (max-width: 768px) {
  .header-nav {
    overflow-y: scroll;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding-top: 60px;
    background: rgba(47, 89, 125, 0.9);
    -webkit-transition: 0.5s ease-in-out all;
    transition: 0.5s ease-in-out all;
  }
  .header-nav-toggle {
    display: block;
    z-index: 99;
  }
  .header-nav-container {
    z-index: 9;
  }
  .header-nav-container ul,
  .header-nav-container li {
    display: block;
    width: 100%;
  }
  .header-nav-container ul li {
    position: relative;
    margin-right: 60px;
    background: none;
  }
  .header-nav-container ul li.subnavopen ul.sub-menu {
    min-height: 0;
    max-height: 600px;
    height: auto;
    opacity: 1;
  }
 
  .header-nav-container ul li a {
    color: #fff;
    position: relative;
  }
  /* .header-nav-container ul li a span {
    display: none;
  } */
  .header-nav-container ul li > a {
    font-size: 20px;
  }
  .header-nav-container ul li ul.sub-menu {
    position: relative;
    display: block;
    padding: 0;
    margin-left: 20px;
    width: calc(100% - 40px);
    min-height: 0;
    max-height: 0;
    height: auto;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    overflow: hidden;
    opacity: 0;
    border-radius: 10px;
  }
  .header-nav-container ul li ul.sub-menu li {
    width: 100%;
    margin-right: 0;
  }
  .header-nav-container ul li ul.sub-menu li .menu-item-description {
    display: none;
  }
  .header-nav-container ul li ul.sub-menu li a {
    padding: 7px 10px;
    background: none;
    font-size: 16px;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.4); */
  }
  .header-nav-container ul li ul.sub-menu li a:hover,
  .header-nav-container ul li ul.sub-menu li a:active {
    background: none;
  }
  .header-nav-container ul li ul.sub-menu li:last-child a {
    border-bottom: none;
  }
  .header-nav-container ul li:hover {
    background: none;
  }
  .header-nav.active {
    display: block;
    opacity: 1;
    pointer-events: all;
  }
}
.navopen .header-nav-toggle svg {
  width: 24px;
  height: 24px;
  margin: 5px 4px 4px 3px;
}
.navopen .header-nav-toggle svg g {
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
.navopen .header-nav-toggle svg g#mid {
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
  opacity: 0;
}
.navopen .header-nav-toggle svg g#top {
  -webkit-transform: rotate(45deg) scale(1.1);
  transform: rotate(45deg) scale(1.1);
}
.navopen .header-nav-toggle svg g#bot {
  -webkit-transform: rotate(-45deg) scaleY(1.1) scaleX(1.2) translateY(12px)
    translateX(-4px);
  transform: rotate(-45deg) scaleY(1.1) scaleX(1.2) translateY(12px)
    translateX(-4px);
}
.page-content {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 436px);
}
.page-footer {
  background: #04142f;
  color: #fff;
  padding: 50px 0 0 0;
  position: relative;
}
.page-footer a {
  color: #fff;
}
.page-footer .icon {
  position: relative;
}
.page-footer .icon span {
  position: absolute;
  left: 0;
  top: 1px;
}
.featured-image {
  float: right;
  width: 20%;
  max-width: 20%;
  margin: 20px 0 20px 40px;
}
.featured-image img {
  display: block;
  max-width: 100%;
  height: auto;
}
.copyright {
  text-align: center;
  border-top: 1px solid #b10f24;
  font-size: 12px;
}
.copyright p {
  margin: 0;
  padding: 20px 0;
}
.copyright .container {
  padding-bottom: 0;
}
.margin-top {
  margin-top: 30px;
}
.hide {
  display: none;
}
.page .wp-block-table p {
  margin: 0;
  padding: 0;
}
.page .wp-block-table u {
  text-decoration: none;
}
.flex-row,
.flex-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flex-row.space-between,
.flex-column.space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-row.space-around,
.flex-column.space-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.flex-row.justify-center,
.flex-column.justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.flex-row.justify-end,
.flex-column.justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .flex-row.justify-end-not-mobile,
  .flex-column.justify-end-not-mobile {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.flex-row.align-start,
.flex-column.align-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.flex-row.align-center,
.flex-column.align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.flex-row.align-end,
.flex-column.align-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.flex-row.align-stretch,
.flex-column.align-stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.flex-row.wrap,
.flex-column.wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-row.split-half,
.flex-column.split-half {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-row.split-half > *,
.flex-column.split-half > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(50% - 20px);
  flex: 0 0 calc(50% - 20px);
}
.flex-row.split-thirds,
.flex-column.split-thirds {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-row.split-thirds > *,
.flex-column.split-thirds > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(33.33% - 20px);
  flex: 0 0 calc(33.33% - 20px);
}
.flex-row.split-page,
.flex-column.split-page {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 20px 0 20px;
}
.flex-row.split-page .main-content,
.flex-column.split-page .main-content {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(67% - 20px);
  flex: 0 0 calc(67% - 20px);
}
.flex-row.split-page .sidebar,
.flex-column.split-page .sidebar {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(33% - 20px);
  flex: 0 0 calc(33% - 20px);
}
@media screen and (max-width: 768px) {
  .flex-row.split-half > *,
  .flex-row.split-thirds > *,
  .flex-column.split-half > *,
  .flex-column.split-thirds > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
  .flex-row.split-page .main-content,
  .flex-column.split-page .main-content {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
  .flex-row.split-page .sidebar,
  .flex-column.split-page .sidebar {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}
.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 859px) {
  .flex-row-mobile {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .flex-column-mobile {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .flex-row-mobile.space-between-mobile,
  .flex-column-mobile.space-between-mobile {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .flex-row-mobile.space-around-mobile,
  .flex-column-mobile.space-around-mobile {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .flex-row-mobile.justify-start-mobile,
  .flex-column-mobile.justify-start-mobile {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .flex-row-mobile.justify-center-mobile,
  .flex-column-mobile.justify-center-mobile {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .flex-row-mobile.justify-end-mobile,
  .flex-column-mobile.justify-end-mobile {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .flex-row-mobile.align-center-mobile,
  .flex-column-mobile.align-center-mobile {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .flex-row-mobile.align-end-mobile,
  .flex-column-mobile.align-end-mobile {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .flex-row-mobile.align-stretch-mobile,
  .flex-column-mobile.align-stretch-mobile {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .flex-row-mobile.wrap-mobile,
  .flex-column-mobile.wrap-mobile {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex-row-mobile.no-wrap-mobile,
  .flex-column-mobile.no-wrap-mobile {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}
.row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -20px;
}
.flex + .flex {
  margin-top: 20px;
}
.flex-no-gutters {
  margin: 0;
}
.flex-no-vertical-gutters {
  margin-top: 0;
  margin-bottom: 0;
}
.flex-double-gutters {
  margin: -40px;
}
.flex-double-gutters + .flex-double-gutters {
  margin-top: 40px;
}
.flex-half-gutters {
  margin: -10px;
}
.flex-half-gutters + .flex-half-gutters {
  margin-top: 10px;
}
.flex-wrap {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
@media (max-width: 767px) {
  .flex-wrap-mobile {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
  }
}
.flex-wrap-auto {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
.flex-direction-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.flex-direction-column-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.flex-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-space-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.flex-align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.flex-align-stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.flex-align-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.flex-align-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.flex-justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .flex-justify-center-desktop {
    -webkit-box-pack: flex-center;
    -ms-flex-pack: flex-center;
    justify-content: flex-center;
  }
}
.flex-justify-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
@media (min-width: 1024px) {
  .flex-justify-start-desktop {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.flex-justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media (min-width: 1024px) {
  .flex-justify-end-desktop {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}
.flex-col {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -ms-flex-preferred-size: 80px;
  flex-basis: 80px;
  padding: 20px;
}
.flex-no-gutters > .flex-col {
  padding: 0;
}
.flex-no-vertical-gutters > .flex-col {
  padding-top: 0;
  padding-bottom: 0;
}
.flex-double-gutters > .flex-col {
  padding: 40px;
}
.flex-half-gutters > .flex-col {
  padding: 10px;
}
@media (max-width: 767px) {
  .flex-wrap > .flex-col,
  .flex-wrap-mobile > .flex-col {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
}
.flex-direction-column-reverse > .flex-col,
.flex-direction-column > .flex-col {
  width: 100%;
}
.flex-col-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.flex-col.flex-align-center {
  -ms-flex-item-align: center;
  align-self: center;
}
.flex-col.flex-align-stretch {
  -ms-flex-item-align: stretch;
  align-self: stretch;
}
.flex-col.flex-align-start {
  -ms-flex-item-align: start;
  align-self: flex-start;
}
.flex-col.flex-align-end {
  -ms-flex-item-align: end;
  align-self: flex-end;
}
.flex-col.flex-first {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}
@media (max-width: 767px) {
  .flex-col.flex-first-mobile {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
}
@media (min-width: 460px) {
  .flex-col-mobile-1 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 8.33333%;
    flex: 1 1 8.33333%;
    max-width: 8.33333%;
  }
  .flex-col-mobile-2 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 16.66667%;
    flex: 1 1 16.66667%;
    max-width: 16.66667%;
  }
  .flex-col-mobile-3 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25%;
    flex: 1 1 25%;
    max-width: 25%;
  }
  .flex-col-mobile-4 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 33.33333%;
    flex: 1 1 33.33333%;
    max-width: 33.33333%;
  }
  .flex-col-mobile-5 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 41.66667%;
    flex: 1 1 41.66667%;
    max-width: 41.66667%;
  }
  .flex-col-mobile-6 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
    max-width: 50%;
  }
  .flex-col-mobile-7 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 58.33333%;
    flex: 1 1 58.33333%;
    max-width: 58.33333%;
  }
  .flex-col-mobile-8 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 66.66667%;
    flex: 1 1 66.66667%;
    max-width: 66.66667%;
  }
  .flex-col-mobile-9 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 75%;
    flex: 1 1 75%;
    max-width: 75%;
  }
  .flex-col-mobile-10 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 83.33333%;
    flex: 1 1 83.33333%;
    max-width: 83.33333%;
  }
  .flex-col-mobile-11 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 91.66667%;
    flex: 1 1 91.66667%;
    max-width: 91.66667%;
  }
  .flex-col-mobile-12 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .flex-col-1 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 8.33333%;
    flex: 1 1 8.33333%;
    max-width: 8.33333%;
  }
  .flex-col-2 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 16.66667%;
    flex: 1 1 16.66667%;
    max-width: 16.66667%;
  }
  .flex-col-3 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25%;
    flex: 1 1 25%;
    max-width: 25%;
  }
  .flex-col-4 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 33.33333%;
    flex: 1 1 33.33333%;
    max-width: 33.33333%;
  }
  .flex-col-5 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 41.66667%;
    flex: 1 1 41.66667%;
    max-width: 41.66667%;
  }
  .flex-col-6 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
    max-width: 50%;
  }
  .flex-col-7 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 58.33333%;
    flex: 1 1 58.33333%;
    max-width: 58.33333%;
  }
  .flex-col-8 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 66.66667%;
    flex: 1 1 66.66667%;
    max-width: 66.66667%;
  }
  .flex-col-9 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 75%;
    flex: 1 1 75%;
    max-width: 75%;
  }
  .flex-col-10 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 83.33333%;
    flex: 1 1 83.33333%;
    max-width: 83.33333%;
  }
  .flex-col-11 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 91.66667%;
    flex: 1 1 91.66667%;
    max-width: 91.66667%;
  }
  .flex-col-12 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .flex-col-lt-1 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 8.33333%;
    flex: 1 1 8.33333%;
    max-width: 8.33333%;
  }
  .flex-col-lt-2 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 16.66667%;
    flex: 1 1 16.66667%;
    max-width: 16.66667%;
  }
  .flex-col-lt-3 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25%;
    flex: 1 1 25%;
    max-width: 25%;
  }
  .flex-col-lt-4 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 33.33333%;
    flex: 1 1 33.33333%;
    max-width: 33.33333%;
  }
  .flex-col-lt-5 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 41.66667%;
    flex: 1 1 41.66667%;
    max-width: 41.66667%;
  }
  .flex-col-lt-6 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
    max-width: 50%;
  }
  .flex-col-lt-7 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 58.33333%;
    flex: 1 1 58.33333%;
    max-width: 58.33333%;
  }
  .flex-col-lt-8 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 66.66667%;
    flex: 1 1 66.66667%;
    max-width: 66.66667%;
  }
  .flex-col-lt-9 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 75%;
    flex: 1 1 75%;
    max-width: 75%;
  }
  .flex-col-lt-10 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 83.33333%;
    flex: 1 1 83.33333%;
    max-width: 83.33333%;
  }
  .flex-col-lt-11 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 91.66667%;
    flex: 1 1 91.66667%;
    max-width: 91.66667%;
  }
  .flex-col-lt-12 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    max-width: 100%;
  }
}
@media (min-width: 1024px) {
  .flex-col-desktop-1 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 8.33333%;
    flex: 1 1 8.33333%;
    max-width: 8.33333%;
  }
  .flex-col-desktop-2 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 16.66667%;
    flex: 1 1 16.66667%;
    max-width: 16.66667%;
  }
  .flex-col-desktop-3 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25%;
    flex: 1 1 25%;
    max-width: 25%;
  }
  .flex-col-desktop-4 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 33.33333%;
    flex: 1 1 33.33333%;
    max-width: 33.33333%;
  }
  .flex-col-desktop-5 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 41.66667%;
    flex: 1 1 41.66667%;
    max-width: 41.66667%;
  }
  .flex-col-desktop-6 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
    max-width: 50%;
  }
  .flex-col-desktop-7 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 58.33333%;
    flex: 1 1 58.33333%;
    max-width: 58.33333%;
  }
  .flex-col-desktop-8 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 66.66667%;
    flex: 1 1 66.66667%;
    max-width: 66.66667%;
  }
  .flex-col-desktop-9 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 75%;
    flex: 1 1 75%;
    max-width: 75%;
  }
  .flex-col-desktop-10 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 83.33333%;
    flex: 1 1 83.33333%;
    max-width: 83.33333%;
  }
  .flex-col-desktop-11 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 91.66667%;
    flex: 1 1 91.66667%;
    max-width: 91.66667%;
  }
  .flex-col-desktop-12 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    max-width: 100%;
  }
}
@media (min-width: 1100px) {
  .flex-col-wide-1 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 8.33333%;
    flex: 1 1 8.33333%;
    max-width: 8.33333%;
  }
  .flex-col-wide-2 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 16.66667%;
    flex: 1 1 16.66667%;
    max-width: 16.66667%;
  }
  .flex-col-wide-3 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25%;
    flex: 1 1 25%;
    max-width: 25%;
  }
  .flex-col-wide-4 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 33.33333%;
    flex: 1 1 33.33333%;
    max-width: 33.33333%;
  }
  .flex-col-wide-5 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 41.66667%;
    flex: 1 1 41.66667%;
    max-width: 41.66667%;
  }
  .flex-col-wide-6 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
    max-width: 50%;
  }
  .flex-col-wide-7 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 58.33333%;
    flex: 1 1 58.33333%;
    max-width: 58.33333%;
  }
  .flex-col-wide-8 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 66.66667%;
    flex: 1 1 66.66667%;
    max-width: 66.66667%;
  }
  .flex-col-wide-9 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 75%;
    flex: 1 1 75%;
    max-width: 75%;
  }
  .flex-col-wide-10 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 83.33333%;
    flex: 1 1 83.33333%;
    max-width: 83.33333%;
  }
  .flex-col-wide-11 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 91.66667%;
    flex: 1 1 91.66667%;
    max-width: 91.66667%;
  }
  .flex-col-wide-12 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    max-width: 100%;
  }
}
@media (max-width: 1040px) {
  .flex-wrap > .flex-col-menu {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
}
@media (min-width: 1040px) {
  .flex-col-menu-1 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 8.33333%;
    flex: 1 1 8.33333%;
    max-width: 8.33333%;
  }
  .flex-col-menu-2 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 16.66667%;
    flex: 1 1 16.66667%;
    max-width: 16.66667%;
  }
  .flex-col-menu-3 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25%;
    flex: 1 1 25%;
    max-width: 25%;
  }
  .flex-col-menu-4 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 33.33333%;
    flex: 1 1 33.33333%;
    max-width: 33.33333%;
  }
  .flex-col-menu-5 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 41.66667%;
    flex: 1 1 41.66667%;
    max-width: 41.66667%;
  }
  .flex-col-menu-6 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
    max-width: 50%;
  }
  .flex-col-menu-7 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 58.33333%;
    flex: 1 1 58.33333%;
    max-width: 58.33333%;
  }
  .flex-col-menu-8 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 66.66667%;
    flex: 1 1 66.66667%;
    max-width: 66.66667%;
  }
  .flex-col-menu-9 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 75%;
    flex: 1 1 75%;
    max-width: 75%;
  }
  .flex-col-menu-10 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 83.33333%;
    flex: 1 1 83.33333%;
    max-width: 83.33333%;
  }
  .flex-col-menu-11 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 91.66667%;
    flex: 1 1 91.66667%;
    max-width: 91.66667%;
  }
  .flex-col-menu-12 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    max-width: 100%;
  }
}
@media (max-width: 1023px) {
  .flex-tablet-full-width {
    width: 100%;
    max-width: 100%;
  }
  .flex-column-tablet {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .flex-mobile-block {
    display: block;
  }
  .flex-column-mobile {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .flex-mobile-full-width {
    width: 100%;
    max-width: 100%;
  }
}
.block {
  margin-top: 40px;
  position: relative;
}
.block:after {
  content: "";
  clear: both;
  display: table;
}
.block-outlined {
  padding: 40px 20px 40px;
  margin-top: 40px;
  border: 1px solid #bd6a74;
  border-radius: 40px;
}
.block-outlined.no-heading {
  margin-top: 40px;
}
.block-heading {
  font-weight: 400;
  -webkit-transform: translateY(-55px);
  transform: translateY(-55px);
  margin: 0 0 -32px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 36px;
  text-align: center;
}
.block-heading span {
  padding: 0 20px;
  background: #fff;
}
.block-subheading {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 0;
  color: #2f597d;
}
.block-heading + .block-subheading {
  margin-top: 0;
  text-align: center;
}
.block-number {
  display: block;
  position: absolute;
  top: -30px;
  left: -30px;
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #b18855;
  font-size: 36px;
  line-height: 60px;
  text-align: center;
}
@media (max-width: 768px) {
  .block-number {
    left: -10px;
  }
}
.block-content-inner {
  width: 100%;
}
.block-content-inner *:first-child {
  margin-top: 0;
}
.block-content-inner *:last-child {
  margin-bottom: 0;
}
.block-halves .block-content-inner:first-child {
  padding-right: 40px;
  border-right: 1px solid #bd6a74;
}
.block-halves .block-content-inner:last-child {
  padding-left: 40px;
}
.block table a {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}
.page-annual-meeting .block table a {
  display: inline-block;
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 10px;
  display: block;
}
@media (max-width: 859px) {
  .form-label {
    font-size: 16px;
  }
}
.form-control {
  display: block;
  width: 100%;
  border: 1px solid rgba(47, 89, 125, 0.5);
  border-radius: 20px;
  font-family: "PT Sans", sans-serif;
  font-size: 16px;
  padding: 0 20px;
  line-height: 36px;
  -webkit-transition:
    border-color,
    background-color 0.15s ease-in-out;
  transition:
    border-color,
    background-color 0.15s ease-in-out;
}
.form-control.select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(../img/select-arrow.svg) calc(100% - 3px) center no-repeat;
  background-size: 30px 30px;
}

.form-control:focus {
  outline: none;
  border-color: #2f597d;
  background-color: #fcfcfc;
}
.error {
  color: #ff0000;
}
.wp-block-ninja-forms-form {
  margin: 20px 0;
}
.wp-block-ninja-forms-form input[type="button"].ninja-forms-field {
  width: auto;
  padding-right: 20px !important;
  min-width: 0 !important;
}
.nf-form-fields-required {
  margin-bottom: 16px;
}
.btn,
.wp-block-ninja-forms-form input.ninja-forms-field[type="button"] {
  display: inline-block;
  /* background: #2f597d; */
  background: #0a2b60;
  color: #fff !important;
  font-size: 16px;
  line-height: 1;
  padding: 12px 50px 12px 20px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  position: relative;
  -webkit-transition: background-color 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out;
  min-width: 147px;
  text-align: left;
}
.btn:hover,
.wp-block-ninja-forms-form input.ninja-forms-field:hover[type="button"],
.btn:focus,
.wp-block-ninja-forms-form input.ninja-forms-field:focus[type="button"],
.btn:active,
.wp-block-ninja-forms-form input.ninja-forms-field:active[type="button"] {
  background: #214786;
  outline: 0;
  border: none;
}
.btn:after,
.wp-block-ninja-forms-form input.ninja-forms-field[type="button"]:after {
  content: url(../img/chevron.svg);
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 18px;
  border: 3px solid rgba(255, 255, 255, 0.45);
  position: absolute;
  top: 3px;
  right: 3px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition:
    transform 0.2s ease-in-out,
    -webkit-transform 0.2s ease-in-out;
}
.btn.btn-back,
.wp-block-ninja-forms-form input.btn-back.ninja-forms-field[type="button"] {
  padding: 12px 20px 12px 50px;
}
.btn.btn-back:after,
.wp-block-ninja-forms-form
  input.btn-back.ninja-forms-field[type="button"]:after {
  content: url(../img/chevron.svg);
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 18px;
  border: 3px solid rgba(255, 255, 255, 0.45);
  position: absolute;
  top: 3px;
  left: 3px;
  right: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition:
    transform 0.2s ease-in-out,
    -webkit-transform 0.2s ease-in-out;
}
.btn.point-down:after,
.wp-block-ninja-forms-form
  input.point-down.ninja-forms-field[type="button"]:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.btn.point-up:after,
.wp-block-ninja-forms-form
  input.point-up.ninja-forms-field[type="button"]:after,
.btn[data-toggle-expandset].open:after,
.wp-block-ninja-forms-form
  input.ninja-forms-field[type="button"][data-toggle-expandset].open:after {
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}
.plus-link,
.minus-link {
  color: #2f597d;
  margin: 8px 0 0 8px;
  display: inline-block;
}
.plus-link.no-margin-left,
.minus-link.no-margin-left {
  margin-left: 0;
}
.plus-link:before,
.minus-link:before {
  content: "+";
  color: #b18855;
  margin-right: 4px;
  font-size: 20px;
  vertical-align: middle;
}
.minus-link:before {
  content: "-";
}
.read-more {
  position: relative;
  padding-right: 10px;
}
.read-more:after {
  content: "";
  display: block;
  height: 10px;
  width: 6px;
  position: absolute;
  top: 6px;
  right: 0;
  -webkit-mask: url(../img/chevron.svg);
  mask: url(../img/chevron.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: #2f597d;
}
.glide__arrows {
  text-align: center;
  padding: 20px;
}
.btn-arrow {
  display: inline-block;
  background-image: url(../img/chevron.svg);
  background-size: 10px;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #04142f;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  position: relative;
  -webkit-transition: background-color 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out;
  text-indent: -9999em;
  overflow: hidden;
}
.btn-arrow-previous {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.key-value {
  margin: 0;
}
.key-value dt,
.key-value dd {
  display: inline-block;
  vertical-align: top;
  background: none;
}
.key-value dt {
  font-weight: 700;
}
.key-value dd {
  margin-left: 4px;
}
.plus-list {
  margin: 20px 0 20px;
  padding-left: 24px;
}
.plus-list:last-child {
  margin-bottom: 0;
}
.plus-list dd,
.plus-list dt,
.plus-list li {
  display: block;
  margin-left: 0;
}
.plus-list.inline {
  margin-top: 0;
}
.plus-list.inline dd,
.plus-list.inline dt,
.plus-list.inline li {
  display: inline-block;
  margin-right: 8px;
}
.plus-list li {
  margin-bottom: 4px;
}
.plus-list li:last-child {
  margin-bottom: 0;
}
.plus-list dt {
  font-weight: 700;
}
.plus-list li,
.plus-list dt {
  position: relative;
}
.plus-list li:before,
.plus-list dt:before {
  content: "+";
  color: #b18855;
  line-height: 1;
  font-size: 20px;
  font-weight: 400;
  vertical-align: top;
  position: absolute;
  top: 0;
  left: -14px;
}
.result {
  -webkit-transition: background-color 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out;
  padding: 20px;
  padding-right: 60px;
  cursor: pointer;
  border-bottom: 1px solid rgba(112, 112, 112, 0.2);
}
.result:last-child {
  border-bottom: none;
}
.result:hover {
  background-color: rgba(177, 136, 85, 0.2);
  background-image: url(../img/result-arrow.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) center;
}
.result .institution_name {
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 859px) {
  .result .institution_name {
    font-size: 18px;
  }
}
.result .institution_aka {
  font-style: italic;
}
.block-outlined .results {
  margin-top: -20px;
  margin-bottom: -20px;
}
.pagination {
  border: 1px solid rgba(47, 89, 125, 0.5);
  display: inline-block;
  margin: 40px auto;
  padding: 3px;
  border-radius: 20px;
  text-align: center;
  font-size: 0;
}
.page-btn {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  width: 34px;
  height: 34px;
  margin: 0 2px;
  border: 3px solid rgba(47, 89, 125, 0.5);
  border-radius: 17px;
  text-align: center;
  padding-top: 4px;
  vertical-align: middle;
}
.page-btn.current {
  cursor: default;
}
.page-btn.current,
.page-btn:hover {
  background: rgba(47, 89, 125, 0.5);
  border-color: transparent;
}
.page-btn.prev,
.page-btn.next {
  background: url(../img/select-arrow.svg) center center no-repeat;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  border-color: transparent;
  -webkit-transition: border-color 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out;
}
.page-btn.prev:hover,
.page-btn.next:hover {
  border-color: rgba(47, 89, 125, 0.5);
}
.page-btn.prev {
  margin-left: 0;
  background: url(../img/select-arrow.svg) center center no-repeat;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.page-btn.next {
  margin-right: 0;
  background: url(../img/select-arrow.svg) center center no-repeat;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.page-btn-first {
  margin-right: 15px;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.page-btn-last {
  margin-left: 15px;
}
.page-btn-first,
.page-btn-last {
  background: url(../img/double-arrow.svg) center center no-repeat
    rgba(47, 89, 125, 0.5);
  border-color: transparent;
  -webkit-transition: border-color 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out;
}
.page-btn-first:hover,
.page-btn-last:hover {
  border-color: rgba(47, 89, 125, 0.5);
  background: url(../img/double-arrow.svg) center center no-repeat
    rgba(47, 89, 125, 0.5);
}
.page-btn.disabled {
  opacity: 0.5;
  cursor: default;
  border-color: transparent;
}
.page-btn.disabled:hover {
  border-color: transparent;
}
.institution-app {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 859px) {
  .institution-app {
    display: block;
  }
}
.institution-app.detail-view {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 859px) {
  .institution-app.detail-view {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.institution-app.detail-view .detail {
  width: calc(100% - 410px);
}
@media (max-width: 859px) {
  .institution-app.detail-view .detail {
    width: 100%;
  }
}
@media (max-width: 859px) {
  .institution-app.detail-view {
    width: 100%;
  }
  .institution-app.detail-view .big-block,
  .institution-app.detail-view .small-block {
    width: 100%;
  }
}
.institution-app .results-block {
  width: calc(100% - 410px);
}
@media (max-width: 859px) {
  .institution-app .results-block {
    width: 100%;
  }
}
.institution-app .sidebar {
  width: 370px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 859px) {
  .institution-app .sidebar {
    display: block;
    width: 100%;
  }
}
.institution-app .sidebar .half-width {
  width: 100%;
}
.institution-app .sidebar.full-sidebar {
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.institution-app .sidebar.full-sidebar .big-block {
  width: calc(100% - 410px);
}
.institution-app .sidebar.full-sidebar .small-block {
  width: 370px;
}
@media (max-width: 859px) {
  .institution-app .sidebar.full-sidebar {
    display: block;
  }
  .institution-app .sidebar.full-sidebar .big-block,
  .institution-app .sidebar.full-sidebar .small-block {
    width: 100%;
  }
}
.institution-app .aka {
  width: 100%;
  font-size: 16px;
  text-align: center;
  position: relative;
  line-height: 1.2;
  margin: 8px 0;
}
.institution-app .aka .former-name {
  margin: 0 auto;
  display: block;
  max-width: 80%;
  line-height: 1.4;
}
@media (max-width: 1023px) {
  .institution-app .aka .former-name {
    display: block;
    max-width: 100%;
  }
}
.institution-app .aka .detail-website {
  position: absolute;
  top: 0;
  right: 0;
  margin-top: 0;
}
@media (max-width: 1023px) {
  .institution-app .aka .detail-website {
    position: static;
    margin-left: 0;
    text-align: left;
    display: block;
  }
}
.institution-app .contact-links a {
  display: inline-block;
  margin-right: 30px;
  margin-top: 8px;
}
.icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-position: center center;
  background-repeat: no-repeat;
  margin-right: 8px;
}
.icon-phone {
  background-image: url(../img/phone.svg);
  margin-right: 4px;
}
.icon-email {
  background-image: url(../img/email.svg);
  margin-right: 4px;
}
.icon-information {
  background-image: url(../img/information.svg);
  margin: 0 4px;
  cursor: normal;
}
[data-super-table] {
  position: relative;
  width: 100%;
}
[data-super-table] .responsive {
  padding-bottom: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}
[data-super-table] .responsive.set-height {
  overflow: auto;
}
[data-super-table] .table {
  margin: 0;
  width: auto;
  max-width: none;
  min-width: 100%;
}
@media (max-width: 767px) {
  [data-super-table] .table.table-fixed {
    table-layout: initial;
  }
}
[data-super-table] .table th {
  position: relative;
}
[data-super-table] .table th,
[data-super-table] .table td {
  white-space: nowrap;
}
[data-super-table] .table .allow-wrap {
  white-space: normal;
}
[data-super-table][data-lockable] th {
  position: relative;
  padding-right: 26px;
}
[data-super-table] a[data-lock-column] {
  opacity: 0.25;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  cursor: pointer;
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 14px;
  height: 14px;
  margin: auto 6px;
  background: no-repeat;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M400 256H152V152.9c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v16c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-16C376 68 307.5-.3 223.5 0 139.5.3 72 69.5 72 153.5V256H48c-26.5 0-48 21.5-48 48v160c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zM264 408c0 22.1-17.9 40-40 40s-40-17.9-40-40v-48c0-22.1 17.9-40 40-40s40 17.9 40 40v48z"/></svg>');
  background-size: contain;
}
[data-super-table] a[data-lock-column]:hover {
  opacity: 0.5;
}
[data-super-table].compact a[data-lock-column] {
  display: inline-block;
}
[data-super-table].compact .max-locked a[data-lock-column] {
  display: none;
}
[data-super-table].compact .meta-columns {
  display: none;
}
[data-super-table].stacked .responsive {
  max-height: none !important;
  padding-top: 0;
  padding-bottom: 0;
}
[data-super-table].stacked .table,
[data-super-table].stacked tbody,
[data-super-table].stacked tfoot,
[data-super-table].stacked tr,
[data-super-table].stacked th,
[data-super-table].stacked td {
  display: block;
  background: none;
  text-align: left;
}
[data-super-table].stacked tr:after {
  content: "";
  display: table;
  clear: both;
}
[data-super-table].stacked td:first-child,
[data-super-table].stacked td {
  border: none;
  width: 50%;
  float: left;
  white-space: normal;
  font-size: 14px;
  padding: 6px;
  border-bottom: none;
}
[data-super-table].stacked td:first-child[data-heading]:before,
[data-super-table].stacked td[data-heading]:before {
  content: attr(data-heading);
  display: inline-block;
  padding-right: 8px;
  font-weight: 700;
  font-size: 12px;
}
@media (max-width: 550px) {
  [data-super-table].stacked td:first-child:before,
  [data-super-table].stacked td:before {
    content: attr(data-heading);
    display: block;
  }
}
@media (max-width: 450px) {
  [data-super-table].stacked td:first-child,
  [data-super-table].stacked td {
    width: 100%;
    float: none;
  }
}
[data-super-table].stacked tr:last-child td {
  border-bottom: none;
}
[data-super-table].stacked tr {
  border-top: 1px solid #dddddd;
  clear: left;
}
[data-super-table].stacked thead {
  display: none;
}
[data-super-table].stacked .lock-table-container {
  display: none;
}
[data-super-table] .fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
}
[data-super-table] .fixed-header tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
[data-super-table][data-height] {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  overflow: hidden;
}
[data-super-table][data-height] .rear th:last-child {
  position: relative;
}
[data-super-table][data-height] .rear th:last-child:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  width: 60px;
  background: black;
}
.table {
  width: 100%;
  border-spacing: 0;
  border-collapse: separate;
}
.table th,
.table td {
  padding: 10px;
  text-align: left;
  border: none;
  vertical-align: top;
}
.table th:first-child,
.table td:first-child {
  width: 240px;
  white-space: normal !important;
}
@media (max-width: 1100px) {
  .table th:first-child,
  .table td:first-child {
    width: 130px;
  }
}
@media (max-width: 1000px) {
  .table th:last-child,
  .table td:last-child {
    white-space: normal !important;
  }
}
.table th {
  background: #2f597d;
  color: #fff;
  font-weight: 400;
}
.table th:first-child {
  border-radius: 10px 0 0 0;
}
.table th:last-child {
  border-radius: 0 10px 0 0;
}
.table td:first-child {
  border-left: 1px solid rgba(47, 89, 125, 0.1);
}
.table td:last-child {
  border-right: 1px solid rgba(47, 89, 125, 0.1);
}
.table tr:nth-child(even) {
  background: rgba(47, 89, 125, 0.1);
}
.table tr:last-child td {
  border-bottom: 1px solid rgba(47, 89, 125, 0.1);
}
.table tr:last-child td:first-child {
  border-radius: 0 0 0 10px;
}
.table tr:last-child td:last-child {
  border-radius: 0 0 10px 0;
}
.table.no-border tr th,
.table.no-border tr td {
  border: none;
}
.light-blue-bg {
  background-color: #d9e2f3;
}
.light-green-bg {
  background-color: #e2efd9;
}
.gray-bg {
  background-color: #e7e6e6;
}
.light-brown-bg {
  background-color: #fff2cc;
}
.dark-green-bg {
  background-color: #a8d08d;
}
.blue-bg {
  background-color: #8eaadb;
}
.page-summer-institute td {
  border: 1px solid;
  padding: 0.5rem;
  vertical-align: top;
}
.breakout-table tr:nth-child(3) {
  background-color: #fff8e5;
}
.breakout-table tr:nth-child(4) {
  background-color: #d9f2d0;
}
.loader,
.fader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  z-index: 1001;
  pointer-events: none;
}
.loader-local,
.fader-local {
  position: absolute;
}
.loading,
.fading {
  opacity: 1;
}
.loader {
  background-image: url(../img/loader.svg);
  background-repeat: no-repeat;
  background-position: center center;
}
#map {
  width: 100%;
  max-width: 100%;
}
#map a path {
  -webkit-transition: 0.2s ease-in-out fill;
  transition: 0.2s ease-in-out fill;
  cursor: pointer;
}
#map a path:hover {
  fill: #2f597d;
}
.high-standards {
  margin: 20px 0 60px;
}
.high-standards h2 {
  font-size: 40px;
  line-height: 1.1em;
}
.high-standards p {
  font-size: 20px;
}
.high-standards img {
  display: block;
  max-width: 100%;
  height: auto;
}
@media (max-width: 859px) {
  .high-standards h2 {
    font-size: 24px;
  }
}
.intro-image img {
  display: block;
  max-width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .news-events-item {
    margin-bottom: 20px;
  }
  .news-events-item h4 {
    margin-bottom: 10px;
  }
}
.documents-table {
  margin-top: 40px;
  border-radius: 10px;
  border: 1px solid rgba(47, 89, 125, 0.2);
  border-spacing: 0;
}
.documents-table .td,
.documents-table .th {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.documents-table .td.format,
.documents-table .th.format {
  display: none;
}

.documents-table .th{
  background-color: transparent;
  color: white;
}
.documents-table .td{
  background-color: transparent;
}
@media screen and (min-width: 768px) {
  .documents-table .td.name,
  .documents-table .th.name {
    width: calc(30% - 10px);
  }
  .documents-table .td.date,
  .documents-table .th.date {
    width: calc(20% - 10px);
  }

  .documents-table .td.format,
  .documents-table .th.format {
    display: block;
    width: calc(15% - 10px);
  }
  .documents-table .td.description,
  .documents-table .th.description {
    width: calc(39% - 10px);
  }
}
.documents-table-header {
  color: #fff;
  border-radius: 10px 10px 0 0;
  text-align: left;
  /* background: #2f597d; */
  background: #0a2b60;
}
.documents-table-header .th {
  padding: 10px 20px;
  cursor: pointer;
}
.documents-table-header .th img {
  display: inline-block;
  margin-bottom: -4px;
}
.documents-table-header .th:first-child {
  border-top-left-radius: 10px;
}
.documents-table-header .th:last-child {
  border-top-right-radius: 10px;
}
.documents-table-results tr:nth-child(even) {
  background: rgba(47, 89, 125, 0.1);
}
.documents-table-results tr:last-child {
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}
.documents-table-results .td {
  padding: 10px 20px;
  vertical-align: top;
}
.documents-table-results .td a {
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .documents-table-results .td.description {
    border-bottom: 1px solid rgba(47, 89, 125, 0.2);
    margin-bottom: 10px;
    padding-bottom: 20px;
  }
}
.doctable a {
  display: block;
  margin-top: 10px;
}
.doctable td:first-child {
  width: 30%;
}
.doctable td:nth-child(2) {
  width: 70%;
}
.wp-block-table.doctable a {
  display: block;
  margin-top: 10px;
}
.wp-block-table.doctable td {
  width: 100%;
}
table p {
  margin: 0;
  padding: 0;
}
svg#map {
  max-width: 100%;
}
svg#map a path {
  -webkit-transition: 0.2s ease-in-out all;
  transition: 0.2s ease-in-out all;
  cursor: pointer;
}
svg#map a path:hover {
  fill: #2f597d;
}
@media (max-width: 768px) {
  .map-wrap {
    display: block;
  }
}
.advanced-search {
  margin-top: 46px;
}
@media (max-width: 768px) {
  .advanced-search {
    margin: 10px 0;
    display: inline-block;
  }
}
.alignright,
.alignleft,
.aligncenter {
  display: block;
  margin-top: 10px;
  margin-bottom: 30px;
}
.alignleft {
  float: left;
  margin-right: 30px;
}
.aligncenter {
  margin-right: auto;
  margin-left: auto;
}
.alignright {
  float: right;
  margin-left: 30px;
}
.staff-member {
  border-bottom: 1px solid rgba(47, 89, 125, 0.5);
}
.staff-member:last-child {
  border: none;
}
.staff-member h3 {
  margin: 12px 0 5px;
}
.staff-member h3 em {
  font-weight: normal;
}
.staff-member p {
  margin-top: 0;
}

.sidebar .widget-title {
  font-size: 24px;
}
.sidebar .widget-content {
  max-width: 100%;
}
.sidebar .widget-content iframe {
  max-width: 100%;
}
.sidebar .widget-content *:first-child {
  margin-top: 0;
}
.sidebar .widget-content *:last-child {
  margin-bottom: 0;
}
.sidebar .widget-content .children {
  display: none;
}
[data-expandset-body] {
  display: none;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
[data-expandset-body].transitioning {
  display: block;
  overflow: hidden;
}
[data-expandset-body].open {
  display: block;
  opacity: 1;
}
[data-toggle-expandset] > * {
  pointer-events: none;
}
[data-toggle-expandset].hide-on-open.open {
  display: none;
}
[data-toggle-expandset].show-on-open {
  display: none;
}
[data-toggle-expandset].show-on-open.open {
  display: inline-block;
}
[data-toggle-expandset].open .hide-on-open {
  display: none;
}
[data-toggle-expandset] .show-on-open {
  display: none;
}
[data-toggle-expandset].open .show-on-open {
  display: inline-block;
}
.faq-list h2 {
  margin-bottom: 10px;
}
.faq-wrapper {
  margin-bottom: 10px;
}
.faq-header {
  position: relative;
  padding: 10px 40px 10px 10px;
  text-align: left;
  border: none;
  border: 1px solid #8b1c2b;
  border-radius: 10px;
  cursor: pointer;
}
.faq-header:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -8px;
  width: 16px;
  height: 16px;
  background-image: url(../img/chevron-blue.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.faq-header p {
  color: #0a2b60;
  margin: 0;
}
.faq-body {
  margin: -1px 10px 0;
  padding: 0 10px 0;
  border: 1px solid rgb(125 47 47 / 50%);
  border-radius: 0 0 10px 10px;
}
#map {
  width: 100%;
  max-width: 100%;
}
#map a path {
  -webkit-transition: 0.2s ease-in-out fill;
  transition: 0.2s ease-in-out fill;
  cursor: pointer;
}
#map a path:hover {
  fill: #2f597d;
}
.high-standards {
  margin: 20px 0 60px;
}
.high-standards h2 {
  font-size: 40px;
  line-height: 1.1em;
}
.high-standards p {
  font-size: 20px;
}
.high-standards img {
  display: block;
  max-width: 100%;
  height: auto;
}
@media (max-width: 859px) {
  .high-standards h2 {
    font-size: 24px;
  }
}
.intro-image img {
  display: block;
  max-width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .news-events-item {
    margin-bottom: 20px;
  }
  .news-events-item h4 {
    margin-bottom: 10px;
  }
}
.tooltip {
  position: absolute;
  z-index: 4;
  background: #fff;
  color: #2f597d;
  border-radius: 20px;
  border: 3px solid #2f597d;
  padding: 10px 20px;
  text-align: left;
}
.tooltip[aria-hidden="false"] {
  -webkit-animation: tooltipSlideIn 0.3s ease forwards;
  animation: tooltipSlideIn 0.3s ease forwards;
}
@media (max-width: 767px) {
  .tooltip {
    max-width: 320px;
  }
}
.tooltip[x-placement^="top"] {
  margin-bottom: 8px;
}
.tooltip[x-placement^="bottom"] {
  margin-top: 18px;
}
.tooltip-arrow {
  width: 12px;
  height: 12px;
  border: 3px solid #2f597d;
  border-left: none;
  border-top: none;
  background: #fff;
  position: absolute;
  margin: 10px;
}
.is-yellow .tooltip-arrow {
  border-color: #fff;
}
[x-placement^="top"] .tooltip-arrow {
  bottom: -8px;
  left: calc(50% - 10px);
  margin-top: 0;
  margin-bottom: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
[x-placement^="bottom"] .tooltip-arrow {
  top: -8px;
  left: calc(50% - 10px);
  margin-top: 0;
  margin-bottom: 0;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
@-webkit-keyframes tooltipSlideIn {
  from {
    top: 10px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
@keyframes tooltipSlideIn {
  from {
    top: 10px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  background-color: transparent;
  -webkit-transition: background-color 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1001;
}
.modal.transitioning {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.modal.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: rgba(0, 0, 0, 0.45);
}
[data-toggle-modal] {
  cursor: pointer;
}
[data-toggle-modal] * {
  pointer-events: none;
}
.modal-body {
  background: #fff;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 30px;
  margin: 30px;
  -webkit-transform: translateY(-100vh);
  transform: translateY(-100vh);
  -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: auto;
  width: calc(100vw - 200px);
  height: calc(100vh - 200px);
  min-width: 280px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .modal-body.auto-height {
    height: auto;
    max-height: calc(100vh - 200px);
  }
}
@media (max-width: 600px) {
  .modal-body {
    width: calc(100vw - 50px);
    height: calc(100vh - 100px);
  }
}
@media (max-width: 450px) {
  .modal-body {
    width: calc(100vw - 25px);
    height: calc(100vh - 50px);
  }
}
.modal-body h3 {
  font-size: 28px;
  margin: 0 0 9px;
}
.modal.active .modal-body {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 6px;
  right: 12px;
  color: #776;
  line-height: 1;
  font-size: 32px;
  font-weight: 700;
}
.modal-content {
  text-align: center;
  height: 100%;
  width: 500px;
}
.modal-content.full-width {
  width: 100%;
}
.modal-content .breathe {
  padding-top: 36px;
}
@media (max-width: 600px) {
  .modal-content {
    width: 95%;
  }
}
.selections-modal.active .modal-body,
.consultation-modal.active .modal-body {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.selections-modal .modal-close,
.consultation-modal .modal-close {
  color: rgba(255, 255, 255, 0.85);
}
.selections-modal .modal-close:hover,
.consultation-modal .modal-close:hover {
  color: #fff;
}
.selections-modal .modal-body,
.consultation-modal .modal-body {
  max-width: 100%;
  height: auto;
  font-size: 14px;
  padding: 0 0 30px;
  max-height: 94vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
}
.selections-modal .selection-logo,
.consultation-modal .selection-logo {
  width: 100%;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.selections-modal .selection-logo:before,
.consultation-modal .selection-logo:before {
  content: "";
  display: inline-block;
  width: 37px;
  height: 37px;
  margin-right: 8px;
}
.selections-modal .selection-logo.warning:before,
.consultation-modal .selection-logo.warning:before {
  width: 40px;
}
.selections-modal .selection-logo.recommendation:before,
.consultation-modal .selection-logo.recommendation:before {
  display: none;
}
.selections-modal .selection-name,
.consultation-modal .selection-name {
  margin: 10px 0;
  text-align: center;
}
.selections-modal .additional-resources a,
.consultation-modal .additional-resources a {
  text-decoration: underline;
}
.selections-modal .additional-resources ul,
.consultation-modal .additional-resources ul {
  padding-left: 20px;
}
.selections-modal .modal-title,
.consultation-modal .modal-title {
  color: #fff;
  font-size: 21px;
  text-align: center;
  margin: 0 0 20px;
  padding: 20px;
  width: 100%;
  line-height: 1.2;
}
.selections-modal .modal-subtitle,
.consultation-modal .modal-subtitle {
  margin-top: 0;
  font-size: 14px;
  font-weight: 700;
}
.selections-modal .selections,
.consultation-modal .selections {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  overflow: auto;
}
.selections-modal .selection,
.consultation-modal .selection {
  margin: 0 30px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
}
.selections-modal .selection:last-child,
.consultation-modal .selection:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.selections-modal .selection.warning .selection-logo:before,
.consultation-modal .selection.warning .selection-logo:before {
  background-image: url(../img/icon-exclamation.svg);
  width: 40px;
}
.selections-modal .selection.recommendation .selection-logo:before,
.consultation-modal .selection.recommendation .selection-logo:before {
  display: none;
}
.consultation-modal .modal-body {
  width: 600px;
  background: #eee;
}
.consultation-modal .modal-body form {
  height: calc(100% - 75px);
  overflow: auto;
}
.selections-modal .modal-body {
  width: 400px;
}
select {
  background-color: white;
}
.glide {
  position: relative;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.glide * {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}
.glide__track {
  overflow: hidden;
}
.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -ms-touch-action: pan-Y;
  touch-action: pan-Y;
  overflow: hidden;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  will-change: transform;
}
.glide__slides--dragging {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.glide__slide {
  width: 100%;
  height: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  white-space: normal;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}
.glide__slide a {
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.glide__arrows {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.glide__bullets {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.glide--rtl {
  direction: rtl;
}
.header-banner {
  background: #eff7ff;
  padding: 12px 0;
  font-size: 18px;
  height: 46px;
}

@media (max-width: 768px) {
  .header-banner {
    margin-top: 10px;
    border-top: 2px solid #c71932;
  }
}
@media (max-width: 575px) {
  .header-banner {
    margin-top: 0px;
  }
}
.header-banner a {
  text-decoration: underline;
}
.marquee {
  min-width: 100%;
  margin: 0 auto;
  white-space: nowrap;
  overflow: hidden;
  position: absolute;
  padding-right: 60px;
  --duration: 20s;
  pointer-events: none;
}
.marquee a {
  pointer-events: initial;
}
.marquee span {
  display: inline-block;
  padding-left: calc(100% + 60px);
  -webkit-animation: marquee var(--duration) linear infinite;
  animation: marquee var(--duration) linear infinite;
}
.marquee-2 span {
  -webkit-animation-delay: calc(var(--duration) / 2);
  animation-delay: calc(var(--duration) / 2);
}
.header-banner:hover .marquee span {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
  }
}
@keyframes marquee {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
  }
}

.menu-footer li {
  list-style-type: none;
}

.footer {
  background: #071a35;
  color: #fff;
  padding: 40px 0 20px;
}

.footer-logo {
  width: 320px;
  height: 204px;
  /* background: #fff; */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
}

.footer-logo img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.footer h5 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 13px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: 0.2s;
}

.footer-links a:hover {
  opacity: 0.7;
}

.footer-description {
  font-size: 14px;
  line-height: 1.7;
  color: #fff;
  max-width: 295px;
  margin-top: 18px;
}

.footer-about {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-address {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-email {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.footer-email:hover {
  color: #ddd;
}

/* Portal Buttons */
.portal-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.portal-btn {
  border: 1px solid #506078;
  color: #fff;
  background: transparent;
  padding: 9px 11px;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  transition: 0.2s;
}

.portal-btn:hover {
  background: #fff;
  color: #071a35;
}

/* Responsive */
@media (max-width: 991px) {
  .footer-logo {
    width: 240px;
    height: 185px;
  }

  .footer-description {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .footer {
    padding: 35px 20px;
  }

  .footer-column {
    /* margin-bottom: 35px; */
  }

  .footer h5 {
    margin-bottom: 18px;
  }
}

.aiceqa-header-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Common Button */
.aiceqa-btn {
  padding: 10px 18px;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

/* Verify */
.aiceqa-btn-outline {
  color: #0b2d63;
  background: #fff;
  border: 1px solid #0b2d63;
}

.aiceqa-btn-outline:hover {
  background: #0b2d63;
  color: #fff;
}

/* Apply */
.aiceqa-btn-primary {
  color: #fff;
  background: #c71932;
  border: 1px solid #c71932;
}

.aiceqa-btn-primary:hover {
  background: #a91429;
  border-color: #a91429;
}

/* Mobile */
@media (max-width: 576px) {
  /* .aiceqa-header-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .aiceqa-btn {
    width: 100%;
  } */

  /* .aiceqa-btn {
    font-size: 13px;
    padding: 4px 8px;
  } */
}

.mobile-menu-close {
  display: none;
}
/* ================ start header responsive ================== */
/* ================ start header responsive ================== */
/* ================ start header responsive ================== */
/* ================ start header responsive ================== */
/* ================ start header responsive ================== */
/* ================ start header responsive ================== */
/* ================ start header responsive ================== */
/* ================ start header responsive ================== */
/* ================ start header responsive ================== */

/* =========================================
   MOBILE MENU
========================================= */

.mobile-menu-toggle {
  display: none;
}

/* =========================================
   TABLET / MOBILE
========================================= */

@media (max-width: 991px) {
  /* =========================================
     HAMBURGER BUTTON
  ========================================= */

  .mobile-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 4px;
    background: #0b2d63;
    color: #fff;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    z-index: 10001;
  }
  .mobile-menu-toggle i {
    font-size: 20px;
    line-height: 1;
    color: #fff;
    pointer-events: none;
  }
  @media (max-width: 991px) {
    .mobile-menu-toggle {
      display: flex !important;
    }
  }
  @media (max-width: 576px) {
    .mobile-menu-toggle {
      width: 42px;
      height: 42px;
    }
    .mobile-menu-toggle i {
      font-size: 19px;
    }
  }

  /* =========================================
     OVERLAY
  ========================================= */

  .mobile-menu-overlay {
    display: none;

    position: fixed !important;

    inset: 0;

    width: 100%;
    height: 100%;

    background: rgba(7, 35, 70, 0.55);

    z-index: 9998 !important;
  }

  .mobile-menu-overlay.active {
    display: block !important;
  }

  /* =========================================
     MOBILE MENU CONTAINER
  ========================================= */

  .header-nav-container {
    position: fixed !important;

    top: 0 !important;
    left: -100% !important;

    width: 380px;
    max-width: 90%;

    height: 100vh;

    padding: 65px 0 30px;

    background: #07214b;

    z-index: 9999 !important;

    overflow-y: auto;

    box-sizing: border-box;

    transition: left 0.35s ease;
  }

  /* =========================================
     OPEN MENU
  ========================================= */

  .header-nav-container.mobile-open {
    left: 0 !important;
  }

  /* =========================================
     MAIN MENU
  ========================================= */

  .header-nav-container .menu {
    display: block !important;

    width: 100%;

    margin: 0;
    padding: 0 18px;

    list-style: none;
  }

  .header-nav-container .menu > li {
    position: relative;

    display: block !important;

    width: 100%;

    margin: 0;
    padding: 0;

    border: 0;
  }

  /* =========================================
     MAIN LINKS
  ========================================= */

  .header-nav-container .menu > li > a {
    display: block;

    position: relative;

    width: 100%;

    padding: 7px 15px 5px 15px;

    color: #fff !important;

    font-size: 18px;

    line-height: 1.4;

    text-decoration: none;

    background: transparent !important;

    border: 0;
  }

  /* =========================================
     SUBMENU - HIDDEN
  ========================================= */

  .header-nav-container .sub-menu {
    display: none !important;

    position: static !important;

    width: 100% !important;

    margin: 0 !important;

    padding: 0 0 8px 0px !important;

    background: transparent !important;

    box-shadow: none !important;

    border: 0 !important;
  }

  .header-nav-container .menu-item-has-children.submenu-open > .sub-menu {
    display: block !important;
  }

  /* =========================================
     SUBMENU - OPEN
  ========================================= */

  .header-nav-container .menu-item-has-children.submenu-open > .sub-menu {
    display: block !important;
  }

  /* =========================================
     SUBMENU ITEMS
  ========================================= */

  .header-nav-container .sub-menu li {
    display: block;

    width: 100%;

    margin: 0;

    padding: 0;

    border: 0;
  }

  .header-nav-container .sub-menu li a {
    display: block;

    padding: 7px 20px 7px 30px;

    color: #fff !important;

    font-size: 15px;

    line-height: 1.4;

    text-decoration: none;
  }

  /* =========================================
     PLUS ICON
  ========================================= */

  /* .header-nav-container .menu > li.menu-item-has-children > a::after {
    content: "+";

    position: absolute;

    right: 18px;
    top: 7px;

    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 30px;

    font-weight: 300;

    line-height: 1;
  } */

  /* =========================================
     MINUS ICON
  ========================================= */

  /* .header-nav-container
    .menu
    > li.menu-item-has-children.submenu-open
    > a::after {
    content: "−";
  } */

  /* =========================================
     CLOSE BUTTON
  ========================================= */

  .mobile-menu-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 12px;
    box-sizing: border-box;
    z-index: 10002;
  }
  .mobile-menu-close {
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    border-radius: 50%;
    background: transparent;
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    z-index: 10003;
  }
  .mobile-menu-close i {
    font-size: 20px;
    line-height: 1;
    color: #fff;
    pointer-events: none;
  }

  /* =========================================
     BODY LOCK
  ========================================= */

  body.mobile-menu-active {
    overflow: hidden;
  }

  /* =========================================
     IMPORTANT FIX
     OLD .header-nav CSS BELOW 768px
  ========================================= */

  .header-nav {
    pointer-events: auto !important;
  }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 767.98px) {
  /*
     Your old CSS was hiding/blocking
     .header-nav below 768px.
     Override it here.
  */

  .header-nav {
    position: relative !important;

    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;

    width: auto !important;
    height: auto !important;

    opacity: 1 !important;

    pointer-events: auto !important;

    background: transparent !important;

    overflow: visible !important;

    z-index: 9999 !important;

    padding: 0;
    border: none;
  }

  /* Hamburger must remain clickable */

  .mobile-menu-toggle {
    display: flex !important;

    position: relative !important;

    z-index: 100 !important;

    pointer-events: auto !important;
  }

  .header-menu-bottom {
    position: relative;

    z-index: 100;
  }

  /* Mobile menu */

  .header-nav-container {
    position: fixed !important;

    top: 0 !important;

    left: -100% !important;

    width: 380px !important;

    max-width: 90% !important;

    height: 100vh !important;

    padding: 65px 0 30px !important;

    background: #07214b !important;

    z-index: 10000 !important;

    overflow-y: auto !important;

    transition: left 0.35s ease !important;
  }

  /* Open */

  .header-nav-container.mobile-open {
    left: 0 !important;
  }
}

/* =========================================
   EXTRA SMALL MOBILE
========================================= */

@media (max-width: 576px) {
  .header-nav-container {
    width: 100% !important;

    max-width: 100% !important;
  }

  .header-nav-container .menu > li > a {
    font-size: 18px;

    padding-left: 16px;
  }
}

/* =========================================
   FINAL MOBILE SUBMENU FIX
========================================= */

@media (max-width: 767.98px) {
  .header-nav-container {
    touch-action: pan-y !important;
    -webkit-overflow-scrolling: touch;
  }

  /* Parent menu item */
  .header-nav-container .menu-item-has-children {
    position: relative !important;
  }

  /* Parent link must receive tap */
  .header-nav-container .menu-item-has-children > a {
    position: relative !important;
    z-index: 2 !important;

    /* display: block !important; */

    width: 100% !important;

    cursor: pointer !important;

    pointer-events: auto !important;

    touch-action: manipulation !important;
  }

  /* Submenu hidden */
  .header-nav-container .menu-item-has-children > .sub-menu {
    display: none !important;

    position: static !important;

    visibility: visible !important;

    opacity: 1 !important;

    transform: none !important;

    height: auto !important;

    max-height: none !important;

    overflow: visible !important;
  }

  /* Submenu OPEN */
  .header-nav-container .menu-item-has-children.submenu-open > .sub-menu {
    display: block !important;

    visibility: visible !important;

    opacity: 1 !important;

    height: auto !important;

    max-height: none !important;

    overflow: visible !important;
  }

  /* Submenu items */
  .header-nav-container .sub-menu li {
    display: block !important;

    position: relative !important;

    width: 100% !important;
  }

  .header-nav-container .sub-menu li > a {
    display: block !important;

    position: relative !important;

    z-index: 2 !important;

    width: 100% !important;

    pointer-events: auto !important;

    touch-action: manipulation !important;
  }

  /* Nested submenu */
  .header-nav-container .sub-menu .menu-item-has-children > .sub-menu {
    display: none !important;
  }

  .header-nav-container
    .sub-menu
    .menu-item-has-children.submenu-open
    > .sub-menu {
    display: block !important;
  }
}

/* =========================================
   EXTRA SMALL MOBILE
========================================= */

@media (max-width: 576px) {
  .header-nav-container {
    width: 100% !important;
    max-width: 100% !important;

    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .header-nav-container .menu {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .header-nav-container .menu > li > a {
    font-size: 18px !important;

    padding: 7px 15px 5px 15px;
  }

  .header-nav-container .sub-menu {
    padding-left: 12px !important;
  }

  .header-nav-container .sub-menu li > a {
    font-size: 15px !important;

    padding: 9px 40px 9px 20px !important;
  }
}
