/*!
Theme Name: Orchard
Author: Orchard
Description: Orchard Theme
Version: 1.0.0
Text Domain: orchard
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
 *
 * 1.0 - MLD-Erkrankung Landing Page
 *   1.1 - Helpers
 *   1.2 - Base
 *   1.3 - Hero
 *   1.4 - Video Context
 *   1.5 - Items List
 * 2.0 - Legal Page
 */

/* --- / --- */

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */

.hamburger {
  padding: 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger.is-active:hover,
.hamburger:hover {
  opacity: 0.7;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner:after,
.hamburger.is-active .hamburger-inner:before {
  background-color: #000;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
  width: 40px;
  height: 4px;
  background-color: #000;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner:after,
.hamburger-inner:before {
  content: "";
  display: block;
}

.hamburger-inner:before {
  top: -10px;
}

.hamburger-inner:after {
  bottom: -10px;
}

.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin .hamburger-inner:before {
  transition: top 0.1s ease-in 0.25s, opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner:after {
  transition: bottom 0.1s ease-in 0.25s,
    transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin.is-active .hamburger-inner:before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s ease-out 0.12s;
}

.hamburger--spin.is-active .hamburger-inner:after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out,
    transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
}

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

body,
html {
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
}

body {
  background-color: #fff;
  overflow-x: hidden !important;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: button;
}

[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[hidden],
template {
  display: none;
}

.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

.flex-1-3 {
  flex-basis: 33.33%;
  flex-grow: 1;
}

.flex-2-3 {
  flex-basis: 66.66%;
  flex-grow: 2;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignleft,
a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignleft,
.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.gallery-caption,
.wp-caption .wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

.h-100 {
  height: 100%;
}

input {
  -webkit-appearance: none;
  border: 1px solid #919191;
  padding: 10px;
}

img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

nav ul {
  list-style: none;
  padding: 0;
}

ul {
  list-style: outside;
}

ol {
  list-style: decimal outside;
}

ol,
ul {
  padding-left: 0;
  margin-top: 0;
}

code,
ol ol,
ol ul,
ul ol,
ul ul {
  font-size: 90%;
}

code {
  padding: 0.2rem 0.5rem;
  margin: 0 0.2rem;
  white-space: nowrap;
  background: #f1f1f1;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
}

pre > code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre;
}

td,
th {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #e1e1e1;
}

.full-width {
  width: 100%;
  box-sizing: border-box;
}

.max-full-width {
  max-width: 100%;
  box-sizing: border-box;
}

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.table {
  position: relative;
  display: table;
  width: 100%;
}

.table .vertical-align {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

.full-bleed {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

hr {
  margin: 0 0 30px auto;
  border-width: 0;
  border-top: 2px solid #f5f5f5;
}

button#catapultCookie {
  line-height: 20px;
}

.no-margin {
  margin: 0 auto;
}

.no-spacing {
  margin: 0 !important;
}

.no-padding {
  padding: 0;
}

.no-padding-top {
  padding-top: 0;
}

.no-padding-bottom {
  padding-bottom: 0;
}

.show-on-mobile {
  display: none;
  visibility: hidden;
  opacity: 0;
}

.bg-white {
  background-color: #fff;
}

.bg-grey {
  background-color: #f0f0f0;
}

.bg-light-gray {
  background-color: #f0f0f0;
}

.video-context.bg-grey,
.video-context.video-context--reverse.bg-grey {
  background-color: #f0f0f0;
}

.video-context.bg-white,
.video-context.video-context--reverse.bg-white {
  background-color: #ffffff;
}

.video-context__image img {
  display: inline-block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* TEXT AND IMAGE BLOCK */
.lower-text {
  margin-top: 40px;
}

.text-image-block {
  h2 {
    margin-bottom: 10px;
  }

  .items-list__row {
    width: 100%;
  }
}

/* ICON BULLETS BLOCK */
.icons_container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: start;
}

.bullets_icon {
  width: 50px;
  height: 50px;
}

.icons_list_item {
  display: flex;
  gap: 2rem;
  font-weight: bold;
  align-items: center;
}

.downloads-container {
  display: flex;
  gap: 1rem;
  flex-basis: 33%;
  justify-content: flex-end;

  @media (max-width: 767px) {
    flex-direction: column;
  }
}

.download-thumbnail {
  max-width: 130px;
}

.img-caption {
  text-align: center;
  font-size: 14px;
  margin-top: 5px;
}

.postcode-form {
  text-align: center;
}

.form-row {
  margin-top: 40px;
  margin-bottom: 40px;
}

.postcode-input {
  width: 200px;
  padding: 10px;
  font-size: 16px;
}

.postcode-submit {
  padding: 12px 24px;
  font-size: 16px;
  background-color: #1f4f62;
  color: white;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;

  + .wpcf7-spinner {
    display: none;
  }
}

.postcode-submit:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transform: skewX(-30deg);
  transition: all 0.3s ease;
}

.postcode-submit:hover {
  background-color: #123143;
  color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.postcode-submit:hover:before {
  left: 100%;
}

/* STEPS BLOCK */
.steps-block {
  background: #ececec;
}

.steps-block.bg-white {
  background: #fff;
}

.steps-block.bg-grey {
  background: #ececec;
}

.steps-block.bg-darker-grey {
  background: #e5e5e5;
}

.step {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.step-image-container.reverse {
  order: 2;
}

.video-context__video.reverse {
  order: 2;
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-image {
  max-width: 300px;
}

.typical p,
.atypical p {
  display: inline;
}

.typical {
  margin-bottom: 20px;
  margin-top: 20px;
}

.typical-header {
  color: #066d3a;
  font-weight: bold;
  text-transform: uppercase;
}

.atypical-header {
  color: #ab1b5c;
  font-weight: bold;
  text-transform: uppercase;
}

.white-box-message {
  border-radius: 8px;
  background-color: #fff;
  margin-top: 25px;
  padding: 15px;
}

.white-box-message strong {
  color: #1b3d50;
}

/* MESSAGING BLOCK */
.messaging-block {
  padding: 0px 0 45px 0;

  p,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: #066d3a;
    font-weight: bold;
    text-align: left;
  }

  p {
    font-size: 30px;
    line-height: 36px;
  }

  strong {
    color: #ab1b5c;
  }
}

.messaging-block-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: -30px;
  width: 15px;
  height: 100%;
  background-color: #ab1b5c;
}

.messaging-block .messaging-block-wrapper {
  max-width: 738px;
  position: relative;
}

.steps-block + .messaging-block {
  padding-top: 40px;
}

/* END MESSAGING BLOCK */

/* STICKY NAVIGATION BLOCK */
#sticky-nav {
  background: #1b3d50;
  float: left;
  position: sticky;
  right: 0;
  top: 200px;
  padding: 15px;
  padding-top: 0;
  width: 225px;
  margin: 50px 0 0 0px;
  z-index: 100;

  a {
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    line-height: 16px;
    font-weight: bold;
    display: block;
    border-bottom: 1px solid #ffffff;
    padding: 0.8rem;

    &:hover {
      text-decoration: none;
    }
  }

  li:first-of-type a {
    padding-top: 15px;
  }

  .menu-link.active {
    background: #1f4f62;
    color: #fff;
  }

  @media (max-width: 1250px) {
    display: none;
  }
}

@media (min-width: 1251px) {
  .sticky-nav-spacing {
    padding-left: 300px !important;
    padding-right: 130px !important;
  }
}
/* END STICKY NAVIGATION BLOCK */

/* THREE CARD BLOCK */
#three-card-block {
  .three-card-card {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  h2 {
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 15px;
    margin-right: 0;
    margin-left: 0;
    width: 80%;
    display: flex;
    align-items: flex-start;

    @media (min-width: 992px) {
      min-height: 72px;
    }
  }

  .img-wrapper {
    height: 364px;
    max-width: 376px;
    width: 100%;
    border-radius: 8px;
    margin: 0 0 25px;
    flex-shrink: 0;

    img {
      height: 100%;
      width: 100%;
      object-fit: cover;
      border-radius: 8px;
    }
  }

  .three-card-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: stretch;

    @media (max-width: 991px) {
      grid-template-columns: repeat(2, 1fr);
    }

    @media (max-width: 767px) {
      grid-template-columns: 1fr;
    }
  }

  p {
    width: 90%;
    flex-grow: 1;
  }

  .three-card-cta {
    margin-top: 20px;
    color: #ab1b5c;
    font-size: 18px;
    line-height: 22px;
    font-weight: bold;
    width: 90%;
    margin-bottom: 12px;

    &:hover {
      text-decoration: none;
    }
  }
}
/* END THREE CARD BLOCK */

/* BOX CTA */
#box-cta {
  padding: 0;

  &.medium-bottom-padding {
    padding-bottom: 50px;
  }
  .box {
    display: block;
    padding: 20px 40px;
    border-radius: 12px;
    color: #fff;
    text-decoration: underline;
    margin: 0 auto;
    width: 80%;
    max-width: 768px;
    background-color: #ab1b5c;
    text-align: center;
    font-size: 24px;
    line-height: 26px;
    font-weight: bold;

    &:hover {
      background-color: #900e48;
      text-decoration: none;
    }
  }
}
/* END BOX CTA */

/* KEY RESOURCES BLOCK */
.opening-text {
  font-size: 24px;
  line-height: 30px;
  color: #1b3d50;
  margin-bottom: 60px;
}

.messaging-block + .key-resources {
  padding-top: 35px;
  padding-bottom: 100px;

  p {
    font-size: 24px;
    line-height: 30px;
    color: #1b3d50;
  }
}

.key-resources {
  background: #f0f0f0;
  padding-top: 22px;
  padding-bottom: 43px;

  .downloads-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
    gap: 22px;

    .download-item {
      flex-basis: 50%;
    }

    .download {
      display: inline-block;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 16px;
      padding: 12px 60px 12px 10px;
      background: #ab1b5c;
      text-decoration: none;
      font-size: 24px;
      color: #ffffff;
      font-weight: bold;
      border-radius: 20px;

      &:hover {
        background-color: #900e48;
      }
    }

    @media (max-width: 768px) {
      .download {
        font-size: 20px;
      }
    }
  
  }

  
  h2 {
    color: #1b3d50;
    margin-bottom: 5px;
  }

  p {
    color: #1b3d50;
  }
}

@media (max-width: 991px) {
  .xs-hidden {
    display: none;
  }
}

@media (min-width: 992px) {
  .lg-hidden {
    display: none;
  }
}

.swiper-controls .swiper-button-next,
.swiper-controls .swiper-button-prev {
  outline: none !important;
}

.white-bg {
  background-color: #fff;
}

.light-green-bg,
.our-story-green-bg {
  background-color: #75a758;
}

.dk-blue-bg,
.our-story-blue-bg {
  background-color: #1f4f62;
}

.dk-blue-bg a,
.dk-blue-bg h1,
.dk-blue-bg h2,
.dk-blue-bg h3,
.dk-blue-bg h4,
.dk-blue-bg h5,
.dk-blue-bg h6,
.dk-blue-bg p,
.our-story-blue-bg a,
.our-story-blue-bg h1,
.our-story-blue-bg h2,
.our-story-blue-bg h3,
.our-story-blue-bg h4,
.our-story-blue-bg h5,
.our-story-blue-bg h6,
.our-story-blue-bg p {
  color: #fff;
}

.our-story-red-bg,
.red-bg {
  background-color: #c80049;
}

.light-grey-bg {
  background-color: #f8f8f8;
}

.grey-bg {
  background-color: #f0f0f0;
}

.light-blue-bg {
  background-color: #dde5e7;
}

.margin-b {
  margin-bottom: 25px;
}

@media (min-width: 992px) {
  .margin-b {
    margin-bottom: 50px;
  }
}

.margin-t {
  margin-top: 25px;
}

@media (min-width: 992px) {
  .margin-t {
    margin-top: 50px;
  }
}

.container,
.container-fluid {
  margin-right: auto;
  margin-left: auto;
}

section .container {
  max-width: 1160px;
}

.container {
  max-width: 1366px;
  padding: 0 3.6231884058%;
}

@media (min-width: 1366px) {
  .container {
    padding: 0;
  }
}

.row {
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (min-width: 992px) {
  .row-offset-15 {
    margin-left: -15px;
    margin-right: -15px;
  }
}

.row.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.row.column {
  -webkit-box-orient: column;
  -webkit-box-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.row.h-100 {
  height: 100%;
}

.col.reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.col,
.col-xs,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-offset-0,
.col-xs-offset-1,
.col-xs-offset-2,
.col-xs-offset-3,
.col-xs-offset-4,
.col-xs-offset-5,
.col-xs-offset-6,
.col-xs-offset-7,
.col-xs-offset-8,
.col-xs-offset-9,
.col-xs-offset-10,
.col-xs-offset-11,
.col-xs-offset-12 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.col,
.col-xs {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%;
}

.col-xs-1 {
  -ms-flex-preferred-size: 8.33333333%;
  flex-basis: 8.33333333%;
  max-width: 8.33333333%;
}

.col-xs-2 {
  -ms-flex-preferred-size: 16.66666667%;
  flex-basis: 16.66666667%;
  max-width: 16.66666667%;
}

.col-xs-3 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  -ms-flex-preferred-size: 33.33333333%;
  flex-basis: 33.33333333%;
  max-width: 33.33333333%;
}

.col-xs-5 {
  -ms-flex-preferred-size: 41.66666667%;
  flex-basis: 41.66666667%;
  max-width: 41.66666667%;
}

.col-xs-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  -ms-flex-preferred-size: 58.33333333%;
  flex-basis: 58.33333333%;
  max-width: 58.33333333%;
}

.col-xs-8 {
  -ms-flex-preferred-size: 66.66666667%;
  flex-basis: 66.66666667%;
  max-width: 66.66666667%;
}

.col-xs-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  -ms-flex-preferred-size: 83.33333333%;
  flex-basis: 83.33333333%;
  max-width: 83.33333333%;
}

.col-xs-11 {
  -ms-flex-preferred-size: 91.66666667%;
  flex-basis: 91.66666667%;
  max-width: 91.66666667%;
}

.col,
.col-xs-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

.col-xs-offset-0 {
  margin-left: 0;
}

.col-xs-offset-1 {
  margin-left: 8.33333333%;
}

.col-xs-offset-2 {
  margin-left: 16.66666667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.33333333%;
}

.col-xs-offset-5 {
  margin-left: 41.66666667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.33333333%;
}

.col-xs-offset-8 {
  margin-left: 66.66666667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.33333333%;
}

.col-xs-offset-11 {
  margin-left: 91.66666667%;
}

.start-xs {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: start;
}

.center-xs {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.end-xs {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  text-align: end;
}

.top-xs {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.middle-xs {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.bottom-xs {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.around-xs {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.between-xs {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.first-xs {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.last-xs {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

@media only screen and (min-width: 768px) {
  .col-sm,
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12,
  .col-sm-offset-0,
  .col-sm-offset-1,
  .col-sm-offset-2,
  .col-sm-offset-3,
  .col-sm-offset-4,
  .col-sm-offset-5,
  .col-sm-offset-6,
  .col-sm-offset-7,
  .col-sm-offset-8,
  .col-sm-offset-9,
  .col-sm-offset-10,
  .col-sm-offset-11,
  .col-sm-offset-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .col-sm {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-sm-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-sm-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-sm-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-sm-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-sm-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-sm-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-sm-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-sm-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-sm-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-sm-offset-0 {
    margin-left: 0;
  }

  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-sm-offset-3 {
    margin-left: 25%;
  }

  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-sm-offset-6 {
    margin-left: 50%;
  }

  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-sm-offset-9 {
    margin-left: 75%;
  }

  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }

  .start-sm {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-sm {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-sm {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-sm {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .middle-sm {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .bottom-sm {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .around-sm {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-sm {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .first-sm {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .last-sm {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media only screen and (min-width: 992px) {
  .col,
  .col-md,
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12,
  .col-md-offset-0,
  .col-md-offset-1,
  .col-md-offset-2,
  .col-md-offset-3,
  .col-md-offset-4,
  .col-md-offset-5,
  .col-md-offset-6,
  .col-md-offset-7,
  .col-md-offset-8,
  .col-md-offset-9,
  .col-md-offset-10,
  .col-md-offset-11,
  .col-md-offset-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .col-md {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-md-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-md-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-md-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-md-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-md-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-md-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-md-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-md-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  .col,
  .col-md-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-md-offset-0 {
    margin-left: 0;
  }

  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-md-offset-3 {
    margin-left: 25%;
  }

  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-md-offset-6 {
    margin-left: 50%;
  }

  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-md-offset-9 {
    margin-left: 75%;
  }

  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }

  .start-md {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-md {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-md {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-md {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .middle-md {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .bottom-md {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .around-md {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-md {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .first-md {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .last-md {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .md-hidden {
    display: none;
  }
}

.visible-md {
  display: block !important;
}

@media (min-width: 992px) {
  .visible-md {
    display: none !important;
  }
}

@media only screen and (min-width: 1366px) {
  .col-lg,
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12,
  .col-lg-offset-0,
  .col-lg-offset-1,
  .col-lg-offset-2,
  .col-lg-offset-3,
  .col-lg-offset-4,
  .col-lg-offset-5,
  .col-lg-offset-6,
  .col-lg-offset-7,
  .col-lg-offset-8,
  .col-lg-offset-9,
  .col-lg-offset-10,
  .col-lg-offset-11,
  .col-lg-offset-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .col-lg {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-lg-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-lg-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-lg-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-lg-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-lg-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-lg-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-lg-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-lg-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-lg-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-lg-offset-0 {
    margin-left: 0;
  }

  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-lg-offset-3 {
    margin-left: 25%;
  }

  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-lg-offset-6 {
    margin-left: 50%;
  }

  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-lg-offset-9 {
    margin-left: 75%;
  }

  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }

  .start-lg {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-lg {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-lg {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-lg {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .middle-lg {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .bottom-lg {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .around-lg {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-lg {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .first-lg {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .last-lg {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media only screen and (min-width: 1920px) {
  .col-xl,
  .col-xl-1,
  .col-xl-2,
  .col-xl-3,
  .col-xl-4,
  .col-xl-5,
  .col-xl-6,
  .col-xl-7,
  .col-xl-8,
  .col-xl-9,
  .col-xl-10,
  .col-xl-11,
  .col-xl-12,
  .col-xl-offset-0,
  .col-xl-offset-1,
  .col-xl-offset-2,
  .col-xl-offset-3,
  .col-xl-offset-4,
  .col-xl-offset-5,
  .col-xl-offset-6,
  .col-xl-offset-7,
  .col-xl-offset-8,
  .col-xl-offset-9,
  .col-xl-offset-10,
  .col-xl-offset-11,
  .col-xl-offset-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .col-xl {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-xl-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-xl-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-xl-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-xl-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-xl-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-xl-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-xl-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-xl-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-xl-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-xl-offset-0 {
    margin-left: 0;
  }

  .col-xl-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-xl-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-xl-offset-3 {
    margin-left: 25%;
  }

  .col-xl-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-xl-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-xl-offset-6 {
    margin-left: 50%;
  }

  .col-xl-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-xl-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-xl-offset-9 {
    margin-left: 75%;
  }

  .col-xl-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-xl-offset-11 {
    margin-left: 91.66666667%;
  }

  .start-xl {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-xl {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-xl {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-xl {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .middle-xl {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .bottom-xl {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .around-xl {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-xl {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .first-xl {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .last-xl {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

body,
html {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}

body {
  position: relative;
  display: block;
  width: 100%;
  font-size: 16px;
  font-family: proxima-nova, Arial, sans-serif;
  opacity: 1;
  word-wrap: break-word;
  z-index: 1;
}

::-moz-selection {
  color: #fff;
  background-color: #1c1c1c;
}

::selection {
  color: #fff;
  background-color: #1c1c1c;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: proxima-nova, Arial, sans-serif;
  margin: 0 auto 15px;
  word-wrap: break-word;
  font-weight: 700;
  color: #1f4f62;
}

h1.green,
h2.green,
h3.green,
h4.green,
h5.green,
h6.green {
  color: #779761;
}

h1 + p:last-of-type,
h2 + p:last-of-type,
h3 + p:last-of-type,
h4 + p:last-of-type,
h5 + p:last-of-type,
h6 + p:last-of-type {
  margin-bottom: 15px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  text-decoration: none;
}

h1 {
  font-size: 2.375rem;
  line-height: 2.375rem;
  font-weight: 700;
}

@media (min-width: 992px) {
  h1 {
    font-size: 2.875rem;
    line-height: 2.875rem;
  }
}

h1.page-not-found {
  font-size: 7.5rem;
  line-height: 7.5rem;
}

h2 {
  font-size: 1.625rem;
  line-height: 2rem;
  margin: 0 auto 30px;
}

@media (min-width: 992px) {
  h2 {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}

h3 {
  font-size: 1.25rem;
  line-height: 1.25rem;
  margin-bottom: 0.42em;
}

@media (min-width: 992px) {
  h3 {
    font-size: 1.4375rem;
    line-height: 1.4375rem;
  }
}

h4 {
  font-size: 0.875rem;
  line-height: 1rem;
}

@media (min-width: 992px) {
  h4 {
    font-size: 0.9375rem;
    line-height: 1.125rem;
  }
}

h5 {
  font-size: 0.875rem;
  line-height: 1rem;
}

@media (min-width: 992px) {
  h5 {
    font-size: 0.9375rem;
    line-height: 1.125rem;
  }
}

h6 {
  font-size: 0.875rem;
  line-height: 1rem;
}

@media (min-width: 992px) {
  h6 {
    font-size: 0.9375rem;
    line-height: 1.125rem;
  }
}

span {
  line-height: 100%;
}

ol li,
p,
ul li {
  color: #1c1c1c;
  font-family: proxima-nova, Arial, sans-serif;
  font-size: 1.125rem;
  line-height: 1.375rem;
  margin-top: 0;
  margin-bottom: 0;
  word-wrap: break-word;
}

ol li + p,
p + p,
ul li + p {
  margin-top: 15px;
}

ol li + p:last-of-type,
p + p:last-of-type,
ul li + p:last-of-type {
  margin-bottom: 15px;
}

ol li + .btn,
p + .btn,
ul li + .btn {
  margin-top: 25px;
}

ol li.larger,
p.larger,
ul li.larger {
  font-size: 1rem;
  line-height: 1.5rem;
}

ol li.smallprint,
p.smallprint,
ul li.smallprint {
  font-size: 0.6875rem;
  line-height: 1rem;
  padding-top: 60px;
}

p a {
  font-weight: 700;
  text-decoration: none;
}

p a:hover {
  text-decoration: underline;
}

a {
  color: inherit;
  transition: 0.4s ease;
}

a.no-underline {
  text-decoration: none;
}

.uppercase {
  text-transform: uppercase;
}

.btn {
  font-size: 1rem;
  line-height: 1rem;
  font-family: proxima-nova, Arial, sans-serif;
  position: relative;
  padding: 15px 30px;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  color: #fff !important;
  border-radius: 4px;
  overflow: hidden;
  display: inline-block;
  background-color: #1f4f62;
  text-align: center;
  transition: 0.2s ease;
  min-width: 180px;
  font-weight: 700;
}

.btn:hover {
  background-color: #13303b;
  color: #fff;
  transition: 0.4s ease;
  text-decoration: none !important;
}

.btn + .btn {
  margin-left: 16px;
}

.btn.btn--text-link {
  font-size: 1rem;
  line-height: 1rem;
  padding: 0;
  color: #1f4f62;
  font-weight: 700;
  border: 0;
  text-align: left;
  background-color: transparent;
  font-style: italic;
}

.btn.btn--text-link.white {
  color: #fff;
}

.btn.btn--text-link:after {
  content: "\BB";
  display: inline;
}

.btn.btn--text-link-news {
  font-size: 1.625rem;
  line-height: 1.625rem;
}

.btn.btn--text-link-news:after {
  content: "\BB";
  display: none;
}

.btn.btn--text-link-news:before {
  content: "\AB";
  display: inline;
}

.align-left {
  text-align: left;
}

.align-right {
  text-align: right;
}

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

.semi-bold {
  font-family: proxima-nova, Arial, sans-serif;
}

section {
  padding: 30px 0;
}

@media (min-width: 992px) {
  section {
    padding: 60px 0;
  }
}

section.sm-padding {
  padding: 48px 0;
}

section.no-padding {
  padding: 0;
}

section.no-padding-b {
  padding-bottom: 0;
}

section.no-padding-t,
section.white-bg + section.white-bg {
  padding-top: 0;
}

.page-wrapper {
  padding-top: 76px;
}

@media (min-width: 992px) {
  .page-wrapper {
    padding-top: 92px;
  }
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  background-color: #fff;
  padding: 0 20px;
  border-bottom: 3px solid #1f4f62;
}

header .container {
  padding: 0;
}

.header-strapline {
  margin: 0;
  margin-bottom: 20px;
  margin-top: 60px;

  @media (max-width: 778px) {
    margin-top: 20px;
  }

  p {
    font-size: 16px;
    line-height: 20px;
  }
}

.nav__logo {
  display: inline-block;
  padding: 20px 0 5px 0;
  max-width: 120px;
}

@media (min-width: 992px) {
  .nav__logo {
    padding: 30px 0;
    max-width: none;
    max-width: 150px;
  }
}

select {
  border-radius: 0;
  border: 1px solid #707070;
  padding: 10px;
  width: 165px;
  margin-top: 10px;
  outline: none;
  margin-bottom: 15px;
}

@media (min-width: 321px) {
  select {
    width: 110px;
    margin-top: 20px;
    margin-bottom: 0;
  }
}

@media (min-width: 992px) {
  select {
    margin-bottom: 15px;
    margin-top: 0;
    width: auto;
  }
}

.country__container {
  display: none;
}

@media (min-width: 768px) {
  .country__container {
    display: block;
  }
}

footer {
  padding: 67px 0;
  background: #326d46;
  border-top: 40px solid #cbddbf;
}

footer .container {
  max-width: 1160px;
}

.job-code {
  max-width: 1160px;
  margin-bottom: 30px;
  margin-top: 50px;
}

footer a,
footer h1,
footer h2,
footer h3,
footer h4,
footer h5,
footer h6,
footer p {
  color: #fff;
}

footer p {
  color: #1f4f62;
  font-size: 14px;

  a {
    color: #1f4f62;
  }

  + .landing-footer__nav {
    margin-top: 15px;
  }
}

@media (min-width: 1366px) {
  footer .container {
    //padding: 0 65px;
  }
}

footer li {
  margin: 0 0 5px;
}

.footer__smallprint {
  margin: 40px 0 0;
}

.footer__links li {
  display: inline-block;
  font-size: 0.875rem;
  line-height: 0.875rem;
}

@media (max-width: 1250px) and (min-width: 992px) {
  nav#main-nav li a {
    font-size: 12px !important;
  }
}

nav#main-nav ul {
  margin: 0;
}

a:hover {
  text-decoration: none !important;
}

/* MOBILE MENU */
.mobile-menu {
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f1f1f1;
  padding: 30px 0;
  z-index: 999;
}

@media (min-width: 700px) {
  .mobile-menu {
    display: none;
  }
}

.mobile-menu ul {
  display: flex;
  justify-content: space-around;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.mobile-menu ul li a {
  text-decoration: none;
  color: #333;
}

.mobile-menu .footer-icon {
  margin-bottom: 0.25rem;
}

.mobile-menu ul li.current-menu-item a {
  color: #ab1b5c;
  font-weight: bold;
  text-decoration: underline;
}
/* END MOBILE MENU */

/* COOKIEYES OVERRIDE */
.cky-revisit-bottom-left,
.cky-revisit-bottom-right {
  bottom: 130px !important;
}
/* END COOKIEYES OVERRIDE */

@media (max-width: 991px) {
  nav#main-nav.is-open {
    transform: translateZ(0);
    transition: transform 0.3s ease;
  }
}

@media (max-width: 991px) {
  nav#main-nav {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 79px;
    left: 0;
    z-index: 100;
    background-color: #fff;
    transform: translate3d(-100%, 0, 0);
    transition: transform 0s ease;
    padding: 25px 0;
  }
}

nav#main-nav > ul > .menu-item {
  display: block;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
}

@media (min-width: 992px) {
  nav#main-nav > ul > .menu-item {
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    border-bottom: none;
  }
}

nav#main-nav > ul > .menu-item > a {
  display: inline-block;
  padding: 15px 10px;
  color: #1f4f62;
  text-decoration: none !important;
  font-size: 1rem;
  line-height: 1rem;
  text-decoration: none;
  vertical-align: middle;
  width: 100%;
  font-weight: 700;
}

@media (min-width: 992px) {
  nav#main-nav > ul > .menu-item > a {
    width: auto;
    padding: 15px 10px 21px;
    font-size: 1rem;
    line-height: 1rem;
  }
}

nav#main-nav > ul > .menu-item:hover:after {
  content: "";
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  bottom: 0;
  background-color: #1f4f62;
}

nav#main-nav > ul > .menu-item:hover > a {
  padding: 15px 10px;
  color: #1f4f62;
  display: inline-block;
  text-decoration: none;
  vertical-align: middle;
}

@media (min-width: 992px) {
  nav#main-nav > ul > .menu-item:hover > a {
    padding: 15px 10px 21px;
  }
}

nav#main-nav > ul > .menu-item.current-menu-item > a,
nav#main-nav > ul > .menu-item.current_page_parent > a {
  background-color: #1f4f62 !important;
  color: #fff !important;
}

nav#main-nav .nav__chevron {
  transition: transform 0.2s ease;
}

nav#main-nav .nav__chevron.rotated {
  transform: rotate(90deg);
  transition: transform 0.2s ease;
}

nav#main-nav .sub-menu {
  background-color: #f0f0f0;
  margin: 0;
  text-align: center;
}

@media (min-width: 992px) {
  nav#main-nav .sub-menu {
    display: none;
    margin: 0;
    z-index: 99;
    position: absolute;
    top: 55px;
    left: 50%;
    transform: translate3d(-50%, 0, 0);
    min-width: 500px;
    width: 100%;
    background-color: #f0f0f0;
    text-align: center;
  }
}

nav#main-nav .sub-menu > li {
  display: block;
  text-align: center;
  border-bottom: none;
}

@media (min-width: 992px) {
  nav#main-nav .sub-menu > li {
    text-align: left;
    display: inline-block;
  }
}

nav#main-nav .sub-menu > li.current-menu-item {
  background-color: #1f4f62;
}

nav#main-nav .sub-menu > li.current-menu-item a {
  color: #fff;
}

nav#main-nav .sub-menu > li:hover:after {
  display: none !important;
}

nav#main-nav .sub-menu > li > a {
  display: block;
  color: #1f4f62;
  font-size: 0.875rem;
  line-height: 0.875rem;
  text-decoration: none;
}

@media (min-width: 992px) {
  nav#main-nav .sub-menu > li > a {
    font-size: 0.875rem;
    line-height: 0.875rem;
  }
}

@media (min-width: 992px) {
  nav#main-nav #menu-item-124.current-menu-item > .sub-menu,
  nav#main-nav #menu-item-136.current-menu-item > .sub-menu,
  nav#main-nav #menu-item-443.current-menu-item > .sub-menu,
  nav#main-nav #menu-item-444.current-menu-item > .sub-menu,
  nav#main-nav #menu-item-466.current-menu-item > .sub-menu,
  nav#main-nav .current_page_parent > .sub-menu {
    display: block;
  }
}

nav#main-nav .current-menu-item > .sub-menu li:first-child {
  background-color: #1f4f62;
}

nav#main-nav .current-menu-item > .sub-menu li:first-child a {
  color: #fff;
}

@media (min-width: 992px) {
  nav#main-nav .menu-item-has-children.current-menu-item:before,
  nav#main-nav .menu-item-has-children.current-menu-parent:before {
    content: "";
    display: block;
    width: 100%;
    position: fixed;
    top: 125px;
    background-color: #f0f0f0;
    height: 44px;
    left: 0;
  }
}

@media (min-width: 992px) {
  body.logged-in nav#main-nav .menu-item-has-children.current-menu-item:before,
  body.logged-in
    nav#main-nav
    .menu-item-has-children.current-menu-parent:before {
    top: 157px;
  }
}

.sub-link {
  background-color: #f0f0f0 !important;
}

.sub-link a {
  color: #1f4f62 !important;
}

.sub-link:active,
.sub-link:focus,
.sub-link:hover {
  background-color: #1f4f62 !important;
}

.sub-link:active a,
.sub-link:focus a,
.sub-link:hover a {
  color: #fff !important;
}

.sub-link:first-child {
  background-color: #f0f0f0 !important;
}

.sub-link:first-child a {
  color: #1f4f62 !important;
}

.sub-link:first-child:active,
.sub-link:first-child:focus,
.sub-link:first-child:hover {
  background-color: #1f4f62 !important;
}

.sub-link:first-child:active a,
.sub-link:first-child:focus a,
.sub-link:first-child:hover a {
  color: #fff !important;
}

.case-study-template-default .sub-menu {
  display: none !important;
}

.global__link {
  color: #1f4f62;
  text-decoration: none;
  font-size: 0.6875rem;
  line-height: 0.8125rem;
  padding-right: 0;
  margin-top: 10px;
  display: none;
}

@media (min-width: 992px) {
  .global__link {
    padding-right: 10px;
    margin: 27px 0;
    font-size: 0.875rem;
    line-height: 1rem;
    display: inline-block;
  }
}

.global__link:hover {
  text-decoration: underline;
}

.hamburger {
  position: absolute;
  top: 16px;
  right: 7px;
  outline: #326d46;
}

.hero {
  height: auto;
  max-height: 700px;
  min-height: 400px;
  background-size: cover;
  position: relative;
}

@media (min-width: 768px) {
  .hero {
    max-height: 700px;
    position: relative;
    min-height: 500px;
  }
}

@media (min-width: 1300px) {
  .hero {
    max-height: 900px;
  }
}

.hero .background {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: 50%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

@media (min-width: 768px) {
  .hero.hero--extra-height {
    max-height: 700px;
    position: relative;
    min-height: 700px;
  }
}

.hero__desktop {
  display: none;
}

@media (min-width: 768px) {
  .hero__desktop {
    display: block;
  }
}

.hero__mobile {
  display: block;
}

@media (min-width: 768px) {
  .hero__mobile {
    display: none;
  }
}

.hero__title-wrapper {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 100%;
  background-color: #1b3d50;
  padding: 35px 6.038647343%;
  display: flex;
  align-items: center;
  height: 247px;
}

@media (min-width: 768px) {
  .hero__title-wrapper {
    bottom: 15%;
    padding: 45px 73px 55px 95px;
    width: 669px;
  }
}

@media (max-width: 768px) {
  .hero__title-wrapper {
    height: auto;
    bottom: 0;
    top: auto;
    transform: none;
  }
}

.hero__title {
  font-size: 1.5rem;
  line-height: 1.75rem;
  margin: 0;
  color: #fff;
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }
}

.hero__sub-title {
  font-size: 1rem;
  line-height: 1.25rem;
  color: #fff;
  margin: 15px 0 0;
}

@media (min-width: 768px) {
  .hero__sub-title {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
}

.hero__description {
  display: none;
  position: absolute;
  bottom: 15%;
}

@media (min-width: 992px) {
  .hero__description {
    padding: 0 73px 0 95px;
    display: block;
  }
}

.hero__description a {
  margin-top: 0;
}

@media (min-width: 768px) {
  .hero__description {
    width: 570px;
  }
}

.hero__description-header {
  font-size: 1.625rem;
  line-height: 1.625rem;
  color: #fff;
  margin: 0 0 10px;
}

.hero__description-copy {
  font-size: 1.25rem;
  line-height: 1.25rem;
  color: #fff;
}

.two-columns__content {
  margin: 0 0 30px;
}

@media (min-width: 768px) {
  .two-columns__content {
    margin: 0 20px 0 0;
  }
}

.two-columns__content h3 {
  font-size: 1.4375rem;
  line-height: 1.4375rem;
  color: #1f4f62;
  text-align: left;
  margin: 0 0 16px;
}

.two-columns__content p {
  text-align: left;
}

.two-columns__content .thumb_image {
  margin: 0 0 20px;
  display: inline-block;
}

.two-columns__content img {
  border-radius: 4px;
  -webkit-box-shadow: -1px 3px 5px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: -1px 3px 5px 0 rgba(0, 0, 0, 0.3);
  box-shadow: -1px 3px 5px 0 rgba(0, 0, 0, 0.3);
}

.two-columns__content .two-columns__content_inner {
  width: 100%;
}

.two-columns__content .two-columns__content_inner p {
  margin: 0;
  padding: 0;
}

.two-columns__content .btn {
  margin-top: 25px;
}

.two-columns__content-last {
  margin-top: 15px;
}

@media (min-width: 768px) {
  .two-columns__content-last {
    margin: 0 0 0 20px;
  }
}

.case-studies-container {
  padding: 30px 0 10px;
}

@media (min-width: 992px) {
  .case-studies-container {
    padding: 60px 0 40px;
  }
}

.case-studies-container .case__studies {
  margin-bottom: 20px;
}

/* COPY BLOCK  */

.copy-block {
  padding: 40px 0;
}

.copy-block.medium-copy {
  p {
    font-size: 30px;
    line-height: 36px;
    color: #1b3d50;
    text-align: center;
  }
}

.copy-block:first-child {
  padding-top: 60px;
}

.copy-block:last-child {
  padding-bottom: 60px;
}

body.privacy-policy .copy-block:not(:nth-child(2)) {
  padding: 20px 0;
}

.copy-block__title,
.copy-block h2 {
  margin-bottom: 10px;
  font-size: 30px;
}

.copy-block h3,
.copy-block h4,
.copy-block h5,
.copy-block h6 {
  margin-bottom: 20px;
}

.copy-block__content p {
  margin: 0 0 20px;
}

.copy-block__content p:last-child {
  margin: 0;
}

.copy-block__content a {
  font-weight: 400;
  color: #75a758;
}

.copy-block.blue a {
  color: #1b3d50;
  font-weight: bold;
  text-decoration: underline;
}

.copy-block.purple a {
  color: #ab1b5c;
  font-weight: bold;
  text-decoration: underline;
}

.copy-block.black a {
  color: #000000;
  text-decoration: underline;
}

.copy-block__content ul {
  list-style: disc inside;
  margin-bottom: 15px;
}

.copy-block__content ol {
  list-style: decimal inside;
  margin-bottom: 15px;
}

.postcode-popup {
  background-color: #ffffff;
  width: 100%;
  max-width: 980px;
  padding: 50px;
  margin: 0 auto;
}

.lity-close {
  position: absolute;
  color: #1f4f62;
  border: 2px solid #1f4f62;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 10px;
  right: 10px;

  &:hover {
    background-color: #1f4f62;
    color: #fff;
  }
}

/* QUOTE BLOCK */

#quote-block {
  background-color: #f0f0f0;
  padding: 30px 0;
  margin: 57px 0 0 0;
}

.quote {
  position: relative;
  padding-left: 60px;
}

.quote::before {
  content: "";
  position: absolute;
  top: 0;
  left: -35px;
  width: 100%;
  height: 62px;
  background-image: url("images/quote-icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.quote__text {
  font-size: 30px;
  line-height: 36px;
  color: #066d3a;
  font-weight: bold;
  font-style: italic;
}

.quote__author {
  font-size: 18px;
  line-height: 24px;
  color: #000000;
  font-weight: bold;
  font-style: normal;
  display: block;
  text-align: right;
  margin-top: 15px;
}

/* END QUOTE BLOCK */

/* BEHAVIOUR VIDEO BLOCK */
#behaviour-video-block {
  margin-bottom: 50px;
  background: #f0f0f0;
  padding-top: 0;

  .header-wrapper {
    background: #ffffff;
    padding-bottom: 15px;

    h2 {
      margin: 0;
    }
  }

  .content-wrapper {
    padding: 30px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 26px;

    @media (max-width: 768px) {
      flex-direction: column !important;
    }
  }
}
/* END BEHAVIOUR VIDEO BLOCK */

.video-context__video,
.video-context__image {
  width: 376px;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.video-context__image {
  flex: 0 0 376px;
  width: 376px;
  max-height: 500px;
}

.video-right {
  flex-direction: row-reverse;
}

.text-content {
  flex: 1;
  strong {
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    color: #1b3d50;
  }
}

.why-important-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 16px 24px;
  margin-top: 30px;
}

.why-important-header {
  font-size: 20px;
  color: #1b3d50;
  font-weight: bold;
}

.responsive-table {
  overflow-x: auto;
}

.responsive-table table {
  display: block;
  width: 100%;
  max-width: 100%;
}

table {
  border-collapse: collapse;
}

table th,
table td {
  border: 1px solid #d9d9d9;
  padding: 15px 35px;
}

table th {
  font-size: 1.15rem;
  line-height: 1.1;
  font-weight: 700;
  text-align: center;
  color: #1f4f62;
  background-color: #f0f0f0;
}

table td {
  font-size: 0.875rem;
  line-height: 1.5;
}

table tbody tr:nth-child(odd) td {
  background-color: #fff;
}

table tbody tr:nth-child(even) td {
  background-color: #fafafa;
}

.legal-table table th {
  min-width: 250px;
}

.legal-table table td {
  text-align: center;
}

.legal-table table td:last-child {
  text-align: left;
}

.card {
  margin: 30px 0;
  padding: 25px;
  max-width: 470px;
  background-color: #fafcf9;
  border-radius: 10px;
}

.card a {
  font-weight: 700;
}

@media (max-width: 991px) {
  .copy-block {
    padding: 30px 0;
  }
  .copy-block:first-child {
    padding-top: 40px;
  }
  .copy-block:last-child {
    padding-bottom: 40px;
  }
  .copy-block:last-child,
  .copy-block .grey-bg:last-child,
  .copy-block .light-blue-bg:last-child {
    padding-bottom: 40px;
  }
  .copy-block__title,
  .copy-block h2 {
    margin-bottom: 25px;
    font-size: 1.5rem;
  }
  .copy-block h3,
  .copy-block h4,
  .copy-block h5,
  .copy-block h6 {
    margin-bottom: 15px;
  }
  .copy-block__content p {
    margin-bottom: 15px;
  }
  table th {
    font-size: 1rem;
  }
  table th,
  table td {
    padding: 10px 20px;
  }
  .legal-table table th {
    min-width: 100px;
  }
  .legal-table table th:last-child {
    min-width: 250px;
  }
  .card {
    margin: 15px 0;
    padding: 20px;
    border-radius: 8px;
  }
}

@media (max-width: 767px) {
  table th,
  table td {
    padding: 5px;
  }
  table th {
    font-size: 0.875rem;
  }
  table td {
    font-size: 0.7rem;
  }
  .flex-1-3,
  .flex-2-3 {
    flex-basis: auto;
    flex-grow: 1;
    width: 100%;
    margin-right: 10px;
  }
  .icons_list_item {
    flex-direction: column;
  }

  .step {
    flex-direction: column;
    gap: 1.5rem;
  }
  .step h1,
  .step h2,
  .step h3,
  .step h4,
  .step h5,
  .step h6 {
    margin-bottom: 1.5em;
  }
}

/*======
*
* 1.0 - MLD-Erkrankung Landing Page
*
======*/
/* 1.1 - Helpers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.embed-responsive::before {
  display: block;
  content: "";
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.embed-responsive img {
  -o-object-fit: cover;
  object-fit: cover;
}
.embed-responsive-21by9::before {
  padding-top: 42.8571428571%;
}
.embed-responsive-16by9::before {
  padding-top: 56.25%;
}
.embed-responsive-4by3::before {
  padding-top: 75%;
}
.embed-responsive-1by1::before {
  padding-top: 100%;
}

/* 1.2 - Base */
body.page-template-landing-page h2 {
  margin-bottom: 20px;
  font-size: 1.5625rem;
}
body.page-template-landing-page h3 {
  font-size: 1.375rem;
}
body.page-template-landing-page p,
body.page-template-landing-page cite,
body.page-template-landing-page ol li,
body.page-template-landing-page ul li {
  font-size: 0.9375rem;
  line-height: 1.5625rem;
}

body.page-template-landing-page .btn {
  font-weight: 400;
}

.landing-nav {
  margin: 27px 0;
  display: none;
}

.landing-footer {
  font-size: 14px;
  padding: 15px 0;
  background: #eaeaea;
  border-top: 0;
  text-align: center;
}

.landing-footer__nav {
  margin-bottom: 15px;
}

.landing-footer__nav:last-child {
  margin-bottom: 0;
}

.landing-footer__menu {
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-footer__menu .menu-item {
  position: relative;
  margin: 0 10px 0 0;
  padding-right: 11px;
  line-height: 1;
}

.landing-footer__menu .menu-item:last-child {
  margin-right: 0;
  padding-right: 0;
}

.landing-footer__menu .menu-item:after {
  content: "";
  right: 0;
  top: 0;
  position: absolute;
  height: 100%;
  width: 1px;
  background-color: #1f4f62;
}

.landing-footer__menu .menu-item:last-child:after {
  display: none;
}

.landing-footer__menu .menu-item a {
  margin: 0;
  font-size: 14px;
  color: #1f4f62;
  text-decoration: none;
}

.landing-footer__menu .menu-item a:hover,
.landing-footer__menu .menu-item a:focus {
  text-decoration: underline;
}

.landing-footer p {
  margin: 0;
  color: #1f4f62;
}

/* @media Base */
@media (min-width: 992px) {
  .landing-nav {
    display: block;
  }
}

@media (min-width: 768px) {
  body.page-template-landing-page h2 {
    margin-bottom: 30px;
  }

  body.page-template-landing-page h3 {
    font-size: 1.4375rem;
  }

  .landing-footer__menu .menu-item {
    margin-right: 14px;
    padding-right: 15px;
  }
}

@media (min-width: 1366px) {
  body.page-template-landing-page .container {
    max-width: 940px;
  }
}

/* 1.3 - Hero */
.hero__image {
  display: block;
}
.hero__image ~ .hero__mobile {
  display: none;
}
body.page-template-landing-page .hero {
  height: auto;
}
.hero__image ~ .hero__title-wrapper {
  position: static;
}
body.page-template-landing-page
  .hero__title-wrapper.hero__title-wrapper--middle {
  padding-top: 35px;
  padding-bottom: 20px;
  text-align: center;
}
body.page-template-landing-page .hero__title {
  font-size: 1.875rem;
}
body.page-template-landing-page .hero__sub-title {
  font-size: 1rem;
  line-height: 1.25rem;
}
.hero__title-wrapper .btn {
  background-color: #326d46;
}

/* @media Hero */
@media (min-width: 768px) {
  body.page-template-landing-page .hero {
    max-height: 760px;
    height: 80vh;
  }
  .hero__image {
    display: none;
  }
  .hero__image ~ .hero__title-wrapper {
    position: absolute;
  }
  body.page-template-landing-page .hero__title {
    font-size: 2.5rem;
  }
  body.page-template-landing-page .hero__sub-title {
    font-size: 1.25rem;
  }
  body.page-template-landing-page
    .hero__title-wrapper.hero__title-wrapper--middle {
    width: 700px;
  }
  body.page-template-landing-page
    .hero__title-wrapper.hero__title-wrapper--middle {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: left;
    padding-top: 45px;
    padding-bottom: 80px;
  }
  body.page-template-landing-page .hero__title-wrapper .btn {
    min-width: 400px;
  }
}

/* --- / --- */

/* 1.4 - Video Context */
.video-context {
  padding: 30px 0;
  background-color: #f0f0f0;
}
.video-context.video-context--reverse {
  padding: 30px 0;
  background-color: #eaeaea;
}
.video-context__row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  align-items: stretch;
  gap: 15px;
}
.video-context--reverse .video-context__row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.video-context__content {
  margin-bottom: 20px;
}
.video-context__quote {
  margin: 10px 0 0;
  padding: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  background-color: #fff;
  font-weight: 700;
}
.video-context__quote cite {
  font-style: normal;
  font-weight: 400;
  color: #db9276;
}
.video-context__video {
  position: relative;
  width: 344px;
  max-width: 100%;
  -webkit-box-flex: 0;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
  text-align: center;
  overflow: hidden;
  -webkit-border-radius: 20px;
  border-radius: 20px;
}
.video-context__video video {
  -webkit-border-radius: 20px;
  border-radius: 20px;
}
.video-context__video img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  object-fit: cover;
}
.video-context__controls {
  position: absolute;
  left: 5px;
  bottom: 5px;
  z-index: 10;
  display: block !important;
}
.video-context__controls button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #000;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  border: 0;
  min-width: 36px;
  height: 36px;
  cursor: pointer;
  color: #fff;
}
.video-context__controls span {
  margin-left: 5px;
}
.video-context__controls span:empty {
  margin-left: 0;
}
.video-context__controls button.play {
  display: none;
}

/* @media Video Context */
@media (min-width: 768px) {
  .video-context__row {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .video-context.video-context--reverse .video-context__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .video-context__content {
    margin-bottom: 0;
  }
  .video-context .video-context__content {
    padding-right: 70px;
  }
  .video-context .video-context__content p {
  }
  .video-context.video-context--reverse .video-context__content {
    padding-right: 0;
    padding-left: 70px;
  }
  .video-context__quote {
    -webkit-border-radius: 8px;
    border-radius: 8px;
    margin-top: 15px;
  }
  .video-context__quote cite {
    color: #043d57;
  }
  .video-context__controls {
    left: 10px;
    bottom: 10px;
  }
}

@media (min-width: 1366px) {
  .video-context .video-context__content {
    padding-right: 5px;
  }
  .video-context.video-context--reverse .video-context__content {
    padding-left: 0px;
  }
}

/* --- / --- */

/* 1.5 - Items List */
.items-list {
  padding: 0;
  margin: 30px 0;

  h2 {
    margin-bottom: 10px;
  }

  strong {
    color: #066d3a;
  }

  a {
    color: #ab1b5c;
    text-decoration: underline;
    font-weight: bold;

    &:hover {
      text-decoration: none;
    }
  }

  .items-list__content {
    margin-bottom: 24px;
  }
}

.items-list__row {
  background-color: #f9fbf7;
  padding: 20px 20px 20px 0;
  border-radius: 20px;
  width: 100%;
}

.items-list__content {
  margin-left: -3.5%;
}
.items-list__content li {
  position: relative;
  margin-bottom: 20px;
  padding-left: 3.5%;
}
.items-list__content li:last-child {
  margin-bottom: 0;
}
.items-list__content li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: #0d6b34;
}
.items-list__content + p {
  margin-top: 30px;
}
.items-list__container {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;

  .img-container {
    width: 40%;

    img {
      border-radius: 16px;
      height: 100%;
      width: 100%;
      object-fit: cover;
    }
  }

  @media (max-width: 768px) {
    flex-direction: column;

    .img-container {
      width: 100%;
    }
  }
}

/* @media Items List */
@media (min-width: 768px) {
  .items-list__row {
    padding: 30px 45px 30px 15px;
  }
  .items-list__content {
    margin-left: 0;
  }
  .items-list__content li {
    padding-left: 22px;
  }
  .items-list__content li:before {
    top: 6px;
    width: 9px;
    height: 9px;
  }
}

.external__overlay {
  padding: 30px;
  overflow-x: scroll;
  background: white;
}
@media (min-width: 415px) {
  .external__overlay {
    padding: 50px;
    overflow-x: scroll;
  }
}

.external__overlay h2 {
  padding-right: 30px;
}

.external__overlay p {
  margin: 20px 0;
}

.external__overlay a.btn {
  color: #fff;
}

.copy-block__title.larger-heading {
  font-size: 2rem;
}

.copy-block__title.align-center.larger-heading {
  font-size: 2rem;
}

#popupbtnyes {
  margin-right: 14px;
}

#popupbtnno {
  margin-left: 0px;
}

/* --- / --- */

/* Language Selector Overrides */
.wpml-ls-menu-item {
  position: relative !important;
  display: inline-block !important;
}

.wpml-ls-menu-item > a {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  color: #1f4f62 !important;
  text-decoration: none !important;
  font-size: 14px !important;
}

.wpml-ls-menu-item > a:hover {
  background-color: transparent !important;
  color: #1f4f62 !important;
}

.wpml-ls-menu-item .wpml-ls-flag {
  width: 18px !important;
  height: auto !important;
  margin: 0 !important;
}

/* Override submenu positioning */
.wpml-ls-menu-item .sub-menu {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  min-width: 200px !important;
  background: #fff !important;
  border: 1px solid #eee !important;
  border-radius: 4px !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
  display: none !important;
  z-index: 1000 !important;
  padding: 8px 0 !important;
  transform: none !important;
}

/* Show submenu on hover */
.wpml-ls-menu-item:hover .sub-menu {
  display: block !important;
}

/* Submenu items */
.wpml-ls-menu-item .sub-menu li {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.wpml-ls-menu-item .sub-menu a {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 8px 16px !important;
  color: #1f4f62 !important;
  text-decoration: none !important;
  font-size: 14px !important;
  width: 100% !important;
}

.wpml-ls-menu-item .sub-menu a:hover {
  background-color: #f5f5f5 !important;
}

/* Remove any existing hover effects */
.wpml-ls-menu-item:hover:after,
.wpml-ls-menu-item .sub-menu li:hover:after {
  display: none !important;
}

/* Current language styling */
.wpml-ls-current-language > a {
  font-weight: bold !important;
}

/* Mobile adjustments */
@media (max-width: 991px) {
  .wpml-ls-menu-item {
    width: 100% !important;
    text-align: center !important;
  }

  .wpml-ls-menu-item > a {
    justify-content: center !important;
  }

  .wpml-ls-menu-item .sub-menu {
    position: static !important;
    width: 100% !important;
    box-shadow: none !important;
    border: none !important;
    background-color: #f5f5f5 !important;
  }

  .wpml-ls-menu-item .sub-menu a {
    justify-content: center !important;
  }
}

/* Mobile Language Selector Overrides */
@media (max-width: 991px) {
  .wpml-ls-menu-item {
    width: 100% !important;
    text-align: center !important;
    border-bottom: 1px solid #f0f0f0 !important;
  }

  .wpml-ls-menu-item > a {
    justify-content: center !important;
    padding: 15px 10px !important;
    width: 100% !important;
  }

  /* Show submenu by default on mobile */
  .wpml-ls-menu-item .sub-menu {
    display: block !important;
    position: static !important;
    width: 100% !important;
    box-shadow: none !important;
    border: none !important;
    background-color: #f0f0f0 !important;
    padding: 0 !important;
  }

  .wpml-ls-menu-item .sub-menu li {
    border-top: 1px solid #e0e0e0 !important;
  }

  .wpml-ls-menu-item .sub-menu a {
    justify-content: center !important;
    padding: 15px 10px !important;
    background-color: #f8f8f8 !important;
  }

  .wpml-ls-menu-item .sub-menu a:hover,
  .wpml-ls-menu-item .sub-menu a:active {
    background-color: #f0f0f0 !important;
  }

  /* Current language styling for mobile */
  .wpml-ls-current-language > a {
    background-color: #1f4f62 !important;
    color: #fff !important;
  }

  .wpml-ls-current-language > a:hover,
  .wpml-ls-current-language > a:active {
    background-color: #13303b !important;
  }
}

/* Fix for nav menu transitions on mobile */
@media (max-width: 991px) {
  nav#main-nav.is-open .wpml-ls-menu-item {
    transform: none !important;
  }

  nav#main-nav .wpml-ls-menu-item .sub-menu {
    transform: none !important;
    transition: none !important;
  }
}
