@charset "UTF-8";
/* Mixins
================================================== */
/* Breakpoints
================================================== */
/*
320px – very small phones (old iPhones, edge cases)

375px – modern iPhone width (very common)

450px – large phones / Pro Max

768px – iPad portrait

1024px – iPad landscape

1280px – common laptop

1440px – large monitors

1920px – full HD (usually max-width, not layout change)









*/
:root {
  --color-black: #000;
  --color-white: #ffffff;
  --color-field-grey: #ccc;
  --color-grey: #a6a6a6;
  /* Browns */
  --color-brown_1: #57332D;
  --color-brown_2: #78635A;
  --color-brown_3: #B19B8D;
  --color-brown_4: #E6DCD6;
  --color-brown_5: #F5F1EE;
  /* Greens */
  --color-green_1: #395D5C;
  --color-green_2: #738F7D;
  --color-green_3: #B0CAB9;
  --color-green_4: #E0EBE4;
  --color-green_5: #F0F6F2;
  /* Blues */
  --color-blue_1: #2E3A5B;
  --color-blue_2: #728AA7;
  --color-blue_3: #ABBED1;
  --color-blue_4: #DFE9F1;
  --color-blue_5: #EDF3F7;
}

.background-color-black {
  background-color: var(--color-black);
}

.border-color-black {
  border-color: var(--color-black);
}

.color-black {
  color: var(--color-black);
}

.background-color-white {
  background-color: var(--color-white);
}

.border-color-white {
  border-color: var(--color-white);
}

.color-white {
  color: var(--color-white);
}

.background-color-brown_1 {
  background-color: var(--color-brown_1);
}

.border-color-brown_1 {
  border-color: var(--color-brown_1);
}

.color-brown_1 {
  color: var(--color-brown_1);
}

.background-color-brown_2 {
  background-color: var(--color-brown_2);
}

.border-color-brown_2 {
  border-color: var(--color-brown_2);
}

.color-brown_2 {
  color: var(--color-brown_2);
}

.background-color-brown_3 {
  background-color: var(--color-brown_3);
}

.border-color-brown_3 {
  border-color: var(--color-brown_3);
}

.color-brown_3 {
  color: var(--color-brown_3);
}

.background-color-brown_4 {
  background-color: var(--color-brown_4);
}

.border-color-brown_4 {
  border-color: var(--color-brown_4);
}

.color-brown_4 {
  color: var(--color-brown_4);
}

.background-color-brown_5 {
  background-color: var(--color-brown_5);
}

.border-color-brown_5 {
  border-color: var(--color-brown_5);
}

.color-brown_5 {
  color: var(--color-brown_5);
}

.background-color-green_1 {
  background-color: var(--color-green_1);
}

.border-color-green_1 {
  border-color: var(--color-green_1);
}

.color-green_1 {
  color: var(--color-green_1);
}

.background-color-green_2 {
  background-color: var(--color-green_2);
}

.border-color-green_2 {
  border-color: var(--color-green_2);
}

.color-green_2 {
  color: var(--color-green_2);
}

.background-color-green_3 {
  background-color: var(--color-green_3);
}

.border-color-green_3 {
  border-color: var(--color-green_3);
}

.color-green_3 {
  color: var(--color-green_3);
}

.background-color-green_4 {
  background-color: var(--color-green_4);
}

.border-color-green_4 {
  border-color: var(--color-green_4);
}

.color-green_4 {
  color: var(--color-green_4);
}

.background-color-green_5 {
  background-color: var(--color-green_5);
}

.border-color-green_5 {
  border-color: var(--color-green_5);
}

.color-green_5 {
  color: var(--color-green_5);
}

.background-color-blue_1 {
  background-color: var(--color-blue_1);
}

.border-color-blue_1 {
  border-color: var(--color-blue_1);
}

.color-blue_1 {
  color: var(--color-blue_1);
}

.background-color-blue_2 {
  background-color: var(--color-blue_2);
}

.border-color-blue_2 {
  border-color: var(--color-blue_2);
}

.color-blue_2 {
  color: var(--color-blue_2);
}

.background-color-blue_3 {
  background-color: var(--color-blue_3);
}

.border-color-blue_3 {
  border-color: var(--color-blue_3);
}

.color-blue_3 {
  color: var(--color-blue_3);
}

.background-color-blue_4 {
  background-color: var(--color-blue_4);
}

.border-color-blue_4 {
  border-color: var(--color-blue_4);
}

.color-blue_4 {
  color: var(--color-blue_4);
}

.background-color-blue_5 {
  background-color: var(--color-blue_5);
}

.border-color-blue_5 {
  border-color: var(--color-blue_5);
}

.color-blue_5 {
  color: var(--color-blue_5);
}

/* ================================================================================================== 
General 
================================================================================================== */
body {
  color: #5B5959;
  background: var(--color-white);
}

.lead {
  color: var(--color-black);
}

a, a:visited {
  color: var(--color-black);
}
@media (hover: hover) {
  a:focus, a:hover, a:visited:focus, a:visited:hover {
    color: var(--color-blue);
  }
}

/* Form elements
------------------------------------------------------------------------ */
input, select, textarea, button {
  color: var(--color-black);
}
input:focus, select:focus, textarea:focus, button:focus {
  outline: none;
}

::placeholder {
  color: var(--color-grey);
  opacity: 1;
}

/* Buttons
------------------------------------------------------------------------ */
a.btn.btn-blue-fill,
.btn.btn-blue-fill {
  background-color: var(--color-blue_3);
  border-color: var(--color-blue_3);
  color: var(--color-blue_1);
}
a.btn.btn-blue-fill:focus, a.btn.btn-blue-fill:hover,
.btn.btn-blue-fill:focus,
.btn.btn-blue-fill:hover {
  background-color: #fff;
}
a.btn.btn-blue-hollow,
.btn.btn-blue-hollow {
  background-color: #FFF;
  border-color: var(--color-blue_3);
  color: var(--color-blue_1);
}
a.btn.btn-blue-hollow:focus, a.btn.btn-blue-hollow:hover,
.btn.btn-blue-hollow:focus,
.btn.btn-blue-hollow:hover {
  background-color: var(--color-blue_3);
  border-color: var(--color-blue_3);
  color: var(--color-blue_1);
}
a.btn.btn-white,
.btn.btn-white {
  color: var(--color-white);
  border-color: var(--color-white);
  background-color: transparent;
}
a.btn.btn-white:focus, a.btn.btn-white:hover,
.btn.btn-white:focus,
.btn.btn-white:hover {
  background-color: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-blue_1);
}

.btn-label-style.btn-label-style-event {
  background-color: var(--color-brown_4);
  border-color: var(--color-brown_4);
  color: var(--color-brown_1);
}
.btn-label-style.btn-label-style-event:focus, .btn-label-style.btn-label-style-event:hover {
  background-color: #fff;
}
.btn-label-style.btn-label-style-post {
  background-color: var(--color-blue_4);
  border-color: var(--color-blue_4);
  color: var(--color-blue_1);
}
.btn-label-style.btn-label-style-post:focus, .btn-label-style.btn-label-style-post:hover {
  background-color: #fff;
}
.btn-label-style.btn-label-style-webinar {
  background-color: var(--color-green_4);
  border-color: var(--color-green_4);
  color: var(--color-green_1);
}
.btn-label-style.btn-label-style-webinar:focus, .btn-label-style.btn-label-style-webinar:hover {
  background-color: #fff;
}

.news-card.news-card-webinar {
  border-bottom-color: var(--color-green_4);
}

.news-card.news-card-event {
  border-bottom-color: var(--color-brown_4);
}

.news-card.news-card-post {
  border-bottom-color: var(--color-blue_4);
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

.preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}

/* Mixins
================================================== */
/* Breakpoints
================================================== */
/*
320px – very small phones (old iPhones, edge cases)

375px – modern iPhone width (very common)

450px – large phones / Pro Max

768px – iPad portrait

1024px – iPad landscape

1280px – common laptop

1440px – large monitors

1920px – full HD (usually max-width, not layout change)









*/
/* Load fonts
================================================== */
/* Reset
================================================== */
body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-display: fallback;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 0.9em;
}
@media (min-width: 1400px) {
  body {
    font-size: 1em;
  }
}

/* Paragraphs
================================================== */
p, .p {
  margin: 0 0 1em 0;
}

.lead {
  font-size: 1.25em;
}

em {
  font-style: italic;
}

strong {
  font-weight: bold;
}

.small,
small {
  font-size: 80%;
}

/* Lists
================================================== */
.ul,
.ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ul li,
.ol li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ul li {
  position: relative;
  padding-left: 1em;
}
.ul li:before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 5px;
  height: 5px;
  display: block;
  background: black;
}

.ol {
  counter-reset: counter;
  position: relative;
}
.ol li {
  counter-increment: counter;
  padding-left: 2em;
}
.ol li:before {
  content: counters(counter, ".") " ";
  position: absolute;
  left: 0;
}

/* Blockquotes
================================================== */
.box,
blockquote {
  border-radius: 1.5em;
  padding: 1.5em;
  background: var(--color-brown_5);
  border: solid 1px vaR(--color-brown_1);
  margin: 2em auto;
}
.box p,
blockquote p {
  color: vaR(--color-brown_1);
}
.box > :first-child,
blockquote > :first-child {
  margin-top: 0;
}
.box > :last-child,
blockquote > :last-child {
  margin-bottom: 0;
}

/* Headings
Clients may want to reorganize tag names in future for SEO purposes,
so in addition of selecting by the tag name (h1-h6) we add a class (.h1-.h6).
========================================================================== */
/* Main Headings
================================================== */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin: 1.75em 0 0.4em 0;
  padding: 0;
  font-weight: 600;
  line-height: 1.15;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a,
.h1 a, .h2 a, .h3 a, .h4 a, .h5 a, .h6 a {
  font-weight: inherit;
}

h1, .h1 {
  font-size: 4.1em;
}

h2, .h2 {
  font-size: 2em;
}
@media (min-width: 769px) {
  h2, .h2 {
    font-size: 3em;
  }
}

h3, .h3 {
  font-size: 1.5em;
}

h4, .h4 {
  font-size: 1em;
}

h5, .h5 {
  font-size: 0.9em;
}

h6, .h6 {
  font-size: 0.8em;
}

/* More Heading styles
================================================== */
.page-title {
  display: block;
  font-weight: 700;
  font-size: 2.3em;
  line-height: 1.15;
}
@media (min-width: 480px) {
  .page-title {
    font-size: 4.1em;
  }
}
@media (min-width: 769px) {
  .page-title {
    font-size: 5em;
  }
}

.post-title {
  display: block;
  font-weight: 700;
  font-size: 1.3em;
  line-height: 1.15;
}
@media (min-width: 480px) {
  .post-title {
    font-size: 2.1em;
  }
}
@media (min-width: 769px) {
  .post-title {
    font-size: 3em;
  }
}

/* Address
================================================== */
address {
  font-style: normal;
}

a[href*=mailto] {
  word-break: break-all;
}

/* Hr
================================================== */
hr {
  border: solid;
  border-width: 1px 0 0;
  clear: both;
  margin: 1em 0;
  height: 0;
}

/* Misc
================================================== */
.truncate-string-with-ellipsis {
  width: 5em;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

/* No line break
================================================== */
.nlbr {
  display: inline-block;
}

/* Mixins
================================================== */
/* Breakpoints
================================================== */
/*
320px – very small phones (old iPhones, edge cases)

375px – modern iPhone width (very common)

450px – large phones / Pro Max

768px – iPad portrait

1024px – iPad landscape

1280px – common laptop

1440px – large monitors

1920px – full HD (usually max-width, not layout change)









*/
/* Tables
================================================== */
.wp-block-table td,
.wp-block-table th {
  border: none;
  padding: 0.5em 1em;
  font-size: 0.85em;
  vertical-align: middle;
}

.wp-block-table table {
  margin: 1em -1em;
  border-collapse: separate;
  border-spacing: 1em 0;
  width: auto;
}

.wp-block-table thead {
  border: none;
}
.wp-block-table thead th {
  padding: 0.25em 1em;
  border-radius: 1em;
  font-weight: 600;
  font-size: 1.1em;
}
.wp-block-table thead th strong {
  font-weight: 600;
}
.wp-block-table thead th:nth-child(3n+1) {
  color: var(--color-brown_2);
  background-color: var(--color-brown_4);
}
.wp-block-table thead th:nth-child(3n+2) {
  color: var(--color-blue_1);
  background-color: var(--color-blue_4);
}
.wp-block-table thead th:nth-child(3n) {
  color: var(--color-green_1);
  background-color: var(--color-green_4);
}

@media (max-width: 768px) {
  .wp-block-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .wp-block-table table {
    min-width: 700px;
    width: 100%;
  }
}
/* Mixins
================================================== */
/* Breakpoints
================================================== */
/*
320px – very small phones (old iPhones, edge cases)

375px – modern iPhone width (very common)

450px – large phones / Pro Max

768px – iPad portrait

1024px – iPad landscape

1280px – common laptop

1440px – large monitors

1920px – full HD (usually max-width, not layout change)









*/
/* Reset
================================================== */
a, a:visited {
  text-decoration: none;
  outline: 0 !important;
  cursor: pointer;
  transition: 0.5s;
}

button {
  transition: 0.5s;
}

p a {
  text-decoration: underline;
}
p a:focus, p a:hover {
  text-decoration: none;
}

/* Styles
================================================== */
/* Regular button
-------------------------------------------- */
input[type=submit],
input[value=Submit],
.btn,
a.btn {
  border-radius: 0;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
  cursor: pointer;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-font-smoothing: antialiased;
  background: transparent;
  border: none;
  outline: none !important;
  border: solid 2px;
  display: inline-block;
  text-align: center;
  line-height: normal;
  border-radius: 2em;
  padding: 0.5em 1.5em;
  font-size: 1.1em;
}
input[type=submit]::-moz-focus-inner,
input[value=Submit]::-moz-focus-inner,
.btn::-moz-focus-inner,
a.btn::-moz-focus-inner {
  border: 0;
}

input[type=submit],
input[value=Submit] {
  background-color: var(--color-blue_3);
  border-color: var(--color-blue_3);
  color: var(--color-blue_1);
}
input[type=submit]:focus, input[type=submit]:hover,
input[value=Submit]:focus,
input[value=Submit]:hover {
  background-color: #fff;
}

.btn-label-style {
  border-radius: 0;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
  cursor: pointer;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-font-smoothing: antialiased;
  background: transparent;
  border: none;
  outline: none !important;
  display: inline-block;
  text-align: center;
  line-height: normal;
  border-radius: 2em;
  border: solid 2px;
  display: block;
  font-weight: 400;
  font-style: normal;
  text-transform: capitalize;
  padding: 0.25em 1em;
  font-size: 0.95em;
}
.btn-label-style::-moz-focus-inner {
  border: 0;
}

span.btn-label-style {
  pointer-events: none;
}

/* Button with Arrow
-------------------------------------------- */
/* Next & Previos
-------------------------------------------- */
/* Close
-------------------------------------------- */
/* Group
-------------------------------------------- */
.buttons {
  margin-top: 2em;
  margin-bottom: 2em;
}
.buttons > * {
  display: inline-block;
}

/* Hamburger
-------------------------------------------- */
.hamburger-btn {
  border-radius: 0;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
  cursor: pointer;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-font-smoothing: antialiased;
  background: transparent;
  border: none;
  outline: none !important;
  border: none;
  padding: 0;
  width: 32px;
  background: none;
}
.hamburger-btn::-moz-focus-inner {
  border: 0;
}
.hamburger-btn em {
  display: block;
  height: 3px;
  margin: 6px 0;
  background: var(--color-green_3);
  transition: 0.5s;
  position: relative;
}
.hamburger-btn.open em:first-child {
  transform: rotate(-45deg);
  top: 9px;
}
.hamburger-btn.open em:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.open em:last-child {
  transform: rotate(45deg);
  top: -9px;
}

/* Mixins
================================================== */
/* Breakpoints
================================================== */
/*
320px – very small phones (old iPhones, edge cases)

375px – modern iPhone width (very common)

450px – large phones / Pro Max

768px – iPad portrait

1024px – iPad landscape

1280px – common laptop

1440px – large monitors

1920px – full HD (usually max-width, not layout change)









*/
/* Color
================================================== */
/* Labels
================================================== */
label,
legend,
.label,
.legend {
  display: inline-block;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/* Input & textarea
================================================== */
input[type=text],
input[type=email],
input[type=search],
input[type=date],
input[type=tel],
input[type=number],
input[type=password],
select,
textarea {
  border-radius: 0;
  transition: 0.5s;
  outline: 0;
  box-shadow: none;
  border: solid 2px var(--color-field-grey);
  background-color: #fff;
  font-size: 1em;
  padding: 0.6em 1em;
  outline: none;
  margin: 0;
  display: inline-block;
  position: relative;
  border-radius: 0.3em;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  transition: background-color 0.5s;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=search]:focus,
input[type=date]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=password]:focus,
select:focus,
textarea:focus {
  outline: none !important;
}

textarea {
  resize: vertical;
  min-height: 6em;
}

/* Select
================================================== */
select {
  cursor: pointer;
}

select[multiple] {
  background-image: none;
}

select option {
  color: #000 !important;
  background-color: #FFF !important;
}

/* Autofill text
================================================== */
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  background: transparent !important;
  -webkit-box-shadow: 0 0 0px 1000px #eee inset;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

/* popups
================================================== */
/* Position the popup in the bottom-left */
div:where(.swal2-container) {
  padding: 0 !important;
}

.swal2-actions > button {
  margin: 0.5em;
}

.modal-accept-cookies {
  margin: 0;
  width: 100%;
  max-width: 34em;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.modal-accept-cookies .swal2-html-container,
.modal-accept-cookies h4,
.modal-accept-cookies p {
  text-align: left;
}

.modal-accept-cookies h4 {
  margin: 0;
}

.modal-accept-cookies p {
  margin: 1em 0 0;
  font-size: 0.9em;
  line-height: 1.5;
}

.modal-accept-cookies .swal2-actions {
  justify-content: flex-start;
  width: 100%;
}

div:where(.swal2-container) .swal2-html-container {
  margin: 0 !important;
  font-size: 1em !important;
}

div:where(.swal2-container) button:where(.swal2-close) {
  position: absolute;
  top: 0.15em;
  right: 0.15em;
}

.swal2-popup.swal2-modal {
  padding: 3em 3em 2em 2em;
  background: var(--color-blue_1);
  color: #fff;
}

@keyframes slideOutLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.animate__slideInLeft {
  animation-name: slideOutLeft;
}

body.login {
  margin: 0;
  padding: 0;
}
body.login .wp-login-logo {
  display: none;
}
body.login .screen-reader-text {
  display: none !important;
}
body.login #login {
  width: calc(100% - 2em);
  max-width: 29em;
  margin: 4em auto;
  padding: 0;
  box-sizing: border-box;
  background-color: var(--color-green_5);
  border-radius: 1em;
  padding: 1em;
}
@media (min-width: 480px) {
  body.login #login {
    padding: 3em;
  }
}
body.login .wp-hide-pw {
  display: none !important;
}
body.login #backtoblog,
body.login .caps-warning {
  display: none;
}
body.login .forgetmenot {
  margin-top: 1em;
}
body.login .message,
body.login #login_error {
  margin-bottom: 1.5rem;
  padding: 1rem;
  border: 0;
  box-shadow: none;
  border-radius: 0.5rem;
}
body.login .message > :last-child,
body.login #login_error > :last-child {
  margin-bottom: 0;
}
body.login .message {
  background-color: var(--color-green_3);
}
body.login #login_error {
  background-color: var(--color-brown_3);
}
body.login h2 {
  margin-top: 0;
  margin-bottom: 0.5em;
  text-align: center;
  color: var(--color-blue_3);
}
body.login h2 a {
  color: var(--color-blue_2);
}
body.login form {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
body.login form label {
  margin-bottom: 0.25em;
}
body.login form input[type=text],
body.login form input[type=password],
body.login form input[type=email] {
  width: 100%;
}
body.login form .submit {
  margin-top: 1.5rem;
  width: 100%;
}
body.login form .button-primary {
  width: 100%;
}

/* Mixins
================================================== */
/* Breakpoints
================================================== */
/*
320px – very small phones (old iPhones, edge cases)

375px – modern iPhone width (very common)

450px – large phones / Pro Max

768px – iPad portrait

1024px – iPad landscape

1280px – common laptop

1440px – large monitors

1920px – full HD (usually max-width, not layout change)









*/
/* Ninja forms
================================================== */
.nf-form-cont {
  background-color: var(--color-green_5);
  border-radius: 1em;
  padding: 1em;
  color: var(--color-black);
}
.nf-form-cont .nf-form-fields-required {
  display: none !important;
}
.nf-form-cont .nf-form-title {
  margin: 0;
  color: var(--color-blue_1);
}
.nf-form-cont .nf-form-title > :first-child {
  margin-top: 0;
  margin-bottom: 2em;
  display: block;
}
.nf-form-cont .nf-field-label .nf-label-span, .nf-form-cont .nf-field-label label {
  font-weight: normal;
}
@media (min-width: 769px) {
  .nf-form-cont {
    padding: 3em;
  }
}

@media (max-width: 768px) {
  .nf-form-cont .five-sixths, .nf-form-cont .four-sixths, .nf-form-cont .one-fourth, .nf-form-cont .one-half, .nf-form-cont .one-sixth, .nf-form-cont .one-third, .nf-form-cont .three-fourths, .nf-form-cont .three-sixths, .nf-form-cont .two-fourths, .nf-form-cont .two-sixths, .nf-form-cont .two-thirds {
    width: 100% !important;
    float: none !important;
    clear: both !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
/* Mixins
================================================== */
/* Breakpoints
================================================== */
/*
320px – very small phones (old iPhones, edge cases)

375px – modern iPhone width (very common)

450px – large phones / Pro Max

768px – iPad portrait

1024px – iPad landscape

1280px – common laptop

1440px – large monitors

1920px – full HD (usually max-width, not layout change)









*/
/* Side padding
-------------------------------------------- */
.side-padding {
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 480px) {
  .side-padding {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}
@media (min-width: 86rem) {
  .side-padding {
    padding-right: calc((100% - 80rem)/2);
    padding-left: calc((100% - 80rem)/2);
  }
}

/* ====================================================
Top 
==================================================== */
.top-nav {
  box-shadow: 0 0em 0.5em 0.5em rgba(0, 0, 0, 0.1);
  border-bottom-right-radius: 1em;
  border-bottom-left-radius: 1em;
  padding-top: 1em;
  padding-bottom: 1em;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  width: 100%;
  box-sizing: border-box;
  max-width: 1440px;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
}
.top-nav .hide-logo {
  opacity: 0;
  pointer-events: none;
}
@media (min-width: 480px) {
  .top-nav {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}
.top-nav.open {
  height: 100%;
  overflow-y: scroll;
}
.top-nav .logo {
  margin-right: 3em;
  width: 8.5em;
}
.top-nav .logo img {
  width: 100%;
  display: block;
}
.top-nav .menu {
  padding: 0;
  margin: 1.75em 0 2em;
  width: 100%;
  display: none;
}
.top-nav .menu li {
  padding: 0;
  margin: 0;
  list-style: none;
  border-bottom: solid 2px var(--color-green_3);
}
.top-nav .menu li.current {
  border-bottom: solid 4px var(--color-green_1);
}
.top-nav .menu a {
  display: inline-flex;
  padding: 0.5em 0;
  color: var(--color-blue_1);
  vertical-align: middle;
  align-items: center;
}
.top-nav .menu span {
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 1199px) {
  .top-nav .menu a br {
    display: none;
  }
}
@media (min-width: 990px) {
  .top-nav .logo {
    width: 13em;
  }
}
@media (min-width: 1200px) {
  .top-nav {
    min-height: 9.25em;
    border-bottom-right-radius: 3em;
    border-bottom-left-radius: 3em;
    padding-top: 0;
    padding-bottom: 0;
    height: auto;
    overflow-y: visible;
    align-items: center;
  }
  .top-nav .menu {
    width: auto;
  }
  .top-nav .menu li {
    display: inline-flex;
    border-left: solid 2px var(--color-green_3);
    padding-left: 0.75em;
    vertical-align: middle;
    min-height: 5.5em;
    padding-right: 1em;
    border-bottom: none;
    transition: 0.5s;
  }
  .top-nav .menu li.current {
    border-left: solid 4px var(--color-green_1);
    border-bottom: none;
  }
  .top-nav .menu li:focus, .top-nav .menu li:hover {
    border-left-color: var(--color-green_1);
  }
  .top-nav .hamburger-btn {
    display: none;
  }
  .top-nav .menu {
    display: block;
  }
}
@media (min-width: 1400px) {
  .top-nav .menu li {
    padding-right: 1.75em;
  }
}

.menu-open .top-nav .menu {
  display: block;
}

.top-nav {
  transition: 0.5s;
}

.scrolling-down .top-nav {
  transform: translateY(-100%) translateX(-50%);
}

.scrolling-up .top-nav {
  transform: translateY(0%) translateX(-50%);
}

.scrolling-down .top-of-page .top-nav,
.scrolling-up .top-of-page .top-nav,
.top-of-page .top-nav {
  transform: translateY(0%) translateX(-50%);
}

.breadcrumbs {
  border-bottom: solid 1px var(--color-grey);
  color: var(--color-grey);
  padding-bottom: 1.3em;
  padding-top: 1.3em;
  overflow-y: hidden;
  background-color: #FFF;
}
@media (max-width: 479px) {
  .breadcrumbs {
    overflow-x: scroll;
  }
}
.breadcrumbs > * {
  font-size: 1.1em;
}
.breadcrumbs a {
  color: var(--color-grey);
}
.breadcrumbs a:focus, .breadcrumbs a:hover {
  color: var(--color-green_1);
}
.breadcrumbs span {
  color: var(--color-green_1);
  padding: 0.2em 0;
  border-bottom: solid 1px;
}
.breadcrumbs .separater {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid var(--color-grey);
  overflow: hidden;
  text-indent: -999px;
  display: inline-block;
  margin: 0 1em;
  padding: 0 !important;
}
.breadcrumbs nav {
  display: inline-block;
  white-space: nowrap;
}
@media (min-width: 769px) {
  .breadcrumbs {
    z-index: 9;
    position: sticky;
    top: 0;
  }
}

/* ====================================================
Footer 
==================================================== */
.footer {
  background-color: var(--color-blue_5);
  padding-top: 3em;
  padding-bottom: 1.5em;
  color: var(--color-black);
  border-top-right-radius: 6em;
  margin-top: 3em;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
}
.footer .logo {
  width: 8.5em;
}
.footer .content {
  max-width: 55em;
}
.footer .content p {
  font-size: 0.8em;
}
.footer .menu {
  padding: 0;
  margin: 1.75em 0 2em;
}
.footer .menu li {
  padding: 0;
  margin: 0;
  list-style: none;
  display: inline-block;
  margin-right: 1.5em;
}
.footer .menu a {
  display: inline-block;
  padding: 0.5em 0;
  color: var(--color-blue_1);
  position: relative;
}
.footer .menu a:after {
  content: "";
  border-bottom: solid 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transition: 0.5s;
}
.footer .menu a:focus, .footer .menu a:hover {
  color: var(--color-green_1);
}
.footer .menu a:focus:after, .footer .menu a:hover:after {
  content: "";
  border-bottom-color: var(--color-green_1);
}
.footer .servier {
  margin-top: 1em;
}
@media (min-width: 1200px) {
  .footer {
    margin-top: 5em;
    border-top-right-radius: 13em;
  }
  .footer .content p {
    font-size: 1em;
  }
  .footer .servier {
    margin-top: 0em;
  }
}

.bottom {
  background-color: var(--color-blue_1);
  color: var(--color-blue_4);
  padding-top: 1.5em;
  padding-bottom: 1.5em;
  position: relative;
  z-index: 2;
  font-size: 0.8em;
}
.bottom a {
  color: var(--color-blue_4);
}
.bottom a:focus, .bottom a:hover {
  color: var(--color-white);
}
@media (min-width: 1200px) {
  .bottom {
    font-size: 1em;
    display: flex;
    justify-content: space-between;
  }
}

.login-register {
  margin-top: 1em;
}
.login-register .divider {
  margin: 0 1em;
}
@media (min-width: 1200px) {
  .login-register {
    margin-top: 0;
  }
}

@media (min-width: 86rem) {
  .container.without-subnav {
    padding-right: calc((100% - 59rem) / 2);
    padding-left: calc((100% - 59rem) / 2);
  }
}

.container {
  padding-top: 3em;
}
@media (min-width: 769px) {
  .container {
    padding-top: 5em;
  }
}

.content > :first-child {
  margin-top: 0;
}

@media (min-width: 769px) {
  .subnav-wrap {
    position: sticky;
    top: 11em;
    float: left;
  }

  .with-subnav > .content {
    margin-left: 18em;
  }
}
.subnav {
  white-space: nowrap;
}
.subnav ul {
  padding: 0;
}
.subnav li {
  display: inline-block;
  margin: 0.75em 0;
  padding: 0;
}
.subnav a {
  font-weight: 400;
  font-style: normal;
  color: #5B5959;
  display: inline-block;
  position: relative;
  padding: 0em 1.2em;
}
.subnav a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 2px;
  background-color: var(--color-green_3);
  transition: 0.5s;
}
.subnav a.current:before, .subnav a:hover:before {
  width: 4px;
  background-color: var(--color-green_1);
}
@media (min-width: 769px) {
  .subnav ul {
    padding-left: 0.5em;
  }
}

.subnav-wrap {
  overflow: hidden;
  overflow-x: scroll;
  margin-bottom: 2em;
}
@media (min-width: 769px) {
  .subnav-wrap {
    background: #fff;
    padding: 1.25em 1.25em;
  }
}

@media (min-width: 769px) {
  .subnav {
    max-width: 13em;
    white-space: normal;
  }
  .subnav:before {
    content: "Navigate to:";
    font-size: 1.1em;
  }
  .subnav li {
    display: block;
  }
  .subnav a {
    display: block;
    padding: 0.7em 1.2em;
  }

  .subnav-wrap {
    overflow: hidden;
  }
}
.status-message {
  padding: 1em;
  border-radius: 1em;
  max-width: 61rem;
  margin: 2em auto;
}

/* Mixins
================================================== */
/* Breakpoints
================================================== */
/*
320px – very small phones (old iPhones, edge cases)

375px – modern iPhone width (very common)

450px – large phones / Pro Max

768px – iPad portrait

1024px – iPad landscape

1280px – common laptop

1440px – large monitors

1920px – full HD (usually max-width, not layout change)









*/
html,
body {
  overflow-x: clip;
}

/* Sections
================================================================ */
/* Vertical spacing
-------------------------------------------- */
.section {
  padding-top: 2em;
  padding-bottom: 2em;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
.section > :first-child {
  margin-top: 0;
}
.section > :last-child {
  margin-bottom: 0;
}
.section header > :first-child,
.section footer > :first-child {
  margin-top: 0;
}
.section header > :last-child,
.section footer > :last-child {
  margin-bottom: 0;
}
@media (min-width: 769px) {
  .section {
    padding-top: 4em;
    padding-bottom: 4em;
  }
}

/* Snap
-------------------------------------------- 

main {
	scroll-snap-type: y mandatory;
}

.section {
	scroll-snap-align: start;
}
*/
/* Sections
================================================================ */
.register-lead {
  margin-left: auto;
  margin-right: auto;
}
.register-lead p {
  font-size: 1.25em;
  text-align: center;
  max-width: 42em;
  color: #000;
  margin-left: auto;
  margin-right: auto;
}

.section-top-header {
  width: 100%;
  max-width: 1440px;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
}
.section-top-header .bottom-curve {
  transform: translateX(-50%);
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 0;
  z-index: 2;
  height: 100%;
  width: auto;
}
.section-top-header .welcome {
  position: relative;
  z-index: 1;
  max-width: 100%;
  display: block;
}
@media (min-width: 769px) {
  .section-top-header .welcome {
    width: 40%;
  }
  .section-top-header.page-title {
    font-size: 6em;
    margin-left: 5.2rem;
  }
}
@media (min-width: 480px) {
  .section-top-header {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

.user-not-approved .section-top-header,
.not-logged-in .section-top-header,
body.login.login-action-login .section-top-header,
.page-template-tmp-login .section-top-header {
  padding-top: 0;
}
@media (min-width: 990px) {
  .user-not-approved .section-top-header,
.not-logged-in .section-top-header,
body.login.login-action-login .section-top-header,
.page-template-tmp-login .section-top-header {
    padding-top: 0;
  }
  .user-not-approved .section-top-header .media,
.not-logged-in .section-top-header .media,
body.login.login-action-login .section-top-header .media,
.page-template-tmp-login .section-top-header .media {
    top: 0;
  }
}

.section-top-header {
  padding-top: 4.5em;
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
  /* Color ------------- */
  background-color: var(--color-green_5);
}
.section-top-header svg {
  pointer-events: none;
}
.section-top-header .content {
  position: relative;
  z-index: 2;
  padding: 3em 0;
  min-height: 5.5em;
}
.section-top-header .content:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  display: none;
}
.section-top-header .content .side-curve {
  display: none;
}
.section-top-header .media {
  background-color: black;
  padding-top: 65%;
  margin-left: -1rem;
  margin-right: -1rem;
  position: relative;
}
.section-top-header .media.shade:before {
  content: "";
  background: linear-gradient(180deg, black 0%, white 100%);
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  mix-blend-mode: multiply;
  top: 0;
  left: 0;
  opacity: 0.5;
}
.section-top-header .media > * {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-top-header .post-meta-span,
.section-top-header .post-title,
.section-top-header .page-title {
  margin: 0;
  position: relative;
  z-index: 2;
}
.section-top-header .post-meta-span {
  margin-top: 1em;
  display: block;
}
@media (min-width: 480px) {
  .section-top-header .media {
    margin-left: -3rem;
    margin-right: -3rem;
    padding-top: 55%;
  }
  .section-top-header .content {
    padding: 5em 0;
  }
}
@media (max-width: 989px) {
  .section-top-header .media.empty {
    display: none;
  }
}
@media (min-width: 990px) {
  .section-top-header {
    padding-top: 6.5em;
  }
  .section-top-header .content {
    padding: 10.5em 0 8em;
    min-height: 11.5em;
    width: 97%;
  }
  .section-top-header .content:before {
    display: block;
    width: 40%;
  }
  .section-top-header .content .side-curve {
    display: block;
    position: absolute;
    top: 0;
    right: 15%;
    height: 110%;
  }
  .section-top-header .media {
    position: absolute;
    right: 0;
    width: 67%;
    top: 6.5em;
    bottom: 0;
    padding: 0;
  }
  .section-top-header .media.shade:before {
    content: "";
    background: linear-gradient(90deg, black 0%, white 100%);
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    mix-blend-mode: multiply;
  }
  .section-top-header .media > * {
    bottom: 0;
    height: 100%;
    max-width: 100%;
    width: 100%;
  }
  .section-top-header .post-title {
    max-width: 11em;
  }
  .section-top-header .page-title {
    max-width: 7em;
  }
}
@media (min-width: 1400px) {
  .section-top-header .content {
    width: 75%;
  }
  .section-top-header .content .side-curve {
    right: 0;
  }
  .section-top-header .media {
    width: 61%;
  }
  .section-top-header .post-meta-span,
.section-top-header .post-title,
.section-top-header .page-title {
    margin-left: 3.2rem;
  }
}
.section-top-header .side-curve {
  fill: var(--color-green_5);
}
.section-top-header .media {
  background-color: var(--color-green_4);
}
.section-top-header .content:before {
  background-color: var(--color-green_5);
}
.section-top-header h1 {
  color: var(--color-green_1);
}
.section-top-header.header_class_welcome {
  background-color: #FFF;
}
.section-top-header.header_class_welcome .side-curve {
  fill: #FFF;
}
.section-top-header.header_class_green {
  background-color: var(--color-green_5);
}
.section-top-header.header_class_green .side-curve {
  fill: var(--color-green_5);
}
.section-top-header.header_class_green .media {
  background-color: var(--color-green_4);
}
.section-top-header.header_class_green .content:before {
  background-color: var(--color-green_5);
}
.section-top-header.header_class_green h1 {
  color: var(--color-green_1);
}
.section-top-header.header_class_blue {
  background-color: var(--color-blue_5);
}
.section-top-header.header_class_blue .side-curve {
  fill: var(--color-blue_5);
}
.section-top-header.header_class_blue .media {
  background-color: var(--color-blue_4);
}
.section-top-header.header_class_blue .content:before {
  background-color: var(--color-blue_5);
}
.section-top-header.header_class_blue h1 {
  color: var(--color-blue_1);
}
.section-top-header.header_class_brown {
  background-color: var(--color-brown_5);
}
.section-top-header.header_class_brown .side-curve {
  fill: var(--color-brown_5);
}
.section-top-header.header_class_brown .media {
  background-color: var(--color-brown_4);
}
.section-top-header.header_class_brown .content:before {
  background-color: var(--color-brown_5);
}
.section-top-header.header_class_brown h1 {
  color: var(--color-brown_1);
}

.section-top-header-wrap {
  position: relative;
  /* Color ------------- */
  background-color: var(--color-green_5);
}
.section-top-header-wrap .side-curve {
  fill: var(--color-green_5);
}
.section-top-header-wrap .media {
  background-color: var(--color-green_4);
}
.section-top-header-wrap .content:before {
  background-color: var(--color-green_5);
}
.section-top-header-wrap h1 {
  color: var(--color-green_1);
}
.section-top-header-wrap.header_class_welcome {
  background-color: #FFF;
}
.section-top-header-wrap.header_class_welcome .side-curve {
  fill: #FFF;
}
.section-top-header-wrap.header_class_green {
  background-color: var(--color-green_5);
}
.section-top-header-wrap.header_class_green .side-curve {
  fill: var(--color-green_5);
}
.section-top-header-wrap.header_class_green .media {
  background-color: var(--color-green_4);
}
.section-top-header-wrap.header_class_green .content:before {
  background-color: var(--color-green_5);
}
.section-top-header-wrap.header_class_green h1 {
  color: var(--color-green_1);
}
.section-top-header-wrap.header_class_blue {
  background-color: var(--color-blue_5);
}
.section-top-header-wrap.header_class_blue .side-curve {
  fill: var(--color-blue_5);
}
.section-top-header-wrap.header_class_blue .media {
  background-color: var(--color-blue_4);
}
.section-top-header-wrap.header_class_blue .content:before {
  background-color: var(--color-blue_5);
}
.section-top-header-wrap.header_class_blue h1 {
  color: var(--color-blue_1);
}
.section-top-header-wrap.header_class_brown {
  background-color: var(--color-brown_5);
}
.section-top-header-wrap.header_class_brown .side-curve {
  fill: var(--color-brown_5);
}
.section-top-header-wrap.header_class_brown .media {
  background-color: var(--color-brown_4);
}
.section-top-header-wrap.header_class_brown .content:before {
  background-color: var(--color-brown_5);
}
.section-top-header-wrap.header_class_brown h1 {
  color: var(--color-brown_1);
}

.single article {
  max-width: 54rem;
  margin: auto;
}
.single .is-type-video {
  display: block;
  width: 100%;
}
.single .is-type-video iframe {
  width: 100%;
}

.news-page-layout .news-page-title {
  margin: 1em auto;
  max-width: 61.5rem;
  display: block;
  font-weight: 700;
}

.recent-posts-layout {
  max-width: 63rem;
  margin: 2em auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
.recent-posts-layout .section-heading {
  margin: 0 auto;
  max-width: 61.5rem;
}
.recent-posts-layout ul, .recent-posts-layout li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.recent-posts-layout li {
  padding: 0.75rem;
  box-sizing: border-box;
}
.recent-posts-layout .buttons {
  text-align: center;
}
@media (min-width: 769px) {
  .recent-posts-layout {
    margin: 5em auto;
  }
  .recent-posts-layout ul {
    display: flex;
    flex-wrap: wrap;
  }
  .recent-posts-layout li {
    width: 33.3334%;
  }
}

.news-card {
  text-align: center;
  box-sizing: border-box;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: space-between;
  border-bottom: solid 1px;
  padding-bottom: 0.75em;
}
.news-card .btn-label-style {
  width: 100%;
  margin: 0.8em 0;
}
.news-card .heading {
  font-weight: 600;
  font-size: 1.5em;
  color: var(--color-blue_1);
  margin: 0.5em auto;
}
.news-card .img {
  display: block;
  padding-bottom: 89%;
  border-radius: 1em;
  margin: auto;
  margin-top: 0em;
  width: calc(100% - 2rem);
  background-size: cover;
  position: relative;
  background-position: center;
}
.news-card .img.empty:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: url(../../images/curve.svg) no-repeat center;
  background-size: cover;
  opacity: 0.4;
}
.news-card p {
  font-size: 0.875em;
  color: #5B5959;
  line-height: 1.6;
  width: calc(100% - 2rem);
  margin-left: auto;
  margin-right: auto;
}
.news-card .btn-blue-fill {
  width: calc(100% - 2rem);
  margin-left: auto;
  margin-right: auto;
}

.indent-header {
  border-left: solid 2px var(--color-green_2);
  padding-left: 1.5em;
  margin-bottom: 3em;
  margin-top: 3em;
}
.indent-header > .wp-block-column > h2 {
  color: var(--color-green_2);
}
.indent-header > .wp-block-column > h3 {
  color: var(--color-green_1);
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.indent-header > .wp-block-column > :first-child {
  margin-top: 0;
}
.indent-header > .wp-block-column > :last-child {
  margin-bottom: 0;
}

.patient-organisations-row {
  border-bottom: solid 1px #E8E8E8;
  color: #A6A6A6;
  padding-bottom: 2em;
}
.patient-organisations-row a {
  color: #A6A6A6;
}
.patient-organisations-row .wp-block-heading {
  margin-top: 0;
  color: #5B5959;
}
.patient-organisations-row .wp-block-column > :last-child {
  margin-bottom: 0;
}

@media (min-width: 769px) {
  .with-subnav .double-safety:before {
    left: calc(50% - 50vw - 9em);
  }
}

.double-safety {
  background-color: var(--color-green_3);
  max-width: 66rem;
  margin: auto;
  position: relative;
  padding-top: 5em;
  padding-bottom: 5em;
  margin-top: 3em;
  margin-bottom: 3em;
  justify-content: space-between;
}
.double-safety:before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  height: 100%;
  background-color: var(--color-green_3);
  z-index: -1;
  left: calc(50% - 50vw);
  width: 100vw;
}
.double-safety img {
  height: auto;
  z-index: 2;
  width: 100%;
  display: block;
}
.double-safety h3 {
  line-height: 1.3;
  color: var(--color-green_1);
}
.double-safety .body,
.double-safety img {
  border-radius: 1.5em;
}
.double-safety .body {
  padding: 1.5em;
  background-color: #fff;
  box-sizing: border-box;
}
.double-safety .body .wysiwyg {
  color: #5B5959;
}
.double-safety .body .wysiwyg > :first-child {
  margin-top: 0;
}
.double-safety .body .wysiwyg > :last-child {
  margin-bottom: 0;
}
.double-safety .body .buttons {
  margin-bottom: 0;
}
@media (min-width: 769px) {
  .double-safety {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .double-safety .body,
.double-safety img {
    border-radius: 3em;
  }
  .double-safety .body {
    padding: 3em;
  }
  .double-safety .body {
    width: calc(50% + 6em);
  }
  .double-safety img {
    width: calc(50% - 4em);
  }
  .double-safety.align_image_left img {
    margin-right: -4em;
  }
  .double-safety.align_image_left .body {
    padding-left: 6em;
  }
  .double-safety.align_image_right {
    flex-direction: row-reverse;
  }
  .double-safety.align_image_right img {
    margin-left: -4em;
  }
  .double-safety.align_image_right .body {
    padding-right: 6em;
  }
}
@media (min-width: 1200px) {
  .double-safety .body .wysiwyg {
    font-size: 1.3em;
  }
}

.heading-only.feature_list .item {
  background-color: #FFF;
  min-height: 7em;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.heading-only.feature_list .item .heading {
  width: 100%;
}
.heading-only.feature_list img {
  top: 50%;
  transform: translateY(-50%);
}

.feature_list ul {
  padding: 0;
  display: block;
}
.feature_list li {
  list-style: none;
  display: block;
  padding: 0.6rem 0;
  box-sizing: border-box;
}
.feature_list .item {
  border: solid 1px var(--color-green_4);
  border-radius: 1.5em;
  padding: 1em;
  padding-left: 5.5em;
  position: relative;
  box-sizing: border-box;
  height: 100%;
}
.feature_list .heading {
  font-size: 1.25em;
  font-weight: 500;
  color: var(--color-green_1);
  margin-top: 0;
  line-height: 1.3;
}
.feature_list > :last-child {
  margin-bottom: 0;
}
.feature_list img {
  width: 2.5em;
  height: auto;
  position: absolute;
  left: 1.5em;
  top: 1em;
}
.feature_list p {
  color: #5B5959;
  font-weight: 400;
  font-size: 0.875em;
  margin-bottom: 0;
}
@media (min-width: 990px) {
  .feature_list ul {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.6rem;
    margin-right: -0.6rem;
  }
  .feature_list li {
    width: 50%;
    padding: 0.6rem;
  }
}
@media (min-width: 1200px) {
  .feature_list li {
    width: 33.3334%;
  }
}

.content [id] {
  scroll-margin-top: 12rem;
}

@media (min-width: 769px) {
  .with-subnav .section-content-panel:before {
    left: calc(50% - 50vw - 9em);
  }
}

.section-content-panel {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: auto;
  position: relative;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
.section-content-panel:before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  height: 100%;
  background-color: var(--color-green_5);
  z-index: -1;
}
.section-content-panel path {
  fill: var(--color-green_1);
}
.section-content-panel .item {
  padding: 1em;
  width: 14em;
  margin: 1em;
  box-sizing: border-box;
  background-color: #fff;
  border: solid 1px #DDE9F2;
  border-radius: 1.5em;
  font-weight: 500;
  color: var(--color-green_1);
}
.section-content-panel .item img {
  width: 2em;
  height: auto;
}
.section-content-panel .item.arrow-item {
  width: auto;
  border: none;
  margin: 0;
  background: transparent;
}
@media (max-width: 479px) {
  .section-content-panel {
    display: block;
  }
  .section-content-panel .item {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  .section-content-panel .item.arrow-item img {
    transform: rotate(90deg);
  }
}

.about-box {
  background-color: var(--color-blue_3);
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
  padding-top: 2em;
  padding-bottom: 2em;
}
.about-box .body {
  background-color: #fff;
  border: solid 2px var(--color-blue_1);
  padding: 1.5em;
  border-radius: 1.5em;
}
.about-box .body h3 {
  font-weight: 700;
  font-size: 1.55em;
  margin: 0.9em 0;
  color: var(--color-blue_1);
}
.about-box .body > :first-child {
  margin-top: 0;
}
.about-box .body > :last-child {
  margin-bottom: 0;
}
@media (min-width: 480px) {
  .about-box {
    padding-right: 3rem;
    padding-left: 3rem;
    padding-top: 5em;
    padding-bottom: 5em;
  }
  .about-box .body {
    padding: 3em;
    font-size: 1.25em;
    border-radius: 2.5em;
  }
}
@media (min-width: 86rem) {
  .about-box {
    padding-right: calc((100% - 59rem) / 2);
    padding-left: calc((100% - 59rem) / 2);
  }
}

.accordion {
  border-bottom: solid 1px #F2F2F2;
  margin-top: 3em;
}
.accordion > .wp-block-column > h3 {
  color: var(--color-blue_1);
  position: relative;
  margin-top: 0;
  padding-right: 1em;
  cursor: pointer;
}
.accordion > .wp-block-column > h3:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0.25em;
  width: 0.8em;
  height: 0.8em;
  background: url(../../images/chevron-up.svg) no-repeat center;
  background-size: contain;
  transform: rotate(180deg);
}
.accordion > .wp-block-column > * {
  display: none;
}
.accordion > .wp-block-column > h3 {
  display: block;
}
.accordion.open .wp-block-heading + * {
  margin-top: 1em;
}
.accordion.open > .wp-block-column > h3:after {
  transform: rotate(0deg);
}
.accordion.open > .wp-block-column > * {
  display: block;
}

.user-not-approved .news-page-layout {
  display: none;
}

/* Mixins
================================================== */
/* Breakpoints
================================================== */
/*
320px – very small phones (old iPhones, edge cases)

375px – modern iPhone width (very common)

450px – large phones / Pro Max

768px – iPad portrait

1024px – iPad landscape

1280px – common laptop

1440px – large monitors

1920px – full HD (usually max-width, not layout change)









*/
html {
  scroll-behavior: smooth;
}

/* 1. Set the keyframes 
============================================ */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-1em);
  }
  60% {
    transform: translateY(-5em);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fadein {
  0%, 50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* 2. Add it to the class

	Arguments:::

    animation-name: 			the name of the animation;
    animation-duration: 		how long the keyframes will take to go from 0% to 100%;
    animation-timing-function:	the speed from start to end (linier, ease [slow start, then ends fast]  linear, easing OR USE http://cubic-bezier.com/#0,.67,.75,.9;
    animation-delay: 			the delay beofore it animates;
    animation-iteration-count:	the number of times it plays;
    animation-direction:		;
	animation-fill-mode
	animation-play-state




	Example ::

	animation-name: bounce;
	animation-duration: 4s;
	animation-timing-function: ease-out;
	animation-delay: 2s;
	animation-iteration-count: 10;
	animation-direction: alternate;
	animation-fill-mode: forwards;


	Example - play once only (one load, fade in)


	Example - web banner, just use keyframes.  Is the animation is 1 minute, set at 60s,  30s is keyframe: 50%


============================================ */
.bounce {
  animation: bounce 2s linear 4s infinite alternate;
}

.fadein {
  animation: fadein 0.5s;
}

/* Preloader
============================================ */
.preloader-animation {
  border: 5px solid rgba(150, 150, 150, 0.5);
  /* Light grey */
  border-top: 5px solid blue;
  /* Blue */
  border-radius: 100%;
  width: 1em;
  height: 1em;
  animation: rotate 1s linear infinite;
}

/* 1. Add class to animate 
============================================ */
.check-in-viewport.fadein {
  transition: opacity 0.5s;
  opacity: 0;
}
.check-in-viewport.fadeinandslideup {
  transition: opacity 0.5s, transform 0.5s;
  transform: translateY(3em);
  opacity: 0;
}
.check-in-viewport.fadeinandslideleft {
  transition: opacity 0.5s, transform 0.5s;
  transform: translateX(3em);
  opacity: 0;
}
.check-in-viewport.fadeinandslideright {
  transition: opacity 0.5s, transform 0.5s;
  transform: translateX(-3em);
  opacity: 0;
}
.check-in-viewport.in-viewport.fadein {
  opacity: 1;
}
.check-in-viewport.in-viewport.fadeinandslideup {
  transform: translateY(0);
  opacity: 1;
}
.check-in-viewport.in-viewport.fadeinandslideleft {
  transform: translateX(0);
  opacity: 1;
}
.check-in-viewport.in-viewport.fadeinandslideright {
  transform: translateX(0);
  opacity: 1;
}

.swiper-slide .fadeinandslideup {
  transition: opacity 0.5s;
  opacity: 0;
}
.swiper-slide.swiper-slide-active .fadeinandslideup {
  opacity: 1;
}

/* Marquee 
============================================ */
@keyframes horizontalslide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.marquee {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.marquee ul {
  -webkit-animation: horizontalslide 2s linear infinite;
}
.marquee li {
  display: inline-block;
}

/* Scroll snap
-------------------------------------------- */
html {
  scroll-snap-type: y proximity;
}

.snap-section {
  scroll-snap-align: start;
}

/* Mixins
================================================== */
/* Breakpoints
================================================== */
/*
320px – very small phones (old iPhones, edge cases)

375px – modern iPhone width (very common)

450px – large phones / Pro Max

768px – iPad portrait

1024px – iPad landscape

1280px – common laptop

1440px – large monitors

1920px – full HD (usually max-width, not layout change)









*/
/* Warning messages
================================================== */
.warning {
  display: none;
  background: #ffa500;
  color: #000;
  text-align: center;
  margin: 0;
  font-weight: bold;
  z-index: 9999;
  position: fixed;
  width: 100%;
  padding: 1em;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
.warning a {
  text-decoration: underline;
  color: #000 !important;
}
.warning > span {
  display: inline-block;
}

.nojs-warn {
  top: 0;
  display: block;
}

.ie10 .datedbrowser-warn,
.ie11 .datedbrowser-warn {
  top: 0;
  display: block;
}

/* Customize select color
================================================== */
::selection {
  background: var(--color-green_4);
}

::-moz-selection {
  background: var(--color-green_4);
}
/*# sourceMappingURL=_global.css.map */