:root {
  --colorPrimary: #86C235;
  --colorSecondary: #154C7E;
  --colorAccent: #4F4E53;
  --colorSecondaryBg: #F5F5F5;
  --colorText: #000;
  --sizeFrameWidth: 90rem;
  --sizeFrameMargin: calc((100vw - var(--sizeFrameWidth)) / 2);
  --sizeFramePadding: 1rem;
  --sizeSectionPadding: 3em;
  --textBaseSize: .875rem;
  --animationBase: all .24s ease-in-out;
}
@media (min-width: 30rem) {
  :root {
    --sizeFramePadding: 2rem;
  }
}
@media (min-width: 92rem) {
  :root {
    --sizeSectionPadding: 5em;
    --sizeFramePadding: 0;
  }
}
@media (min-width: 92rem) {
  :root {
    --textBaseSize: 1rem;
  }
}

/**
 * Colours
 */
/**
 * Typography
 */
/**
 * Breakpoints
 */
/**
 * Grid
 */
/**
 * Components
 */
/**
 * Animations
 */
/*
 * Media query to respond to a minimum size (mobile first)
 */
/*
 * Media query to respond to a maximum size
 */
/*
 * Output font size in px/rem
 */
/*
 * Placeholder mixin for <input>
 */
/**
 * Clearfix
 */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
html.is-not-smooth {
  scroll-behavior: unset;
}

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

input,
select,
textarea,
button {
  color: inherit;
  display: inline-block;
}
input[disabled],
select[disabled],
textarea[disabled],
button[disabled] {
  cursor: not-allowed;
}

figure {
  margin: 0;
}

button {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}
table th,
table td {
  text-align: left;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@media only screen and (min-width: 1025px) {
  .visible-lg {
    display: block !important;
  }
}

@media only screen and (min-width: 1025px) {
  .hidden-lg {
    display: none !important;
  }
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .visible-md {
    display: block !important;
  }
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .hidden-md {
    display: none !important;
  }
}

@media only screen and (min-width: 481px) and (max-width:768px) {
  .visible-sm {
    display: block !important;
  }
}

@media only screen and (min-width: 481px) and (max-width:768px) {
  .hidden-sm {
    display: none !important;
  }
}

@media only screen and (max-width: 480px) {
  .visible-xs {
    display: block !important;
  }
}

@media only screen and (max-width: 480px) {
  .hidden-xs {
    display: none !important;
  }
}

/**
* Clearing and floating
*/
.alignleft,
.float-left {
  float: left;
}
img .alignleft,
img .float-left {
  margin-right: 24px;
}

.alignright,
.float-right {
  float: right;
}
img .alignright,
img .float-right {
  margin-left: 24px;
}

.aligncenter,
.float-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
img .aligncenter,
img .float-center {
  margin-bottom: 24px;
}

.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}

/**
* Text aligments
*/
.align-text-left {
  text-align: left;
}

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

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

/**
 * Elements visibility
 */
.visible-on-mobile {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .visible-on-mobile {
    display: block !important;
  }
}

.visible-on-tablet {
  display: none !important;
}
@media screen and (max-width: 1024px) {
  .visible-on-tablet {
    display: block !important;
  }
}
@media screen and (max-width: 768px) {
  .visible-on-tablet {
    display: none !important;
  }
}

@media screen and (max-width: 1024px) {
  .visible-on-desktop {
    display: none !important;
  }
}

/**
 * Accessibility
 */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

body {
  color: #000;
  font-family: "Poppins", sans-serif;
  line-height: 1.5;
  text-size-adjust: none;
  font-size: var(--textBaseSize, 1rem);
  margin: 0;
  display: flex;
  flex-flow: column;
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
hr,
ul,
ol,
dl {
  margin-bottom: 24px;
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child,
hr:last-child,
ul:last-child,
ol:last-child,
dl:last-child {
  margin-bottom: 0;
}

/**
 * Basic styles for links
 */
a {
  color: #000;
  text-decoration: none;
}
a:hover {
  color: #000;
  text-decoration: underline;
}
p a, span a {
  text-decoration: underline;
}
p a:hover, span a:hover {
  text-decoration: none;
  opacity: 0.8;
}
a[href^=tel]:not(.ButtonBase) {
  font-size: inherit;
  font-family: inherit;
  color: inherit;
  text-decoration: none;
  font-style: inherit;
}

/**
 * Rules
 */
hr {
  height: 1px;
  background-color: #000;
}

section:not(.u-noPadding) {
  padding-top: var(--sizeSectionPadding);
  padding-bottom: var(--sizeSectionPadding);
}

.section-title {
  margin: 0 0 1em;
}

.section-perex {
  font-size: 1.125em;
  max-width: 44em;
  margin: 0 auto 2.5em;
}

.u-clearfix::after {
  clear: both;
  content: "";
  display: table;
}

[class*=u-frame] {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: var(--sizeFrameWidth);
}
@media (max-width: 92rem) {
  [class*=u-frame] {
    padding-left: var(--sizeFramePadding);
    padding-right: var(--sizeFramePadding);
  }
}

.u-frame--wide {
  max-width: 75rem;
}
.u-frame--narrow {
  max-width: 61.25rem;
}
.u-frame--full {
  max-width: none;
}

@media (min-width: 90rem) {
  .u-margin--left {
    margin-left: var(--sizeFrameMargin);
  }
  .u-margin--right {
    margin-right: var(--sizeFrameMargin);
  }
}
.u-noPadding {
  padding: 0;
}

.u-fullWidth {
  width: 100%;
}

.u-block {
  display: block;
}

.u-flex {
  display: flex;
}

.u-hidden {
  display: none !important;
}

.u-hide {
  opacity: 0;
  font-size: 0;
}

.u-overflowHidden {
  overflow: hidden;
}

.u-hiddenVisually {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.u-invisibleScrollBar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.u-invisibleScrollBar::-webkit-scrollbar {
  display: none;
}

.u-customScrollBar {
  scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
  scrollbar-width: thin;
}
.u-customScrollBar::-webkit-scrollbar {
  width: 0.4rem;
}
.u-customScrollBar::-webkit-scrollbar-track {
  background: transparent;
}
.u-customScrollBar::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  transition: all 0.25s ease-in-out;
}
.u-customScrollBar::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.4);
}

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

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

.u-flexJustifyStart {
  justify-content: flex-start;
}

.u-flexJustifyEnd {
  justify-content: flex-end;
}

.u-flexJustifyCenter {
  justify-content: center;
}

.u-flexJustifyBetween {
  justify-content: space-between;
}

.u-flexJustifyAround {
  justify-content: space-around;
}

.u-flexAlignItemsStart {
  align-items: flex-start;
}

.u-flexAlignItemsEnd {
  align-items: flex-end;
}

.u-flexAlignItemsCenter {
  align-items: center;
}

.u-spanRow {
  grid-column: 1/-1;
}

.c-green {
  color: var(--colorPrimary);
}

.c-red {
  color: var(--colorSecondary);
}

.u-imageCover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.u-imageBg {
  position: absolute;
  inset: 0;
}

.u-homeTitle {
  text-align: center;
  color: var(--colorSecondary);
  font-size: 2rem;
  margin-bottom: 1.5em;
}
@media (max-width: 48em) {
  .u-homeTitle {
    font-size: 1.8rem;
  }
}

.grid {
  display: grid;
  grid-gap: 24px;
}
@media screen and (max-width: 768px) {
  .grid {
    grid-gap: 12px;
  }
}
@media only screen and (min-width: 1025px) {
  .grid.grid--lg-1x {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid.grid--lg-2x {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid.grid--lg-3x {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid.grid--lg-4x {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .grid.grid--lg-5x {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .grid.grid--lg-6x {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .grid.grid--md-1x {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid.grid--md-2x {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid.grid--md-3x {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid.grid--md-4x {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .grid.grid--md-5x {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .grid.grid--md-6x {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
@media only screen and (min-width: 481px) and (max-width:768px) {
  .grid.grid--sm-1x {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid.grid--sm-2x {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid.grid--sm-3x {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid.grid--sm-4x {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .grid.grid--sm-5x {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .grid.grid--sm-6x {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
@media only screen and (max-width: 480px) {
  .grid.grid--xs-1x {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid.grid--xs-2x {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid.grid--xs-3x {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid.grid--xs-4x {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .grid.grid--xs-5x {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .grid.grid--xs-6x {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

/**
 * This file contains all @font-face declarations, if any.
 */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 300;
  font-display: fallback;
  src: url("../fonts/Poppins-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: fallback;
  src: url("../fonts/Poppins-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: fallback;
  src: url("../fonts/Poppins-Bold.woff2") format("woff2");
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

/**
 * Responsive images
 */
.is-fluid {
  display: block;
  width: 100%;
  height: auto;
}

*:focus {
  outline: 0;
}

.FormBase-el:not(.FormBase-checkbox) label {
  display: inline-block;
  font-weight: 700;
  font-size: 0.875em;
  margin-bottom: 0.75em;
  position: absolute;
  text-transform: uppercase;
  z-index: 2;
  color: var(--colorSecondary);
  left: 1.125em;
  top: 0.4em;
}

input[type=text],
input[type=email],
input[type=number],
select,
textarea {
  font-family: "Poppins", sans-serif;
  background-color: #fff;
  border: 0;
  color: #000;
  font-size: 1em;
  line-height: 1.5em;
  height: 4.2em;
  padding: 2em 1.12em 1.125em;
  width: 100%;
  border-radius: 0.5rem;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=number]:focus,
select:focus,
textarea:focus {
  border-color: #000;
}

input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=checkbox],
input[type=radio] {
  background: transparent;
  border: 0;
  line-height: normal;
  height: auto;
  width: auto;
}

input[type=file] {
  line-height: normal;
  height: auto;
  padding: 6px 12px;
}

input[type=submit] {
  border: 0;
}

input[disabled] {
  background-color: whitesmoke;
  cursor: not-allowed;
}

select {
  line-height: normal;
  padding: 1.75em 1em 1em;
  -webkit-appearance: none;
  -moz-appearance: none;
}

textarea {
  min-height: 96px;
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}
textarea[readonly] {
  min-height: auto;
  border: 0;
  padding: 0;
  resize: none;
  height: auto;
  line-height: 1.4;
  font-size: 1.125em;
  font-weight: 800;
  color: var(--colorSecondary);
  margin-bottom: 2em;
}

.wp-block-contact-form-7-contact-form-selector {
  padding: 2em;
  background: var(--colorSecondaryBg);
}
.wp-block-contact-form-7-contact-form-selector > div[role=form] {
  max-width: 40rem;
  margin: 0 auto;
}
.wp-block-contact-form-7-contact-form-selector p {
  font-size: 1rem !important;
}

.wpcf7-response-output,
.wpcf7-not-valid-tip {
  color: #fff;
  border: 0 !important;
  background: #dc3232;
  border-radius: 0.3rem;
  padding: 0.2em 1em;
}

.wpcf7-not-valid-tip {
  margin-top: 0.5em;
}

.controlToggle {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: stretch;
  font-size: 0;
  margin: 0 0 1.5rem;
}
.controlToggle input {
  position: absolute;
  left: -9999px;
  width: 0;
  height: 0;
}
.controlToggle input + label {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0.5rem 1rem;
  border: solid 1px #DDD;
  background-color: #FFF;
  font-size: 0.75rem;
  line-height: 1.4;
  text-align: center;
  transition: border-color 0.15s ease-out, color 0.25s ease-out, background-color 0.15s ease-out;
}
.controlToggle input + label:first-of-type {
  border-radius: 6px 0 0 6px;
  border-right: none;
}
.controlToggle input + label:last-of-type {
  border-radius: 0 6px 6px 0;
  border-left: none;
}
.controlToggle input:hover + label {
  cursor: pointer;
  background-color: #f7ffe3;
}
.controlToggle input:checked + label {
  color: #FFF;
  border-color: var(--colorPrimary);
  background-color: var(--colorPrimary);
  z-index: 1;
}

.wpcf7-spinner {
  position: absolute;
}

/**
 * Form utility classes
 */
.form--inline .form__group {
  display: inline-block;
}

.form .form__group {
  display: block;
  margin-bottom: 24px;
}
.form .form__group .form__label {
  display: block;
  margin-bottom: 12px;
}

ul,
ol {
  margin-left: 24px;
}

li > ul,
li > ol {
  margin-bottom: 0;
}

.list--unstyled {
  margin-left: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
  line-height: 1.24;
}

h1 {
  font-size: 3.2em;
  text-transform: uppercase;
}
@media (max-width: 560px) {
  h1 {
    font-size: 2.4em;
  }
}
h1.main-title {
  font-size: 4em;
}
@media (max-width: 560px) {
  h1.main-title {
    font-size: 3em;
  }
}
h1 > span {
  display: block;
  font-size: 0.75em;
  margin-bottom: -0.375em;
}

h2 {
  font-size: 2.5em;
}
body.home h2 {
  text-transform: uppercase;
}
@media (max-width: 560px) {
  h2 {
    font-size: 2em;
  }
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

small {
  font-size: 0.75em;
}

.big-number {
  font-size: 5em !important;
  font-weight: 800;
  color: var(--colorPrimary);
  margin-bottom: 0.75rem !important;
  line-height: 1.24 !important;
}
.big-number strong {
  font-weight: inherit;
}
.wp-block-column:nth-child(odd) .big-number {
  color: var(--colorSecondary);
}

body.nav-open {
  overflow: hidden;
}

.PageHeader {
  position: relative;
  background: #d0dae3;
  padding: 1em 0;
}
.PageHeader h1 {
  margin: 0.3em 0 0;
  font-size: 2.3em;
  color: var(--colorSecondary);
}
.PageHeader-assets {
  position: absolute;
  top: -8vh;
  right: 0;
  height: 32vh;
  transform: rotate(8deg);
  opacity: 0.08;
}

.Breadcrumbs {
  font-weight: 500;
  opacity: 0.65;
}
.Breadcrumbs a {
  text-decoration: none;
}
.Breadcrumbs a:hover {
  text-decoration: underline;
}
.Breadcrumbs .separator {
  content: url('data:image/svg+xml; utf8, <svg height="12" aria-hidden="true" focusable="false" data-prefix="fas" data-icon="chevron-right" class="svg-inline--fa fa-chevron-right fa-w-10" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path fill="currentColor" d="M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z"></path></svg>');
  padding: 0 0.5em;
  opacity: 0.4;
}
.Breadcrumbs .breadcrumb_last {
  color: var(--colorSecondary);
  font-weight: 700;
  opacity: 0.8;
}

.PageContent {
  padding-top: 4em;
  padding-bottom: 4em;
}
.PageContent :first-child {
  margin-top: 0 !important;
}
.PageContent h2 {
  color: var(--colorSecondary);
  margin: 1em 0 0.8em;
}
.PageContent h3, .PageContent h4 {
  color: #4f4e53;
  margin: 1.5em 0 1em;
}
.PageContent p {
  font-size: 1.125em;
  margin-bottom: 1.5em;
  line-height: 1.8;
}
.PageContent .wp-block-separator {
  margin: 2em 0;
}
.PageContent ul:not([class]) {
  padding: 0;
}
.PageContent ul:not([class]) > li {
  list-style: none;
}
.PageContent ul:not([class]) > li:not(:last-child) {
  padding-bottom: 0.25em;
}
.PageContent ul:not([class]) > li:before {
  content: url('data:image/svg+xml; utf8, <svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="chevron-circle-right" class="svg-inline--fa fa-chevron-circle-right fa-w-16" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z"></path></svg>');
  display: inline-block;
  flex: 0 0 0.8em;
  width: 0.8em;
  margin-right: 1.25em;
  opacity: 0.4;
}
.PageContent .wp-block-table {
  margin-bottom: 1.5em;
}
.PageContent .wp-block-table table tr:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.PageContent .wp-block-table table td {
  padding: 0.75em 0.5em;
}
.PageContent .wp-block-table table + figcaption {
  padding: 0 0.5em;
  margin-top: 0.5em;
  opacity: 0.8;
}
.PageContent .wp-block-table table + figcaption em {
  font-size: 0.875em;
}

.PageList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 3em;
}
@media (max-width: 48rem) {
  .PageList {
    grid-template-columns: 1fr;
  }
}
.PageList article {
  display: grid;
  grid-template-columns: 9.3em auto;
  grid-gap: 1.5em;
  font-size: 0.875em;
}
@media (max-width: 30rem) {
  .PageList article {
    grid-template-columns: 6em auto;
  }
}
.PageList article.type-references {
  grid-template-columns: auto;
  padding: 2em;
  border-radius: 1.25em;
  border: 3px solid var(--colorSecondary);
}
.PageList article.type-references figure,
.PageList article.type-references .PageListItem-link {
  display: none;
}
.PageList article.type-references .PageListItem-title {
  pointer-events: none;
}

.PageListItem-title {
  font-size: 1.3em;
}
.PageListItem-perex {
  margin-bottom: 0.5em;
}
.PageListItem-link {
  display: inline-block;
  color: var(--colorSecondary);
  text-decoration: underline;
}
.PageListItem-link:hover {
  text-decoration: none;
}

@media (max-width: 640px) {
  .wp-block-buttons.is-content-justification-right {
    justify-content: flex-start;
  }
}
.AppHeader {
  position: sticky;
  top: 0;
  background: #fff;
  transition: var(--animationBase);
  z-index: 10;
}
@media (max-width: 980px) {
  .AppHeader {
    padding: 1em 0;
  }
}
.AppHeader.is-sticked {
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.12);
}
.AppHeader.is-up {
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0);
  transform: translateY(-100%);
}
.AppHeader-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.AppHeader-logo {
  display: flex;
  align-items: center;
  height: 4em;
}
@media (max-width: 1640px) {
  .AppHeader-logo {
    height: 3.2em;
  }
}
@media (max-width: 980px) {
  .AppHeader-logo {
    margin-right: 2em;
  }
}
@media (max-width: 480px) {
  .AppHeader-logo {
    height: 2.4em;
  }
}
.AppHeader-logo img {
  max-height: 100%;
  width: auto;
}
.AppHeader-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 980px) {
  .AppHeader-right {
    flex-direction: row;
    align-items: center;
  }
}
.AppHeader-top {
  display: flex;
  align-items: center;
}
@media (min-width: 981px) {
  .AppHeader-top {
    padding: 1em 0 0;
  }
}
.AppHeader-top .ButtonBase {
  font-size: 0.875em;
}
@media (max-width: 980px) {
  .AppHeader-top .ButtonBase {
    padding: 1.15em 1.5em;
  }
}
.AppHeader-contact {
  text-transform: uppercase;
  font-size: 0.875em;
  margin-right: 1.25em;
}
@media (max-width: 980px) {
  .AppHeader-contact {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .AppHeader-contact {
    display: none;
  }
}
.AppHeader-contact--el, .AppHeader-contact--el[href^=tel]:not(.ButtonBase) {
  position: relative;
  color: var(--colorSecondary);
}
@media (min-width: 981px) {
  .AppHeader-contact--el:not(:last-of-type):after, .AppHeader-contact--el[href^=tel]:not(.ButtonBase):not(:last-of-type):after {
    content: "|";
    margin: 0 1em;
  }
}
.AppHeader-nav {
  font-size: 1em;
  font-weight: bold;
}
@media (max-width: 1800px) {
  .AppHeader-nav {
    font-size: 1em;
  }
}
@media (min-width: 980px) {
  .AppHeader-nav > ul {
    display: flex;
    justify-content: flex-end;
  }
  .AppHeader-nav > ul > li > a {
    padding: 1em 0;
    text-decoration: none;
    color: var(--colorSecondary);
    transition: 0.24s;
  }
  .AppHeader-nav > ul > li:hover > a, .AppHeader-nav > ul > li:focus > a {
    color: var(--colorPrimary);
  }
}

.AppFooter {
  margin-top: auto;
  font-size: 0.875em;
  color: var(--appFooter-color, #000);
}
.AppFooter-main {
  background: var(--colorSecondary);
  padding: 4.6rem 0;
  color: #fff;
}
.AppFooter-main .AppFooter-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 60rem) {
  .AppFooter-main .AppFooter-inner {
    grid-template-columns: 1fr 2fr;
  }
}
@media (max-width: 48rem) {
  .AppFooter-main .AppFooter-inner {
    grid-template-columns: 1fr;
    grid-gap: 3em;
  }
}
.AppFooter-main p {
  line-height: 2;
}
.AppFooter-main a {
  text-decoration: none;
}
@media (max-width: 48rem) {
  .AppFooter-contact {
    order: 2;
  }
}
.AppFooter-comgate {
  display: block;
  margin-top: 1rem;
}
.AppFooter-form {
  position: relative;
}
.AppFooter-image {
  position: absolute;
  left: -4em;
  top: 2em;
}
.AppFooter-title {
  margin: 0 0 1.3rem;
  font-size: 1.5em;
  position: relative;
  z-index: 2;
}
.AppFooter-social {
  color: var(--colorPrimary);
}
.AppFooter-social a {
  text-decoration: none;
  transition: 0.24s;
}
.AppFooter-social a:not(:last-of-type) {
  margin-right: 1.25em;
}
.AppFooter-social a:hover, .AppFooter-social a:focus {
  color: #507000;
}
.AppFooter-bottomBar {
  padding-top: 2em;
  padding-bottom: 2em;
  line-height: 1.24;
  background: var(--appFooter-bg, #fff);
}
@media (max-width: 560px) {
  .AppFooter-bottomBar {
    line-height: 1;
  }
}
.AppFooter-bottomBar > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.AppFooter a {
  color: inherit;
  transition: opacity 0.24s ease;
}
.AppFooter a.u-inlineLink:hover {
  opacity: 0.4;
}
.AppFooter .AppFooter-link {
  margin-top: 2em;
  font-size: 0.9em;
  display: inline-block;
  text-decoration: underline;
}
.AppFooter .AppFooter-link:hover {
  text-decoration: none;
}
.AppFooter small {
  font-size: 0.75em;
  opacity: 0.64;
}
.AppFooter-agency {
  display: flex;
  align-items: center;
}
.AppFooter-agency span {
  margin-right: 0.625em;
}
@media (max-width: 560px) {
  .AppFooter-agency span {
    display: none;
  }
}
.AppFooter-agencyLogo {
  display: flex;
  height: 2.5em;
}
@media (max-width: 560px) {
  .AppFooter-agencyLogo {
    height: 2em;
  }
}
.AppFooter-agencyLogo svg {
  width: auto;
  height: 100%;
}
.AppFooter .c-brand {
  fill: var(--appFooter-logo-color, #163072);
}
.AppFooter .c-accent {
  fill: var(--appFooter-logo-color, #E4003C);
}

.ScrollTop {
  position: fixed;
  bottom: 1.5em;
  right: 6em;
  height: 2.5em;
  width: 2.5em;
  cursor: pointer;
  border-radius: 50%;
  background: transparent;
  transition: var(--animationBase);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  z-index: 10;
}
.ScrollTop:hover {
  background: rgba(0, 0, 0, 0.12);
  color: var(--color-brand-gold);
}
.ScrollTop:not(.is-visible) {
  opacity: 0;
  pointer-events: none;
}
.ScrollTop svg {
  height: 1.5em;
  width: auto;
}

.ButtonBase,
.wp-block-button__link {
  background-color: var(--buttonColorBg, var(--colorSecondary));
  color: #fff;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  font-size: 1.125em;
  padding: 0.75em 1.75em;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  user-select: none;
  width: auto;
  transition: var(--animationBase);
  font-weight: 800;
  border-radius: 0.5rem;
}
.ButtonBase svg,
.wp-block-button__link svg {
  height: 1em;
  margin-right: 0.625em;
  opacity: 0.64;
}
.ButtonBase-primary,
.wp-block-button__link-primary {
  --buttonColorBg: var(--colorPrimary);
  --buttonColorBg-hover: #507000;
  color: #000;
}
.ButtonBase-light,
.wp-block-button__link-light {
  --buttonColorBg: #fff;
}
.ButtonBase-narrow,
.wp-block-button__link-narrow {
  font-size: var(--sizeBtnNarrow, 1em);
  letter-spacing: -0.02em;
  padding: 0.625em 0.75em;
}
.ButtonBase-nav,
.wp-block-button__link-nav {
  border: 0;
  background: transparent;
}
.ButtonBase::-moz-focus-inner,
.wp-block-button__link::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.ButtonBase:hover,
.wp-block-button__link:hover {
  text-decoration: none;
  color: #fff;
  background-color: var(--buttonColorBg-hover, #af1c14);
}
.ButtonBase.is-disabled, .ButtonBase:disabled,
.wp-block-button__link.is-disabled,
.wp-block-button__link:disabled {
  pointer-events: none;
  opacity: 0.65;
}
.ButtonBase--block,
.wp-block-button__link--block {
  display: block;
  width: 100%;
  max-width: var(--sizeButtonBlockWidth, none);
}
.ButtonBase--block + .ButtonBase--block,
.wp-block-button__link--block + .ButtonBase--block {
  margin-top: 0.875em;
}

.btn--inverse {
  background-color: #fff;
  color: #444;
  border: 1px solid #444;
}
.btn--inverse:hover {
  background-color: #444;
  color: #fff;
  border-color: transparent;
}

.btn--link {
  background-color: transparent;
  color: #444;
}

.FormBase-button input[type=submit] {
  background-color: var(--buttonColorBg, var(--colorSecondary));
  --buttonColorBg: var(--colorPrimary);
  --buttonColorBg-hover: #507000;
  color: #000;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  font-size: 1.125em;
  padding: 0.75em 1.75em;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  user-select: none;
  width: auto;
  transition: var(--animationBase);
  font-weight: 800;
  border-radius: 0.5rem;
}
.FormBase-button input[type=submit]:hover {
  text-decoration: none;
  color: #fff;
  background-color: var(--buttonColorBg-hover, #af1c14);
}

.CookieBar-button {
  color: #000;
}

.FormBase-main {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas: "name name" "email phone" "text text";
  grid-gap: 2em;
}
@media (max-width: 480px) {
  .FormBase-main {
    grid-template-columns: 1fr;
    grid-template-areas: "name" "email" "phone" "text";
  }
}
.FormBase-main .FormBase-name {
  grid-area: name;
}
.FormBase-main .FormBase-email {
  grid-area: email;
}
.FormBase-main .FormBase-phone {
  grid-area: phone;
}
.FormBase-main .FormBase-button {
  grid-area: button;
}
.FormBase-main .FormBase-text {
  grid-area: text;
}
.FormBase-main .FormBase-gdpr {
  grid-area: gdpr;
}
.FormBase-text textarea {
  min-height: 11em;
}
.FormBase-checkbox label {
  cursor: pointer;
  display: block;
}
.FormBase-checkbox input[type=checkbox] {
  display: none;
}
.FormBase-checkbox input[type=checkbox]:checked + .wpcf7-list-item-label:before {
  background: var(--colorSecondary);
  border-color: var(--colorSecondary);
}
.FormBase-checkbox input[type=checkbox]:checked + .wpcf7-list-item-label:after {
  opacity: 1;
  visibility: visible;
}
.FormBase-checkbox .wpcf7-list-item {
  margin: 0;
}
.FormBase-checkbox .wpcf7-list-item-label {
  position: relative;
  padding-left: 2rem;
  display: inherit;
}
.FormBase-checkbox .wpcf7-list-item-label:before, .FormBase-checkbox .wpcf7-list-item-label:after {
  transition: 0.25s;
}
.FormBase-checkbox .wpcf7-list-item-label:before {
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid #fff;
  position: absolute;
  left: 0;
  border-radius: 3px;
  top: -1px;
}
.FormBase-checkbox .wpcf7-list-item-label:after {
  width: 0.4rem;
  height: 0.65rem;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  transform: rotate(45deg);
  left: 0.6rem;
  top: 0.3rem;
  opacity: 0;
  visibility: hidden;
}
.FormBase-select {
  position: relative;
}
.FormBase-select:after {
  content: "";
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  border-bottom: 2px solid var(--colorSecondary);
  border-right: 2px solid var(--colorSecondary);
  transform: rotate(45deg);
  top: 1.5rem;
  right: 1rem;
}
.FormBase-gdpr a {
  text-decoration: underline;
  color: #fff;
}
.FormBase-gdpr a:hover {
  text-decoration: none;
}
.FormBase-el {
  position: relative;
}
.FormBase-button {
  position: relative;
  margin-left: auto;
}
.FormBase-button .ajax-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  margin: 0;
}
.FormBase-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 2em;
}

/**
 * Hamburger menu
 */
.nav-burger {
  display: none;
  margin-left: 0.5em;
  z-index: 550;
  transition: all 250ms ease-in-out;
  background-color: var(--colorSecondary);
  width: 3em;
  height: 3em;
  border-radius: 0.5em;
  text-decoration: none;
}
@media (max-width: 980px) {
  .nav-burger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.nav-burger:after {
  content: "MENU";
  font-size: 0.625em;
  color: #fff;
  font-weight: bold;
  line-height: 1;
  margin: 0.25rem 0 -0.2em;
}
.nav-burger:hover, .nav-burger:focus {
  text-decoration: none;
}

.nav-burger__line {
  display: block;
  width: 18px;
  height: 2px;
  background-color: #fff;
  margin: 2px auto;
  transition: all 250ms ease-in-out;
}
.nav-burger.open .nav-burger__line:nth-child(2) {
  opacity: 0;
}
.nav-burger.open .nav-burger__line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-burger.open .nav-burger__line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/**
 * Navs
 */
.nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav > li {
  position: relative;
  display: inline-block;
  margin-right: 3em;
}
.nav > li:last-child {
  margin-right: 0;
}
.nav > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.nav > li ul.sub-menu {
  position: relative;
  width: 100vw;
  background: var(--colorSecondaryBg);
  max-height: var(--submenuHeight, 0);
  transition: var(--animationBase);
}
.nav > li ul.sub-menu li a {
  display: block;
  padding: 0.75em 0;
}
.nav > li ul.sub-menu li:first-child {
  margin-top: 0.75em;
}
.nav > li ul.sub-menu li:last-child {
  margin-bottom: 0.75em;
}
.nav > li .submenu-icon {
  margin-left: 1em;
  transform: rotate(var(--submenuIconRotate, 0deg));
  transition: var(--animationBase);
}
.nav > li.submenu--opened {
  --submenuHeight: 30rem;
  --submenuIconRotate: -90deg;
}
@media (min-width: 980px) {
  .nav > li .submenu-icon {
    display: none;
  }
  .nav > li ul.sub-menu {
    display: block;
    position: absolute;
    top: calc(100% + 1.4em);
    left: 0;
    margin: 0;
    color: #fff;
    background: var(--colorPrimary);
    list-style: none;
    padding: 0;
    transform: scaleY(0);
    transition: var(--animationBase);
    transform-origin: top;
    min-width: 10em;
    width: auto;
    max-height: none;
  }
  .nav > li ul.sub-menu:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: 2em;
  }
  .nav > li ul.sub-menu > li {
    font-size: 0.75em;
    margin: 0 !important;
  }
  .nav > li ul.sub-menu > li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }
  .nav > li ul.sub-menu > li a {
    padding: 1em 2em;
    color: inherit;
    transition: var(--animationBase);
    white-space: nowrap;
  }
  .nav > li ul.sub-menu > li a:hover {
    text-decoration: none;
    background: rgba(0, 0, 0, 0.24);
  }
  .nav > li:hover ul.sub-menu {
    transform: scaleY(1);
  }
}

@media (max-width: 980px) {
  .nav--header {
    position: fixed;
    top: 0;
    left: 0;
    visibility: hidden;
    width: 0;
    height: 100%;
    margin: 0;
    transition: opacity 500ms ease;
    transition: opacity 0.35s ease, visibility 0.35s ease, width 0.35s ease;
    text-align: center;
    opacity: 0;
    background: #fff;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
  }
  .nav--header.open {
    z-index: 500;
    visibility: visible;
    width: 100%;
    opacity: 1;
  }
  .nav--header.open ul {
    position: absolute;
    top: 50%;
    left: 0;
    overflow: auto;
    width: 100%;
    max-height: 100%;
    margin: 0;
    padding: 0;
    user-select: none;
    transform: translateY(-50%);
    -webkit-touch-callout: none;
    -webkit-overflow-scrolling: touch;
  }
  .nav--header.open ul > li {
    width: 100%;
    margin: 0;
  }
  .nav--header li {
    margin: 0.75em 0;
  }
}

.PageNavigation {
  font-weight: 800;
  color: #fff;
  background: var(--colorPrimary);
  padding: 2rem 0 0.5rem;
}
.PageNavigation-title {
  display: block;
  font-size: 0.875em;
  opacity: 0.8;
  margin: 0 1.5rem 1em;
}
.PageNavigation-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.PageNavigation-nav > li {
  font-size: 0.75em;
  margin: 0 !important;
}
.PageNavigation-nav > li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.PageNavigation-nav > li a {
  display: block;
  padding: 1em 2em;
  color: inherit;
  transition: var(--animationBase);
}
.PageNavigation-nav > li a:hover {
  background: rgba(0, 0, 0, 0.24);
  text-decoration: none;
}

.alert {
  padding: 24px;
  margin-bottom: 24px;
  border: 1px solid transparent;
}
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
.alert > p + p {
  margin-top: 24px;
}
.alert.alert--success {
  color: #5CB85C;
  border-color: #5CB85C;
}
.alert.alert--info {
  color: #444;
  border-color: #444;
}
.alert.alert--warning {
  color: #F0AD4E;
  border-color: #F0AD4E;
}
.alert.alert--danger {
  color: #D9534F;
  border-color: #D9534F;
}

.HomeBanner {
  position: relative;
  background: var(--colorSecondary);
  color: #fff;
  font-weight: bold;
  padding: 6em 0.5em;
  overflow: hidden;
}
@media (max-width: 62rem) {
  .HomeBanner {
    padding: 3em 0.5em;
  }
}
.HomeBanner-frame {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: clamp(2em, 5vw, 5em);
}
@media (max-width: 62rem) {
  .HomeBanner-frame {
    grid-template-columns: 1fr;
  }
}
.HomeBanner-title {
  font-size: 2.5em;
  margin: 0 0 3rem;
}
@media (max-width: 48em) {
  .HomeBanner-title {
    font-size: 2em;
    margin: 0 0 1rem;
  }
}
.HomeBanner p {
  font-size: 1.5em;
}
.HomeBanner p:last-of-type {
  margin: 0 auto 3rem;
}
@media (max-width: 48em) {
  .HomeBanner p {
    font-size: 1.2em;
  }
}
.HomeBanner-icon {
  position: absolute;
}
@media (max-width: 64em) {
  .HomeBanner-icon img {
    width: 20vw;
    min-width: 100px;
  }
}
.HomeBanner-icon.icon-book {
  left: -10rem;
  bottom: 2em;
}
@media (max-width: 75em) {
  .HomeBanner-icon.icon-book {
    display: none;
  }
}
.HomeBanner-icon.icon-calc {
  right: -13rem;
  top: -2rem;
}
@media (max-width: 75em) {
  .HomeBanner-icon.icon-calc {
    display: none;
  }
}
.HomeBanner-text {
  position: relative;
  z-index: 5;
}
@media (max-width: 62rem) {
  .HomeBanner-text {
    text-align: center;
  }
}
.HomeBanner-form {
  background: var(--colorPrimary);
  padding: 2rem;
  border-radius: 0.5rem;
  position: relative;
  z-index: 5;
  font-size: 0.875em;
}
@media (max-width: 48rem) {
  .HomeBanner-form {
    padding: 2rem 2em;
  }
}
.HomeBanner-form h2 {
  font-size: 1.25rem;
  margin-top: 0;
}
.HomeBanner-form .FormBase-inquiry {
  display: grid;
  gap: 2em;
}
.HomeBanner-form .FormBase-button input[type=submit] {
  background-color: var(--colorSecondary);
  color: #fff;
}
.HomeBanner-form .FormBase-button input[type=submit]:hover {
  background-color: #0d2b46;
}

.HomeOffer {
  position: relative;
  overflow: hidden;
}
.HomeOffer-frame {
  position: relative;
  z-index: 1;
}
.HomeOffer-slider {
  --articlesGrid-columns: 2 !important;
  --articlesGrid-gap: 7em !important;
  --articlesGrid-spacingAround: 0 2em 2em !important;
}
@media (max-width: 1024px) {
  .HomeOffer-slider {
    --articlesGrid-spacingAround: 0 5em 2em !important;
    --articlesGrid-gap: 3em !important;
  }
}
@media (max-width: 767px) {
  .HomeOffer-slider {
    --articlesGrid-spacingAround: 0 0 2em !important;
  }
}
@media (max-width: 550px) {
  .HomeOffer-slider {
    --articlesGrid-columns: 1 !important;
  }
}
@media (max-width: 767px) {
  .HomeOffer-nav {
    display: none;
  }
}
.HomeOffer-el {
  color: #fff;
  text-align: center;
  border-radius: 20px;
  padding: 2.5em 1.5em 1.5em;
  background: var(--colorSecondary);
}
.HomeOffer-el .ButtonBase {
  color: var(--colorSecondary);
}
.HomeOffer-el:nth-of-type(even) {
  background: var(--colorPrimary);
  color: #000;
}
.HomeOffer-el:nth-of-type(even) .ButtonBase {
  color: var(--colorPrimary);
  background: #000;
}
.HomeOffer-el:nth-of-type(even) .ButtonBase:hover, .HomeOffer-el:nth-of-type(even) .ButtonBase:focus {
  border-color: #000;
  color: #000;
}
.HomeOffer-el h3 {
  margin-top: 0;
  font-size: 1.5em;
  text-transform: uppercase;
}
.HomeOffer-el .ButtonBase {
  border: 2px solid transparent;
}
.HomeOffer-el .ButtonBase:hover {
  background: transparent;
  border-color: #fff;
  color: #fff;
}
.HomeOffer-price {
  font-size: 1.5em;
}
.HomeOffer .u-imageBg {
  left: 50%;
  transform: translateX(-50%);
}

.HomePeople-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.HomePeople-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 3em;
}
@media (max-width: 48rem) {
  .HomePeople-content {
    grid-template-columns: 1fr;
  }
}
.HomePeople-el {
  display: grid;
  grid-template-columns: 7.5em auto;
  grid-gap: 2em;
  align-items: flex-start;
}
.HomePeople-image img {
  border-radius: 20px;
}
.HomePeople-name {
  font-size: 1.5em;
  color: var(--colorSecondary);
  margin: 0 0 0.3em;
}
.HomePeople-subject {
  margin: 0 0 0.5em;
  color: var(--colorSecondary);
}
.HomePeople-perex {
  font-size: 0.875em;
}
.HomePeople .ButtonBase {
  margin-top: 2em;
}

.HomeVideo {
  position: relative;
  overflow: hidden;
}
.HomeVideo:after {
  content: "";
  position: absolute;
  width: 30em;
  height: 30em;
  border-radius: 20px;
  background: #FFD466;
  opacity: 0.24;
  transform: rotate(-30deg);
  bottom: -8em;
  left: 20%;
}
.HomeVideo-frame {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2em, 5vw, 5em);
}
@media (max-width: 62rem) {
  .HomeVideo-frame {
    grid-template-columns: 1fr;
  }
}
.HomeVideo-content {
  position: relative;
  border-radius: 20px;
  border: 2px solid var(--colorSecondary);
  cursor: pointer;
  z-index: 2;
}
.HomeVideo-poster img {
  display: block;
  border-radius: 20px;
}
.HomeVideo-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.25s ease-in-out;
  z-index: 2;
  pointer-events: none;
  color: var(--colorSecondary);
}
.HomeVideo video {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 5;
  border-radius: 20px;
}
.HomeVideo-icon {
  position: absolute;
  bottom: -2em;
  right: -7em;
  z-index: 10;
}
@media (max-width: 48rem) {
  .HomeVideo-icon {
    display: none;
  }
}
.HomeVideo-perex {
  max-width: 45em;
  font-size: 0.75em;
  text-align: center;
  margin-top: 2em;
}

.HomeAbout {
  text-align: center;
  position: relative;
  z-index: 5;
}

.HomeReference {
  background: #FAFAFA;
}
.HomeReference-frame {
  position: relative;
}
.HomeReference .u-homeTitle {
  text-align: left;
  margin-bottom: 0;
}
.HomeReference-title {
  font-weight: bold;
}
.HomeReference-el {
  padding: 2em;
  border-radius: 1.25em;
  border: 3px solid transparent;
}
.HomeReference-el.is-active + .HomeReference-el {
  border-color: var(--colorSecondary);
}
@media (max-width: 60rem) {
  .HomeReference-el {
    border-color: var(--colorSecondary);
  }
}
.HomeReference-icon {
  position: absolute;
  left: 30%;
  top: -3em;
  z-index: 5;
}
@media (max-width: 60rem) {
  .HomeReference-icon {
    right: 10%;
    left: auto;
  }
}
@media (max-width: 30rem) {
  .HomeReference-icon {
    width: 7em;
  }
}
.HomeReference-image {
  position: absolute;
  left: -9em;
  bottom: -9em;
}
@media (max-width: 90rem) {
  .HomeReference-image {
    bottom: -7em;
  }
}
@media (max-width: 60rem) {
  .HomeReference-image {
    display: none;
  }
}

.HomeSlider {
  position: relative;
}
.HomeSlider-inner {
  display: flex;
  margin: var(--articlesGrid-spacingAround);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  --articlesGrid-gap: 4.2em;
  --articlesGrid-columns: 3;
  --articlesGrid-spacingAround: 1.5em 0 2.4em;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@media (max-width: 80rem) {
  .HomeSlider-inner {
    --articlesGrid-gap: 2.4em;
  }
}
@media (max-width: 60rem) {
  .HomeSlider-inner {
    --articlesGrid-columns: 2;
    --articlesGrid-thumbHeight: 12em;
  }
}
@media (max-width: 30rem) {
  .HomeSlider-inner {
    --articlesGrid-columns: 1;
    --articlesGrid-gap: 2em;
    --articlesGrid-thumbHeight: 8em;
  }
}
.HomeSlider-inner::-webkit-scrollbar {
  display: none;
}
.HomeSlider-inner > article {
  flex: 0 0 calc((100% - var(--articlesGrid-gap) * (var(--articlesGrid-columns, 3) - 1)) / var(--articlesGrid-columns, 3));
  scroll-snap-align: start;
}
.HomeSlider-inner > article:not(:last-child) {
  margin-right: var(--articlesGrid-gap);
}
.HomeSlider-nav {
  position: absolute;
  top: 10em;
}
.HomeSlider-nav[data-direction=prev] {
  right: calc(100% + 4em);
}
.HomeSlider-nav[data-direction=next] {
  left: calc(100% + 4em);
}
@media (max-width: 1240px) {
  .HomeSlider-nav[data-direction=prev] {
    right: calc(100% + 2em);
  }
  .HomeSlider-nav[data-direction=next] {
    left: calc(100% + 2em);
  }
}
@media (max-width: 1024px) {
  .HomeSlider-nav[data-direction=prev] {
    left: 0;
    right: auto;
  }
  .HomeSlider-nav[data-direction=next] {
    right: 0;
    left: auto;
  }
}
@media (max-width: 30rem) {
  .HomeSlider-nav {
    top: 4.25em;
    transform: scale(1.25);
  }
  .HomeSlider-nav[data-direction=prev] {
    left: -1em;
  }
  .HomeSlider-nav[data-direction=next] {
    right: -1em;
  }
}
.HomeSlider-nav[disabled] {
  opacity: 0.5;
  cursor: default;
}
.HomeSlider-pagination {
  display: flex;
  justify-content: center;
}
.HomeSlider-pagination span {
  display: inline-block;
  width: 1em;
  height: 1em;
  border-radius: 5px;
  border: 2px solid var(--colorSecondary);
  margin: 0 0.25em;
  cursor: pointer;
  transition: 0.24s;
}
.HomeSlider-pagination span.is-active {
  background: var(--colorSecondary);
  pointer-events: none;
}
.HomeSlider-pagination span:hover, .HomeSlider-pagination span:focus {
  border-color: var(--colorPrimary);
  background: var(--colorPrimary);
}
.HomeSlider .Button {
  border: 0;
  background: transparent;
  color: var(--colorSecondary);
}

.HomeHowToStart {
  background: #dadfe5;
}
.HomeHowToStart-inner {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.HomeHowToStart h2 {
  width: 100%;
  margin-bottom: 0;
}

.HowToStartItem {
  background: #fff;
  border: 3px solid var(--colorSecondary);
  border-radius: 20px;
  width: 30%;
}
@media (max-width: 62rem) {
  .HowToStartItem {
    width: 46%;
  }
}
@media (max-width: 40rem) {
  .HowToStartItem {
    width: 100%;
  }
}
.HowToStartItem-name {
  margin-top: 0;
}
.HowToStartItem-text {
  padding: 1.5em;
}
.HowToStartItem img {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  width: 100%;
}

.Page404 {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.Page404-content {
  flex: 1;
  overflow: hidden;
  position: relative;
  text-align: center;
  padding: 4em 0 8em;
}
.Page404-content .u-imageBg {
  width: 100%;
  height: 100%;
}
.Page404-text {
  position: relative;
  z-index: 2;
}
.Page404-text h1 {
  margin-top: 0;
  color: var(--colorSecondary);
}
.Page404-text p {
  font-size: 1.2em;
  margin-bottom: 3em;
}
.Page404 + .AppFooter {
  margin-top: 0;
}
/*# sourceMappingURL=style.min.css.map */
