@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 300 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(/assets/fonts/opensans-italic-vf.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(/assets/fonts/opensans-vf.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

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

:root {
  --white: #FFFFFF;
  --blue: #215990;
  --lightblue: #ACCBE0;
  --grey: #7d848f;
  --midgrey: #D9D9D9;
  --lightgrey: #EFF0F1;
  --green: #84AD28;
  --text: #333333;
}

body {
  margin: 0;
  font-family: "Open Sans", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text);
}

@media (min-width: 950px) {
  body {
    font-size: 1.1rem;
    line-height: 1.6;
  }
}

html, body, iframe {
  height: 100%;
  width: 100%;
} 

.multiple-items {
  display: none;
}
.multiple-items.slick-initialized {
  display: block;
}

p {
  text-wrap: wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: none;
}

section {
  width: 1200px;
  margin: 3rem 0;
  max-width: 85%;
  margin-left: auto;
  margin-right: auto;
}

section.fullsize {
  max-width: none;
  width: 100%;
  margin: 0;
}

section h2 > p {
  margin: 0;
}

section h4 > p {
  margin: 0;
}

img {
  width: 100%;
}

@media (min-width: 425px) {
  img {
    width: auto;
  }
}

@media (min-width: 880px) {
  img {
    width: 100%;
  }
}

header {
  background-color: #fff;
  width: 100%;
  z-index: 99;
  border-bottom: 1px solid var(--midgrey);
}

@media (min-width: 1248px) {
  header {
    background-color: #fff;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 99;
  }
}

.main {
  padding-top: 0;
}
@media (min-width: 1248px) {
  .main {
    padding-top: 80px;
  }
}

.navbar-wrapper {
  margin-left: auto;
  margin-right: auto;
  flex-direction: row;
  justify-content: space-between;
  display: grid;
  gap: 0;
  position: static;
  min-height: 50px;
  align-items: center;
}

@media (min-width: 1248px) {
  .navbar-wrapper {
    max-width: 85%;
    height: 80px;
    width: 1200px;
    display: flex;
  }
}

.split-content.header-right {
  margin: 0 20px;
  grid-column-start: 1;
  grid-row-start: 1;
}
@media (min-width: 1248px) {
  .split-content.header-right {
    margin: 0;
    margin-right: 20px;
  }
}

.split-content.header-left {
  align-items: center;
  display: flex;
  grid-column-start: 3;
  align-self: start;
  grid-row-start: 1;
}

.logo-embed {
  width: 138px;
}

/* MAINNAVIGATION */
.nav-menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
  grid-column-start: 1;
  grid-column-end: 5;
  grid-row-start: 2;
  display: flex;
}

/* menu icon */

header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 42px 20px;
  user-select: none;
  grid-column-start: 4;
}

header .menu-icon .navicon {
  background: #333;
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}

header .menu-icon .navicon:before,
header .menu-icon .navicon:after {
  background: #333;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

header .menu-icon .navicon:before {
  top: 5px;
}

header .menu-icon .navicon:after {
  top: -5px;
}

/* menu btn */

header .menu-btn {
  display: none;
}

header .menu-btn:checked ~ .nav-menu {
  max-height: 100%;
}

header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

@media (min-width: 1248px) {
  header .menu-icon {
    display: none;
  }
}

.nav-menu {
  margin: 0;
  padding: 0;
  background: var(--white);
  overflow: hidden;
}
.nav-menu-wrapper {
  padding-bottom: 1rem;
  margin-left: 0;
}

.nav-item-wrapper {
  margin-bottom: 0;
  list-style-type: none;
}

.nav-item-dropdown {
  min-width: 100%;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  line-height: 1;
  position: static;
}

.nav-link {
  color: var(--blue);
  word-break: normal;
  line-height: 1;
  text-decoration: none;
  transition: color .35s;
  position: relative;
  text-align: left;
  display: flex;
  padding: 1rem;
  padding-bottom: 1.2rem;
  padding-top: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
}

.nav-link::after {
  width: 0;
  height: 0;
  content: " ";
  background: none;
  display: none;
}

.nav-item-dropdown .active, .nav-link:hover {
  color: var(--green);
}

.nav-item-wrapper:hover .nav-dropdown {
  display:block;
}

@media (min-width: 1248px) {
  .nav-link {
    padding: 0;
    font-weight: 400;
    text-transform: none;
  }
}

/* .nav-dropdown {
  -webkit-box-shadow: 0px 10px 5px 0px rgba(0,0,0,0.12);
  -moz-box-shadow: 0px 10px 5px 0px rgba(0,0,0,0.12);
  box-shadow: 0px 10px 5px 0px rgba(0,0,0,0.12);
} */

.nav-dropdown-wrapper {
  flex-direction: row;
  align-items: stretch;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  display: flex;
}

@media (min-width: 1248px) {
  .nav-dropdown-wrapper {
    padding: 0 .8rem;
  }
}

.nav-submenu {
  margin: 0;
  flex-grow: 1;
}

.nav-submenu::after {
  content: '';
  flex: none;
}

.nav-submenu-list-item {
  list-style: none;
  flex: none;
}

.submenu-list-item-link {
  color: var(--kx-dark-navy);
  cursor: pointer;
  width: 100%;
  padding: 1rem 1.5rem;
  text-decoration: none;
  display: block;
}

@media (min-width: 1248px) {
  .submenu-list-item-link {
    padding: 1rem 0;
  }
}

a.submenu-list-item-link:hover,
a.submenu-list-item-link.active {
  color: var(--blue);
}

.submenu-list-item-image {
  display: none;
}

.submenu-list-item-title {
  font-weight: 600;
  line-height: 1.18;
  text-decoration: none;
  display: block;
  margin-bottom: .5rem;
}

.submenu-list-item-content {
  font-size: 1.1rem;
  line-height: 1;
}

.submenu-list-item-content p {
  margin: 0;
}

.submenu-list-item-content img {
  display: none;
}

@media (min-width: 1248px) {
  .nav-menu {
    overflow: auto;
    max-height: fit-content;
    padding-bottom: 0;
  }

  .nav-menu-wrapper {
    margin: 0;
    padding: 0;
  }

  .nav-item-wrapper {
    margin-bottom: 0;
    list-style-type: none;
  }

  .nav-item-dropdown {
    min-width: 100%;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    line-height: 1;
    position: static;
  }

  .nav-link {
    color: var(--text);
    word-break: normal;
    padding: 31px 32px;
    line-height: 1;
    text-decoration: none;
    transition: color .35s;
    position: relative;
    text-align: center;
    display: flex;
  }

  .nav-link::after {
    width: 0;
    height: 0;
    content: " ";
    background: none;
    display: none;
  }

  .nav-item-dropdown .active, .nav-link:hover {
    border-bottom: 4px solid var(--green);
    padding-bottom: 28px;
  }

  .submenu-list-item-link.active {
    border-bottom: none;
    }

  .nav-item-wrapper .nav-dropdown {
    display:none;
    max-width: 85%;
  }

  .nav-item-wrapper:hover .nav-dropdown {
    display:block;
  }

  .nav-dropdown {
    background-color: var(--white);
    width: 100vw;
    min-width: 100%;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    position: absolute;
    inset: 80px 0 auto;
  }

  .nav-dropdown-wrapper {
    border-top: 1px solid var(--green);
    border-bottom: 1px solid var(--lightgrey);
    flex-direction: row;
    align-items: stretch;
    margin-left: auto;
    margin-right: auto;
    padding-top: 2rem;
    padding-bottom: 1rem;
    padding-right: 0;
    display: flex;
  }

  .nav-submenu {
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    display: flex;
  }

  .nav-submenu::after {
    content: '';
    width: 30%;
    flex: none;
  }

  .nav-submenu-list-item {
    list-style: none;
    flex: none;
    width: 30%;
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .submenu-list-item-link {
    color: var(--kx-dark-navy);
    cursor: pointer;
    width: 100%;
    padding: 0;
    text-decoration: none;
    display: block;
  }

  .submenu-list-item-image {
    width: 40px;
    margin-bottom: 1.5rem;
    margin-left: 0;
    margin-right: .75rem;
    border: none;
    display: block;
    float: left;
  }

  .submenu-list-item-title {
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.18;
    text-decoration: none;
    display: block;
  }

  .submenu-list-item-content {
    font-size: 1rem;
    line-height: 1.5;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }

  .submenu-list-item-content p {
    display: flex;
    margin: 0;
  }

  .submenu-list-item-content img {
    width: 1rem;
    height: auto;
  }
}

.dropdown-toggle {
  display: flex;
  padding: 28px 16px;
}

.locale-short-name {
  margin-left: .5rem;
  align-self: center;
  color: var(--text);
  word-break: normal;
  line-height: 1;
  text-decoration: none;
  transition: color .35s;
  position: relative;
  text-transform: uppercase;
}

.locale-short-name:hover {
  color: var(--green);
  }

.nav-language-switch {
  background-color: var(--white);
  width: 6rem;
  min-width: 4rem;
  position: absolute;
  top: 88px;
}

@media (min-width: 1248px) {
  .nav-language-switch {
    top: 80px;
  }
}

.nav-language-wrapper {
  border-top: 1px solid var(--green);
  border-bottom: 1px solid var(--lightgrey);
  display: flex;
  justify-content: center;
}

.nav-language-submenu {
  margin: 0;
  list-style-type: none;
}

.nav-language-list-item {
  list-style: none;
  text-align: center;
}

.nav-language-list-item-link {
  color: var(--text);
  word-break: normal;
  line-height: 1;
  text-decoration: none;
  transition: color .35s;
  position: relative;
  text-transform: uppercase;
}

.dropdown-toggle .nav-language-switch {
  display:none;
}

.dropdown-toggle:hover .nav-language-switch {
  display:block;
  z-index: 1;
}


article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

h1 {
  font-size: 2rem;
}

@media (min-width: 950px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  color: var(--blue);
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.block-type-heading h2:after {
  content: "";
  display: block;
  width: 8rem;
  height: 3px;
  margin: 1rem 0;
  background: var(--blue);
}

@media (min-width: 950px) {
  h2 {
    font-size: 2rem;
    line-height: 1.4;
  }
}

h3 {
  font-size: 1.25rem;
  line-height: 1.4;
}

@media (min-width: 950px) {
  h3 {
      font-size: 1.5rem;
  }
}

h4 {
  text-transform: uppercase;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  color: var(--grey);
  line-height: 1.4;
}

@media (min-width: 950px) {
  h4 {
      font-size: 1.5rem;
  }
}

h5 {
  font-size: 1.1rem;
  margin: 0;
}

ul {
  padding-left: 0;
  margin-top: 0;
  margin-left: 1.5rem;
}

ul li {
  list-style-type: disc;
}

ul li > ul {
  padding-left: 1rem;
}

ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid var(--lightgrey);
  text-decoration: none;
  color: var(--grey);
}

ul li a:hover {
  color: var(--green);
}



@media (min-width: 1248px) {
  header {
     flex-direction: row;
     justify-content: center;
  }

  .nav-menu > ul {
    display: flex;
  }

  ul li a {
    border-bottom: none;
  }

  ul li a:after {
    background-image: none;
  }

  ul li > ul {
    padding-left: 0;
  }

  .block-type-text {
    margin-bottom: 1.5rem;
  }

  hr {
    border-top: 1px solid var(--grey);
  }

}

