/**
 * Mixin for clearfix
 * @include clearfix;
*/
/**
 * @font-face mixin
 * Bulletproof font-face via Font Squirrel
 * @include fontface('family', 'assets/fonts/', 'myfontname');
 */
/**
 * IMAGE RETINA
 * @include image-2x(/img/image.png, 100%, auto);
 */
/**
 * MIXIN: Responsive Media Queries
 * USAGE:
	@include r(240)  {}
	@include r(320)  {}
	@include r(480)  {}
	@include r(768)  {}
	@include r(1024) {}
	@include r(1140) {}
	@include r(1280) {}
*/
:root {
  --block-padding: 20px;
  --container-width: 1450px;
  --small-container-width: calc(1170px + var(--block-padding) * 2 );
}
@media (min-width: 768px) {
  :root {
    --block-padding: clamp(60px, 6.6667px + 6.9444vw, 140px);
  }
}

/* normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type=search] {
  -webkit-appearance: textfield; /* 1 */
  box-sizing: content-box; /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

*,
*:after,
*:before {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* clear */
.clear:before,
.clear:after {
  content: " ";
  display: table;
}

.clear:after {
  clear: both;
}

.clear {
  *zoom: 1;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  height: auto;
}

a {
  color: #444;
  text-decoration: none;
}

a:hover {
  color: #444;
}

a:focus {
  outline: 0;
}

a:hover,
a:active {
  outline: 0;
}

input:focus {
  outline: 0;
  border: 1px solid #21382D;
}

select {
  width: 100%;
}

:root {
  --swiper-pagination-bullet-horizontal-gap: 10px;
  --swiper-pagination-bullet-size: 10px;
  --swiper-pagination-margin: 20px;
}

div.swiper-pagination-bullets {
  position: unset;
  transform: unset;
  margin-top: var(--swiper-pagination-margin);
}
div.swiper-pagination-bullets span.swiper-pagination-bullet {
  background: #21382D;
  transition: opacity 0.5s ease;
}

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

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

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

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

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

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

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

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

.wp-caption {
  background: #c5c5c5;
  max-width: 100%;
  padding: 2rem;
  text-align: center;
}

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

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

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

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

.wp-caption .wp-caption-text,
.gallery-caption {
  margin: 0;
  padding: 0.5rem;
}

.textwidget img {
  margin: 1rem 0;
}

.bypostauthor {
  background: inherit;
}

.widget_calendar {
  display: table;
  width: 100%;
}

#wp-calendar {
  width: 100%;
}

#wp-calendar caption {
  text-align: right;
  color: #000;
  font-size: 12px;
  margin-top: 10px;
  margin-bottom: 15px;
}

#wp-calendar thead {
  font-size: 10px;
}

#wp-calendar thead th {
  padding-bottom: 10px;
}

#wp-calendar tbody {
  color: #000;
  font-family: sans-serif;
  font-weight: 300;
}

#wp-calendar tbody td {
  background: #FFF;
  border: 1px solid #FFF;
  text-align: center;
  padding: 8px;
}

#wp-calendar tbody td:hover {
  background: #FFF;
}

#wp-calendar tbody .pad {
  background: none;
}

#wp-calendar tfoot #next {
  font-size: 10px;
  text-transform: uppercase;
  text-align: right;
}

#wp-calendar tfoot #prev {
  font-size: 10px;
  text-transform: uppercase;
  padding-top: 10px;
}

.size-auto,
.size-full,
.size-large,
.size-medium,
.size-thumbnail {
  max-width: 100%;
  height: auto;
}

@media (min-width: 240px) {
  .wp-caption .wp-caption-text,
  .gallery-caption {
    font: 300 1.4rem/1.8rem sans-serif;
  }
}
@media (min-width: 320px) {
  .wp-caption .wp-caption-text,
  .gallery-caption {
    font: 300 1.55rem/1.8 sans-serif;
  }
}
@media (min-width: 480px) {
  .wp-caption .wp-caption-text,
  .gallery-caption {
    font: 300 1.8rem/1.8 sans-serif;
  }
}
@media (min-width: 768px) {
  .wp-caption .wp-caption-text,
  .gallery-caption {
    font: 300 1.9rem/1.7 sans-serif;
  }
}
@media (min-width: 1024px) {
  .wp-caption .wp-caption-text,
  .gallery-caption {
    font: 300 2rem/3.1rem sans-serif;
  }
}
@media (min-width: 1280px) {
  .wp-caption .wp-caption-text,
  .gallery-caption {
    font: 300 2rem/3.1rem sans-serif;
  }
}

:root {
  --grid-gap: 28px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 26px;
  gap: 26px;
}

.col-1 {
  grid-column-end: span 1;
}

.col-offset-1 {
  grid-column-start: 2;
}

.row-1 {
  grid-row-end: span 1;
}

.row-offset-1 {
  grid-row-start: 2;
}

.col-2 {
  grid-column-end: span 2;
}

.col-offset-2 {
  grid-column-start: 3;
}

.row-2 {
  grid-row-end: span 2;
}

.row-offset-2 {
  grid-row-start: 3;
}

.col-3 {
  grid-column-end: span 3;
}

.col-offset-3 {
  grid-column-start: 4;
}

.row-3 {
  grid-row-end: span 3;
}

.row-offset-3 {
  grid-row-start: 4;
}

.col-4 {
  grid-column-end: span 4;
}

.col-offset-4 {
  grid-column-start: 5;
}

.row-4 {
  grid-row-end: span 4;
}

.row-offset-4 {
  grid-row-start: 5;
}

.col-5 {
  grid-column-end: span 5;
}

.col-offset-5 {
  grid-column-start: 6;
}

.row-5 {
  grid-row-end: span 5;
}

.row-offset-5 {
  grid-row-start: 6;
}

.col-6 {
  grid-column-end: span 6;
}

.col-offset-6 {
  grid-column-start: 7;
}

.row-6 {
  grid-row-end: span 6;
}

.row-offset-6 {
  grid-row-start: 7;
}

.col-7 {
  grid-column-end: span 7;
}

.col-offset-7 {
  grid-column-start: 8;
}

.row-7 {
  grid-row-end: span 7;
}

.row-offset-7 {
  grid-row-start: 8;
}

.col-8 {
  grid-column-end: span 8;
}

.col-offset-8 {
  grid-column-start: 9;
}

.row-8 {
  grid-row-end: span 8;
}

.row-offset-8 {
  grid-row-start: 9;
}

.col-9 {
  grid-column-end: span 9;
}

.col-offset-9 {
  grid-column-start: 10;
}

.row-9 {
  grid-row-end: span 9;
}

.row-offset-9 {
  grid-row-start: 10;
}

.col-10 {
  grid-column-end: span 10;
}

.col-offset-10 {
  grid-column-start: 11;
}

.row-10 {
  grid-row-end: span 10;
}

.row-offset-10 {
  grid-row-start: 11;
}

.col-11 {
  grid-column-end: span 11;
}

.col-offset-11 {
  grid-column-start: 12;
}

.row-11 {
  grid-row-end: span 11;
}

.row-offset-11 {
  grid-row-start: 12;
}

.col-12 {
  grid-column-end: span 12;
}

.col-offset-12 {
  grid-column-start: 13;
}

.row-12 {
  grid-row-end: span 12;
}

.row-offset-12 {
  grid-row-start: 13;
}

@media (min-width: 480px) {
  .col-xs-1 {
    grid-column-end: span 1;
  }
  .col-offset-xs-1 {
    grid-column-start: 2;
  }
  .row-xs-1 {
    grid-row-end: span 1;
  }
  .row-offset-xs-1 {
    grid-row-start: 2;
  }
  .col-xs-2 {
    grid-column-end: span 2;
  }
  .col-offset-xs-2 {
    grid-column-start: 3;
  }
  .row-xs-2 {
    grid-row-end: span 2;
  }
  .row-offset-xs-2 {
    grid-row-start: 3;
  }
  .col-xs-3 {
    grid-column-end: span 3;
  }
  .col-offset-xs-3 {
    grid-column-start: 4;
  }
  .row-xs-3 {
    grid-row-end: span 3;
  }
  .row-offset-xs-3 {
    grid-row-start: 4;
  }
  .col-xs-4 {
    grid-column-end: span 4;
  }
  .col-offset-xs-4 {
    grid-column-start: 5;
  }
  .row-xs-4 {
    grid-row-end: span 4;
  }
  .row-offset-xs-4 {
    grid-row-start: 5;
  }
  .col-xs-5 {
    grid-column-end: span 5;
  }
  .col-offset-xs-5 {
    grid-column-start: 6;
  }
  .row-xs-5 {
    grid-row-end: span 5;
  }
  .row-offset-xs-5 {
    grid-row-start: 6;
  }
  .col-xs-6 {
    grid-column-end: span 6;
  }
  .col-offset-xs-6 {
    grid-column-start: 7;
  }
  .row-xs-6 {
    grid-row-end: span 6;
  }
  .row-offset-xs-6 {
    grid-row-start: 7;
  }
  .col-xs-7 {
    grid-column-end: span 7;
  }
  .col-offset-xs-7 {
    grid-column-start: 8;
  }
  .row-xs-7 {
    grid-row-end: span 7;
  }
  .row-offset-xs-7 {
    grid-row-start: 8;
  }
  .col-xs-8 {
    grid-column-end: span 8;
  }
  .col-offset-xs-8 {
    grid-column-start: 9;
  }
  .row-xs-8 {
    grid-row-end: span 8;
  }
  .row-offset-xs-8 {
    grid-row-start: 9;
  }
  .col-xs-9 {
    grid-column-end: span 9;
  }
  .col-offset-xs-9 {
    grid-column-start: 10;
  }
  .row-xs-9 {
    grid-row-end: span 9;
  }
  .row-offset-xs-9 {
    grid-row-start: 10;
  }
  .col-xs-10 {
    grid-column-end: span 10;
  }
  .col-offset-xs-10 {
    grid-column-start: 11;
  }
  .row-xs-10 {
    grid-row-end: span 10;
  }
  .row-offset-xs-10 {
    grid-row-start: 11;
  }
  .col-xs-11 {
    grid-column-end: span 11;
  }
  .col-offset-xs-11 {
    grid-column-start: 12;
  }
  .row-xs-11 {
    grid-row-end: span 11;
  }
  .row-offset-xs-11 {
    grid-row-start: 12;
  }
  .col-xs-12 {
    grid-column-end: span 12;
  }
  .col-offset-xs-12 {
    grid-column-start: 13;
  }
  .row-xs-12 {
    grid-row-end: span 12;
  }
  .row-offset-xs-12 {
    grid-row-start: 13;
  }
}
@media (min-width: 768px) {
  .col-sm-1 {
    grid-column-end: span 1;
  }
  .col-offset-sm-1 {
    grid-column-start: 2;
  }
  .row-sm-1 {
    grid-row-end: span 1;
  }
  .row-offset-sm-1 {
    grid-row-start: 2;
  }
  .col-sm-2 {
    grid-column-end: span 2;
  }
  .col-offset-sm-2 {
    grid-column-start: 3;
  }
  .row-sm-2 {
    grid-row-end: span 2;
  }
  .row-offset-sm-2 {
    grid-row-start: 3;
  }
  .col-sm-3 {
    grid-column-end: span 3;
  }
  .col-offset-sm-3 {
    grid-column-start: 4;
  }
  .row-sm-3 {
    grid-row-end: span 3;
  }
  .row-offset-sm-3 {
    grid-row-start: 4;
  }
  .col-sm-4 {
    grid-column-end: span 4;
  }
  .col-offset-sm-4 {
    grid-column-start: 5;
  }
  .row-sm-4 {
    grid-row-end: span 4;
  }
  .row-offset-sm-4 {
    grid-row-start: 5;
  }
  .col-sm-5 {
    grid-column-end: span 5;
  }
  .col-offset-sm-5 {
    grid-column-start: 6;
  }
  .row-sm-5 {
    grid-row-end: span 5;
  }
  .row-offset-sm-5 {
    grid-row-start: 6;
  }
  .col-sm-6 {
    grid-column-end: span 6;
  }
  .col-offset-sm-6 {
    grid-column-start: 7;
  }
  .row-sm-6 {
    grid-row-end: span 6;
  }
  .row-offset-sm-6 {
    grid-row-start: 7;
  }
  .col-sm-7 {
    grid-column-end: span 7;
  }
  .col-offset-sm-7 {
    grid-column-start: 8;
  }
  .row-sm-7 {
    grid-row-end: span 7;
  }
  .row-offset-sm-7 {
    grid-row-start: 8;
  }
  .col-sm-8 {
    grid-column-end: span 8;
  }
  .col-offset-sm-8 {
    grid-column-start: 9;
  }
  .row-sm-8 {
    grid-row-end: span 8;
  }
  .row-offset-sm-8 {
    grid-row-start: 9;
  }
  .col-sm-9 {
    grid-column-end: span 9;
  }
  .col-offset-sm-9 {
    grid-column-start: 10;
  }
  .row-sm-9 {
    grid-row-end: span 9;
  }
  .row-offset-sm-9 {
    grid-row-start: 10;
  }
  .col-sm-10 {
    grid-column-end: span 10;
  }
  .col-offset-sm-10 {
    grid-column-start: 11;
  }
  .row-sm-10 {
    grid-row-end: span 10;
  }
  .row-offset-sm-10 {
    grid-row-start: 11;
  }
  .col-sm-11 {
    grid-column-end: span 11;
  }
  .col-offset-sm-11 {
    grid-column-start: 12;
  }
  .row-sm-11 {
    grid-row-end: span 11;
  }
  .row-offset-sm-11 {
    grid-row-start: 12;
  }
  .col-sm-12 {
    grid-column-end: span 12;
  }
  .col-offset-sm-12 {
    grid-column-start: 13;
  }
  .row-sm-12 {
    grid-row-end: span 12;
  }
  .row-offset-sm-12 {
    grid-row-start: 13;
  }
}
@media (min-width: 960px) {
  .col-md-1 {
    grid-column-end: span 1;
  }
  .col-offset-md-1 {
    grid-column-start: 2;
  }
  .row-md-1 {
    grid-row-end: span 1;
  }
  .row-offset-md-1 {
    grid-row-start: 2;
  }
  .col-md-2 {
    grid-column-end: span 2;
  }
  .col-offset-md-2 {
    grid-column-start: 3;
  }
  .row-md-2 {
    grid-row-end: span 2;
  }
  .row-offset-md-2 {
    grid-row-start: 3;
  }
  .col-md-3 {
    grid-column-end: span 3;
  }
  .col-offset-md-3 {
    grid-column-start: 4;
  }
  .row-md-3 {
    grid-row-end: span 3;
  }
  .row-offset-md-3 {
    grid-row-start: 4;
  }
  .col-md-4 {
    grid-column-end: span 4;
  }
  .col-offset-md-4 {
    grid-column-start: 5;
  }
  .row-md-4 {
    grid-row-end: span 4;
  }
  .row-offset-md-4 {
    grid-row-start: 5;
  }
  .col-md-5 {
    grid-column-end: span 5;
  }
  .col-offset-md-5 {
    grid-column-start: 6;
  }
  .row-md-5 {
    grid-row-end: span 5;
  }
  .row-offset-md-5 {
    grid-row-start: 6;
  }
  .col-md-6 {
    grid-column-end: span 6;
  }
  .col-offset-md-6 {
    grid-column-start: 7;
  }
  .row-md-6 {
    grid-row-end: span 6;
  }
  .row-offset-md-6 {
    grid-row-start: 7;
  }
  .col-md-7 {
    grid-column-end: span 7;
  }
  .col-offset-md-7 {
    grid-column-start: 8;
  }
  .row-md-7 {
    grid-row-end: span 7;
  }
  .row-offset-md-7 {
    grid-row-start: 8;
  }
  .col-md-8 {
    grid-column-end: span 8;
  }
  .col-offset-md-8 {
    grid-column-start: 9;
  }
  .row-md-8 {
    grid-row-end: span 8;
  }
  .row-offset-md-8 {
    grid-row-start: 9;
  }
  .col-md-9 {
    grid-column-end: span 9;
  }
  .col-offset-md-9 {
    grid-column-start: 10;
  }
  .row-md-9 {
    grid-row-end: span 9;
  }
  .row-offset-md-9 {
    grid-row-start: 10;
  }
  .col-md-10 {
    grid-column-end: span 10;
  }
  .col-offset-md-10 {
    grid-column-start: 11;
  }
  .row-md-10 {
    grid-row-end: span 10;
  }
  .row-offset-md-10 {
    grid-row-start: 11;
  }
  .col-md-11 {
    grid-column-end: span 11;
  }
  .col-offset-md-11 {
    grid-column-start: 12;
  }
  .row-md-11 {
    grid-row-end: span 11;
  }
  .row-offset-md-11 {
    grid-row-start: 12;
  }
  .col-md-12 {
    grid-column-end: span 12;
  }
  .col-offset-md-12 {
    grid-column-start: 13;
  }
  .row-md-12 {
    grid-row-end: span 12;
  }
  .row-offset-md-12 {
    grid-row-start: 13;
  }
}
@media (min-width: 1024px) {
  .col-ll-1 {
    grid-column-end: span 1;
  }
  .col-offset-ll-1 {
    grid-column-start: 2;
  }
  .row-ll-1 {
    grid-row-end: span 1;
  }
  .row-offset-ll-1 {
    grid-row-start: 2;
  }
  .col-ll-2 {
    grid-column-end: span 2;
  }
  .col-offset-ll-2 {
    grid-column-start: 3;
  }
  .row-ll-2 {
    grid-row-end: span 2;
  }
  .row-offset-ll-2 {
    grid-row-start: 3;
  }
  .col-ll-3 {
    grid-column-end: span 3;
  }
  .col-offset-ll-3 {
    grid-column-start: 4;
  }
  .row-ll-3 {
    grid-row-end: span 3;
  }
  .row-offset-ll-3 {
    grid-row-start: 4;
  }
  .col-ll-4 {
    grid-column-end: span 4;
  }
  .col-offset-ll-4 {
    grid-column-start: 5;
  }
  .row-ll-4 {
    grid-row-end: span 4;
  }
  .row-offset-ll-4 {
    grid-row-start: 5;
  }
  .col-ll-5 {
    grid-column-end: span 5;
  }
  .col-offset-ll-5 {
    grid-column-start: 6;
  }
  .row-ll-5 {
    grid-row-end: span 5;
  }
  .row-offset-ll-5 {
    grid-row-start: 6;
  }
  .col-ll-6 {
    grid-column-end: span 6;
  }
  .col-offset-ll-6 {
    grid-column-start: 7;
  }
  .row-ll-6 {
    grid-row-end: span 6;
  }
  .row-offset-ll-6 {
    grid-row-start: 7;
  }
  .col-ll-7 {
    grid-column-end: span 7;
  }
  .col-offset-ll-7 {
    grid-column-start: 8;
  }
  .row-ll-7 {
    grid-row-end: span 7;
  }
  .row-offset-ll-7 {
    grid-row-start: 8;
  }
  .col-ll-8 {
    grid-column-end: span 8;
  }
  .col-offset-ll-8 {
    grid-column-start: 9;
  }
  .row-ll-8 {
    grid-row-end: span 8;
  }
  .row-offset-ll-8 {
    grid-row-start: 9;
  }
  .col-ll-9 {
    grid-column-end: span 9;
  }
  .col-offset-ll-9 {
    grid-column-start: 10;
  }
  .row-ll-9 {
    grid-row-end: span 9;
  }
  .row-offset-ll-9 {
    grid-row-start: 10;
  }
  .col-ll-10 {
    grid-column-end: span 10;
  }
  .col-offset-ll-10 {
    grid-column-start: 11;
  }
  .row-ll-10 {
    grid-row-end: span 10;
  }
  .row-offset-ll-10 {
    grid-row-start: 11;
  }
  .col-ll-11 {
    grid-column-end: span 11;
  }
  .col-offset-ll-11 {
    grid-column-start: 12;
  }
  .row-ll-11 {
    grid-row-end: span 11;
  }
  .row-offset-ll-11 {
    grid-row-start: 12;
  }
  .col-ll-12 {
    grid-column-end: span 12;
  }
  .col-offset-ll-12 {
    grid-column-start: 13;
  }
  .row-ll-12 {
    grid-row-end: span 12;
  }
  .row-offset-ll-12 {
    grid-row-start: 13;
  }
}
@media (min-width: 1170px) {
  .col-lg-1 {
    grid-column-end: span 1;
  }
  .col-offset-lg-1 {
    grid-column-start: 2;
  }
  .row-lg-1 {
    grid-row-end: span 1;
  }
  .row-offset-lg-1 {
    grid-row-start: 2;
  }
  .col-lg-2 {
    grid-column-end: span 2;
  }
  .col-offset-lg-2 {
    grid-column-start: 3;
  }
  .row-lg-2 {
    grid-row-end: span 2;
  }
  .row-offset-lg-2 {
    grid-row-start: 3;
  }
  .col-lg-3 {
    grid-column-end: span 3;
  }
  .col-offset-lg-3 {
    grid-column-start: 4;
  }
  .row-lg-3 {
    grid-row-end: span 3;
  }
  .row-offset-lg-3 {
    grid-row-start: 4;
  }
  .col-lg-4 {
    grid-column-end: span 4;
  }
  .col-offset-lg-4 {
    grid-column-start: 5;
  }
  .row-lg-4 {
    grid-row-end: span 4;
  }
  .row-offset-lg-4 {
    grid-row-start: 5;
  }
  .col-lg-5 {
    grid-column-end: span 5;
  }
  .col-offset-lg-5 {
    grid-column-start: 6;
  }
  .row-lg-5 {
    grid-row-end: span 5;
  }
  .row-offset-lg-5 {
    grid-row-start: 6;
  }
  .col-lg-6 {
    grid-column-end: span 6;
  }
  .col-offset-lg-6 {
    grid-column-start: 7;
  }
  .row-lg-6 {
    grid-row-end: span 6;
  }
  .row-offset-lg-6 {
    grid-row-start: 7;
  }
  .col-lg-7 {
    grid-column-end: span 7;
  }
  .col-offset-lg-7 {
    grid-column-start: 8;
  }
  .row-lg-7 {
    grid-row-end: span 7;
  }
  .row-offset-lg-7 {
    grid-row-start: 8;
  }
  .col-lg-8 {
    grid-column-end: span 8;
  }
  .col-offset-lg-8 {
    grid-column-start: 9;
  }
  .row-lg-8 {
    grid-row-end: span 8;
  }
  .row-offset-lg-8 {
    grid-row-start: 9;
  }
  .col-lg-9 {
    grid-column-end: span 9;
  }
  .col-offset-lg-9 {
    grid-column-start: 10;
  }
  .row-lg-9 {
    grid-row-end: span 9;
  }
  .row-offset-lg-9 {
    grid-row-start: 10;
  }
  .col-lg-10 {
    grid-column-end: span 10;
  }
  .col-offset-lg-10 {
    grid-column-start: 11;
  }
  .row-lg-10 {
    grid-row-end: span 10;
  }
  .row-offset-lg-10 {
    grid-row-start: 11;
  }
  .col-lg-11 {
    grid-column-end: span 11;
  }
  .col-offset-lg-11 {
    grid-column-start: 12;
  }
  .row-lg-11 {
    grid-row-end: span 11;
  }
  .row-offset-lg-11 {
    grid-row-start: 12;
  }
  .col-lg-12 {
    grid-column-end: span 12;
  }
  .col-offset-lg-12 {
    grid-column-start: 13;
  }
  .row-lg-12 {
    grid-row-end: span 12;
  }
  .row-offset-lg-12 {
    grid-row-start: 13;
  }
}
@media (min-width: 1280px) {
  .col-xl-1 {
    grid-column-end: span 1;
  }
  .col-offset-xl-1 {
    grid-column-start: 2;
  }
  .row-xl-1 {
    grid-row-end: span 1;
  }
  .row-offset-xl-1 {
    grid-row-start: 2;
  }
  .col-xl-2 {
    grid-column-end: span 2;
  }
  .col-offset-xl-2 {
    grid-column-start: 3;
  }
  .row-xl-2 {
    grid-row-end: span 2;
  }
  .row-offset-xl-2 {
    grid-row-start: 3;
  }
  .col-xl-3 {
    grid-column-end: span 3;
  }
  .col-offset-xl-3 {
    grid-column-start: 4;
  }
  .row-xl-3 {
    grid-row-end: span 3;
  }
  .row-offset-xl-3 {
    grid-row-start: 4;
  }
  .col-xl-4 {
    grid-column-end: span 4;
  }
  .col-offset-xl-4 {
    grid-column-start: 5;
  }
  .row-xl-4 {
    grid-row-end: span 4;
  }
  .row-offset-xl-4 {
    grid-row-start: 5;
  }
  .col-xl-5 {
    grid-column-end: span 5;
  }
  .col-offset-xl-5 {
    grid-column-start: 6;
  }
  .row-xl-5 {
    grid-row-end: span 5;
  }
  .row-offset-xl-5 {
    grid-row-start: 6;
  }
  .col-xl-6 {
    grid-column-end: span 6;
  }
  .col-offset-xl-6 {
    grid-column-start: 7;
  }
  .row-xl-6 {
    grid-row-end: span 6;
  }
  .row-offset-xl-6 {
    grid-row-start: 7;
  }
  .col-xl-7 {
    grid-column-end: span 7;
  }
  .col-offset-xl-7 {
    grid-column-start: 8;
  }
  .row-xl-7 {
    grid-row-end: span 7;
  }
  .row-offset-xl-7 {
    grid-row-start: 8;
  }
  .col-xl-8 {
    grid-column-end: span 8;
  }
  .col-offset-xl-8 {
    grid-column-start: 9;
  }
  .row-xl-8 {
    grid-row-end: span 8;
  }
  .row-offset-xl-8 {
    grid-row-start: 9;
  }
  .col-xl-9 {
    grid-column-end: span 9;
  }
  .col-offset-xl-9 {
    grid-column-start: 10;
  }
  .row-xl-9 {
    grid-row-end: span 9;
  }
  .row-offset-xl-9 {
    grid-row-start: 10;
  }
  .col-xl-10 {
    grid-column-end: span 10;
  }
  .col-offset-xl-10 {
    grid-column-start: 11;
  }
  .row-xl-10 {
    grid-row-end: span 10;
  }
  .row-offset-xl-10 {
    grid-row-start: 11;
  }
  .col-xl-11 {
    grid-column-end: span 11;
  }
  .col-offset-xl-11 {
    grid-column-start: 12;
  }
  .row-xl-11 {
    grid-row-end: span 11;
  }
  .row-offset-xl-11 {
    grid-row-start: 12;
  }
  .col-xl-12 {
    grid-column-end: span 12;
  }
  .col-offset-xl-12 {
    grid-column-start: 13;
  }
  .row-xl-12 {
    grid-row-end: span 12;
  }
  .row-offset-xl-12 {
    grid-row-start: 13;
  }
}
:root {
  --heading-default-color: #21382D;
  --heading-default-font-family: "ivypresto-headline", serif;
  --heading-default-font-weight: 300;
  --heading-default-line-height: 1.13;
  --heading-default-letter-spacing: 0.005em;
  --heading-default-fontsize: clamp(2.2rem, 1.5667rem + 2.4382vw, 6.5rem);
  --heading-default-tiny-fontsize: 1.8rem;
  --heading-default-small-fontsize: clamp(2rem, 2.38vw + 10.48px, 5rem);
  --heading-default-normal-fontsize: clamp(3.2rem, 2.62vw + 21.52px, 6.5rem);
  --heading-default-medium-fontsize: clamp(4rem, 2.78vw + 28.89px, 7.5rem);
  --heading-default-large-fontsize: clamp(4rem, 3.97vw + 24.13px, 9rem);
  --heading-default-huge-fontsize: clamp(4rem, 9.05vw + -0.19px, 15rem);
  --heading-default-margin-top: 0;
  --heading-default-margin-right: auto;
  --heading-default-margin-bottom: 2.6rem;
  --heading-default-margin-left: auto;
}
@media (min-width: 1280px) {
  :root {
    --heading-default-margin-top: 0;
    --heading-default-margin-right: auto;
    --heading-default-margin-bottom: 3rem;
    --heading-default-margin-left: auto;
  }
}
@media (min-width: 1440px) {
  :root {
    --heading-default-margin-top: 0;
    --heading-default-margin-right: auto;
    --heading-default-margin-bottom: 4rem;
    --heading-default-margin-left: auto;
  }
}

:root {
  --paragraph-default-color: #21382D;
  --paragraph-default-font-family: "Inter", sans-serif;
  --paragraph-default-font-weight: "400";
  --paragraph-default-line-height: 1.4;
  --paragraph-default-letter-spacing: 0;
  --paragraph-default-fontsize: clamp(1.6rem, 0.5667rem + 0.7382vw, 1.9rem);
  --paragraph-default-tiny-fontsize: 1.4rem;
  --paragraph-default-small-fontsize: 1.6rem;
  --paragraph-default-normal-fontsize: clamp(1.6rem, 0.5667rem + 0.7382vw, 1.9rem);
  --paragraph-default-medium-fontsize: clamp(1.6rem, 1.0667rem + 2.4382vw, 2.5rem);
  --paragraph-default-large-fontsize: clamp(3.2rem, 2.62vw + 21.52px, 6.5rem);
  --paragraph-default-huge-fontsize: clamp(4rem, 2.78vw + 28.89px, 7.5rem);
  --paragraph-default-margin-top: 0;
  --paragraph-default-margin-right: auto;
  --paragraph-default-margin-bottom: 1.6rem;
  --paragraph-default-margin-left: auto;
}
@media (min-width: 1280px) {
  :root {
    --paragraph-default-margin-top: 0;
    --paragraph-default-margin-right: auto;
    --paragraph-default-margin-bottom: 2.6rem;
    --paragraph-default-margin-left: auto;
  }
}
@media (min-width: 1440px) {
  :root {
    --paragraph-default-margin-top: 0;
    --paragraph-default-margin-right: auto;
    --paragraph-default-margin-bottom: 3.6rem;
    --paragraph-default-margin-left: auto;
  }
}

p.has-clarendon-urw-extra-narrow-font-family {
  font-weight: 300;
}
p.has-normal-font-size {
  margin-bottom: 2rem;
}
@media (min-width: 1280px) {
  p.has-normal-font-size {
    margin-bottom: 3rem;
  }
}
@media (min-width: 1280px) {
  p.has-medium-font-size {
    margin-bottom: 3.5rem;
  }
}
@media (min-width: 1280px) {
  p.has-large-font-size {
    margin-bottom: 4rem;
  }
}
@media (min-width: 1280px) {
  p.has-huge-font-size {
    margin-bottom: 4.5rem;
  }
}

:root {
  --button-default-background-color: #FF5014;
  --button-default-text-color: white;
  --button-default-border-color: #FF5014;
  --button-default-border-style: solid;
  --button-default-border-width: 0;
  --button-default-font-family: "Inter", sans-serif;
  --button-default-font-weight: "400";
  --button-default-line-height: 1.4;
  --button-default-letter-spacing: 0.05em;
  --button-default-border-radius: 0;
  --button-default-fontsize: clamp(1.6rem, 0.5667rem + 0.7382vw, 1.9rem);
  --button-default-tiny-fontsize: 1.4rem;
  --button-default-small-fontsize: 1.6rem;
  --button-default-normal-fontsize: 1.6rem;
  --button-default-medium-fontsize: 1.7rem;
  --button-default-large-fontsize: 1.7rem;
  --button-default-huge-fontsize: 1.7rem;
  --button-default-padding-top: 8px;
  --button-default-padding-right: 16px;
  --button-default-padding-bottom: 8px;
  --button-default-padding-left: 16px;
  --button-default-margin-top: 14px;
  --button-default-margin-right: 0;
  --button-default-margin-bottom: 30px;
  --button-default-margin-left: 0;
}
@media (min-width: 1280px) {
  :root {
    --button-default-small-fontsize: 1.6rem;
    --button-default-medium-fontsize: 2rem;
    --button-default-large-fontsize: 2.5rem;
    --button-default-huge-fontsize: 3rem;
    --button-default-margin-top: 0;
    --button-default-margin-right: auto;
    --button-default-margin-bottom: 2.6rem;
    --button-default-margin-left: auto;
  }
}
@media (min-width: 1440px) {
  :root {
    --button-default-small-fontsize: 1.6rem;
    --button-default-medium-fontsize: 2.5rem;
    --button-default-large-fontsize: 3.4rem;
    --button-default-huge-fontsize: 4rem;
    --button-default-padding-top: 12px;
    --button-default-padding-right: 30px;
    --button-default-padding-bottom: 12px;
    --button-default-padding-left: 30px;
    --button-default-margin-top: 14px;
    --button-default-margin-right: 0;
    --button-default-margin-bottom: 3.6rem;
    --button-default-margin-left: 0;
  }
}

.acf-innerblocks-container p a {
  color: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}
a:not(.button):hover {
  text-decoration: underline;
}
a.button {
  padding: var(--button-default-padding-top) var(--button-default-padding-right) var(--button-default-padding-bottom) var(--button-default-padding-left);
  letter-spacing: var(--button-default-letter-spacing);
  font-family: var(--button-default-font-family);
  font-size: var(--button-default-fontsize);
  border: 2px solid;
}
a.button:hover {
  text-decoration: none;
}

.wp-element-button.has-text-color {
  border-color: inherit;
}

div.wp-block-button:not(.is-style-inline) a.wp-block-button__link {
  padding: var(--button-default-padding-top) var(--button-default-padding-right) var(--button-default-padding-bottom) var(--button-default-padding-left);
}

div.wp-block-button a.wp-block-button__link {
  margin-bottom: 0;
  transition: opacity 0.2s ease;
}
div.wp-block-button a.wp-block-button__link:hover {
  opacity: 0.8;
  text-decoration: none;
}

.wp-block-buttons {
  margin: 0 auto !important;
  width: 100%;
}
.wp-block-buttons > .wp-block-button + .wp-block-button {
  margin-left: 80px !important;
}

div.wp-block-button > * {
  display: inherit;
}
div.wp-block-button .wp-block-button__link {
  font-size: initial;
}
div.wp-block-button.has-tiny-font-size > * {
  font-size: var(--button-default-tiny-fontsize) !important;
}
div.wp-block-button.has-tiny-font-size > *:after {
  width: 30px;
  height: 14px;
}
div.wp-block-button.has-small-font-size > * {
  font-size: var(--button-default-small-fontsize) !important;
}
div.wp-block-button.has-small-font-size > *:after {
  width: 35px;
  height: 18px;
}
div.wp-block-button.has-normal-font-size > * {
  font-size: var(--button-default-normal-fontsize) !important;
}
div.wp-block-button.has-normal-font-size > *:after {
  width: 40px;
  height: 22px;
}
div.wp-block-button.has-medium-font-size > * {
  font-size: var(--button-default-medium-fontsize) !important;
}
div.wp-block-button.has-medium-font-size > *:after {
  width: 45px;
  height: 26px;
}
div.wp-block-button.has-large-font-size > * {
  font-size: var(--button-default-large-fontsize) !important;
}
div.wp-block-button.has-large-font-size > *:after {
  width: 50px;
  height: 30px;
}
div.wp-block-button.has-huge-font-size > * {
  font-size: var(--button-default-huge-fontsize) !important;
}
div.wp-block-button.has-huge-font-size > *:after {
  width: 55px;
  height: 34px;
}
div.wp-block-button.is-style-inline a:hover {
  background: transparent !important;
}
div.wp-block-button.is-style-inline a:hover:after {
  right: -14px;
  transition: right 0.2s ease;
}
div.wp-block-button.is-style-inline > * {
  border: 0;
  padding: 0;
  margin-top: 0;
  background-color: transparent;
  position: relative;
}
div.wp-block-button.is-style-inline > *:after {
  transition: right 0.2s ease;
  position: absolute;
  transform: translate(100%, calc(-50% + 4px));
  right: -10px;
  top: 50%;
  content: "";
  width: 40px;
  height: 22px;
  background-image: url("../../assets/img/arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
div.wp-block-button.is-style-inline > *.has-white-color:after {
  background-image: url("../../assets/img/white-arrow.svg");
}

header {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  padding: 13px 0;
  transition: transform 0.3s ease;
  height: 76px;
}
header:not(.remove-fixed) {
  position: fixed;
}
@media (min-width: 1280px) {
  header {
    padding: 16px 0;
    height: 85px;
  }
}
header.white {
  background: white;
}
header.transparent {
  background: rgba(255, 255, 255, 0.7);
}
header.scroll-down {
  transform: translateY(-100%);
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: 1920px;
  padding: 0 var(--block-padding);
}
@media (min-width: 1440px) {
  header .container {
    padding: 0 50px;
  }
}
header .container .logo {
  display: block;
  height: 100%;
}
header .container .logo > a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
}
header .container .logo img {
  height: 100%;
}
header .container .logo svg {
  height: 100%;
}
@media (max-width: 500px) {
  header .container .logo img, header .container .logo svg {
    height: 40px;
  }
}
header .container > input {
  display: none;
}
header .container .left-header {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: flex-end;
}
header .container .left-header > div {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
@media (max-width: 1023px) {
  header .container .left-header > a {
    display: none;
  }
}
header .container .left-header > a.button {
  font-size: var(--button-default-small-fontsize);
}
header .container .left-header > a.button + div {
  width: auto;
}
@media (min-width: 768px) {
  header .container .left-header > a {
    margin-right: 36px;
  }
}
@media (min-width: 1024px) {
  header .container .left-header > a:first-of-type {
    transition: color 0.3s ease;
    display: block;
  }
}
header .container .left-header > a.button {
  color: var(--button-default-text-color);
  background: var(--button-default-background-color);
  border: 0;
  transition: opacity 0.2s ease;
}
header .container .left-header > a.button:hover {
  opacity: 0.7;
}
header .container .left-header #menu-input {
  display: none;
}
header .container .left-header #menu-input:checked ~ .menu-container .menu {
  opacity: 1;
  pointer-events: auto;
  transition: transform 0.4s ease, opacity 0.3s ease;
}
header .container .left-header #menu-input:checked ~ .menu-container label {
  transform: rotate(180deg);
}
header .container .left-header #menu-input:checked ~ .menu-container label > span {
  opacity: 0;
}
header .container .left-header #menu-input:checked ~ .menu-container label > span:first-of-type {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(-45deg);
}
header .container .left-header #menu-input:checked ~ .menu-container label > span:last-of-type {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(45deg);
}
header .container .left-header #menu-input:checked ~ .menu-container nav ul li:nth-of-type(1) a {
  left: 0;
  opacity: 1;
  transition: left 0.3s ease-out 0.1s, opacity 0.3s ease-out 0.1s, bottom 0.2s ease, color 0.2s ease, padding-bottom 0.2s ease;
}
header .container .left-header #menu-input:checked ~ .menu-container nav ul li:nth-of-type(1) a:hover {
  bottom: 6px;
  padding-bottom: 6px;
  transition: color 0.2s ease, bottom 0.2s ease, padding-bottom 0.2s ease;
  color: #FFF;
  text-decoration: none;
}
header .container .left-header #menu-input:checked ~ .menu-container nav ul li:nth-of-type(2) a {
  left: 0;
  opacity: 1;
  transition: left 0.3s ease-out 0.2s, opacity 0.3s ease-out 0.2s, bottom 0.2s ease, color 0.2s ease, padding-bottom 0.2s ease;
}
header .container .left-header #menu-input:checked ~ .menu-container nav ul li:nth-of-type(2) a:hover {
  bottom: 6px;
  padding-bottom: 6px;
  transition: color 0.2s ease, bottom 0.2s ease, padding-bottom 0.2s ease;
  color: #FFF;
  text-decoration: none;
}
header .container .left-header #menu-input:checked ~ .menu-container nav ul li:nth-of-type(3) a {
  left: 0;
  opacity: 1;
  transition: left 0.3s ease-out 0.3s, opacity 0.3s ease-out 0.3s, bottom 0.2s ease, color 0.2s ease, padding-bottom 0.2s ease;
}
header .container .left-header #menu-input:checked ~ .menu-container nav ul li:nth-of-type(3) a:hover {
  bottom: 6px;
  padding-bottom: 6px;
  transition: color 0.2s ease, bottom 0.2s ease, padding-bottom 0.2s ease;
  color: #FFF;
  text-decoration: none;
}
header .container .left-header #menu-input:checked ~ .menu-container nav ul li:nth-of-type(4) a {
  left: 0;
  opacity: 1;
  transition: left 0.3s ease-out 0.4s, opacity 0.3s ease-out 0.4s, bottom 0.2s ease, color 0.2s ease, padding-bottom 0.2s ease;
}
header .container .left-header #menu-input:checked ~ .menu-container nav ul li:nth-of-type(4) a:hover {
  bottom: 6px;
  padding-bottom: 6px;
  transition: color 0.2s ease, bottom 0.2s ease, padding-bottom 0.2s ease;
  color: #FFF;
  text-decoration: none;
}
header .container .left-header #menu-input:checked ~ .menu-container nav ul li:nth-of-type(5) a {
  left: 0;
  opacity: 1;
  transition: left 0.3s ease-out 0.5s, opacity 0.3s ease-out 0.5s, bottom 0.2s ease, color 0.2s ease, padding-bottom 0.2s ease;
}
header .container .left-header #menu-input:checked ~ .menu-container nav ul li:nth-of-type(5) a:hover {
  bottom: 6px;
  padding-bottom: 6px;
  transition: color 0.2s ease, bottom 0.2s ease, padding-bottom 0.2s ease;
  color: #FFF;
  text-decoration: none;
}
header .container .left-header #menu-input:checked ~ .menu-container nav ul li:nth-of-type(6) a {
  left: 0;
  opacity: 1;
  transition: left 0.3s ease-out 0.6s, opacity 0.3s ease-out 0.6s, bottom 0.2s ease, color 0.2s ease, padding-bottom 0.2s ease;
}
header .container .left-header #menu-input:checked ~ .menu-container nav ul li:nth-of-type(6) a:hover {
  bottom: 6px;
  padding-bottom: 6px;
  transition: color 0.2s ease, bottom 0.2s ease, padding-bottom 0.2s ease;
  color: #FFF;
  text-decoration: none;
}
header .container .left-header #menu-input:checked ~ .menu-container nav ul li:nth-of-type(7) a {
  left: 0;
  opacity: 1;
  transition: left 0.3s ease-out 0.7s, opacity 0.3s ease-out 0.7s, bottom 0.2s ease, color 0.2s ease, padding-bottom 0.2s ease;
}
header .container .left-header #menu-input:checked ~ .menu-container nav ul li:nth-of-type(7) a:hover {
  bottom: 6px;
  padding-bottom: 6px;
  transition: color 0.2s ease, bottom 0.2s ease, padding-bottom 0.2s ease;
  color: #FFF;
  text-decoration: none;
}
header .container .left-header #menu-input:checked ~ .menu-container nav ul li:nth-of-type(8) a {
  left: 0;
  opacity: 1;
  transition: left 0.3s ease-out 0.8s, opacity 0.3s ease-out 0.8s, bottom 0.2s ease, color 0.2s ease, padding-bottom 0.2s ease;
}
header .container .left-header #menu-input:checked ~ .menu-container nav ul li:nth-of-type(8) a:hover {
  bottom: 6px;
  padding-bottom: 6px;
  transition: color 0.2s ease, bottom 0.2s ease, padding-bottom 0.2s ease;
  color: #FFF;
  text-decoration: none;
}
header .container .left-header #menu-input:checked ~ .menu-container nav ul li:nth-of-type(9) a {
  left: 0;
  opacity: 1;
  transition: left 0.3s ease-out 0.9s, opacity 0.3s ease-out 0.9s, bottom 0.2s ease, color 0.2s ease, padding-bottom 0.2s ease;
}
header .container .left-header #menu-input:checked ~ .menu-container nav ul li:nth-of-type(9) a:hover {
  bottom: 6px;
  padding-bottom: 6px;
  transition: color 0.2s ease, bottom 0.2s ease, padding-bottom 0.2s ease;
  color: #FFF;
  text-decoration: none;
}
header .container .left-header #menu-input:checked ~ .menu-container nav ul li:nth-of-type(10) a {
  left: 0;
  opacity: 1;
  transition: left 0.3s ease-out 1s, opacity 0.3s ease-out 1s, bottom 0.2s ease, color 0.2s ease, padding-bottom 0.2s ease;
}
header .container .left-header #menu-input:checked ~ .menu-container nav ul li:nth-of-type(10) a:hover {
  bottom: 6px;
  padding-bottom: 6px;
  transition: color 0.2s ease, bottom 0.2s ease, padding-bottom 0.2s ease;
  color: #FFF;
  text-decoration: none;
}
header .container .left-header .menu-container {
  position: relative;
  z-index: 999;
}
header .container .left-header .menu-container label {
  border-radius: 32px;
  position: relative;
  display: block;
  cursor: pointer;
  background: white;
  z-index: 1;
  transition: transform 0.3s ease;
  height: 50px;
  width: 50px;
}
@media (min-width: 1280px) {
  header .container .left-header .menu-container label {
    height: 54px;
    width: 54px;
  }
}
header .container .left-header .menu-container label:hover > span {
  background: #21382D;
}
header .container .left-header .menu-container label:hover > span:first-of-type {
  transform: translate(-50%, calc(-50% - 5px));
}
header .container .left-header .menu-container label:hover > span:last-of-type {
  transform: translate(-50%, calc(-50% + 5px));
}
header .container .left-header .menu-container label > span {
  transition: background 0.2s ease, opacity 0.2s ease, transform 0.3s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 2px;
  width: calc(100% - 30px);
  background: #21382D;
}
@media (min-width: 1280px) {
  header .container .left-header .menu-container label > span {
    width: calc(100% - 34px);
  }
}
header .container .left-header .menu-container label > span:first-of-type {
  transform: translate(-50%, calc(-50% - 7px));
}
header .container .left-header .menu-container label > span:last-of-type {
  transform: translate(-50%, calc(-50% + 7px));
}
header .container .left-header .menu-container > .menu {
  background-color: #21382D;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.6s ease, opacity 0.3s ease 0.1s;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
header .container .left-header .menu-container > .menu nav {
  flex-direction: column;
  justify-content: center;
  overflow-y: scroll;
}
header .container .left-header .menu-container > .menu nav ul {
  text-align: center;
  list-style: none;
  padding: 0;
}
header .container .left-header .menu-container > .menu nav ul li {
  margin-bottom: 2.4rem;
}
header .container .left-header .menu-container > .menu nav ul li a {
  left: -80px;
  opacity: 0;
  position: relative;
  color: white;
  transition: color 0.2s ease, bottom 0.2s ease;
  bottom: 0;
  font-family: var(--heading-default-font-family);
}
@media (min-width: 768px) {
  header .container .left-header .menu-container > .menu nav ul li a {
    font-size: 3.6rem;
  }
}

footer.remove-footer {
  display: none;
}
footer .container {
  max-width: 2040px;
}
@media (max-width: 1169px) {
  footer .container {
    grid-gap: 50px 6px;
    gap: 50px 6px;
  }
}
@media (max-width: 767px) {
  footer .container {
    grid-gap: 30px 6px;
    gap: 30px 6px;
    padding-bottom: 80px;
  }
}
footer .container ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .container ul li {
  margin-bottom: 1rem;
}
@media (min-width: 1170px) {
  footer .container ul li {
    margin-bottom: 2.5rem;
  }
}
footer .container .logo {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-content: center;
  align-items: center;
}
footer .container .logo > a {
  display: flex;
  justify-content: center;
}
footer .container .logo img, footer .container .logo svg {
  max-width: 95px;
  width: 100%;
}
@media (max-width: 1169px) {
  footer .container .logo > * + * {
    margin-top: 50px;
  }
}
@media (max-width: 768px) {
  footer .container .logo > * + * {
    margin-top: 20px;
  }
}
footer .container .menu {
  justify-content: space-between;
  display: flex;
  flex-direction: column;
}
footer .container .menu > a {
  display: flex;
}
@media (max-width: 1169px) {
  footer .container .menu > a {
    margin-top: 50px;
  }
}
footer .container .menu > a svg {
  height: 50px;
}
footer .container .menu > a svg path {
  fill: white;
}
footer .container p, footer .container li {
  color: var(--wp--preset--color--green);
  font-size: 1.6rem;
}
@media (min-width: 900px) {
  footer .container p, footer .container li {
    font-size: 2rem;
  }
}
footer .container p:last-of-type, footer .container li:last-of-type {
  margin-bottom: 0;
}
footer .container p a, footer .container li a {
  font-size: inherit;
  color: inherit;
  transition: color 0.3s ease;
}
footer .container p a:hover, footer .container li a:hover {
  text-decoration: underline;
}
footer a.sticky-button {
  position: fixed;
  right: 20px;
  bottom: 20px;
  left: 20px;
  border: none;
  padding: 16px 30px;
  z-index: 1;
  text-align: center;
  font-weight: bold;
}
@media (min-width: 768px) {
  footer a.sticky-button {
    left: auto;
    padding: 20px 60px;
  }
}

::-moz-selection {
  background: #8F8D7C;
  color: #FFF;
}

::selection {
  background: #8F8D7C;
  color: #FFF;
}

html {
  font-size: 62.5%;
  font-family: var(--paragraph-default-font-family);
}
html.noScroll, html.noScroll body {
  overflow: inherit !important;
}

.grecaptcha-badge {
  visibility: hidden;
}

body {
  font-size: 20px;
  color: #21382D;
  line-height: 1.4;
  margin: 0 auto;
  width: 100%;
}

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

.container {
  width: 100%;
  display: flex;
  margin: 0 auto;
  max-width: var(--container-width);
  padding: calc(var(--block-padding) * 2.5) var(--block-padding);
}
@media (min-width: 768px) {
  .container {
    padding: calc(var(--block-padding) * 2) var(--block-padding);
  }
}
@media (min-width: 1024px) {
  .container {
    padding: calc(var(--block-padding) * 1.5) var(--block-padding);
  }
}
.container.grid {
  display: grid;
}
.container .acf-innerblocks-container {
  width: 100%;
}

main h1, main h2, main h3, main h4, main h5, main h6 {
  max-width: 1366px;
  width: 100%;
}
main p, main a, main li, main .wp-block-buttons {
  max-width: 1170px;
  width: 100%;
}
main > section.content-block:first-child .container {
  padding-top: 250px;
}
@media (max-width: 767px) {
  main > section.content-block:first-child .container {
    padding-top: 150px;
    padding-bottom: 100px;
  }
}

@media (min-width: 1024px) {
  .hide-on-desktop {
    display: none;
  }
  .wp-block .hide-on-desktop {
    display: block;
    opacity: 0.8;
  }
}

@media (max-width: 767px) {
  .hide-on-mobile {
    display: none;
  }
}

section.has-green-purple-background-color + section.has-green-purple-background-color,
section.has-gold-background-color + section.has-gold-background-color,
section.has-white-background-color + section.has-white-background-color,
section.has-red-background-color + section.has-red-background-color,
section.has-black-background-color + section.has-black-background-color,
section.has-blue-background-color + section.has-blue-background-color {
  padding-top: 0;
}
section.has-green-purple-background-color + section.has-green-purple-background-color.content-block .container,
section.has-gold-background-color + section.has-gold-background-color.content-block .container,
section.has-white-background-color + section.has-white-background-color.content-block .container,
section.has-red-background-color + section.has-red-background-color.content-block .container,
section.has-black-background-color + section.has-black-background-color.content-block .container,
section.has-blue-background-color + section.has-blue-background-color.content-block .container {
  padding-top: 40px;
}
section.has-green-purple-background-color + section.has-green-purple-background-color.media-text .wp-block-media-text,
section.has-gold-background-color + section.has-gold-background-color.media-text .wp-block-media-text,
section.has-white-background-color + section.has-white-background-color.media-text .wp-block-media-text,
section.has-red-background-color + section.has-red-background-color.media-text .wp-block-media-text,
section.has-black-background-color + section.has-black-background-color.media-text .wp-block-media-text,
section.has-blue-background-color + section.has-blue-background-color.media-text .wp-block-media-text {
  padding-top: 0;
}
section.has-green-purple-background-color + section.has-green-purple-background-color.materials-content-block .container.content,
section.has-gold-background-color + section.has-gold-background-color.materials-content-block .container.content,
section.has-white-background-color + section.has-white-background-color.materials-content-block .container.content,
section.has-red-background-color + section.has-red-background-color.materials-content-block .container.content,
section.has-black-background-color + section.has-black-background-color.materials-content-block .container.content,
section.has-blue-background-color + section.has-blue-background-color.materials-content-block .container.content {
  padding-top: 0;
}

section .container ul.has-white-color li:before, section .acf-innerblocks-container ul.has-white-color li:before {
  background: white;
}
section .container ul li, section .acf-innerblocks-container ul li {
  display: block;
  padding-left: 20px;
  position: relative;
  margin-bottom: 6px;
  font-size: var(--paragraph-default-fontsize);
}
section .container ul li:before, section .acf-innerblocks-container ul li:before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: #000;
}

section.hero + section {
  margin-top: -3px;
}

.content-container {
  max-width: 600px;
  width: 100%;
}

ul {
  list-style-position: inside;
  padding: 0;
}
ul li::marker {
  margin-right: 10px;
}