/* -------------------------------------------
***** Prepend Imports *****
------------------------------------------- */
/* -------------------------------------------
***** Includes *****
------------------------------------------- */
@import "https://use.typekit.net/xzx1ide.css";
/*
* Global button styling
*/
/*
* Breakpoint debugging
*/
/*
* MEDIA QUERIES
* Breakpoints for responsive sites
*/
/*
* SASS Parent append
* Useful if you want to add an append to the parent without writing it out again
* Usage: @include parent-append(":hover")
* Source: https://codepen.io/imkremen/pen/RMVBvq
*/
/*
* Skew
* Useful mixing to create skewed edges
* Usage: @include angle-edge(bottomright, 3deg, topleft, 3deg, #fff);
* Source: http://www.hongkiat.com/blog/skewed-edges-css/
*/
@import "https://use.typekit.net/xzx1ide.css";
@import "./editor-styles.css";
@media (max-width: 768px) {
  .tablepress-wrapper {
    overflow-x: auto;
  }
  .tablepress-wrapper::-webkit-scrollbar {
    width: 1rem;
    height: 1rem;
  }
  .tablepress-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .tablepress-wrapper::-webkit-scrollbar-thumb {
    background: #00a7e1;
  }
  .tablepress-wrapper::-webkit-scrollbar-thumb:hover {
    background: rgb(0, 129.1466666667, 174);
  }
}

/* ------------------------------
***** INNER BANNERS *****
-------------------------------*/
.banner-static {
  --title-color: white;
  --bg-pos: center center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: clamp(200px, 60vh, 400px);
  width: 100%;
  margin-top: 100px;
  margin-bottom: 5rem;
  background-image: linear-gradient(to top right, #072976 0%, #465a67 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 1.2s ease;
}
@media (max-width: 1024px) {
  .banner-static {
    margin-top: 0;
    height: clamp(200px, 60vh, 330px);
  }
}
.banner-static::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
  z-index: 1;
}
body.single-post .banner-static {
  height: 250px;
}
.banner-static .banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--bg-pos);
  z-index: 0;
}
.banner-static .wrap {
  position: relative;
  z-index: 2;
  margin: 0 auto 3rem;
  color: var(--title-color);
  display: grid;
  align-items: center;
  grid-template-columns: 28rem 1fr;
  gap: 5rem;
}
@media (max-width: 1024px) {
  .banner-static .wrap {
    display: block;
  }
}
.banner-static .parent-title {
  display: inline-block;
  font-size: 3rem;
  color: #fff;
  border-radius: 15px;
  padding: 10px 15px;
  border: 5px solid #475967;
  background: rgba(71, 89, 103, 0.75);
  font-weight: 700;
  line-height: 1.25;
}
.banner-static .parent-title .date {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 1rem;
}
@media (max-width: 1024px) {
  .banner-static .parent-title {
    margin-bottom: 2rem;
  }
}
.banner-static .main-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.25;
}

.banner-slideshow {
  --slide-height: calc(100vh - 100px);
}
@media (max-width: 1024px) {
  .banner-slideshow {
    --slide-height: clamp(400px, 70vh, 600px);
  }
}
.banner-slideshow {
  --overlay-opacity: 0.3;
  --bg-pos: center;
  --swiper-pagination-bullet-width: 2rem;
  --swiper-pagination-bullet-height: 2rem;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-inactive-color: black;
  --swiper-pagination-color: white;
  --bullet-border: 2px solid white;
  --swiper-navigation-color: white;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  height: var(--slide-height);
  margin-bottom: 5rem;
  margin-top: 100px;
}
@media (max-width: 1024px) {
  .banner-slideshow {
    margin-top: 0;
  }
}
.banner-slideshow .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: var(--slide-height);
}
.banner-slideshow .swiper-slide::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
}
.banner-slideshow .swiper-slide iframe {
  pointer-events: none;
  position: absolute;
  overflow: hidden;
  border: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.banner-slideshow .swiper-slide .slide-media {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: var(--bg-pos);
}
.banner-slideshow .swiper-slide .wrap {
  height: 100%;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 6rem 0;
  color: white;
}
@media (max-width: 1440px) {
  .banner-slideshow .swiper-slide .wrap {
    padding: 6rem;
  }
}
@media (max-width: 782px) {
  .banner-slideshow .swiper-slide .wrap {
    padding: 4rem;
  }
}
.banner-slideshow .swiper-slide .wrap h2 {
  font-size: 6.6rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
}
@media (max-width: 1024px) {
  .banner-slideshow .swiper-slide .wrap h2 {
    font-size: 5rem;
  }
}
.banner-slideshow .swiper-slide .wrap p {
  font-size: 2.5rem;
  width: 70%;
}
@media (max-width: 1024px) {
  .banner-slideshow .swiper-slide .wrap p {
    width: 100%;
    font-size: 2rem;
  }
}
.banner-slideshow .swiper-slide .wrap .wp-block-buttons {
  position: absolute;
  right: 0;
  bottom: 6rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}
@media (max-width: 1440px) {
  .banner-slideshow .swiper-slide .wrap .wp-block-buttons {
    right: 6rem;
  }
}
@media (max-width: 1024px) {
  .banner-slideshow .swiper-slide .wrap .wp-block-buttons {
    justify-content: flex-start;
    position: static;
  }
}
.banner-slideshow .swiper-slide .wrap .wp-block-buttons a {
  min-width: 8rem;
  padding: 1.3rem 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: inherit;
  font-family: "neue-haas-grotesk-text", serif;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  background: #3a3f43;
  outline: none;
  border: 3px solid #fff;
  border-radius: 9px;
  cursor: pointer;
  transition: 200ms ease-out;
}
.banner-slideshow .swiper-slide .wrap .wp-block-buttons a:focus-visible {
  outline: 2px solid #00a7e1;
  outline-offset: 0.5rem;
}
.banner-slideshow .swiper-slide .wrap .wp-block-buttons a:hover, .banner-slideshow .swiper-slide .wrap .wp-block-buttons a:active, .banner-slideshow .swiper-slide .wrap .wp-block-buttons a:focus {
  text-decoration: none;
  background: rgb(242.25, 242.25, 242.25);
  color: #072976;
}
.banner-slideshow .swiper-slide .wrap .wp-block-buttons a {
  background: transparent;
}
.banner-slideshow .swiper-pagination {
  margin: 2rem 0;
}
.banner-slideshow .swiper-pagination .swiper-pagination-bullet {
  border: var(--bullet-border);
  transition: 0.15s ease-out;
  border-radius: 50px !important;
}
.banner-slideshow .swiper-pagination .swiper-pagination-bullet:focus-visible, .banner-slideshow .swiper-pagination .swiper-pagination-bullet:hover {
  opacity: 1;
  background: var(--swiper-pagination-color);
}
.banner-slideshow .swiper-pagination .swiper-pagination-bullet:focus-visible {
  outline: 2px solid #00a7e1;
  outline-offset: -2px;
  border-radius: 2px;
}

*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a,
button {
  cursor: revert;
}

ol,
ul,
menu {
  list-style: none;
}

img {
  max-width: 100%;
}

table {
  border-collapse: collapse;
}

input,
textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  appearance: revert;
}

svg {
  width: 100%;
  height: 100%;
}

b {
  font-weight: bold;
}

::placeholder {
  color: #777;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

/*
* Global button styling
*/
/*
* Breakpoint debugging
*/
/*
* MEDIA QUERIES
* Breakpoints for responsive sites
*/
/*
* SASS Parent append
* Useful if you want to add an append to the parent without writing it out again
* Usage: @include parent-append(":hover")
* Source: https://codepen.io/imkremen/pen/RMVBvq
*/
/*
* Skew
* Useful mixing to create skewed edges
* Usage: @include angle-edge(bottomright, 3deg, topleft, 3deg, #fff);
* Source: http://www.hongkiat.com/blog/skewed-edges-css/
*/
@media (max-width: 768px) {
  .tablepress-wrapper {
    overflow-x: auto;
  }
  .tablepress-wrapper::-webkit-scrollbar {
    width: 1rem;
    height: 1rem;
  }
  .tablepress-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .tablepress-wrapper::-webkit-scrollbar-thumb {
    background: #00a7e1;
  }
  .tablepress-wrapper::-webkit-scrollbar-thumb:hover {
    background: rgb(0, 129.1466666667, 174);
  }
}

.text-center,
.center {
  text-align: center;
}

.hidden,
.hide {
  display: none;
}

.floatleft {
  float: left;
  align-self: flex-start;
}

.floatright {
  float: right;
  align-self: flex-end;
}

.wrap {
  width: 100%;
  max-width: 1200px;
  padding: 0 3rem;
  margin: auto;
}

.no-scroll {
  overflow: hidden !important;
  position: fixed !important;
  width: 100% !important;
}

.nowrap {
  white-space: nowrap;
}

.m0 {
  margin: 0 !important;
}

.p0 {
  padding: 0 !important;
}

.mt0 {
  margin-top: 0rem !important;
}

.mb0 {
  margin-bottom: 0rem !important;
}

.pt0 {
  margin-top: 0rem !important;
}

.pb0 {
  margin-bottom: 0rem !important;
}

.mt1 {
  margin-top: 1rem !important;
}

.mb1 {
  margin-bottom: 1rem !important;
}

.pt1 {
  margin-top: 1rem !important;
}

.pb1 {
  margin-bottom: 1rem !important;
}

.mt2 {
  margin-top: 2rem !important;
}

.mb2 {
  margin-bottom: 2rem !important;
}

.pt2 {
  margin-top: 2rem !important;
}

.pb2 {
  margin-bottom: 2rem !important;
}

.mt3 {
  margin-top: 3rem !important;
}

.mb3 {
  margin-bottom: 3rem !important;
}

.pt3 {
  margin-top: 3rem !important;
}

.pb3 {
  margin-bottom: 3rem !important;
}

.mt4 {
  margin-top: 4rem !important;
}

.mb4 {
  margin-bottom: 4rem !important;
}

.pt4 {
  margin-top: 4rem !important;
}

.pb4 {
  margin-bottom: 4rem !important;
}

.mt5 {
  margin-top: 5rem !important;
}

.mb5 {
  margin-bottom: 5rem !important;
}

.pt5 {
  margin-top: 5rem !important;
}

.pb5 {
  margin-bottom: 5rem !important;
}

.mt6 {
  margin-top: 6rem !important;
}

.mb6 {
  margin-bottom: 6rem !important;
}

.pt6 {
  margin-top: 6rem !important;
}

.pb6 {
  margin-bottom: 6rem !important;
}

.mt7 {
  margin-top: 7rem !important;
}

.mb7 {
  margin-bottom: 7rem !important;
}

.pt7 {
  margin-top: 7rem !important;
}

.pb7 {
  margin-bottom: 7rem !important;
}

.mt8 {
  margin-top: 8rem !important;
}

.mb8 {
  margin-bottom: 8rem !important;
}

.pt8 {
  margin-top: 8rem !important;
}

.pb8 {
  margin-bottom: 8rem !important;
}

.mt9 {
  margin-top: 9rem !important;
}

.mb9 {
  margin-bottom: 9rem !important;
}

.pt9 {
  margin-top: 9rem !important;
}

.pb9 {
  margin-bottom: 9rem !important;
}

.mt10 {
  margin-top: 10rem !important;
}

.mb10 {
  margin-bottom: 10rem !important;
}

.pt10 {
  margin-top: 10rem !important;
}

.pb10 {
  margin-bottom: 10rem !important;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  white-space: nowrap;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

html {
  scroll-padding-top: 100px;
}

html {
  overscroll-behavior-y: none;
  background: #fff;
  scroll-behavior: smooth;
  font-size: 62.5%;
  min-height: 100%;
}
@media (max-width: 1024px) {
  html {
    font-size: 60%;
  }
}
@media (max-width: 782px) {
  html {
    font-size: 57.5%;
  }
}
@media (max-width: 500px) {
  html {
    font-size: 55%;
  }
}
html.menu-opened {
  scroll-behavior: auto;
  overflow: hidden;
}
html.menu-opened footer,
html.menu-opened main {
  pointer-events: none;
}

body {
  overscroll-behavior-y: none;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
  font-family: "neue-haas-grotesk-text", serif;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
  color: #3a3f43;
  font-feature-settings: "lnum";
}
body a:where(:not(.wp-element-button)) {
  text-decoration: none;
}
html.menu-opened body {
  overflow: hidden;
}
@media (max-width: 1024px) {
  body {
    margin-top: 75px;
  }
}

@media screen and (max-width: 600px) {
  #wpadminbar {
    position: fixed;
  }
}
main {
  flex: 1;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
  -ms-interpolation-mode: bicubic;
}

iframe {
  display: block;
  width: 100%;
  margin: 0;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: -40px;
  background-color: #f1f1f1;
  padding: 8px;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.skip-link:focus {
  top: 10px;
  left: 10px;
  opacity: 1;
}

*:focus-visible {
  outline: 3px dotted red;
}

b,
strong {
  font-weight: 700;
}

cite,
em {
  font-style: italic;
}

sup {
  font-size: 0.75em;
  vertical-align: super;
  line-height: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid #00a7e1;
  outline-offset: -2px;
  border-radius: 2px;
}
a,
button,
input {
  transition: 200ms ease-out;
}

/* -------------------------------------------
***** Animations
------------------------------------------- */
@keyframes endPoint {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
    transform: none;
  }
}
/* -------------------------------------------
***** Animation Base
------------------------------------------- */
.bir-anim-right, .bir-anim-down, .bir-anim-left, .bir-anim-up, .bir-anim-in {
  opacity: 0;
  pointer-events: none;
}
.active.bir-anim-right, .active.bir-anim-down, .active.bir-anim-left, .active.bir-anim-up, .active.bir-anim-in {
  animation: endPoint 600ms ease-out forwards;
  pointer-events: initial;
}

.bir-anim-left-stagger > *, .bir-anim-right-stagger > *, .bir-anim-up-stagger > * {
  opacity: 0;
  pointer-events: none;
}
.active.bir-anim-left-stagger > *, .active.bir-anim-right-stagger > *, .active.bir-anim-up-stagger > * {
  animation: endPoint 600ms ease-out forwards;
  pointer-events: initial;
}
.bir-anim-left-stagger > :nth-child(1), .bir-anim-right-stagger > :nth-child(1), .bir-anim-up-stagger > :nth-child(1) {
  animation-delay: calc(200ms * 1);
}
.bir-anim-left-stagger > :nth-child(2), .bir-anim-right-stagger > :nth-child(2), .bir-anim-up-stagger > :nth-child(2) {
  animation-delay: calc(200ms * 2);
}
.bir-anim-left-stagger > :nth-child(3), .bir-anim-right-stagger > :nth-child(3), .bir-anim-up-stagger > :nth-child(3) {
  animation-delay: calc(200ms * 3);
}
.bir-anim-left-stagger > :nth-child(4), .bir-anim-right-stagger > :nth-child(4), .bir-anim-up-stagger > :nth-child(4) {
  animation-delay: calc(200ms * 4);
}
.bir-anim-left-stagger > :nth-child(5), .bir-anim-right-stagger > :nth-child(5), .bir-anim-up-stagger > :nth-child(5) {
  animation-delay: calc(200ms * 5);
}
.bir-anim-left-stagger > :nth-child(6), .bir-anim-right-stagger > :nth-child(6), .bir-anim-up-stagger > :nth-child(6) {
  animation-delay: calc(200ms * 6);
}
.bir-anim-left-stagger > :nth-child(7), .bir-anim-right-stagger > :nth-child(7), .bir-anim-up-stagger > :nth-child(7) {
  animation-delay: calc(200ms * 7);
}
.bir-anim-left-stagger > :nth-child(8), .bir-anim-right-stagger > :nth-child(8), .bir-anim-up-stagger > :nth-child(8) {
  animation-delay: calc(200ms * 8);
}
.bir-anim-left-stagger > :nth-child(9), .bir-anim-right-stagger > :nth-child(9), .bir-anim-up-stagger > :nth-child(9) {
  animation-delay: calc(200ms * 9);
}
.bir-anim-left-stagger > :nth-child(10), .bir-anim-right-stagger > :nth-child(10), .bir-anim-up-stagger > :nth-child(10) {
  animation-delay: calc(200ms * 10);
}
.bir-anim-left-stagger > :nth-child(11), .bir-anim-right-stagger > :nth-child(11), .bir-anim-up-stagger > :nth-child(11) {
  animation-delay: calc(200ms * 11);
}
.bir-anim-left-stagger > :nth-child(12), .bir-anim-right-stagger > :nth-child(12), .bir-anim-up-stagger > :nth-child(12) {
  animation-delay: calc(200ms * 12);
}
.bir-anim-left-stagger > :nth-child(13), .bir-anim-right-stagger > :nth-child(13), .bir-anim-up-stagger > :nth-child(13) {
  animation-delay: calc(200ms * 13);
}
.bir-anim-left-stagger > :nth-child(14), .bir-anim-right-stagger > :nth-child(14), .bir-anim-up-stagger > :nth-child(14) {
  animation-delay: calc(200ms * 14);
}
.bir-anim-left-stagger > :nth-child(15), .bir-anim-right-stagger > :nth-child(15), .bir-anim-up-stagger > :nth-child(15) {
  animation-delay: calc(200ms * 15);
}
.bir-anim-left-stagger > :nth-child(16), .bir-anim-right-stagger > :nth-child(16), .bir-anim-up-stagger > :nth-child(16) {
  animation-delay: calc(200ms * 16);
}
.bir-anim-left-stagger > :nth-child(17), .bir-anim-right-stagger > :nth-child(17), .bir-anim-up-stagger > :nth-child(17) {
  animation-delay: calc(200ms * 17);
}
.bir-anim-left-stagger > :nth-child(18), .bir-anim-right-stagger > :nth-child(18), .bir-anim-up-stagger > :nth-child(18) {
  animation-delay: calc(200ms * 18);
}
.bir-anim-left-stagger > :nth-child(19), .bir-anim-right-stagger > :nth-child(19), .bir-anim-up-stagger > :nth-child(19) {
  animation-delay: calc(200ms * 19);
}
.bir-anim-left-stagger > :nth-child(20), .bir-anim-right-stagger > :nth-child(20), .bir-anim-up-stagger > :nth-child(20) {
  animation-delay: calc(200ms * 20);
}
.bir-anim-left-stagger > :nth-child(21), .bir-anim-right-stagger > :nth-child(21), .bir-anim-up-stagger > :nth-child(21) {
  animation-delay: calc(200ms * 21);
}
.bir-anim-left-stagger > :nth-child(22), .bir-anim-right-stagger > :nth-child(22), .bir-anim-up-stagger > :nth-child(22) {
  animation-delay: calc(200ms * 22);
}
.bir-anim-left-stagger > :nth-child(23), .bir-anim-right-stagger > :nth-child(23), .bir-anim-up-stagger > :nth-child(23) {
  animation-delay: calc(200ms * 23);
}
.bir-anim-left-stagger > :nth-child(24), .bir-anim-right-stagger > :nth-child(24), .bir-anim-up-stagger > :nth-child(24) {
  animation-delay: calc(200ms * 24);
}
.bir-anim-left-stagger > :nth-child(25), .bir-anim-right-stagger > :nth-child(25), .bir-anim-up-stagger > :nth-child(25) {
  animation-delay: calc(200ms * 25);
}
.bir-anim-left-stagger > :nth-child(26), .bir-anim-right-stagger > :nth-child(26), .bir-anim-up-stagger > :nth-child(26) {
  animation-delay: calc(200ms * 26);
}
.bir-anim-left-stagger > :nth-child(27), .bir-anim-right-stagger > :nth-child(27), .bir-anim-up-stagger > :nth-child(27) {
  animation-delay: calc(200ms * 27);
}
.bir-anim-left-stagger > :nth-child(28), .bir-anim-right-stagger > :nth-child(28), .bir-anim-up-stagger > :nth-child(28) {
  animation-delay: calc(200ms * 28);
}
.bir-anim-left-stagger > :nth-child(29), .bir-anim-right-stagger > :nth-child(29), .bir-anim-up-stagger > :nth-child(29) {
  animation-delay: calc(200ms * 29);
}
.bir-anim-left-stagger > :nth-child(30), .bir-anim-right-stagger > :nth-child(30), .bir-anim-up-stagger > :nth-child(30) {
  animation-delay: calc(200ms * 30);
}
.bir-anim-left-stagger > :nth-child(31), .bir-anim-right-stagger > :nth-child(31), .bir-anim-up-stagger > :nth-child(31) {
  animation-delay: calc(200ms * 31);
}
.bir-anim-left-stagger > :nth-child(32), .bir-anim-right-stagger > :nth-child(32), .bir-anim-up-stagger > :nth-child(32) {
  animation-delay: calc(200ms * 32);
}
.bir-anim-left-stagger > :nth-child(33), .bir-anim-right-stagger > :nth-child(33), .bir-anim-up-stagger > :nth-child(33) {
  animation-delay: calc(200ms * 33);
}
.bir-anim-left-stagger > :nth-child(34), .bir-anim-right-stagger > :nth-child(34), .bir-anim-up-stagger > :nth-child(34) {
  animation-delay: calc(200ms * 34);
}
.bir-anim-left-stagger > :nth-child(35), .bir-anim-right-stagger > :nth-child(35), .bir-anim-up-stagger > :nth-child(35) {
  animation-delay: calc(200ms * 35);
}
.bir-anim-left-stagger > :nth-child(36), .bir-anim-right-stagger > :nth-child(36), .bir-anim-up-stagger > :nth-child(36) {
  animation-delay: calc(200ms * 36);
}
.bir-anim-left-stagger > :nth-child(37), .bir-anim-right-stagger > :nth-child(37), .bir-anim-up-stagger > :nth-child(37) {
  animation-delay: calc(200ms * 37);
}
.bir-anim-left-stagger > :nth-child(38), .bir-anim-right-stagger > :nth-child(38), .bir-anim-up-stagger > :nth-child(38) {
  animation-delay: calc(200ms * 38);
}
.bir-anim-left-stagger > :nth-child(39), .bir-anim-right-stagger > :nth-child(39), .bir-anim-up-stagger > :nth-child(39) {
  animation-delay: calc(200ms * 39);
}
.bir-anim-left-stagger > :nth-child(40), .bir-anim-right-stagger > :nth-child(40), .bir-anim-up-stagger > :nth-child(40) {
  animation-delay: calc(200ms * 40);
}
.bir-anim-left-stagger > :nth-child(41), .bir-anim-right-stagger > :nth-child(41), .bir-anim-up-stagger > :nth-child(41) {
  animation-delay: calc(200ms * 41);
}
.bir-anim-left-stagger > :nth-child(42), .bir-anim-right-stagger > :nth-child(42), .bir-anim-up-stagger > :nth-child(42) {
  animation-delay: calc(200ms * 42);
}
.bir-anim-left-stagger > :nth-child(43), .bir-anim-right-stagger > :nth-child(43), .bir-anim-up-stagger > :nth-child(43) {
  animation-delay: calc(200ms * 43);
}
.bir-anim-left-stagger > :nth-child(44), .bir-anim-right-stagger > :nth-child(44), .bir-anim-up-stagger > :nth-child(44) {
  animation-delay: calc(200ms * 44);
}
.bir-anim-left-stagger > :nth-child(45), .bir-anim-right-stagger > :nth-child(45), .bir-anim-up-stagger > :nth-child(45) {
  animation-delay: calc(200ms * 45);
}
.bir-anim-left-stagger > :nth-child(46), .bir-anim-right-stagger > :nth-child(46), .bir-anim-up-stagger > :nth-child(46) {
  animation-delay: calc(200ms * 46);
}
.bir-anim-left-stagger > :nth-child(47), .bir-anim-right-stagger > :nth-child(47), .bir-anim-up-stagger > :nth-child(47) {
  animation-delay: calc(200ms * 47);
}
.bir-anim-left-stagger > :nth-child(48), .bir-anim-right-stagger > :nth-child(48), .bir-anim-up-stagger > :nth-child(48) {
  animation-delay: calc(200ms * 48);
}
.bir-anim-left-stagger > :nth-child(49), .bir-anim-right-stagger > :nth-child(49), .bir-anim-up-stagger > :nth-child(49) {
  animation-delay: calc(200ms * 49);
}
.bir-anim-left-stagger > :nth-child(50), .bir-anim-right-stagger > :nth-child(50), .bir-anim-up-stagger > :nth-child(50) {
  animation-delay: calc(200ms * 50);
}

/* -------------------------------------------
***** Animations
------------------------------------------- */
.bir-load-slow {
  animation: endPoint 1.5s ease-out forwards;
}

.bir-anim-up {
  transform: translateY(1.5rem);
}

.bir-anim-left {
  transform: translateX(-1.5rem);
}

.bir-anim-down {
  transform: translateY(-1.5rem);
}

.bir-anim-right {
  transform: translate(1.5rem);
}

.bir-anim-up-stagger > * {
  transform: translateY(1.5rem);
}

.bir-anim-right-stagger > * {
  transform: translateX(1.5rem);
}

.bir-anim-left-stagger > * {
  transform: translateX(-1.5rem);
}

header.header {
  isolation: isolate;
}
body.admin-bar header.header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar header.header {
    top: 46px;
  }
}
@media screen and (min-width: 1009px) and (max-width: 1039px) {
  header.header * {
    transition: none !important;
  }
}
@media (max-width: 1024px) {
  header.header * {
    -webkit-tap-highlight-color: transparent;
  }
}
header.header nav,
header.header nav ul,
header.header nav li,
header.header nav a {
  all: unset;
  display: flex;
}
header.header nav a {
  cursor: pointer;
}
header.header button,
header.header input,
header.header form {
  all: unset;
  appearance: none;
}
header.header a:focus-visible,
header.header button:focus-visible,
header.header input:focus-visible {
  outline: 2px solid #00a7e1;
  outline-offset: -2px;
  border-radius: 2px;
}

header.header {
  --primary: #072976;
  --secondary: #00a7e1;
  --tertiary: #465a67;
  --top-nav-font: aktiv-grotesk, serif;
  /* Transitions */
  --transition: 250ms ease-out;
  /* Header */
  --header-bg: white;
  --sticky-bg: white;
  --mega-menu-bg: rgba(0, 0, 0, 0.8);
  /* Mobile Header */
  --mob-header: white;
  --mob-header-sticky: white;
  /* Logo */
  --logo: 160px;
  --logo-sticky: 140px;
  --logo-tablet: 140px;
  --logo-sticky-tablet: 140px;
  --logo-menu-opened-tablet: 140px;
  --logo-mobile: 140px;
  --logo-sticky-mobile: 140px;
  --logo-menu-opened: 140px;
  --logo-padding: 1.5rem 0;
  --logo-padding-mobile: 1.5rem 0;
  /* Top Level Navigation */
  /* Colors */
  --top-color: #707579;
  --top-color-hover: #465a67;
  /* Current Menu Item */
  --top-current: #465a67;
  --top-current-hover: #465a67;
  /* Sub Menu Navigation */
  /* Colors */
  --sub-color: white;
  --sub-bg: rgba(0, 0, 0, 0.8);
  --sub-color-hover: #00a7e1;
  --sub-bg-hover: transparent;
  /* Current Sub Menu Item */
  --sub-current: #465a67;
  --sub-current-bg: transparent;
  /* Mobile Menu */
  /* Background */
  --mob-bg: #465a67;
  /* Colors */
  --mob-color: white;
  --mob-color-hover: #465a67;
  --mob-bg-hover: #465a67;
  /* Current Item */
  --mob-current: white;
  --mob-current-bg: transparent;
  --mob-current-hover: white;
  --mob-current-bg-hover: transparent;
  /* Current Parent Item */
  --mob-current-parent: white;
  --mob-current-parent-bg: transparent;
  --mob-button-color: #707579;
  --mob-button-color-sticky: #707579;
  --mob-button-color-open: #707579;
  --mob-menu-expand: white;
}

header.header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--header-bg);
  transition: var(--transition);
}
header.header.sticky {
  background: var(--sticky-bg);
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
}
header.header.sticky > .wrap:before {
  background: var(--mob-header-sticky);
}
header.header.sticky .logo {
  width: var(--logo-sticky-mobile);
}
@media (min-width: 783px) {
  header.header.sticky .logo {
    width: var(--logo-sticky-tablet);
  }
}
@media (min-width: 1025px) {
  header.header.sticky .logo {
    padding: 1.5rem 0;
    width: var(--logo-sticky);
  }
}
html.menu-opened header.header {
  background: var(--mob-header-sticky);
}
html.menu-opened header.header > .wrap:before {
  background-color: var(--mob-header-sticky);
}
html.menu-opened header.header .logo {
  width: var(--logo-menu-opened);
}
@media (min-width: 783px) {
  html.menu-opened header.header .logo {
    width: var(--logo-menu-opened-tablet);
  }
}
html.menu-opened header.header .burger-menu:after {
  background: #707579;
}
html.menu-opened header.header .burger-menu span {
  background: #fff;
}
html.menu-opened header.header .burger-menu span:nth-child(1) {
  top: 9px;
  width: 0%;
  left: 50%;
}
html.menu-opened header.header .burger-menu span:nth-child(2) {
  transform: rotate(45deg);
}
html.menu-opened header.header .burger-menu span:nth-child(3) {
  transform: rotate(-45deg);
}
html.menu-opened header.header .burger-menu span:nth-child(4) {
  top: 9px;
  width: 0%;
  left: 50%;
}
header.header > .wrap {
  display: flex;
  justify-content: space-between;
}
header.header > .wrap::before {
  display: none;
}
@media (max-width: 1024px) {
  header.header > .wrap::before {
    content: "";
    display: block;
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--mob-header);
  }
}
header.header .header-right {
  display: flex;
}
header.header .logo {
  display: flex;
  width: var(--logo-mobile);
  margin: 0;
  padding: 1.5rem 0;
  transition: all var(--transition);
}
@media (min-width: 783px) {
  header.header .logo {
    width: var(--logo-tablet);
  }
}
@media (min-width: 1025px) {
  header.header .logo {
    width: var(--logo);
    padding: 2rem 0;
  }
}
@media (max-width: 365px) {
  header.header .logo {
    width: 110px !important;
    height: 80px !important;
  }
}
header.header .logo a {
  display: flex;
  align-items: flex-start;
}
header.header .logo a img,
header.header .logo a svg {
  width: 100%;
  transition: all var(--transition);
}
header.header .logo a img path,
header.header .logo a svg path {
  transition: fill var(--transition);
}
header.header .logo a img .cls-1,
header.header .logo a svg .cls-1 {
  fill: #475a67;
  stroke-width: 0px;
}
header.header .burger-menu {
  isolation: isolate;
  position: relative;
  z-index: 9999;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
@media (min-width: 1025px) {
  header.header .burger-menu {
    display: none;
  }
}
header.header .burger-menu:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  border-radius: 30px;
  transform: translate(-50%, -50%);
  border: 3px solid var(--mob-button-color);
  transition: 0.25s ease-in-out;
  z-index: -1;
}
header.header .burger-menu .span-wrap {
  position: relative;
  width: 20px;
  height: 16px;
}
header.header .burger-menu span {
  position: absolute;
  display: block;
  height: 2px;
  width: 100%;
  left: 0;
  border-radius: 2px;
  background: var(--mob-button-color);
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
header.header .burger-menu span:nth-child(1) {
  top: 0px;
}
header.header .burger-menu span:nth-child(2), header.header .burger-menu span:nth-child(3) {
  top: 7px;
}
header.header .burger-menu span:nth-child(4) {
  top: 14px;
}
header.header #nav-iframe {
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 1rem;
  padding: 10px 5px;
  background-color: #707579;
  margin-left: 5px;
  margin-bottom: 5px;
}
@media (max-width: 1024px) {
  header.header #nav-iframe {
    margin: 0;
    margin-right: 20px;
    padding: 5px 10px;
  }
}
@media (max-width: 500px) {
  header.header #nav-iframe {
    margin-right: 15px;
  }
}
header.header #nav-iframe iframe {
  all: unset;
  height: 22px;
  width: 165px;
}
@media (max-width: 1250px) {
  header.header #nav-iframe iframe {
    width: 115px;
    height: 40px;
  }
}
@media (max-width: 1024px) {
  header.header #nav-iframe iframe {
    width: 100px;
    height: 37px;
  }
}
@media (max-width: 500px) {
  header.header #nav-iframe iframe {
    width: 90px;
  }
}
@media (min-width: 1025px) {
  header.header nav.header-nav ul#menu-primary > li {
    position: relative;
  }
  header.header nav.header-nav ul#menu-primary > li.dropdown-opened > .sub-menu-depth-1, header.header nav.header-nav ul#menu-primary > li:not(.click-controller):hover > .sub-menu-depth-1, header.header nav.header-nav ul#menu-primary > li.menu-item-has-children:focus-within > .sub-menu-depth-1 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
  header.header nav.header-nav ul#menu-primary > li.dropdown-opened > a, header.header nav.header-nav ul#menu-primary > li:not(.click-controller):hover > a, header.header nav.header-nav ul#menu-primary > li.menu-item-has-children:focus-within > a {
    color: var(--top-color-hover);
    border-color: #00a7e1;
  }
  header.header nav.header-nav ul#menu-primary > li > a {
    align-items: center;
    color: var(--top-color);
    font-family: var(--top-nav-font);
    transition: var(--transition);
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0 1rem;
    border-bottom: 5px solid transparent;
  }
}
@media (min-width: 1025px) and (max-width: 1250px) {
  header.header nav.header-nav ul#menu-primary > li > a {
    font-size: 1.5rem;
    padding: 0 0.5rem;
  }
}
@media (min-width: 1025px) {
  header.header nav.header-nav ul#menu-primary > li.search-mobile {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
  header.header nav.header-nav ul#menu-primary > li.search-desktop {
    align-items: center;
  }
  header.header nav.header-nav ul#menu-primary > li.search-desktop:hover {
    cursor: pointer;
  }
  header.header nav.header-nav ul#menu-primary > li.search-desktop:hover svg {
    fill: #465a67;
  }
  header.header nav.header-nav ul#menu-primary > li.search-desktop button {
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    height: 100%;
  }
  header.header nav.header-nav ul#menu-primary > li.search-desktop svg {
    position: relative;
    top: -3px;
    width: 20px;
    height: 20px;
    fill: #707579;
    transition: all 0.2s ease-in-out;
  }
  header.header nav.header-nav ul#menu-primary > li.click-controller:hover {
    cursor: pointer;
  }
  header.header nav.header-nav ul#menu-primary > li.click-controller:hover > a {
    color: var(--top-color-hover);
  }
  header.header nav.header-nav ul#menu-primary > li.click-controller > a {
    pointer-events: none;
  }
  header.header nav.header-nav ul#menu-primary > li.current-menu-parent > a, header.header nav.header-nav ul#menu-primary > li.current-menu-item > a {
    color: var(--top-current);
    border-color: #00a7e1;
  }
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-1,
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-2 {
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    position: absolute;
    flex-direction: column;
    top: 100%;
    left: 0;
    right: 0;
    width: 250px;
    height: auto !important;
    padding: 1rem 0;
    background: var(--sub-bg);
    box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.14);
    transform: translateY(1rem);
    transition: var(--transition);
  }
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-1::before,
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-2::before {
    content: "";
    z-index: -1;
    position: absolute;
    top: -5px;
    left: 20px;
    width: 20px;
    aspect-ratio: 1;
    background: var(--sub-bg);
    transform: rotate(45deg);
  }
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-1 > li:hover > a,
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-2 > li:hover > a {
    color: var(--sub-color-hover);
    background: var(--sub-bg-hover);
  }
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-1 > li > a,
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-2 > li > a {
    width: 100%;
    color: var(--sub-color);
    font-size: 1.6rem;
    padding: 0.8rem 2rem;
    line-height: 1.2;
    background: var(--sub-bg);
  }
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-1 > li.current-menu-item > a,
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-2 > li.current-menu-item > a {
    background: var(--sub-current-bg);
    color: var(--sub-current);
  }
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-1 > li.menu-item-has-children,
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-2 > li.menu-item-has-children {
    position: relative;
  }
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-1 > li.menu-item-has-children > a,
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-2 > li.menu-item-has-children > a {
    border-left: 5px solid var(--sub-color);
  }
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-1 > li.menu-item-has-children:hover .sub-menu-depth-2, header.header nav.header-nav ul#menu-primary .sub-menu-depth-1 > li.menu-item-has-children.menu-item-has-children:focus-within .sub-menu-depth-2,
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-2 > li.menu-item-has-children:hover .sub-menu-depth-2,
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-2 > li.menu-item-has-children.menu-item-has-children:focus-within .sub-menu-depth-2 {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-2 {
    top: -1rem;
    left: 100%;
    width: 200px;
    padding: 0;
    box-shadow: 1rem 0.5rem 1rem 0 rgba(0, 0, 0, 0.14);
  }
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-2::before {
    content: none;
  }
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-2 > li > a {
    font-size: 1.4rem;
    background: lightgoldenrodyellow;
  }
  header.header nav.header-nav ul#menu-primary .mobile-menu-control {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
}
@media (max-width: 1024px) {
  header.header nav.header-nav {
    z-index: -2;
    position: fixed;
    right: 0;
    top: 0;
    left: auto;
    width: clamp(300px, 70%, 600px);
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(3px);
    background: var(--mob-bg);
    box-shadow: 1rem 0 1rem 0 rgba(0, 0, 0, 0.1);
    transition: var(--transition-menu);
  }
  header.header nav.header-nav,
  header.header nav.header-nav ul,
  header.header nav.header-nav li {
    flex-direction: column;
  }
  html.menu-opened header.header nav.header-nav {
    visibility: visible;
    opacity: 1;
    transform: translate(0);
  }
  header.header nav.header-nav ul#menu-primary {
    margin-top: 80px;
    padding: 3rem;
    padding-bottom: 6rem;
  }
  header.header nav.header-nav ul#menu-primary > li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  header.header nav.header-nav ul#menu-primary > li > a {
    padding: 1.25rem 1rem;
    font-size: 1.8rem;
    color: var(--mob-color);
  }
  header.header nav.header-nav ul#menu-primary > li > a:focus-visible {
    outline: 2px solid #00a7e1;
    outline-offset: -2px;
    border-radius: 2px;
  }
  header.header nav.header-nav ul#menu-primary > li.search-mobile {
    margin-top: 1rem;
    padding: 1rem 0;
  }
  header.header nav.header-nav ul#menu-primary > li.search-mobile form {
    border: 1px solid #fff;
    border-radius: 10px;
    display: grid;
    grid-template-columns: 1fr 5rem;
  }
  header.header nav.header-nav ul#menu-primary > li.search-mobile input {
    padding: 1rem;
    color: #fff;
    width: 100%;
    font-size: 16px;
  }
  header.header nav.header-nav ul#menu-primary > li.search-mobile input::placeholder {
    color: rgba(255, 255, 255, 0.5);
  }
  header.header nav.header-nav ul#menu-primary > li.search-mobile button {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header.header nav.header-nav ul#menu-primary > li.search-mobile button svg {
    width: 20px;
    height: 20px;
    fill: #fff;
    transition: all 0.2s ease-in-out;
  }
  header.header nav.header-nav ul#menu-primary > li.search-desktop {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
  header.header nav.header-nav ul#menu-primary > li.current-menu-parent > a {
    font-weight: 700;
    color: rgb(97.5, 214.4, 255);
    background: var(--mob-current-parent-bg);
    border-left: 3px solid rgb(97.5, 214.4, 255);
  }
  header.header nav.header-nav ul#menu-primary > li.current-menu-item > a {
    font-weight: 700;
    color: rgb(97.5, 214.4, 255);
    background: var(--mob-current-bg);
    border-left: 3px solid rgb(97.5, 214.4, 255);
  }
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-1,
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-2 {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
  }
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-1 > li > a,
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-2 > li > a {
    padding: 1.2rem 1rem;
    font-size: 1.6rem;
    color: var(--mob-color);
  }
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-1 > li > a:focus-visible,
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-2 > li > a:focus-visible {
    outline: 2px solid #00a7e1;
    outline-offset: -2px;
    border-radius: 2px;
  }
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-1 > li.current-menu-item > a,
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-2 > li.current-menu-item > a {
    color: rgb(97.5, 214.4, 255);
    background: var(--mob-current-bg);
    border-left: 3px solid rgb(97.5, 214.4, 255);
  }
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-2 {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 0;
  }
  header.header nav.header-nav.full-width {
    max-width: none;
  }
  header.header nav.header-nav.full-height {
    height: 100vh;
  }
  header.header nav.header-nav.scrollable {
    overflow-y: scroll;
    height: 100vh;
  }
  header.header nav.header-nav.scrollable ul#menu-primary > li:last-child {
    margin-bottom: 12rem;
  }
  header.header nav.header-nav.slideRight {
    left: 0;
    right: auto;
    transform: translateX(-100%);
  }
  header.header nav.header-nav.slideLeft {
    transform: translateX(100%);
  }
  header.header nav.header-nav.slideDown {
    transform: translateY(-100%);
  }
  header.header nav.header-nav.fade {
    opacity: 0;
    visibility: none;
  }
  header.header nav.header-nav.collapsed ul#menu-primary li.menu-item-has-children > a {
    position: relative;
  }
  header.header nav.header-nav.collapsed ul#menu-primary li.menu-item-has-children .mobile-menu-control {
    pointer-events: none;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 5rem;
    transition: var(--transition-menu);
    background: url("../img/custom/menu-arrow.svg") center/14px no-repeat;
  }
  header.header nav.header-nav.collapsed ul#menu-primary li.menu-item-has-children.submenu-visible > a .mobile-menu-control {
    background-image: url("../img/custom/menu-arrow-open.svg");
  }
  header.header nav.header-nav.collapsed ul#menu-primary li.menu-item-has-children ul.sub-menu {
    display: none;
    overflow: hidden;
    height: 0;
    margin: 0;
    transition: 250ms ease-out;
  }
  header.header nav.header-nav.collapsed ul#menu-primary .sub-menu-depth-1 li.menu-item-has-children > a::before {
    opacity: 0.5;
  }
  header.header nav.header-nav.not-clickable ul#menu-primary li.menu-item-has-children > a {
    pointer-events: none;
  }
  header.header nav.header-nav.clickable ul#menu-primary li.menu-item-has-children > a {
    width: calc(100% - 8.5rem);
  }
  header.header nav.header-nav.clickable ul#menu-primary li.menu-item-has-children .mobile-menu-control {
    right: -6.5rem;
  }
}
@media (min-width: 1025px) {
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item {
    position: static;
  }
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item.dropdown-opened .mega-menu-container, header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item:not(.click-controller):hover .mega-menu-container, header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item.menu-item-has-children:focus-within .mega-menu-container {
    pointer-events: all;
    opacity: 1;
    visibility: visible;
    cursor: auto;
  }
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .mega-menu-container {
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    margin-left: -50vw;
    left: 50%;
    width: 100vw;
    background: var(--mega-menu-bg);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.3);
    transition: var(--transition);
  }
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .wrap {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
    padding-left: 210px;
  }
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-1,
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-2 {
    all: unset;
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap;
  }
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-1::before,
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-2::before {
    display: none;
  }
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-1 > li,
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-2 > li {
    all: unset;
    flex: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-1 > li > a,
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-2 > li > a {
    all: unset;
    cursor: pointer;
    display: block;
    color: var(--sub-color);
    font-size: 1.6rem;
    font-weight: 700;
    padding: 0.5rem 0;
    transition: 200ms ease-out;
  }
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-1 > li > a:hover,
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-2 > li > a:hover {
    color: var(--sub-color-hover);
  }
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-1 > li > a:focus-visible,
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-2 > li > a:focus-visible {
    outline: 2px solid #00a7e1;
    outline-offset: -2px;
    border-radius: 2px;
  }
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-1 > li.current-menu-item > a,
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-2 > li.current-menu-item > a {
    color: #00a7e1;
  }
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-1 > li.current-menu-item a[href*="#"],
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-2 > li.current-menu-item a[href*="#"] {
    color: var(--sub-color);
  }
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-2 {
    margin: 1rem 0;
    padding-left: 1.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-2 > li > a {
    opacity: 0.75;
  }
}
@media (max-width: 1024px) {
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .wrap {
    all: unset;
  }
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .mega-menu-content {
    display: none;
  }
}

/* -------------------------------------------
***** Footer *****
------------------------------------------- */
footer.footer {
  --links: white;
  --links-hover: #00a7e1;
  --subfooter-bg: #3a3f43;
  --sub-links: #00a7e1;
  --sub-links-hover: white;
  color: #fff;
  background: linear-gradient(177deg, #020c24 0%, rgb(0, 0, 0) 100%);
  margin-top: 7rem;
}
body.home footer.footer {
  margin-top: 0;
}
footer.footer a {
  color: var(--links);
  transition: color 0.2s ease-in-out;
}
footer.footer a:hover {
  text-decoration: underline;
  color: var(--links-hover);
}
footer.footer a:focus-visible {
  outline: 2px solid #00a7e1;
  outline-offset: -2px;
  border-radius: 2px;
}
footer.footer .cd-top {
  position: fixed;
  z-index: 9;
  width: 60px;
  height: 60px;
  padding: 1rem;
  right: -100px;
  bottom: 20px;
  border-radius: 10rem;
  background: #072976;
  transition: all 0.33s ease-in-out;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.4);
}
footer.footer .cd-top.cd-is-visible {
  right: 20px;
}
footer.footer .cd-top:hover {
  cursor: pointer;
}
footer.footer .cd-top:hover svg {
  transform: rotate(-360deg);
}
footer.footer .cd-top svg {
  fill: #465a67;
  transition: all 1s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
footer.footer .footer-columns {
  padding: 4rem 0 2rem;
}
footer.footer .footer-columns .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 5rem;
}
@media (max-width: 782px) {
  footer.footer .footer-columns .wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
footer.footer .footer-columns .wrap .col {
  display: flex;
  flex-direction: column;
}
footer.footer .footer-columns .wrap ul.menu {
  margin: 0;
  padding: 0;
}
footer.footer .footer-columns .wrap ul.menu li {
  list-style: none;
  margin-bottom: 0.5em;
  font-family: var(--wp--preset--font-family--primary);
}
footer.footer .footer-columns .wrap ul.menu li a {
  color: var(--links);
  font-family: var(--wp--preset--font-family--primary);
  text-decoration: none;
}
footer.footer .footer-columns .wrap ul.menu li a:hover {
  color: var(--links-hover);
  text-decoration: underline;
}
footer.footer .footer-columns .wrap ul.contact-details li {
  position: relative;
  font-size: 15px;
  font-size: 15px;
  margin: 0 0 10px 0;
  padding: 0rem 0 0.2rem 28px;
  width: 100%;
  line-height: 1.5;
}
footer.footer .footer-columns .wrap ul.contact-details li:before {
  content: "";
  display: block;
  width: 23px;
  height: 23px;
  background-size: 20px 20px;
  position: absolute;
  top: 2px;
  left: 1px;
}
footer.footer .footer-columns .wrap ul.contact-details li.phone:before {
  background: transparent url(../img/custom/tel-icon.svg) center center no-repeat;
}
footer.footer .footer-columns .wrap ul.contact-details li.fax:before {
  background: transparent url(../img/custom/fax-icon.svg) center center no-repeat;
}
footer.footer .footer-columns .wrap ul.contact-details li.location {
  font-size: 16px;
}
footer.footer .footer-columns .wrap ul.contact-details li.location span {
  color: #00a7e1;
}
footer.footer .footer-columns .wrap ul.contact-details li.location:before {
  background: transparent url(../img/custom/location-icon.svg) center center no-repeat;
}
footer.footer .sub-footer .wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  font-size: 1.4rem;
  border-top: 1px solid #00a7e1;
  padding: 2rem 3rem;
}
@media (max-width: 850px) {
  footer.footer .sub-footer .wrap {
    font-size: 1.8rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
}
footer.footer .sub-footer .wrap p {
  margin: 0;
}
footer.footer .sub-footer .wrap a {
  color: var(--sub-links);
  text-decoration: none;
}
footer.footer .sub-footer .wrap a:hover {
  color: var(--sub-links-hover);
  text-decoration: underline;
}
footer.footer .sub-footer .wrap .legal ul {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  margin: 0;
  padding: 0;
}
@media (max-width: 850px) {
  footer.footer .sub-footer .wrap .legal ul {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
}
footer.footer .sub-footer .wrap .legal ul li {
  list-style: none;
  margin-bottom: 0;
}
footer.footer .sub-footer .wrap .legal ul li a {
  display: inline-block;
}
footer.footer .sub-footer .wrap .credit {
  order: 1;
  margin-left: auto;
  opacity: 0.75;
}
@media (max-width: 850px) {
  footer.footer .sub-footer .wrap .credit {
    margin-left: 0;
  }
}

.layout.layout-sidebar {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 6rem;
}
@media (max-width: 1024px) {
  .layout.layout-sidebar {
    flex-direction: column;
  }
}
.layout.layout-sidebar .content {
  width: 100%;
  max-width: calc(100% - 34rem);
}
@media (max-width: 1024px) {
  .layout.layout-sidebar .content {
    max-width: none;
  }
}
.layout.layout-sidebar .sidebar {
  width: 100%;
  max-width: 28rem;
}
@media (max-width: 1024px) {
  .layout.layout-sidebar .sidebar {
    max-width: none;
  }
}
.layout.layout-narrow {
  max-width: 800px;
}
.layout.layout-home {
  max-width: 1340px;
}
.layout ul.page-numbers {
  margin-top: 4rem;
  display: flex;
  gap: 3px;
}
.layout ul.page-numbers .page-numbers {
  display: block;
  min-width: 3.2rem;
  font-size: 1.4rem;
  text-align: center;
  margin: 0 0.5rem 0 0;
  padding: 0.5rem 0.7rem;
  background: #f4f4f4;
}
.layout ul.page-numbers .page-numbers.dots {
  background: transparent;
}
.layout ul.page-numbers .page-numbers.current {
  color: #fff;
  background: #465a67;
}
.layout ul.page-numbers a.page-numbers:hover,
.layout ul.page-numbers a.page-numbers:active,
.layout ul.page-numbers a.page-numbers:focus {
  color: #fff;
  background: #00a7e1;
}

.search-results-list .search-result a {
  display: block;
  padding: 2rem 0;
  border-bottom: 1px solid #f4f4f4;
  color: #465a67;
  line-height: 1.25;
}
.search-results-list .search-result a em {
  font-size: 1.4rem;
  color: inherit;
}
.search-results-list .search-result a h3 {
  color: inherit;
}
.search-results-list .search-result a:hover {
  color: #00a7e1;
}
.search-results-list .search-result:first-of-type a {
  padding-top: 0;
}

.sidebar-widget {
  position: sticky;
  top: 80px;
}
.sidebar-widget .sidebar-menu {
  border: 5px solid #3a3f43;
  border-radius: 2rem;
  padding: 25px;
}
body.single-post .sidebar-widget .sidebar-menu a, body.single-mfn_news .sidebar-widget .sidebar-menu a {
  font-weight: 500;
  border-bottom: 2px solid #f4f4f4;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
body.single-post .sidebar-widget .sidebar-menu a.back-to-news, body.single-mfn_news .sidebar-widget .sidebar-menu a.back-to-news {
  display: flex;
  align-items: center;
  gap: 1rem;
}
body.single-post .sidebar-widget .sidebar-menu a.back-to-news svg, body.single-mfn_news .sidebar-widget .sidebar-menu a.back-to-news svg {
  width: 20px;
  height: 20px;
}
body.single-post .sidebar-widget .sidebar-menu .date, body.single-mfn_news .sidebar-widget .sidebar-menu .date {
  display: block;
  font-weight: 400;
  font-size: 1.4rem;
  margin-top: 0.5rem;
  text-transform: uppercase;
}
body.single-post .sidebar-widget .sidebar-menu li:last-child a, body.single-mfn_news .sidebar-widget .sidebar-menu li:last-child a {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.sidebar-widget .sidebar-menu li.current a,
.sidebar-widget .sidebar-menu li.current_page_item a {
  color: #00a7e1;
}
.sidebar-widget .sidebar-menu li.current a:after,
.sidebar-widget .sidebar-menu li.current_page_item a:after {
  display: block;
}
.sidebar-widget .sidebar-menu li.current a:before,
.sidebar-widget .sidebar-menu li.current_page_item a:before {
  display: block;
}
.sidebar-widget .sidebar-menu a {
  position: relative;
  color: #707579;
  display: block;
  padding: 0.6rem 0;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 782px) {
  .sidebar-widget .sidebar-menu a {
    font-size: 1.8rem;
  }
}
.sidebar-widget .sidebar-menu a:focus, .sidebar-widget .sidebar-menu a:hover {
  color: #00a7e1;
}
.sidebar-widget .sidebar-menu a:after {
  display: none;
  content: "";
  height: 36px;
  width: 5px;
  background: #00a7e1;
  border-right: 1px #fff;
  position: absolute;
  top: -1px;
  right: -30px;
}
.sidebar-widget .sidebar-menu a:before {
  display: none;
  content: "";
  height: 44px;
  width: 5px;
  background: #fff;
  border-right: 1px #fff;
  position: absolute;
  top: -5px;
  right: -30px;
}

.content .listings-filters {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.5rem;
}
@media (max-width: 782px) {
  .content .listings-filters {
    align-items: flex-start;
    flex-direction: column;
  }
}
.content .listings-filters .facetwp-input-wrap,
.content .listings-filters input,
.content .listings-filters select {
  width: 100% !important;
}
.content .listings-filters .label {
  display: block;
  color: #072976;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.content .listings-filters .facetwp-facet {
  margin: 0;
}
.content .listings-filters .filter {
  flex: 0 0 300px;
  min-width: 300px;
}
@media (max-width: 782px) {
  .content .listings-filters .filter {
    flex: 1;
    min-width: 100%;
  }
}
.content .listings-filters .filter .facetwp-icon {
  right: 10px;
  opacity: 0.2;
}
.content .listings-filters .filter .facetwp-icon.f-loading:before {
  animation: none;
}
.content .listings-filters .filter .facetwp-icon:before {
  background: url(../img/custom/search-icon.svg) no-repeat;
  background-position: 10px 50%;
  background-size: 16px;
}
.content .listings-filters .reset {
  margin-left: auto;
  min-width: 8rem;
  padding: 1.3rem 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: inherit;
  font-family: "neue-haas-grotesk-text", serif;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  background: #3a3f43;
  outline: none;
  border: 3px solid #fff;
  border-radius: 9px;
  cursor: pointer;
  transition: 200ms ease-out;
}
.content .listings-filters .reset:focus-visible {
  outline: 2px solid #00a7e1;
  outline-offset: 0.5rem;
}
.content .listings-filters .reset:hover, .content .listings-filters .reset:active, .content .listings-filters .reset:focus {
  text-decoration: none;
  background: rgb(242.25, 242.25, 242.25);
  color: #072976;
}
.content .listings-filters .reset {
  background: transparent;
  border: 3px solid #072976;
  color: #072976;
}
.content .listings-filters .reset:hover, .content .listings-filters .reset:active, .content .listings-filters .reset:focus {
  text-decoration: none;
  background: #072976;
  border-color: #072976;
  color: #fff;
}
@media (max-width: 782px) {
  .content .listings-filters .reset {
    margin-left: 0;
    margin-top: 1rem;
  }
}
.content .listing-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .content .listing-results {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .content .listing-results {
    grid-template-columns: 1fr;
  }
}
.content .listing-results .media-post {
  border-radius: 10px;
  overflow: hidden;
}
.content .listing-results .media-post:nth-child(even) .post-link:after {
  background: linear-gradient(45deg, #232d34 0%, #465a67 100%);
}
.content .listing-results .media-post:nth-child(odd) .post-link:after {
  background: linear-gradient(45deg, #072976 0%, #465a67 100%);
}
.content .listing-results .post-link {
  width: 100%;
  height: 100%;
  min-height: 350px;
  position: relative;
  display: block;
  padding: 4rem;
  transition: all 0.2s;
}
@media (max-width: 1024px) {
  .content .listing-results .post-link {
    min-height: 0;
  }
}
.content .listing-results .post-link:after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
}
.content .listing-results .post-link:hover {
  transform: scale(1.02);
}
.content .listing-results .post-link:hover .read-more {
  text-decoration: none;
  background: #fff;
  color: #072976;
}
.content .listing-results .post-img {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.content .listing-results .post-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content .listing-results .post-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  position: relative;
  z-index: 2;
  color: #fff;
}
.content .listing-results .post-date {
  text-transform: uppercase;
  color: inherit;
  margin-bottom: 2rem;
  font-size: 1.4rem;
}
.content .listing-results .post-title {
  font-size: 2.2rem;
  font-weight: 500;
  color: inherit;
  line-height: 1.25;
  margin-bottom: 3rem;
}
.content .listing-results .read-more {
  min-width: 8rem;
  padding: 1.3rem 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: inherit;
  font-family: "neue-haas-grotesk-text", serif;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  background: #3a3f43;
  outline: none;
  border: 3px solid #fff;
  border-radius: 9px;
  cursor: pointer;
  transition: 200ms ease-out;
}
.content .listing-results .read-more:focus-visible {
  outline: 2px solid #00a7e1;
  outline-offset: 0.5rem;
}
.content .listing-results .read-more:hover, .content .listing-results .read-more:active, .content .listing-results .read-more:focus {
  text-decoration: none;
  background: rgb(242.25, 242.25, 242.25);
  color: #072976;
}
.content .listing-results .read-more {
  background: transparent;
  margin-top: auto;
}
.content .facetwp-pager,
.content .bir-pagination {
  margin-top: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.content .facetwp-pager .facetwp-page,
.content .facetwp-pager .page-numbers,
.content .bir-pagination .facetwp-page,
.content .bir-pagination .page-numbers {
  display: inline-block;
  line-height: 1;
  background: #f4f4f4;
  color: #3a3f43;
  font-weight: 500;
  padding: 0.75rem 1rem;
  line-height: 1;
  border-radius: 5px;
  border: 3px solid rgb(218.5, 218.5, 218.5);
}
.content .facetwp-pager .facetwp-page:hover, .content .facetwp-pager .facetwp-page.current, .content .facetwp-pager .facetwp-page.active,
.content .facetwp-pager .page-numbers:hover,
.content .facetwp-pager .page-numbers.current,
.content .facetwp-pager .page-numbers.active,
.content .bir-pagination .facetwp-page:hover,
.content .bir-pagination .facetwp-page.current,
.content .bir-pagination .facetwp-page.active,
.content .bir-pagination .page-numbers:hover,
.content .bir-pagination .page-numbers.current,
.content .bir-pagination .page-numbers.active {
  border-color: #072976;
  background: #072976;
  color: #fff;
}
.content .facetwp-pager .facetwp-page.dots,
.content .facetwp-pager .page-numbers.dots,
.content .bir-pagination .facetwp-page.dots,
.content .bir-pagination .page-numbers.dots {
  background: none;
  border: none;
  color: #3a3f43;
  font-weight: 400;
  pointer-events: none;
}
.content .post-nav .nav-links {
  margin-top: 4rem;
  display: flex;
  gap: 3rem;
}
@media (max-width: 500px) {
  .content .post-nav .nav-links {
    flex-direction: column;
  }
}
.content .post-nav .nav-links > div {
  flex: 1;
}
.content .post-nav .nav-links a {
  display: flex;
  justify-content: space-between;
  height: 100%;
  gap: 3rem;
  padding: 2rem;
  background: #f4f4f4;
  transition: 200ms ease-out;
  border-radius: 15px;
  border: 3px solid rgb(218.5, 218.5, 218.5);
}
.content .post-nav .nav-links a:hover {
  background: #072976;
  border-color: #072976;
  text-decoration: none;
}
.content .post-nav .nav-links a:hover span {
  color: #fff;
}
.content .post-nav .nav-links a:hover svg {
  fill: #fff;
}
.content .post-nav .nav-links a span {
  font-weight: 500;
  font-size: 1.6rem;
  color: #072976;
  transition: 200ms ease-out;
}
.content .post-nav .nav-links a svg {
  width: 100%;
  max-width: 20px;
  height: 30px;
  fill: #072976;
  transition: 200ms ease-out;
}
.content .post-meta {
  position: relative;
  margin-top: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  color: #072976;
  text-transform: uppercase;
  font-weight: 600;
}
.content .post-meta:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 5px;
  background: #00a7e1;
}
.content .news-content {
  margin-top: 0;
}
.content .news-content > * + * {
  margin-top: 3rem;
  margin-bottom: 0;
}

/* -------------------------------------------
***** DEFAULT FORM STYLING *****
------------------------------------------- */
.gform_legacy_markup_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  font-family: inherit;
  font-size: inherit;
  letter-spacing: normal;
  padding: 5px 4px;
}

.user-content .gform_legacy_markup_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.user-content input,
.user-content select,
.user-content textarea {
  font-family: "neue-haas-grotesk-text", serif;
  padding: 1.25rem 1.5rem;
  background: #f4f4f4;
  border: 3px solid rgb(218.5, 218.5, 218.5);
  transition: all 0.2s ease-in;
  border-radius: 5px;
  color: #3a3f43;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.25;
}
.user-content .gform_legacy_markup_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):focus-visible,
.user-content input:focus-visible,
.user-content select:focus-visible,
.user-content textarea:focus-visible {
  outline: 2px solid #00a7e1;
  outline-offset: -2px;
  border-radius: 2px;
}
.user-content .gform_legacy_markup_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):focus,
.user-content input:focus,
.user-content select:focus,
.user-content textarea:focus {
  outline: 2px dotted #00a7e1;
}
.user-content .gform_legacy_markup_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::placeholder,
.user-content input::placeholder,
.user-content select::placeholder,
.user-content textarea::placeholder {
  color: rgb(105.328, 114.408, 121.672);
}
.user-content select {
  background-image: url("../img/custom/dropdown-gkp-1.svg");
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: 97% center;
  padding-right: 2rem;
}

/* -------------------------------------------
***** GRAVITY FORM STYLING *****
------------------------------------------- */
.gform_wrapper button[type=submit] {
  min-width: 8rem;
  padding: 1.3rem 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: inherit;
  font-family: "neue-haas-grotesk-text", serif;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  background: #3a3f43;
  outline: none;
  border: 3px solid #fff;
  border-radius: 9px;
  cursor: pointer;
  transition: 200ms ease-out;
}
.gform_wrapper button[type=submit]:focus-visible {
  outline: 2px solid #00a7e1;
  outline-offset: 0.5rem;
}
.gform_wrapper button[type=submit]:hover, .gform_wrapper button[type=submit]:active, .gform_wrapper button[type=submit]:focus {
  text-decoration: none;
  background: rgb(242.25, 242.25, 242.25);
  color: #072976;
}
.gform_wrapper button[type=submit] {
  background: transparent;
  border: 3px solid #072976;
  color: #072976;
}
.gform_wrapper button[type=submit]:hover, .gform_wrapper button[type=submit]:active, .gform_wrapper button[type=submit]:focus {
  text-decoration: none;
  background: #072976;
  border-color: #072976;
  color: #fff;
}
.gform_wrapper input[type=checkbox] {
  all: unset;
  appearance: checkbox;
}
.gform_wrapper .ginput_container_consent {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  flex: 0 0 calc(100% - 5rem);
  line-height: 1.25;
  font-size: 1.4rem;
}
.gform_wrapper .ginput_container_consent input[type=checkbox] {
  margin: 0;
}
.gform_wrapper .ginput_container_consent .gfield_consent_label {
  flex: 0 0 100%;
}

.unsupported-browser {
  display: none;
  visibility: hidden;
  opacity: 0;
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .unsupported-browser {
    display: block;
    visibility: inherit;
    opacity: 1;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 99999;
    background: #072976;
    padding: 30px;
  }
  .unsupported-browser .unsupported-browser-wrapper {
    height: auto;
    width: 100%;
    max-width: 500px;
    padding: 30px;
    margin: auto;
    background-color: #fff;
    border-radius: 10px;
  }
  .unsupported-browser .unsupported-browser-wrapper h2 {
    font-size: 2.2rem;
    line-height: 1.5;
    margin-bottom: 2rem;
  }
  .unsupported-browser .unsupported-browser-wrapper p {
    font-size: 1.6rem;
  }
  .unsupported-browser .unsupported-browser-wrapper a {
    text-decoration: underline;
    color: #072976;
  }
}
/*
	Custom Login
	Description: Style the WordPress Login page
*/
html body.login {
  min-height: 600px;
  display: flex;
  box-sizing: border-box;
  background-color: #072976;
  background-image: url("../img/custom/login-bg.jpg");
  background-size: cover;
  background-position: center;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
html body.login::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #465a67;
  opacity: 0.7;
}
html .language-switcher {
  margin-top: 2rem;
}
html .language-switcher label {
  display: none !important;
}
html .login .privacy-policy-page-link {
  margin: 5rem 0 2rem;
}
html .login {
  /* Logo */
}
html .login h1 a {
  padding-bottom: 0;
  width: 270px;
  height: 80px;
  background-size: contain;
  background-position: center;
  background-image: url("../img/custom/logo.svg");
  display: block;
  margin: 3rem auto 0;
  padding: 0;
}
html .login {
  /* Error Message */
}
html .login #login_error {
  margin: 0 20px 20px !important;
  background: tomato !important;
  color: #fff;
  box-shadow: none !important;
  border: none;
}
html .login #login_error a {
  color: #fff;
}
html .login {
  /* Other message */
}
html .login p.message {
  margin: 20px;
  border-radius: 10px;
  background: #50781c !important;
  color: #fff;
  box-shadow: none !important;
  border: none;
  font-size: 14px;
}
html .login #nav {
  color: #3a3f43 !important;
  float: right;
  margin: 0;
  padding: 0 20px 20px 0;
  opacity: 0.7;
}
html .login #nav a {
  color: #3a3f43 !important;
  text-decoration: none !important;
}
html .login #nav a:hover {
  color: #3a3f43 !important;
  text-decoration: underline !important;
}
html .login #login {
  overflow: hidden;
  min-width: 400px !important;
  background: #fff;
  margin: 0;
  padding: 0;
  border-radius: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
  border-radius: 15px;
}
html .login #backtoblog {
  float: left;
  margin: 0;
  padding: 0 0 20px 20px;
  opacity: 0.7;
}
html .login #backtoblog a {
  color: #3a3f43 !important;
  text-decoration: none;
}
html .login #backtoblog a:hover {
  color: #3a3f43 !important;
  text-decoration: underline;
}
html .login form {
  background: none;
  padding: 20px;
  margin-top: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
}
html .login form label {
  color: #3a3f43;
  position: relative;
  content: "";
  display: block;
}
html .login form input[type=text],
html .login form input[type=password] {
  background: lightgrey;
  border: 1px solid lightgrey;
  box-shadow: none;
  color: #3a3f43;
  padding: 15px 10px;
  margin-top: 5px;
  font-size: 16px;
}
html .login form label[for=user_login]:before {
  content: "\f110";
  font-family: dashicons;
  font-size: 20px;
  position: relative;
  top: 4px;
  margin-right: 7px;
}
html .login form label[for=user_pass]:before {
  content: "\f160";
  font-family: dashicons;
  font-size: 20px;
  position: relative;
  top: 4px;
  margin-right: 7px;
}
html .login form p.submit {
  display: flex;
  justify-content: flex-end;
}
html .login form p.submit #wp-submit {
  font-size: 18px;
  padding: 4px 30px;
  color: #fff;
  text-decoration: none;
  border-radius: 0;
  background: #465a67;
  border: none;
  cursor: pointer;
  text-shadow: none;
  margin-top: 10px;
  height: auto;
  box-shadow: none !important;
  border-radius: 4px;
}
html .login form p.submit #wp-submit:hover {
  background: rgba(58, 58, 58, 0.5);
}
html .login .button.wp-hide-pw {
  top: 15%;
}
html .forgetmenot {
  display: none;
}

/* --- PAGE : 404 --- */
.error404 #content {
  margin: 60px 0 80px 0;
}
.error404 main .user-content h1 {
  margin: 0 0 3rem 0;
  opacity: 0.6;
}
.error404 main .user-content h1 strong {
  display: block;
  font-size: 11rem;
  color: #7c8084;
  line-height: 12rem;
}
.error404 main .user-content h1 span {
  display: block;
  font-size: 3rem;
  margin-top: -1rem;
  color: #687077;
}
.error404 main .user-content p {
  max-width: 50%;
  margin: 0 auto;
}
.error404 main .user-content p a {
  color: #072976;
  font-weight: 600;
}

.fullscreen-search {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(244, 244, 244, 0.99);
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.1s linear, opacity 0.1s linear;
  padding-top: 10vmin;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.fullscreen-search.active {
  opacity: 1;
  visibility: visible;
  transition: visibility 0.2s linear, opacity 0.2s linear;
}
.fullscreen-search .close-search {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  padding: 1.25rem;
  z-index: 3;
  background: transparent;
  border-radius: 5px;
}
.fullscreen-search .close-search:hover {
  cursor: pointer;
}
.fullscreen-search .close-search:hover svg {
  fill: #00a7e1;
}
.fullscreen-search .close-search svg {
  fill: #3a3f43;
  transition: 200ms ease-out;
}
.fullscreen-search .search-form {
  display: flex;
  height: auto;
  width: 90%;
  justify-content: flex-start;
  flex-direction: column;
  padding: 2rem;
  margin: 0 auto;
}
.fullscreen-search .search-form form {
  display: flex;
  gap: 10px;
  align-items: stretch;
  flex-wrap: wrap;
  overflow: hidden;
}
.fullscreen-search .search-form label {
  width: 100%;
  display: inline-block;
  font-family: "aktiv-grotesk", serif;
  color: #3a3f43;
  font-size: 2.5rem;
  text-transform: none;
  line-height: 1;
  margin: 0 0 1rem;
}
.fullscreen-search .search-form input {
  -webkit-appearance: none;
  flex: 1;
  width: calc(100% - 5rem);
  box-shadow: none;
  outline: none;
  padding: 5rem 3rem;
  font-size: 7.5vmin;
  color: #3a3f43;
  font-weight: 200;
  line-height: 1;
  border: 0;
  background: #fff;
  border-radius: 5px;
  border: 1px solid #f4f4f4;
}
.fullscreen-search .search-form input::placeholder {
  font-weight: 200;
  color: #c1c1c1;
}
.fullscreen-search .search-form input:focus {
  outline: 2px solid rgb(231.25, 231.25, 231.25);
}
.fullscreen-search .search-form button {
  -webkit-appearance: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  outline: 0;
  color: #fff;
  width: 5rem;
  font-size: 2rem;
  line-height: 1;
  padding: 1.2rem;
  border-radius: 0 5px 5px 0;
}
.fullscreen-search .search-form button svg {
  fill: #3a3f43;
}
.fullscreen-search .search-form button:hover {
  cursor: pointer;
}
.fullscreen-search .search-form button:hover svg {
  fill: #00a7e1;
}

.social-wrapper ul {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
  padding: 0;
}
.social-wrapper ul li {
  list-style: none;
  margin-bottom: 0;
}
.social-wrapper ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}
.social-wrapper ul li a:hover span.icon svg {
  fill: #fff;
}
.social-wrapper ul li span.icon {
  display: block;
  width: 2rem;
  height: 2rem;
}
@media (max-width: 782px) {
  .social-wrapper ul li span.icon {
    width: 3rem;
    height: 3rem;
  }
}
.social-wrapper ul li span.icon svg {
  width: 100%;
  height: 100%;
  fill: #00a7e1;
  transition: all 0.3s ease-in-out;
}

/* -------------------------------------------
***** Custom *****
------------------------------------------- */
#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme {
  border-top: 0 !important;
}

@media (max-width: 782px) {
  .moove-gdpr-cookie-notice {
    text-align: center;
  }
  .moove-gdpr-button-holder .mgbutton {
    margin: auto !important;
  }
}
.glightbox-open .gslide-description {
  display: none;
}
.glightbox-open .goverlay {
  background: rgba(58, 63, 67, 0.9);
}

.visualizer-front svg text {
  fill: #3e3e3e !important;
  font-weight: 700;
  font-family: "aktiv-grotesk", serif;
}

.home .video-wrapper {
  margin-left: auto;
  margin-right: auto;
  padding: 56.25% 0 0 0;
  position: relative;
  max-width: 1200px;
}
.home .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.home-footer-image {
  position: relative;
  height: 66vh;
}
.home-footer-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wp-block-columns#homepage-counters {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3rem;
}
@media (max-width: 1024px) {
  .wp-block-columns#homepage-counters {
    display: flex;
    flex-wrap: wrap !important;
    justify-content: center;
  }
}
.wp-block-columns#homepage-counters .wp-block-column {
  background: #465a67;
  border: 6px solid #00a7e1;
  border-radius: 15px;
  box-shadow: 0 1.25px 2.5px rgba(0, 0, 0, 0.035), 0 2.5px 5px rgba(0, 0, 0, 0.035), 0 5px 10px rgba(0, 0, 0, 0.035), 0 10px 20px rgba(0, 0, 0, 0.035), 0 20px 40px rgba(0, 0, 0, 0.035), 0 40px 80px rgba(0, 0, 0, 0.035);
}
@media (max-width: 1024px) {
  .wp-block-columns#homepage-counters .wp-block-column {
    flex: 1 0 33%;
    max-width: 33%;
    min-width: 250px;
  }
}

.wp-block-columns#board-of-directors {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  .wp-block-columns#board-of-directors {
    display: flex;
    flex-wrap: wrap !important;
    justify-content: center;
    gap: 3rem;
  }
}
.wp-block-columns#board-of-directors .block-board-director,
.wp-block-columns#board-of-directors .wp-block-column {
  height: 100%;
}
@media (max-width: 1024px) {
  .wp-block-columns#board-of-directors .wp-block-column {
    max-width: 40%;
    min-width: 250px;
  }
}
@media (max-width: 500px) {
  .wp-block-columns#board-of-directors .wp-block-column {
    max-width: none;
    min-width: 0;
  }
}
@media (max-width: 1024px) {
  .wp-block-columns#board-of-directors .block-board-director {
    min-height: 330px;
  }
}
@media (max-width: 500px) {
  .wp-block-columns#board-of-directors .block-board-director {
    min-height: 0;
  }
}

.wp-block-columns#investor-share-price-columns {
  display: grid;
  grid-template-columns: 220px 1fr;
}
@media (max-width: 782px) {
  .wp-block-columns#investor-share-price-columns {
    display: flex;
    flex-direction: column;
  }
}
.wp-block-columns#investor-share-price-columns .wp-block-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2rem;
  height: 100%;
  background: #465a67;
  border-radius: 15px;
}
.wp-block-columns#investor-share-price-columns .block-iframe {
  flex: 1;
}

.wp-block-columns#results-columns .pro-block {
  height: 100%;
}

.wp-block-columns#contact-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
@media (max-width: 1024px) {
  .wp-block-columns#contact-columns {
    grid-template-columns: repeat(1, 1fr);
  }
}
.wp-block-columns#contact-columns .wp-block-column {
  border: 6px solid #465a67;
  border-radius: 15px;
  padding: 3rem;
}

.wp-block-columns#contact-columns2 {
  display: grid;
  grid-template-columns: 31% 2fr;
  gap: 4rem;
}
@media (max-width: 1024px) {
  .wp-block-columns#contact-columns2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 782px) {
  .wp-block-columns#contact-columns2 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.wp-block-columns#contact-columns2 .wp-block-column {
  border-radius: 15px;
}

/* -------------------------------------------
***** MFN Subscribe Widget (Email Alerts) *****
------------------------------------------- */
.mfn-subscribe .mfn-block {
  margin-bottom: 2.5rem;
}
.mfn-subscribe .mfn-hidden {
  display: none !important;
}
.mfn-subscribe .mfn-info-main p {
  font-size: 1.8rem;
  font-weight: 500;
  color: #072976;
}
.mfn-subscribe .mfn-info-options {
  margin-bottom: 0.75rem;
}
.mfn-subscribe .mfn-info-options p {
  font-weight: 500;
  color: #072976;
}
.mfn-subscribe .mfn-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
}
.mfn-subscribe .mfn-checkbox-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
}
.mfn-subscribe .mfn-checkbox-row input[type=checkbox] {
  all: unset;
  appearance: checkbox;
  width: 2rem;
  height: 2rem;
  min-width: 2rem;
  margin: 0;
  accent-color: #072976;
  cursor: pointer;
}
.mfn-subscribe .mfn-checkbox-row input[type=checkbox]:focus-visible {
  outline: 2px solid #00a7e1;
  outline-offset: 2px;
}
.mfn-subscribe .mfn-checkbox-row label {
  cursor: pointer;
  font-weight: 500;
  line-height: 1.25;
}
.mfn-subscribe .mfn-field-row .mfn-field-input {
  display: block;
  width: 100%;
  max-width: 40rem;
}
.mfn-subscribe .mfn-sub-submit {
  min-width: 8rem;
  padding: 1.3rem 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: inherit;
  font-family: "neue-haas-grotesk-text", serif;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  background: #3a3f43;
  outline: none;
  border: 3px solid #fff;
  border-radius: 9px;
  cursor: pointer;
  transition: 200ms ease-out;
}
.mfn-subscribe .mfn-sub-submit:focus-visible {
  outline: 2px solid #00a7e1;
  outline-offset: 0.5rem;
}
.mfn-subscribe .mfn-sub-submit:hover, .mfn-subscribe .mfn-sub-submit:active, .mfn-subscribe .mfn-sub-submit:focus {
  text-decoration: none;
  background: rgb(242.25, 242.25, 242.25);
  color: #072976;
}
.mfn-subscribe .mfn-sub-submit {
  background: transparent;
  border: 3px solid #072976;
  color: #072976;
}
.mfn-subscribe .mfn-sub-submit:hover, .mfn-subscribe .mfn-sub-submit:active, .mfn-subscribe .mfn-sub-submit:focus {
  text-decoration: none;
  background: #072976;
  border-color: #072976;
  color: #fff;
}
.mfn-subscribe .mfn-status {
  margin-bottom: 0;
}
.mfn-subscribe .mfn-status .mfn-status-item {
  max-width: 60rem;
  padding: 1.5rem 2rem;
  border-radius: 5px;
  line-height: 1.4;
}
.mfn-subscribe .mfn-status .mfn-alert {
  background: rgba(179, 45, 46, 0.08);
  border-left: 5px solid #b32d2e;
  color: #b32d2e;
}
.mfn-subscribe .mfn-status .mfn-success {
  background: rgba(30, 126, 52, 0.08);
  border-left: 5px solid #1e7e34;
  color: #1e7e34;
}

/* -------------------------------------------
***** Editor & User Content Styling *****
------------------------------------------- */
/* -------------------------------------------
***** Optional Imports *****
------------------------------------------- */
