@charset "UTF-8";
/*!
	By André Rinas, www.andrerinas.de
	Documentation, www.simplelightbox.de
	Available for use under the MIT License
	Version 2.10.3
*/
body.hidden-scroll {
  overflow: hidden;
}

.sl-overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #fff;
  display: none;
  z-index: 1035;
}

.sl-wrapper {
  z-index: 1040;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: fixed;
}

.sl-wrapper * {
  box-sizing: border-box;
}

.sl-wrapper button {
  border: 0 none;
  background: transparent;
  font-size: 28px;
  padding: 0;
  cursor: pointer;
}

.sl-wrapper button:hover {
  opacity: 0.7;
}

.sl-wrapper .sl-close {
  display: none;
  position: fixed;
  right: 30px;
  top: 30px;
  z-index: 10060;
  margin-top: -14px;
  margin-right: -14px;
  height: 44px;
  width: 44px;
  line-height: 44px;
  font-family: Arial, Baskerville, monospace;
  color: #000;
  font-size: 3rem;
}

.sl-wrapper .sl-counter {
  display: none;
  position: fixed;
  top: 30px;
  left: 30px;
  z-index: 1060;
  color: #000;
  font-size: 1rem;
}

.sl-wrapper .sl-navigation {
  width: 100%;
  display: none;
}

.sl-wrapper .sl-navigation button {
  position: fixed;
  top: 50%;
  margin-top: -22px;
  height: 44px;
  width: 44px;
  line-height: 44px;
  text-align: center;
  display: block;
  z-index: 10060;
  font-family: Arial, Baskerville, monospace;
  color: #000;
}

.sl-wrapper .sl-navigation button.sl-next {
  right: 5px;
  font-size: 2rem;
}

.sl-wrapper .sl-navigation button.sl-prev {
  left: 5px;
  font-size: 2rem;
}

@media (min-width: 35.5em) {
  .sl-wrapper .sl-navigation button {
    width: 44px;
  }
  .sl-wrapper .sl-navigation button.sl-next {
    right: 10px;
    font-size: 3rem;
  }
  .sl-wrapper .sl-navigation button.sl-prev {
    left: 10px;
    font-size: 3rem;
  }
}
@media (min-width: 50em) {
  .sl-wrapper .sl-navigation button {
    width: 44px;
  }
  .sl-wrapper .sl-navigation button.sl-next {
    right: 20px;
    font-size: 3rem;
  }
  .sl-wrapper .sl-navigation button.sl-prev {
    left: 20px;
    font-size: 3rem;
  }
}
.sl-wrapper.sl-dir-rtl .sl-navigation {
  direction: ltr;
}

.sl-wrapper .sl-image {
  position: fixed;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 10000;
}

.sl-wrapper .sl-image img {
  margin: 0;
  padding: 0;
  display: block;
  border: 0 none;
  width: 100%;
  height: auto;
}

@media (min-width: 35.5em) {
  .sl-wrapper .sl-image img {
    border: 0 none;
  }
}
@media (min-width: 50em) {
  .sl-wrapper .sl-image img {
    border: 0 none;
  }
}
.sl-wrapper .sl-image iframe {
  background: #000;
  border: 0 none;
}

@media (min-width: 35.5em) {
  .sl-wrapper .sl-image iframe {
    border: 0 none;
  }
}
@media (min-width: 50em) {
  .sl-wrapper .sl-image iframe {
    border: 0 none;
  }
}
.sl-wrapper .sl-image .sl-caption {
  display: none;
  padding: 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.8);
  font-size: 1rem;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.sl-wrapper .sl-image .sl-caption.pos-top {
  bottom: auto;
  top: 0;
}

.sl-wrapper .sl-image .sl-caption.pos-outside {
  bottom: auto;
}

.sl-wrapper .sl-image .sl-download {
  display: none;
  position: absolute;
  bottom: 5px;
  right: 5px;
  color: #000;
  z-index: 1060;
}

.sl-spinner {
  display: none;
  border: 5px solid #333;
  border-radius: 40px;
  height: 40px;
  left: 50%;
  margin: -20px 0 0 -20px;
  opacity: 0;
  position: fixed;
  top: 50%;
  width: 40px;
  z-index: 1007;
  -webkit-animation: pulsate 1s ease-out infinite;
  -moz-animation: pulsate 1s ease-out infinite;
  -ms-animation: pulsate 1s ease-out infinite;
  -o-animation: pulsate 1s ease-out infinite;
  animation: pulsate 1s ease-out infinite;
}

.sl-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

.sl-transition {
  transition: -moz-transform ease 200ms;
  transition: -ms-transform ease 200ms;
  transition: -o-transform ease 200ms;
  transition: -webkit-transform ease 200ms;
  transition: transform ease 200ms;
}

@-webkit-keyframes pulsate {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
@keyframes pulsate {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
@-moz-keyframes pulsate {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
@-o-keyframes pulsate {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
@-ms-keyframes pulsate {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/**
 *
 * BOXING: GENERAL
 *
 */
html {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}

body {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

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

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

/**
 *
 * COLORS: VARS
 *
 */
/**
 *
 * BREAKPOINTS: VARS
 *
 */
/**
 *
 * TYPOGRAPHY: VARS
 *
 */
/**
 *
 * COLORS: FUNCTIONS
 *
 */
/**
 *
 * TYPOGRAPHY: FUNCTIONS
 *
 */
/**
 *
 * GENERAL: FUNCTIONS
 *
 */
/**
 *
 * COLORS: GENERAL
 *
 */
body {
  background: #F8FAFA;
  color: #1B2430;
}

::selection {
  background: #00DFC8;
  color: #fff;
}

::-moz-selection {
  background: #00DFC8;
  color: #fff;
}

a {
  color: #007A6F;
}

/**
 *
 * COLORS: INLINES
 *
 */
.fc--primary-1 {
  color: #00DFC8 !important;
  fill: #00DFC8 !important;
}

.bgc--primary-1 {
  background-color: #00DFC8;
}

.fc--primary-1-darken {
  color: #00C4B0 !important;
  fill: #00C4B0 !important;
}

.bgc--primary-1-darken {
  background-color: #00C4B0;
}

.fc--secondary-1 {
  color: #F2E508 !important;
  fill: #F2E508 !important;
}

.bgc--secondary-1 {
  background-color: #F2E508;
}

.fc--secondary-1-lighten {
  color: #F5EB2E !important;
  fill: #F5EB2E !important;
}

.bgc--secondary-1-lighten {
  background-color: #F5EB2E;
}

.fc--secondary-2 {
  color: #00B5A3 !important;
  fill: #00B5A3 !important;
}

.bgc--secondary-2 {
  background-color: #00B5A3;
}

.fc--secondary-2-darken {
  color: #009E8E !important;
  fill: #009E8E !important;
}

.bgc--secondary-2-darken {
  background-color: #009E8E;
}

.fc--secondary-3 {
  color: #007A6F !important;
  fill: #007A6F !important;
}

.bgc--secondary-3 {
  background-color: #007A6F;
}

.fc--secondary-4 {
  color: #fff82a !important;
  fill: #fff82a !important;
}

.bgc--secondary-4 {
  background-color: #fff82a;
}

.fc--main {
  color: #1B2430 !important;
  fill: #1B2430 !important;
}

.bgc--main {
  background-color: #1B2430;
}

.fc--neutrals-0 {
  color: #fff !important;
  fill: #fff !important;
}

.bgc--neutrals-0 {
  background-color: #fff;
}

.fc--neutrals-1 {
  color: #e5e5e5 !important;
  fill: #e5e5e5 !important;
}

.bgc--neutrals-1 {
  background-color: #e5e5e5;
}

.fc--neutrals-2 {
  color: #ccc !important;
  fill: #ccc !important;
}

.bgc--neutrals-2 {
  background-color: #ccc;
}

.fc--neutrals-3 {
  color: #b2b2b2 !important;
  fill: #b2b2b2 !important;
}

.bgc--neutrals-3 {
  background-color: #b2b2b2;
}

.fc--neutrals-4 {
  color: #999 !important;
  fill: #999 !important;
}

.bgc--neutrals-4 {
  background-color: #999;
}

.fc--neutrals-5 {
  color: #7f7f7f !important;
  fill: #7f7f7f !important;
}

.bgc--neutrals-5 {
  background-color: #7f7f7f;
}

.fc--neutrals-6 {
  color: #656565 !important;
  fill: #656565 !important;
}

.bgc--neutrals-6 {
  background-color: #656565;
}

.fc--neutrals-7 {
  color: #4c4c4c !important;
  fill: #4c4c4c !important;
}

.bgc--neutrals-7 {
  background-color: #4c4c4c;
}

.fc--neutrals-8 {
  color: #333 !important;
  fill: #333 !important;
}

.bgc--neutrals-8 {
  background-color: #333;
}

.fc--neutrals-9 {
  color: #191919 !important;
  fill: #191919 !important;
}

.bgc--neutrals-9 {
  background-color: #191919;
}

.fc--neutrals-10 {
  color: #000 !important;
  fill: #000 !important;
}

.bgc--neutrals-10 {
  background-color: #000;
}

.fc--light-1 {
  color: #F8FAFA !important;
  fill: #F8FAFA !important;
}

.bgc--light-1 {
  background-color: #F8FAFA;
}

.fc--light-1-darken {
  color: #EFF3F3 !important;
  fill: #EFF3F3 !important;
}

.bgc--light-1-darken {
  background-color: #EFF3F3;
}

.fc--valid {
  color: #84b618 !important;
  fill: #84b618 !important;
}

.bgc--valid {
  background-color: #84b618;
}

.fc--invalid {
  color: #d8393c !important;
  fill: #d8393c !important;
}

.bgc--invalid {
  background-color: #d8393c;
}

/**
 *
 * TYPOGRAPHY: GENERAL
 *
 */
html {
  font-size: 10px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Montserrat", Helvetica, Arial, serif;
  font-size: 15px;
  line-height: 1.8;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizelegibility;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

p {
  margin: 0 0 15px;
}
p:last-child {
  margin-bottom: 0;
}

/*
 *
 * Media Queries
 *
 */
/*
 * Layout 01 & Layout 02 - - - 0px - 767px */
@media all and (max-width: 767px) {
  body {
    font-size: 15px;
  }
}
/*
 * Layout 01 - - - 0px - 419px */
/*
 * Layout 02 - - - 420px - 767px */
/*
 * Layout 03 - - - 768px - 1023px */
/*
 * Layout 04 - - - 1024px - 1179px */
/*
 * Layout 05 - - - 1180px - ... */
.brand a {
  display: block;
  text-decoration: none;
}
.brand a:hover {
  text-decoration: none !important;
}
.brand svg {
  display: block;
  width: 190px;
}
.brand.type-footer svg {
  width: 150px;
}
.brand span {
  display: block;
  margin: 3px 0 0;
  color: #1B2430;
  font-family: "Roboto Condensed", Helvetica, Arial, serif;
  font-size: 9px;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 5px;
}
.brand .brand--text-color {
  fill: #1B2430;
}

/*
 *
 * Media Queries
 *
 */
/*
 * Layout 01 & Layout 02 - - - 0px - 767px */
@media all and (max-width: 767px) {
  .brand svg {
    width: 115px;
  }
  .brand.type-footer svg {
    width: 115px;
  }
}
/*
 * Layout 01 - - - 0px - 419px */
/*
 * Layout 02 - - - 420px - 767px */
/*
 * Layout 03 - - - 768px - 1023px */
@media all and (min-width: 768px) and (max-width: 1023px) {
  .brand svg {
    display: block;
    width: 140px;
  }
  .brand.type-footer svg {
    width: 140px;
  }
}
/*
 * Layout 03 - - - 1024px - 1179px */
@media all and (min-width: 1024px) and (max-width: 1279px) {
  .brand svg {
    display: block;
    width: 155px;
  }
  .brand.type-footer svg {
    width: 155px;
  }
}
/*
 * Layout 04 - - - 1180px - ... */
@media all and (min-width: 1280px) and (max-width: 1400px) {
  .brand svg {
    display: block;
    width: 180px;
  }
}
/*
 * Layout 04 - - - 1180px - ... */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 17px 35px;
  overflow: hidden;
  background: #F2E508;
  border: 1px solid #F2E508;
  border-radius: 0 40px;
  color: #1B2430;
  fill: #1B2430;
  font-family: "Roboto Condensed", Helvetica, Arial, serif;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  transition: all 150ms;
  appearance: none;
  outline: none;
  cursor: pointer;
  /*
  *
  * Define sizes */
  /*
  *
  * Define variations */
  /*
  *
  * Define color variations */
}
.btn span {
  display: block;
  position: relative;
  z-index: 2;
}
.btn svg {
  display: block;
  width: 18px;
  height: 18px;
  margin: 0 0 0 14px;
}
.btn svg:first-child {
  margin: 0 14px 0 0;
}
.btn:hover {
  background: #00B5A3;
  border-color: #00B5A3;
  color: #fff;
  fill: #fff;
}
.btn:active, .btn:focus {
  outline: none;
}
.btn.size-s {
  padding: 14px 25px;
  border-radius: 0 30px;
}
.btn.size-s svg {
  width: 15px;
  height: 15px;
}
.btn.type-full {
  display: flex;
  width: 100%;
}
.btn.type-bordered {
  background: transparent;
  color: #F2E508;
  fill: #F2E508;
}
.btn.type-bordered:hover {
  background: #00B5A3;
  border-color: #00B5A3;
  color: #fff;
  fill: #fff;
}
.btn.color-neutrals-0 {
  background: #fff;
  border-color: #fff;
  color: #1B2430;
  fill: #1B2430;
}
.btn.color-neutrals-0:hover {
  background: #e5e5e5;
  border-color: #e5e5e5;
}
.btn.color-neutrals-0.type-bordered {
  background: transparent;
  color: #fff;
}
.btn.color-neutrals-0.type-bordered:hover {
  background: #fff;
  border-color: #fff;
  color: #1B2430;
  fill: #1B2430;
}
.btn.color-primary-1 {
  background: #00DFC8;
  border-color: #00DFC8;
  color: #fff;
  fill: #fff;
}
.btn.color-primary-1:hover {
  background: #00C4B0;
  border-color: #00C4B0;
}
.btn.color-primary-1.type-bordered {
  background: transparent;
  color: #00DFC8;
}
.btn.color-primary-1.type-bordered:hover {
  background: #00DFC8;
  border-color: #00DFC8;
  color: #fff;
  fill: #fff;
}
.btn.color-secondary-2 {
  background: #00B5A3;
  border-color: #00B5A3;
  color: #fff;
  fill: #fff;
}
.btn.color-secondary-2:hover {
  background: #009E8E;
  border-color: #009E8E;
}
.btn.color-secondary-2.type-bordered {
  background: transparent;
  color: #00B5A3;
}
.btn.color-secondary-2.type-bordered:hover {
  background: #00B5A3;
  border-color: #00B5A3;
  color: #fff;
  fill: #fff;
}

/*
 *
 * Media Queries
 *
 */
/*
 * Layout 01 & Layout 02 - - - 0px - 767px */
@media all and (max-width: 767px) {
  .btn {
    padding-top: 14px;
    padding-bottom: 14px;
    border-radius: 0 35px;
    font-size: 15px;
  }
}
/*
 * Layout 01 - - - 0px - 419px */
@media all and (max-width: 419px) {
  .btn {
    display: flex;
    width: 100%;
  }
}
/*
 * Layout 02 - - - 420px - 767px */
/*
 * Layout 03 - - - 768px - 1023px */
/*
 * Layout 04 - - - 1024px - 1179px */
/*
 * Layout 05 - - - 1180px - ... */
.card {
  display: block;
  width: 100%;
  overflow: hidden;
  text-decoration: none;
  position: relative;
  /*
   *
   * Define variations */
}
.card .card__link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  text-indent: -9999px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}
.card .card__visual {
  display: block;
  width: 100%;
  height: 0;
  padding-top: 70%;
  overflow: hidden;
  background: #e5e5e5;
  position: relative;
}
.card .card__visual a {
  display: block;
  text-decoration: none;
}
.card .card__visual img,
.card .card__visual picture {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  object-position: center;
}
.card .card__visual.type-imagefollow {
  height: auto;
  padding-top: 0;
}
.card .card__visual.type-imagefollow img,
.card .card__visual.type-imagefollow picture {
  width: 100%;
  height: auto;
  position: relative;
}
.card .card__content {
  display: block;
  width: 100%;
  padding: 25px 10px 20px;
  font-size: 14px;
}
.card .card__content .heading {
  display: block;
}
.card .card__content .heading a {
  display: block;
  color: inherit;
  text-decoration: none;
}
.card .card__note {
  width: 100%;
  color: #7f7f7f;
  font-size: 11px;
  line-height: 1.4;
}
.card .card__actions {
  display: block;
  width: 100%;
  margin: 20px 0 0;
}
.card.type-large .card__visual {
  padding-top: 65%;
}
.card.type-large .card__content {
  font-size: 15px;
}

.circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  overflow: hidden;
  background: #F2E508;
  border-radius: 50%;
  fill: #007A6F;
  transition: all 225ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.circle svg {
  display: block;
  width: 15px;
  height: 15px;
}
.circle:hover {
  background: #00B5A3;
  fill: #fff;
}

.heading {
  display: block;
  padding: 0;
  margin: 0;
  font-family: "Roboto Condensed", Helvetica, Arial, serif;
  font-weight: 500;
  /*
  *
  *
  *
  * Define sizes */
  /*
  *
  *
  *
  * Define spacings */
  /*
  *
  *
  *
  * Define weights */
  /*
  *
  *
  *
  * Define variations */
}
.heading u {
  text-decoration: none;
  box-shadow: inset 0 -25px #F2E508;
}
.heading.size-l {
  font-size: 58px;
  line-height: 0.95;
  letter-spacing: -1px;
}
.heading.size-m {
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -0.5px;
}
.heading.size-s {
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.heading.spacing-xxs {
  margin: 0 0 5px;
}
.heading.spacing-xs {
  margin: 0 0 10px;
}
.heading.spacing-s {
  margin: 0 0 15px;
}
.heading.spacing-m {
  margin: 0 0 20px;
}
.heading.spacing-l {
  margin: 0 0 25px;
}
.heading.spacing-xl {
  margin: 0 0 30px;
}
.heading.spacing-xxl {
  margin: 0 0 35px;
}
.heading.weight-400 {
  font-weight: 400;
}
.heading.weight-500 {
  font-weight: 500;
}
.heading.weight-600 {
  font-weight: 600;
}
.heading.text-spacing {
  letter-spacing: 3px;
}
.heading.text-upper {
  text-transform: uppercase;
}
.heading.text-wide {
  color: #737da5;
  font-size: 12px;
  line-height: 1.1;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/*
 *
 * Media Queries
 *
 */
/*
 * Layout 01 & Layout 02 - - - 0px - 767px */
@media all and (max-width: 767px) {
  .heading.size-l {
    font-size: 45px;
    letter-spacing: -1px;
  }
  .heading.size-m {
    font-size: 40px;
    letter-spacing: -0.5px;
  }
  .heading.size-s {
    font-size: 23px;
    letter-spacing: -0.5px;
  }
  .heading.text-wide {
    font-size: 12px;
    line-height: 1.1;
    letter-spacing: 2px;
    font-weight: 400;
  }
}
/*
 * Layout 01 - - - 0px - 419px */
/*
 * Layout 02 - - - 420px - 767px */
/*
 * Layout 03 - - - 768px - 1023px */
@media all and (min-width: 768px) and (max-width: 1023px) {
  .heading.size-l {
    font-size: 52px;
    letter-spacing: -1px;
  }
  .heading.text-wide {
    font-size: 12px;
    line-height: 1.1;
    letter-spacing: 2px;
    font-weight: 400;
  }
}
/*
 * Layout 03 - - - 1024px - 1179px */
/*
 * Layout 04 - - - 1180px - ... */
.link {
  display: inline-flex;
  align-items: center;
  padding: 10px 0;
  color: #007A6F;
  font-family: "Roboto Condensed", Helvetica, Arial, serif;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  transition: all 450ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  /*
   *
   * Define sizes */
}
.link span {
  display: block;
}
.link::before {
  content: "";
  display: block;
  width: 80%;
  height: 2px;
  background: #00DFC8;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 450ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.link:hover {
  color: #00B5A3;
}
.link:hover::before {
  width: 100%;
  background: #00B5A3;
}
.link.size-s {
  font-size: 14px;
}
.link.size-s::before {
  width: 35px;
  height: 2px;
}
.link.size-s:hover::before {
  width: 100%;
}

/*
 *
 * Media Queries
 *
 */
/*
 * Layout 01 & Layout 02 - - - 0px - 767px */
@media all and (max-width: 767px) {
  .link {
    font-size: 15px;
  }
}
/*
 * Layout 01 - - - 0px - 419px */
/*
 * Layout 02 - - - 420px - 767px */
/*
 * Layout 03 - - - 768px - 1023px */
/*
 * Layout 03 - - - 1024px - 1179px */
/*
 * Layout 04 - - - 1180px - ... */
.list {
  width: 100%;
  margin: 45px 0;
  /*
   *
   * Color variations */
}
.list:first-child {
  margin-top: 0;
}
.list:last-child {
  margin-bottom: 0;
}
.list a {
  color: #1B2430;
  text-decoration: none;
}
.list ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: ollist;
}
.list ol li {
  width: 100%;
  padding: 4px 0 0 55px;
  margin: 18px 0 0;
  position: relative;
}
.list ol li:first-child {
  margin-top: 0;
}
.list ol li::before {
  content: counter(ollist);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 2px 0 0;
  background: #F2E508;
  border-radius: 50%;
  color: #1B2430;
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  position: absolute;
  left: 0;
  top: 0;
  counter-increment: ollist;
}
.list ol li ol {
  margin: 20px 0 0;
}
.list ol li ol li {
  padding: 3px 0 0 42px;
  margin: 20px 0 0;
}
.list ol li ol li::before {
  width: 28px;
  height: 28px;
  padding: 2px 0 0;
  background: rgba(242, 229, 8, 0.15);
  font-size: 12px;
}
.list ol li ol li::before:first-child {
  margin-top: 0;
}
.list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: ullist;
}
.list ul li {
  width: 100%;
  padding: 0 0 0 44px;
  margin: 14px 0 0;
  position: relative;
}
.list ul li:first-child {
  margin-top: 0;
}
.list ul li::before {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 2px;
  background: #F2E508;
  position: absolute;
  left: 0;
  top: 12px;
  counter-increment: ullist;
}
.list ul li ul {
  margin: 20px 0 0;
}
.list ul li ul li {
  padding: 0 0 0 18px;
  margin: 20px 0 0;
}
.list ul li ul li:first-child {
  margin-top: 0;
}
.list ul li ul li::before {
  width: 5px;
  height: 5px;
  background: #F2E508;
  top: 10px;
}
.box.color-secondary-2 .list ul li::before {
  background: #fff;
}
.box.color-secondary-2 .list ol li::before {
  background: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.offcanvas {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.offcanvas span {
  display: block;
  width: 23px;
  height: 2px;
  background-color: #00DFC8;
  border-radius: 4px;
  position: relative;
  transition: all 150ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -webkit-touch-callout: none;
}
.offcanvas span::before, .offcanvas span::after {
  content: "";
  width: 100%;
  height: 100%;
  background: #00DFC8;
  border-radius: 4px;
  position: absolute;
  right: 0;
  transition: transform 200ms;
}
.offcanvas span::before {
  width: 18px;
  transform: translate(0, -8px);
}
.offcanvas span::after {
  width: 28px;
  transform: translate(0, 8px);
}
.offcanvas--is-open .offcanvas span {
  background-color: transparent;
}
.offcanvas--is-open .offcanvas span::before {
  width: 28px;
  transform: translate(0, 0) rotate(45deg);
}
.offcanvas--is-open .offcanvas span::after {
  width: 28px;
  transform: translate(0, 0) rotate(-45deg);
}

.paragraph {
  /*
  *
  *
  *
  * Define sizes */
  /*
  *
  *
  *
  * Define spacings */
  /*
  *
  *
  *
  * Define weights */
  /*
  *
  *
  *
  * Define variations */
}
.paragraph.size-l {
  font-size: 18px;
}
.paragraph.size-s {
  font-size: 14px;
  line-height: 1.5;
}
.paragraph.size-xs {
  font-size: 12px;
  line-height: 1.2;
}
.paragraph.spacing-0 {
  margin: 0;
}
.paragraph.spacing-xxs {
  margin: 0 0 5px;
}
.paragraph.spacing-xs {
  margin: 0 0 10px;
}
.paragraph.spacing-s {
  margin: 0 0 15px;
}
.paragraph.spacing-m {
  margin: 0 0 20px;
}
.paragraph.spacing-l {
  margin: 0 0 25px;
}
.paragraph.spacing-xl {
  margin: 0 0 30px;
}
.paragraph.spacing-xxl {
  margin: 0 0 35px;
}
.paragraph.spacing-xxxl {
  margin: 0 0 50px;
}
.paragraph.weight-300 {
  font-weight: 300;
}
.paragraph.weight-700 {
  font-weight: 700;
}
.paragraph.weight-900 {
  font-weight: 900;
}
.paragraph.text-upper {
  text-transform: uppercase;
}

.play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  text-indent: 9999px;
  position: relative;
}
.play::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 4px;
  border-style: solid;
  border-width: 15px 0 15px 30px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
}
.play::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #00DFC8;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: all 450ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.play:hover::after, .videoplayer:hover .play::after, .block__play:hover .play::after {
  transform: scale(1.2);
}

.quote {
  width: 100%;
  padding: 0 0 0 25px;
  margin: 45px 0;
  border-left: 4px solid #F2E508;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
}
.quote footer {
  display: block;
  width: 100%;
  margin: 15px 0 0;
  color: #F2E508;
  font-size: 11px;
  text-transform: uppercase;
  opacity: 1;
  letter-spacing: 1.5px;
}
.quote:first-child {
  margin-top: 0;
}
.quote:last-child {
  margin-bottom: 0;
}
.quote blockquote {
  width: 100%;
  padding: 0;
  margin: 0;
}

/*
 *
 * Media Queries
 *
 */
/*
 * Layout 01 & Layout 02 - - - 0px - 767px */
/*
  * Layout 01 & Layout 02 & Layout 03 - - - 0px - 1023px */
/*
  * Layout 01 - - - 0px - 419px */
@media all and (max-width: 419px) {
  .quote {
    font-size: 24px;
  }
}
/*
  * Layout 02 - - - 420px - 767px */
@media all and (min-width: 420px) and (max-width: 767px) {
  .quote {
    font-size: 26px;
  }
}
/*
  * Layout 03 - - - 768px - 1023px */
@media all and (min-width: 768px) and (max-width: 1023px) {
  .quote {
    font-size: 28px;
  }
}
/*
  * Layout 04 - - - 1024px - 1279px */
/*
  * Layout 05 - - - 1280px - ... */
.shape {
  width: 700px;
  opacity: 0.25;
  position: fixed;
  right: 0;
  bottom: 0;
  transform: translate(50%, 70%);
  pointer-events: none;
  user-select: none;
}
.shape img {
  display: block;
  width: 100%;
}

/*
 *
 * Media Queries
 *
 */
/*
 * Layout 01 & Layout 02 - - - 0px - 767px */
@media all and (max-width: 767px) {
  .shape {
    display: none;
  }
}
/*
 * Layout 01 - - - 0px - 419px */
/*
 * Layout 02 - - - 420px - 767px */
/*
 * Layout 03 - - - 768px - 1023px */
@media all and (min-width: 768px) and (max-width: 1023px) {
  .shape {
    width: 500px;
  }
}
/*
 * Layout 04 - - - 1024px - 1179px */
/*
 * Layout 05 - - - 1180px - ... */
/**
 *
 * SYMBOLS
 *
 */
.theSprite {
  display: block;
  position: absolute;
  left: -99999rem;
}

svg {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

.symbol {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
}
.symbol g {
  fill: currentcolor;
}

.toggle {
  overflow: hidden;
  position: relative;
  user-select: none;
}
.toggle input {
  position: absolute;
  left: -100px;
  top: 0;
  z-index: 3;
}
.toggle label {
  display: flex;
  align-items: center;
  min-height: 30px;
  padding: 0;
  font-size: 12px;
  font-weight: 500;
  position: relative;
  transition: all 150ms;
  cursor: pointer;
}
.toggle label span:nth-child(3),
.toggle label span:nth-child(1) {
  min-width: 100px;
}
.toggle label span:nth-child(3) {
  color: #b2b2b2;
  text-align: left;
}
.toggle label span:nth-child(1) {
  color: #00DFC8;
  text-align: right;
}
.toggle label span:nth-child(2) {
  display: block;
  width: 60px;
  height: 30px;
  margin: 0 16px;
  position: relative;
}
.toggle label span:nth-child(2)::before {
  content: "";
  display: block;
  width: 60px;
  height: 30px;
  background: #EFF3F3;
  border: 1px solid #EFF3F3;
  border-radius: 25px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  transition: all 150ms;
}
.toggle label span:nth-child(2)::after {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  background: #00DFC8;
  border-radius: 50%;
  position: absolute;
  left: 1px;
  top: 1px;
  z-index: 2;
  transition: all 150ms;
}
.toggle input:checked + label {
  color: #00DFC8;
}
.toggle input:checked + label span:nth-child(3) {
  color: #00DFC8;
}
.toggle input:checked + label span:nth-child(1) {
  color: #b2b2b2;
}
.toggle input:checked + label span:nth-child(2)::after {
  left: 31px;
}

.accordeon {
  width: 100%;
  margin: 45px 0;
  /*
   *
   * Define states */
}
.accordeon .accordeon__inner {
  width: 100;
}
.accordeon .accordeon__item {
  width: 100%;
  padding: 10px 0;
  margin: 0;
  border-top: 1px solid rgba(27, 36, 48, 0.1);
}
.accordeon .accordeon__item:first-child {
  margin-top: 0;
  border-top: none;
}
.accordeon .accordeon__heading {
  width: 100%;
  padding: 18px 30px 18px 0;
  border-radius: 50px;
  position: relative;
  cursor: pointer;
  user-select: none;
}
.accordeon .accordeon__heading .heading {
  font-size: 22px;
  line-height: 1.2;
}
.accordeon .accordeon__heading::after {
  content: "+";
  display: block;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  position: absolute;
  right: 0;
  top: 19px;
}
.accordeon .accordeon__content {
  display: none;
  width: 100%;
  padding: 15px 0 0;
}
.accordeon:first-child {
  margin-top: 0;
}
.accordeon:last-child {
  margin-bottom: 0;
}
.accordeon .accordeon__item.state-open .accordeon__heading {
  color: #00DFC8;
}
.accordeon .accordeon__item.state-open .accordeon__heading::after {
  content: "-";
}
.accordeon .accordeon__item.state-open .accordeon__content {
  display: block;
}

.actions {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  margin: 35px 0;
  /*
   *
   * Define alignments */
}
.actions:first-child {
  margin-top: 0;
}
.actions:last-child {
  margin-bottom: 0;
}
.actions .actions__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -5px -15px;
}
.actions .actions__inner a {
  margin: 5px 15px;
}
.actions.align-left, .align-left .actions, .align-left.limited .actions {
  justify-content: flex-start;
}
.actions.align-left .actions__inner, .align-left .actions .actions__inner, .align-left.limited .actions .actions__inner {
  justify-content: flex-start;
}
.actions.align-center, .limited .actions {
  justify-content: center;
}
.actions.align-center .actions__inner, .limited .actions .actions__inner {
  justify-content: center;
}
.actions.align-right {
  justify-content: right;
}
.actions.align-right .actions__inner {
  justify-content: flex-end;
}
.actions.align-limited .actions__inner {
  justify-content: center;
}

/*
 *
 * Media Queries
 *
 */
/*
 * Layout 01 & Layout 02 - - - 0px - 767px */
@media all and (max-width: 767px) {
  .actions.align-limited, .limited .actions {
    justify-content: flex-start;
  }
  .actions.align-limited .actions__inner, .limited .actions .actions__inner {
    justify-content: flex-start;
  }
  .actions.align-center {
    justify-content: flex-start;
  }
}
.banner {
  width: 100%;
}
.banner .banner__media {
  width: 100%;
  height: 74vh;
  padding-top: 0;
  overflow: hidden;
  position: relative;
}
.banner .banner__media img,
.banner .banner__media picture,
.banner .banner__media video {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  object-position: center center;
}

.block {
  width: 100%;
  position: relative;
  /*
   *
   * Define variations */
}
.block .block__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.block .block__media {
  width: 47%;
  position: relative;
  z-index: 2;
}
.block .block__mediaMask {
  position: absolute;
  left: -1px;
  right: -1px;
  top: -1px;
  bottom: -1px;
  z-index: 10;
}
.block .block__mediaMask svg {
  display: block;
  width: 100%;
  fill: #F8FAFA;
}
.bgc--neutrals-0 .block .block__mediaMask svg {
  fill: #fff;
}
.block .block__mediaHolder {
  width: 100%;
  border-radius: 0 150px;
  position: relative;
  z-index: 10;
}
.block .block__mediaHolder img,
.block .block__mediaHolder picture {
  display: block;
  width: 100%;
  position: relative;
  z-index: 3;
}
.block .block__mediaHolder::before, .block .block__mediaHolder::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0 150px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.block .block__mediaHolder::before {
  background: #00DFC8;
  transform: translate(-10px, 10px);
}
.block .block__mediaHolder::after {
  background: #F2E508;
  transform: translate(10px, -10px);
}
.block .block__mediaVisual {
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 0 150px;
}
.block .block__arrow {
  width: 150px;
  position: absolute;
  right: -70px;
  top: 58%;
  z-index: 1000;
  transform: translate(0, -50%);
}
.block .block__arrow img {
  display: block;
  width: 100%;
}
.block .block__content {
  display: flex;
  align-items: center;
  width: 53%;
  position: relative;
}
.block .block__play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 0;
  line-height: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 20;
}
.block .block__in {
  width: 100%;
  max-width: 600px;
  padding-top: 55px;
  padding-bottom: 55px;
  padding-left: 85px;
  position: relative;
  z-index: 2;
}
.block .block__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 25px -8px -5px;
}
.block .block__actions a {
  margin: 5px 8px;
}
.block.type-alt .block__media {
  order: 2;
}
.block.type-alt .block__content {
  justify-content: flex-end;
  order: 1;
}
.block.type-alt .block__in {
  padding-left: 0;
  padding-right: 85px;
}
.block.type-alt .block__arrow {
  left: -70px;
  right: auto;
  transform: scaleX(-1);
}
.block.has-mask .block__mediaHolder::before, .block.has-mask .block__mediaHolder::after {
  display: none;
}
.block.has-mask .block__mediaVisual {
  width: 100%;
  height: 0;
  padding-top: 100%;
}
.block.has-mask .block__mediaVisual img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  object-position: center;
}
.block.theme-alt .block__content .heading.size-l {
  color: #00B5A3;
}
.block.theme-alt .block__content .heading.size-l u {
  color: #F2E508;
  box-shadow: none !important;
}

/*
 *
 * Media Queries
 *
 */
/*
 * Layout 01 & Layout 02 - - - 0px - 767px */
@media all and (max-width: 767px) {
  .block .block__media {
    order: 1;
    width: 100%;
    margin: 0;
  }
  .block .block__media::before {
    background: #F2E508;
  }
  .block .block__media::after {
    background: #00DFC8;
  }
  .block .block__mediaHolder,
  .block .block__media::before,
  .block .block__media::after {
    border-radius: 0 85px;
  }
  .block .block__content {
    order: 2;
    width: 100%;
    margin: 20px 0 0;
  }
  .block .block__in {
    padding: 25px 0 0;
  }
  .block .block__arrow {
    width: 95px;
    left: 20px;
    right: auto;
    top: auto;
    bottom: -20px;
    transform: translate(0, 0) rotate(90deg) scaleX(1);
  }
  .block.type-alt .block__media {
    order: 1;
  }
  .block.type-alt .block__content {
    order: 2;
  }
  .block.type-alt .block__in {
    padding: 25px 0 0;
  }
}
/*
 * Layout 01 - - - 0px - 419px */
/*
 * Layout 02 - - - 420px - 767px */
/*
 * Layout 03 - - - 768px - 1023px */
@media all and (min-width: 768px) and (max-width: 1023px) {
  .block .block__in {
    padding: 35px 0 35px 50px;
  }
  .block .block__media {
    width: 50%;
  }
  .block .block__mediaHolder,
  .block .block__media::before,
  .block .block__media::after {
    border-radius: 0 100px;
  }
  .block .block__content {
    width: 50%;
  }
  .block .block__arrow {
    width: 95px;
    right: -35px;
  }
  .block.type-alt .block__in {
    padding: 35px 50px 35px 0;
  }
}
/*
 * Layout 03 - - - 1024px - 1179px */
@media all and (min-width: 1024px) and (max-width: 1279px) {
  .block .block__in {
    padding: 70px 0 70px 45px;
  }
  .block .block__arrow {
    position: absolute;
    right: -30px;
  }
  .block.type-alt .block__in {
    padding: 70px 45px 70px 0;
  }
}
/*
 * Layout 04 - - - 1180px - ... */
.brandList {
  width: 100%;
  margin: 35px 0;
  /*
   *
   * Slick slider tweaks */
}
.brandList:first-child {
  margin-top: 0;
}
.brandList:last-child {
  margin-bottom: 0;
}
.brandList .brandList__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.brandList .brandList__item {
  width: 25%;
  padding: 5px;
}
.brandList .brandList__box {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 40px 25px;
  align-items: center;
  justify-content: center;
  background: #F8FAFA;
  overflow: hidden;
  position: relative;
  overflow: hidden;
}
.brandList a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  text-indent: -9999px;
  text-decoration: none;
}
.brandList img {
  display: block;
  width: auto;
  height: 70px;
  max-width: none;
  filter: grayscale(1);
}
.brandList .slick-list {
  width: 100%;
}
.brandList .slick-arrow {
  display: block;
  width: 40px;
  height: 40px;
  border: none;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 15px;
  text-indent: -9999px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 2;
  transition: all 150ms;
}
.brandList .slick-arrow.slick-prev {
  left: -40px;
  background-image: url("../../svg/build/arrow-l.svg");
}
.brandList .slick-arrow.slick-next {
  right: -40px;
  background-image: url("../../svg/build/arrow-r.svg");
}
.brandList .slick-arrow:focus, .brandList .slick-arrow:active {
  outline: none;
}

/*
 *
 * Media Queries
 *
 */
/*
 * Layout 01 & Layout 02 - - - 0px - 767px */
@media all and (max-width: 767px) {
  .brandList {
    margin: 20px auto;
  }
  .brandList:first-child {
    margin-top: 0;
  }
  .brandList:last-child {
    margin-bottom: 0;
  }
  .brandList .brandList__item {
    width: 50%;
  }
  .brandList .brandList__box {
    padding: 30px;
  }
  .brandList .slick-arrow {
    width: 32px;
    height: 32px;
    background-size: auto 16px;
  }
}
/*
 * Layout 01 - - - 0px - 419px */
/*
 * Layout 02 - - - 420px - 767px */
/*
 * Layout 03 - - - 768px - 1023px */
@media all and (min-width: 768px) and (max-width: 1023px) {
  .brandList .brandList__item {
    width: 33.333%;
  }
}
/*
 * Layout 04 - - - 1024px - 1179px */
@media all and (min-width: 1024px) and (max-width: 1279px) {
  .brandList .brandList__item {
    width: 33.333%;
  }
}
/*
 * Layout 05 - - - 1180px - ... */
/*
 * Layout 05 - - - 1180px - ... */
@media all and (max-width: 1479px) {
  .brandList .slick-arrow.slick-prev {
    left: -5px;
  }
  .brandList .slick-arrow.slick-next {
    right: -5px;
  }
}
@media all and (min-width: 1480px) {
  .brandList .slick-arrow {
    opacity: 0.25;
  }
  .brandList .slick-arrow:hover {
    opacity: 0.75;
  }
}
.cards {
  width: 100%;
  /*
   *
   * Define variations */
  /*
   *
   * Slick slider tweaks */
}
.cards .cards__holder {
  margin: 35px 0;
  position: relative;
  z-index: 2;
}
.cards .cards__holder:first-child {
  margin-top: 0;
}
.cards .cards__holder:last-child {
  margin-bottom: 0;
}
.cards .cards__inner {
  width: 100%;
}
.cards .cards__list {
  display: flex;
  flex-wrap: wrap;
  width: auto;
  margin: -15px -10px;
}
.cards .cards__item {
  width: 25%;
  padding: 15px 10px;
}
.cards.size-small .cards__item {
  width: 20%;
}
.cards.size-large .cards__item {
  width: 33.333%;
}
.cards .slick-list {
  width: 100%;
}
.cards .slick-arrow {
  display: block;
  width: 40px;
  height: 40px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 20px;
  border: none;
  text-indent: -9999px;
  position: absolute;
  top: 35%;
  z-index: 2;
  transform: translate(0, -50%);
  transition: all 150ms;
  cursor: pointer;
}
.cards .slick-arrow.slick-prev {
  background-image: url("../svg/arrow-l.svg");
  left: -40px;
}
.cards .slick-arrow.slick-next {
  background-image: url("../svg/arrow-r.svg");
  right: -40px;
}
.cards .slick-arrow:focus, .cards .slick-arrow:active {
  outline: none;
}

/*
 *
 * Media Queries
 *
 */
/*
 * Layout 01 & Layout 02 - - - 0px - 767px */
@media all and (max-width: 767px) {
  .cards .cards__holder {
    margin: 20px 0;
  }
  .cards .cards__holder:first-child {
    margin-top: 0;
  }
  .cards .cards__holder:last-child {
    margin-bottom: 0;
  }
  .cards .slick-arrow {
    width: 32px;
    height: 32px;
    background-size: auto 16px;
  }
}
@media all and (max-width: 479px) {
  .cards .cards__item {
    width: 100%;
  }
  .cards.size-large .cards__item, .cards.size-small .cards__item {
    width: 100%;
  }
}
@media all and (min-width: 480px) and (max-width: 767px) {
  .cards .cards__item {
    width: 100%;
  }
  .cards.size-large .cards__item, .cards.size-small .cards__item {
    width: 100%;
  }
}
@media all and (min-width: 768px) and (max-width: 1179px) {
  .cards .cards__holder {
    margin: 20px 0;
  }
  .cards .cards__holder:first-child {
    margin-top: 0;
  }
  .cards .cards__holder:last-child {
    margin-bottom: 0;
  }
  .cards .cards__item {
    width: 33.333%;
  }
  .cards.size-large .cards__item, .cards.size-small .cards__item {
    width: 33.333%;
  }
}
@media all and (max-width: 1479px) {
  .cards .slick-arrow.slick-prev {
    left: -5px;
  }
  .cards .slick-arrow.slick-next {
    right: -5px;
  }
}
@media all and (min-width: 1480px) {
  .cards .slick-arrow {
    opacity: 0.25;
  }
  .cards .slick-arrow:hover {
    opacity: 0.75;
  }
}
.contentSection {
  /*
  *
  *
  *
  * Define variations */
}
.contentSection .contentSection__inner {
  padding-top: 100px;
  padding-bottom: 100px;
}
.contentSection.padding-t-0 .contentSection__inner {
  padding-top: 0;
}
.contentSection.padding-b-0 .contentSection__inner {
  padding-bottom: 0;
}
.contentSection.padding-0 .contentSection__inner {
  padding-top: 0;
  padding-bottom: 0;
}
.contentSection.padding-t-xs .contentSection__inner {
  padding-top: 25px;
}
.contentSection.padding-b-xs .contentSection__inner {
  padding-bottom: 25px;
}
.contentSection.padding-xs .contentSection__inner {
  padding-top: 25px;
  padding-bottom: 25px;
}
.contentSection.padding-t-s .contentSection__inner {
  padding-top: 50px;
}
.contentSection.padding-b-s .contentSection__inner {
  padding-bottom: 50px;
}
.contentSection.padding-s .contentSection__inner {
  padding-top: 50px;
  padding-bottom: 50px;
}
.contentSection.padding-t-l .contentSection__inner {
  padding-top: 150px;
}
.contentSection.padding-b-l .contentSection__inner {
  padding-bottom: 150px;
}
.contentSection.padding-l .contentSection__inner {
  padding-top: 150px;
  padding-bottom: 150px;
}

/*
 *
 * Media Queries
 *
 */
/*
 * Layout 01 & Layout 02 - - - 0px - 767px */
/*
 * Layout 01 - - - 0px - 419px */
@media all and (max-width: 419px) {
  .contentSection .contentSection__inner {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .contentSection.padding-t-s .contentSection__inner {
    padding-top: 35px;
  }
  .contentSection.padding-b-s .contentSection__inner {
    padding-bottom: 35px;
  }
  .contentSection.padding-s .contentSection__inner {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .contentSection.padding-t-l .contentSection__inner {
    padding-top: 70px;
  }
  .contentSection.padding-b-l .contentSection__inner {
    padding-bottom: 70px;
  }
  .contentSection.padding-l .contentSection__inner {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
/*
 * Layout 02 - - - 420px - 767px */
@media all and (min-width: 420px) and (max-width: 767px) {
  .contentSection .contentSection__inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .contentSection.padding-t-s .contentSection__inner {
    padding-top: 40px;
  }
  .contentSection.padding-b-s .contentSection__inner {
    padding-bottom: 40px;
  }
  .contentSection.padding-s .contentSection__inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .contentSection.padding-t-l .contentSection__inner {
    padding-top: 80px;
  }
  .contentSection.padding-b-l .contentSection__inner {
    padding-bottom: 80px;
  }
  .contentSection.padding-l .contentSection__inner {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
/*
 * Layout 03 - - - 768px - 1023px */
@media all and (min-width: 768px) and (max-width: 1023px) {
  .contentSection .contentSection__inner {
    padding-top: 55px;
    padding-bottom: 55px;
  }
  .contentSection.padding-t-s .contentSection__inner {
    padding-top: 55px;
  }
  .contentSection.padding-b-s .contentSection__inner {
    padding-bottom: 55px;
  }
  .contentSection.padding-s .contentSection__inner {
    padding-top: 55px;
    padding-bottom: 55px;
  }
  .contentSection.padding-t-l .contentSection__inner {
    padding-top: 110px;
  }
  .contentSection.padding-b-l .contentSection__inner {
    padding-bottom: 110px;
  }
  .contentSection.padding-l .contentSection__inner {
    padding-top: 110px;
    padding-bottom: 110px;
  }
}
/*
 * Layout 04 - - - 1024px - 1179px */
/*
 * Layout 05 - - - 1180px - ... */
.gallery {
  margin: 35px 0;
}
.gallery .gallery__inner {
  display: flex;
}
.gallery .gallery__item {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}
.gallery .gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  object-position: center;
}
.gallery .gallery__item::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 2px solid #F8FAFA;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}
.gallery:first-child {
  margin-top: 0;
}
.gallery:last-child {
  margin-bottom: 0;
}

.hours {
  font-size: 14px;
  line-height: 1.45;
}
.hours table {
  width: 100%;
}
.hours td {
  color: #656565;
}
.hours td:nth-child(1) {
  padding: 0 35px 0 0;
  color: #007A6F;
  font-weight: 700;
}
.hours.size-s {
  font-size: 12.8px;
}
.hours.size-s table {
  width: auto;
}

.intro {
  width: 100%;
}
.intro .intro__inner {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.intro .intro__headline {
  width: 45%;
  padding: 0 25px 0 140px;
  position: relative;
}
.intro .intro__headline::before {
  content: "";
  width: 90px;
  height: 2px;
  background: #F2E508;
  position: absolute;
  left: 0;
  top: 22px;
}
.intro .intro__content {
  width: 55%;
  padding: 0 0 0 25px;
}

/*
 *
 * Media Queries
 *
 */
/*
 * Layout 01 & Layout 02 - - - 0px - 767px */
@media all and (max-width: 767px) {
  .intro .intro__headline {
    width: 100%;
    padding: 0 0 15px 40px;
  }
  .intro .intro__headline::before {
    width: 30px;
    top: 22px;
  }
  .intro .intro__content {
    width: 100%;
    padding: 0;
  }
}
/*
 * Layout 01 - - - 0px - 419px */
/*
 * Layout 02 - - - 420px - 767px */
/*
 * Layout 03 - - - 768px - 1023px */
@media all and (min-width: 768px) and (max-width: 1023px) {
  .intro .intro__headline {
    padding: 0 10px 0 40px;
  }
  .intro .intro__headline::before {
    width: 30px;
    top: 22px;
  }
  .intro .intro__content {
    padding: 0 0 0 10px;
  }
}
/*
 * Layout 04 - - - 1024px - 1179px */
/*
 * Layout 05 - - - 1180px - ... */
.limited {
  width: 100%;
  /*
   *
   * Define variations */
}
.limited .limited__inner {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
}
.limited .limited__actions {
  margin: 20px -8px 0;
}
.limited .limited__actions a {
  margin: 8px;
}
.limited.size-m .limited__inner {
  max-width: 680px;
}
.limited.size-l .limited__inner {
  max-width: 800px;
}
.limited.align-left .limited__inner {
  text-align: left;
}

/*
 *
 * Media Queries
 *
 */
/*
 * Layout 01 & Layout 02 - - - 0px - 767px */
@media all and (max-width: 767px) {
  .limited .limited__inner {
    max-width: none;
    text-align: left;
  }
  .limited .limited__inner.size-m {
    max-width: none;
  }
  .limited .limited__inner.size-l {
    max-width: none;
  }
}
.navigation ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
  padding: 0;
  margin: 0;
}
.navigation li {
  margin: 0 0 0 50px;
  text-decoration: none;
  position: relative;
}
.navigation li .btn {
  min-width: initial;
}
.navigation li:first-child {
  margin-left: 0;
}
.navigation .navigation__link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  color: #000;
  font-family: "Roboto Condensed", Helvetica, Arial, serif;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  transition: all 150ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  letter-spacing: -0.2px;
}
.navigation .navigation__link svg {
  display: block;
  width: 8px;
  height: 8px;
  margin: 0 0 0 8px;
  fill: #000;
  position: relative;
  top: 0;
  transition: all 150ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.navigation .navigation__link::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #00DFC8;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: scale3d(0, 1, 1);
  transform-origin: 0% 50%;
  transition: all 350ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.navigation .navigation__link.is-active::after, .navigation .navigation__link:hover::after {
  transform: scale3d(1, 1, 1);
}
.navigation .navigation__link.btn {
  padding: 14px 25px;
  color: #fff;
  text-transform: none;
}
.navigation .navigation__link.btn::after {
  display: none;
}
.navigation .navigation__sub {
  display: none;
  flex-wrap: wrap;
  width: 100%;
  min-width: 250px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 100%;
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.05);
}
.navigation .navigation__sub li {
  width: 100%;
  margin: 0;
  border-top: 1px solid #f2f2f2;
  text-align: left;
}
.navigation .navigation__sub li:first-child {
  border-top: none;
}
.navigation .navigation__sub .navigation__link {
  justify-content: flex-start;
  padding: 24px 15px;
  color: #1B2430;
  font-family: "Montserrat", Helvetica, Arial, serif;
  font-size: 12.8px;
  font-weight: 500;
  text-transform: none;
}
.navigation .navigation__sub .navigation__link::after {
  display: none;
}
.navigation .navigation__sub .navigation__link:hover {
  background: #f5f5f5;
}
.navigation .navigation__sub .navigation__link.is-active {
  background: #ebebeb;
}
.navigation .navigation__accordeonTrigger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #fff;
  font-size: 19px;
  line-height: 1.2;
  text-decoration: none;
  position: absolute;
  right: 0;
  top: 5px;
  z-index: 100;
}
.navigation .navigation__accordeonTrigger::before {
  content: "+";
}

/*
 *
 * Media Queries
 *
 */
/*
 * Layout 01 & Layout 02 - - - 0px - 767px */
@media all and (max-width: 1279px) {
  .navigation .navigation__accordeonTrigger {
    display: flex;
  }
  .navigation ul {
    flex-wrap: wrap;
    width: 100%;
  }
  .navigation li {
    width: 100%;
    padding: 0 20px;
    margin: 15px 0 0;
    font-size: 18px;
    text-align: center;
    letter-spacing: -0.5px;
  }
  .navigation li:first-child {
    margin-top: 0;
  }
  .navigation .navigation__link {
    display: inline-block;
    width: 100%;
    padding: 17px 10px;
  }
  .navigation .navigation__link svg {
    display: none;
  }
  .navigation .navigation__link::after {
    display: none !important;
    width: 74px;
    margin-left: -37px;
    left: 50%;
  }
  .navigation .navigation__link.is-active::after {
    display: block;
  }
  .navigation .navigation__sub {
    display: none;
    width: auto;
    min-width: initial;
    margin: 0 -20px;
    background: #f2f2f2;
    position: relative;
    left: 0;
    top: 0;
    box-shadow: none;
  }
  .navigation .navigation__sub li {
    padding: 0;
    border-top-color: #f7f7f7;
  }
  .navigation .navigation__sub a {
    display: block;
    justify-content: center;
    text-align: center;
  }
  .navigation .navigation__sub a.is-active {
    background: transparent;
  }
  .navigation .is-open .navigation__sub {
    display: block;
  }
  .navigation .is-open .navigation__accordeonTrigger::before {
    content: "-";
  }
}
/*
 * Layout 01 - - - 0px - 419px */
/*
 * Layout 02 - - - 420px - 767px */
/*
 * Layout 03 - - - 768px - 1023px */
/*
 * Layout 04 - - - 1024px - 1179px */
/*
 * Layout 05 - - - 1180px - ... */
@media all and (min-width: 1280px) and (max-width: 1400px) {
  .navigation li {
    margin-left: 45px;
    font-size: 15px;
  }
  .navigation li:first-child {
    margin-left: 0;
  }
}
/*
 * Layout 05 - - - 1180px - ... */
@media all and (min-width: 1280px) {
  .navigation li:hover .navigation__sub {
    display: block;
  }
}
.pricing {
  width: 100%;
  position: relative;
  /*
   *
   * Define variations */
}
.pricing .pricing__inner {
  width: 100%;
}
.pricing .pricing__list {
  width: 100%;
  opacity: 0;
}
.pricing .pricing__list.slick-initialized {
  opacity: 1;
}
.pricing .pricing__item {
  width: 25%;
  padding: 10px;
  position: relative;
}
.pricing .pricing__box {
  position: relative;
  transform-origin: 50% 50%;
  transition: all 250ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.pricing .pricing__box:hover {
  transform: translate(0, -8px);
}
.pricing .pricing__box::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #F2E508;
  border-radius: 0 55px 0 0;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-5px, 5px);
}
.pricing .pricing__boxIn {
  background: #fff;
  border-radius: 0 55px 0 0;
  position: relative;
  z-index: 2;
}
.pricing .pricing__link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  text-indent: -9999px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 100;
}
.pricing .pricing__boxActions {
  width: 100%;
  margin: 30px 0 0;
}
.pricing .pricing__boxHeader {
  padding: 25px 20px;
  border-bottom: 1px solid rgba(27, 36, 48, 0.2);
}
.pricing .pricing__boxHeader p {
  font-size: 12px;
  line-height: 1.4;
  opacity: 0.7;
}
.pricing .pricing__boxContent {
  padding: 30px 20px;
}
.pricing .pricing__boxContent ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pricing .pricing__boxContent li {
  padding: 0 0 0 30px;
  margin: 10px 0 0;
  font-size: 14px;
  position: relative;
}
.pricing .pricing__boxContent li:first-child {
  margin-top: 0;
}
.pricing .pricing__boxContent li::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: #00B5A3;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 2px;
}
.pricing .pricing__boxContent li svg {
  display: block;
  width: 10px;
  height: 10px;
  fill: #fff;
  position: absolute;
  left: 5px;
  top: 7px;
  z-index: 2;
}
.pricing .pricing__box.type-recommended .pricing__boxIn {
  background: #00DFC8;
  color: #fff;
}
.pricing .pricing__box.type-recommended::before {
  background: #F2E508;
}
.pricing .pricing__box.type-recommended a {
  color: #fff;
}
.pricing .pricing__box.type-recommended .pricing__boxHeader {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}
.pricing .pricing__box.type-subtle .pricing__boxIn {
  background: #F5EB2E;
}
.pricing .pricing__box.type-subtle::before {
  background: #00DFC8;
}
.pricing .slick-list {
  overflow: visible;
}
.pricing .slick-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #00DFC8;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 18px auto;
  border: none;
  border-radius: 50%;
  text-indent: -9999px;
  position: absolute;
  top: 35%;
  z-index: 101;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
.pricing .slick-arrow.slick-disabled {
  background-color: #b2b2b2;
  opacity: 0.5 !important;
  pointer-events: none !important;
}
.pricing .slick-arrow.slick-prev {
  background-image: url("../../svg/build/pricing--arrow-l.svg");
  left: -55px;
  right: auto;
}
.pricing .slick-arrow.slick-next {
  background-image: url("../../svg/build/pricing--arrow-r.svg");
  left: auto;
  right: -55px;
}

/*
 *
 * Media Queries
 *
 */
/*
 * Layout 01 & Layout 02 - - - 0px - 767px */
@media all and (max-width: 1400px) {
  .pricing .slick-arrow.slick-prev {
    left: 10px;
    right: auto;
  }
  .pricing .slick-arrow.slick-next {
    left: auto;
    right: 10px;
  }
}
/*
  * Layout 01 - - - 0px - 419px */
/*
  * Layout 02 - - - 420px - 767px */
/*
  * Layout 03 - - - 768px - 1023px */
/*
  * Layout 04 - - - 1024px - 1179px */
/*
  * Layout 05 - - - 1180px - ... */
.socials .socials__list {
  margin: 0 -5px;
}
.socials .socials__list ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.socials .socials__list li {
  margin: 5px !important;
}

/*
 *
 * Media Queries
 *
 */
/*
 * Layout 01 & Layout 02 - - - 0px - 767px */
@media all and (max-width: 767px) {
  .socials .socials__list ul {
    justify-content: flex-start;
  }
}
.videoplayer {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  margin: 45px 0;
  overflow: hidden;
  position: relative;
}
.videoplayer:first-child {
  margin-top: 0;
}
.videoplayer:last-child {
  margin-bottom: 0;
}
.videoplayer iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.visual {
  width: 100%;
  margin: 45px 0;
  overflow: hidden;
}
.visual:first-child {
  margin-top: 0;
}
.visual:last-child {
  margin-bottom: 0;
}
.visual img {
  display: block;
  width: 100%;
}
.visual a {
  display: block;
  text-decoration: none;
}
.visual.has-fx {
  border-radius: 0 150px;
}

/*
 *
 * Media Queries
 *
 */
/*
 * Layout 01 & Layout 02 - - - 0px - 767px */
@media all and (max-width: 767px) {
  .visual.has-fx {
    border-radius: 0 85px;
  }
}
/*
 * Layout 01 - - - 0px - 419px */
/*
 * Layout 02 - - - 420px - 767px */
/*
 * Layout 03 - - - 768px - 1023px */
@media all and (min-width: 768px) and (max-width: 1023px) {
  .visual.has-fx {
    border-radius: 0 100px;
  }
}
/*
 * Layout 04 - - - 1024px - 1179px */
/*
 * Layout 05 - - - 1180px - ... */
.section {
  width: 100%;
  position: relative;
}
.section .section__inner {
  width: 100%;
  max-width: 1480px;
  padding-left: 45px;
  padding-right: 45px;
  margin: 0 auto;
  position: relative;
}
.section.no-max .section__inner {
  max-width: none;
}

/*
 *
 * Media Queries
 *
 */
/*
 * Layout 01 & Layout 02 - - - 0px - 767px */
@media all and (max-width: 767px) {
  .section .section__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
/*
 * Layout 01 - - - 0px - 419px */
/*
 * Layout 02 - - - 420px - 767px */
/*
 * Layout 03 - - - 768px - 1023px */
@media all and (min-width: 768px) and (max-width: 1023px) {
  .section .section__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}
/*
 * Layout 04 - - - 1024px - 1179px */
@media all and (min-width: 1024px) and (max-width: 1279px) {
  .section .section__inner {
    padding-left: 35px;
    padding-right: 35px;
  }
}
/*
 * Layout 05 - - - 1180px - ... */
.footer {
  width: 100%;
  background: #fff;
  color: #656565;
  font-size: 12.8px;
}
.footer .footer__primary .footer__inner {
  display: flex;
  justify-content: space-between;
  padding-top: 55px;
  padding-bottom: 50px;
}
.footer .footer__brand .brand {
  margin: 0 0 25px;
}
.footer .footer__brand a {
  color: #1B2430;
}
.footer .footer__brand a:hover {
  color: #007A6F;
}
.footer .footer__columns {
  display: flex;
  justify-content: flex-start;
  width: 100%;
}
.footer .footer__column {
  width: 27%;
  padding: 0 0 0 35px;
}
.footer .footer__column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer__column li {
  margin: 20px 0 0;
  font-size: 14px;
  line-height: 1.2;
}
.footer .footer__column li:first-child {
  margin-top: 0;
}
.footer .footer__column a {
  color: #1B2430;
  text-decoration: none;
  transition: all 150ms;
}
.footer .footer__column a:hover {
  color: #1B2430;
  text-decoration: underline;
}
.footer .footer__column:first-child {
  width: 19%;
}
.footer .footer__legal {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  color: #999;
  font-size: 12px;
}
.footer .footer__legal .footer__inner {
  padding-top: 20px;
  padding-bottom: 20px;
}
.footer .footer__legal a {
  color: #999;
  transition: all 150ms;
}
.footer .footer__legal a:hover {
  color: #007A6F;
}
.footer .footer__socials {
  display: flex;
  width: 100%;
}
.footer .footer__socials a {
  margin: 0 0 0 10px;
}
.footer .footer__socials a:first-child {
  margin-left: 0;
}
.footer .footer__hours {
  width: 100%;
  margin: 0 0 25px;
}
.footer .footer__hours:last-child {
  margin-bottom: 0;
}
.footer .footer__contactDetails {
  width: 100%;
}
.footer .footer__contactDetails ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer__contactDetails li {
  width: 100%;
  padding: 0 0 0 30px;
  margin: 15px 0 0;
  position: relative;
}
.footer .footer__contactDetails li:first-child {
  margin-top: 0;
}
.footer .footer__contactDetails svg {
  display: block;
  width: 15px;
  height: 15px;
  fill: #007A6F;
  position: absolute;
  left: 0;
  top: 2px;
}

/*
 *
 * Media Queries
 *
 */
/*
 * Layout 01 & Layout 02 - - - 0px - 767px */
@media all and (max-width: 767px) {
  .footer .footer__inner {
    flex-wrap: wrap;
  }
  .footer .footer__primary .footer__inner {
    padding-top: 50px;
    padding-bottom: 35px;
  }
  .footer .footer__columns {
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    padding: 0;
  }
  .footer .footer__column {
    width: 100%;
    padding: 0;
    margin: 35px 0 0;
  }
  .footer .footer__column:first-child {
    width: 100%;
    margin-top: 0;
  }
  .footer .footer__legal .footer__inner {
    padding-bottom: 15px;
  }
}
/*
 * Layout 01 - - - 0px - 419px */
/*
 * Layout 02 - - - 420px - 767px */
/*
 * Layout 03 - - - 768px - 1023px */
@media all and (min-width: 768px) and (max-width: 1279px) {
  .footer .footer__inner {
    flex-wrap: wrap;
  }
  .footer .footer__columns {
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    padding: 0;
  }
  .footer .footer__column {
    width: 50%;
    max-width: none;
    padding-top: 40px;
  }
  .footer .footer__column:first-child {
    width: 50%;
  }
  .footer .footer__column:nth-child(2n+1) {
    padding-left: 0;
  }
  .footer .footer__column:nth-child(1), .footer .footer__column:nth-child(2) {
    padding-top: 0;
  }
  .footer .footer__legal .footer__inner {
    padding-bottom: 35px;
  }
}
/*
 * Layout 03 - - - 1024px - 1179px */
/*
 * Layout 04 - - - 1180px - ... */
.header {
  width: 100%;
}
.header .header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
  z-index: 2;
}
.header .header__brand {
  flex-shrink: 0;
  flex-grow: 0;
}
.header::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  transform: scale3d(1, 0, 1);
  transform-origin: 50% 0%;
  transition: all 140ms cubic-bezier(0.47, 0, 0.745, 0.715);
}

/*
 *
 * Media Queries
 *
 */
/*
 * Layout 01 & Layout 02 - - - 0px - 1279px */
@media all and (max-width: 1279px) {
  .header {
    display: block;
    width: 100%;
    height: 100%;
    padding: 60px 0;
    overflow-y: scroll;
    background: #F8FAFA;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    transform: translate3d(100%, 0, 0);
    transition: all 250ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-overflow-scrolling: touch;
  }
  .header .header__inner {
    padding-left: 0;
    padding-right: 0;
  }
  .header .header__brand {
    display: none;
  }
  .header .header__navigation {
    width: 100%;
    margin: 0;
  }
  .offcanvas--is-open .header {
    transform: translate3d(0, 0, 0);
  }
  body.offcanvas--is-open {
    overflow: hidden;
  }
}
/*
 * Layout 05 - - - 1180px - ... */
@media all and (min-width: 1280px) {
  .header--is-scrolled .header::before {
    transform: scale3d(1, 1, 1);
    transition: all 140ms cubic-bezier(0.39, 0.575, 0.565, 1);
  }
}
.layer {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  opacity: 0;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 2000;
  transition: opacity 150ms;
  backdrop-filter: blur(5px);
  /*
   *
   * Define variations */
}
.layer .layer__holder {
  width: 100%;
  max-width: 850px;
  position: relative;
  z-index: 2;
}
.layer .layer__video {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  background: #fff;
}
.layer .layer__video iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.layer .layer__search {
  width: 100%;
  max-width: 520px;
  padding: 0 15px;
  margin: 0 auto;
  text-align: center;
}
.layer .layer__controls {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}
.layer .layer__controls a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #F2E508;
  fill: #fff;
  text-decoration: none;
}
.layer .layer__controls svg {
  display: block;
  width: 11px;
  height: 11px;
}
.layer .layer__solid {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  cursor: pointer;
}
.layer.is-active {
  display: flex;
}
.layer.is-visible {
  opacity: 1;
}

.topbar {
  display: none;
  background: #F8FAFA;
  position: relative;
  left: 0;
  top: 0;
  z-index: 101;
}
.topbar .topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}
.topbar .topbar__brand {
  flex-shrink: 0;
  flex-grow: 0;
}
.topbar .topbar__offcanvas {
  position: relative;
  left: 12px;
}

/*
 *
 * Media Queries
 *
 */
/*
 * Layout 01 & Layout 02 - - - 0px - 1179px */
@media all and (max-width: 1279px) {
  .topbar {
    display: block;
  }
}
/*
 * Layout 01 - - - 0px - 419px */
/*
 * Layout 02 - - - 420px - 767px */
/*
 * Layout 03 - - - 768px - 1023px */
/*
 * Layout 04 - - - 1024px - 1179px */
/*
 * Layout 05 - - - 1180px - ... */
.wrapper {
  width: 100%;
  position: relative;
  z-index: 10;
}
.wrapper .wrapper__inner {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: 0;
}
.wrapper .wrapper__header {
  flex-shrink: 0;
  flex-grow: 0;
  width: 100%;
  position: sticky;
  left: 0;
  top: 0;
  z-index: 100;
}
.wrapper .wrapper__content {
  flex-shrink: 0;
  flex-grow: 1;
  width: 100%;
  overflow: hidden;
}
.wrapper .wrapper__footer {
  flex-shrink: 0;
  flex-grow: 0;
  width: 100%;
}

/*
 *
 * Media Queries
 *
 */
/*
 * Layout 01 & Layout 02 & Layout 03 & Layout 04 - - - 0px - 1179px */
/*
 * Layout 01 - - - 0px - 419px */
/*
 * Layout 02 - - - 420px - 767px */
/*
 * Layout 03 - - - 768px - 1023px */
/*
 * Layout 04 - - - 1024px - 1179px */
/*
 * Layout 05 - - - 1180px - ... */