@charset "UTF-8";
/* =============ABSTRACTS==================== */
@import url("https://use.typekit.net/vzt4qsg.css");
@-webkit-keyframes headerAnimation {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes headerAnimation {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
/* =============BASE==================== */
/* VARIABLES =================================================================== */
/*
$gutter: 2%;
$columns: 16;
*/
/* STYLES ====================================================================== */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: sans-serif;
  height: 100%;
  max-width: 3000px;
  margin: 0 auto;
  padding: 0;
}

p {
  margin-top: 0;
}
p:last-of-type {
  margin-bottom: 0;
}

#form-success {
  display: none;
}

#feedback.erroneous, #feedback.error {
  padding: 10px;
  text-align: center;
  background-color: crimson;
  color: #fff;
  margin-bottom: 10px;
  font-weight: bold;
}

/* MEDIA QUERY'S =============================================================== */
* {
  outline: none;
}

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
  margin: 0;
  padding: 0;
}

audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden], template {
  display: none;
}

a {
  background-color: transparent;
}

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

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

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

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

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

input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, html input[type=button], input[type=reset], input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled], html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
  border-radius: 0;
}

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

input[type=number]::-webkit-inner-adjust-hue-button, input[type=number]::-webkit-outer-adjust-hue-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  border-radius: 0;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td, th {
  padding: 0;
}

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

body {
  width: 100%;
}
body:before, body:after {
  content: "";
  display: table;
}
body:after {
  clear: both;
}

/* EXTRA ======================================================================= */
img.scale {
  max-width: 100%;
  height: auto;
}

::-moz-selection {
  background: RoyalBlue;
  color: #fff;
}

::selection {
  background: RoyalBlue;
  color: #fff;
}

::-moz-selection {
  background: RoyalBlue;
  color: #fff;
}

#privacypolicy {
  position: fixed;
  right: 0;
  bottom: 0;
  background: rgba(238, 238, 238, 0.6);
  color: RoyalBlue;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px 30px;
  width: 100%;
  font-size: 11px;
  line-height: 22px;
  opacity: 0;
  -webkit-transform: translate(0, 30px);
      -ms-transform: translate(0, 30px);
          transform: translate(0, 30px);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  pointer-events: none;
}
#privacypolicy.active {
  opacity: 1;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
  pointer-events: auto;
}
#privacypolicy a {
  color: RoyalBlue;
}
#privacypolicy .privacy-btn {
  background-image: url("../images/privacy-close.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  top: 15px;
  right: 10px;
  width: 15px;
  height: 15px;
  cursor: pointer;
}

/* CMS ========================================================================= */
.uniform__potty {
  position: absolute;
  top: -9999px;
  left: -9999px;
}

.erroneous {
  border-color: crimson !important;
}

/* PLUGINS ===================================================================== */
html {
  font-family: sans-serif;
  font-size: 62.5%;
}

body {
  line-height: 1.8;
  font-size: 1.5rem;
  font-family: sofia-pro, sans-serif;
  font-weight: 300;
}

h1, h2, h3 {
  margin: 0;
  padding: 0;
  font-family: sofia-pro, sans-serif;
  font-weight: 500;
  font-size: 4rem;
  line-height: 1.05;
  text-transform: uppercase;
}
@media (max-width: 600px) {
  h1, h2, h3 {
    font-size: 3.5rem;
    -ms-hyphens: manual;
        hyphens: manual;
  }
}
h1 a, h2 a, h3 a {
  text-decoration: none;
}

h3 {
  text-transform: uppercase;
  font-size: 3rem;
}
@media (max-width: 600px) {
  h3 {
    font-size: 2.5rem;
  }
}

p {
  margin: 0;
}
p:not(p:last-of-type) {
  padding-bottom: 2rem;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
}

html {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  height: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

img {
  height: 100%;
  width: 100%;
}

.error__container a {
  color: unset;
  text-decoration: underline;
}

.swiper {
  height: 100%;
  width: auto !important;
}

.bycobefa {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.bycobefa.row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.bycobefa.row svg {
  margin: 0 0 0 1rem;
  fill: #fff;
}
.bycobefa.column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0;
}
@media (max-width: 600px) {
  .bycobefa.column {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.bycobefa.column svg {
  margin: 1rem 0 0 0;
  fill: #758982;
}
.bycobefa svg {
  max-width: 9rem;
  width: 100%;
}

.section-over {
  position: relative;
  z-index: 1;
  background: #fff;
}
.section-over-second {
  position: relative;
  z-index: 1;
}

.headerspacer {
  min-height: 120px;
  display: block;
}

.grecaptcha-badge {
  visibility: hidden;
}

.isie {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 9999999;
  background: white;
  top: 0;
  left: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.isie h1 {
  padding-bottom: 2vw;
}
.isie .close-isie {
  text-decoration: underline;
  padding-top: 1vw;
  cursor: pointer;
}

.hidden {
  display: none;
  visibility: hidden;
  opacity: 0;
  height: 0;
}

.ratio__portrait {
  position: relative;
  height: 0;
  width: 100%;
  padding-bottom: 125%;
  overflow: hidden;
}
.ratio__portrait.grey {
  background: grey;
}
.ratio__landscape {
  position: relative;
  height: 0;
  width: 100%;
  padding-bottom: 70%;
  overflow: hidden;
}
.ratio__square {
  position: relative;
  height: 0;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
}
.ratio__fullscreen {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.ratio__thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.ratio__logo {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.ratio__video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 124%;
}

/* =============COMPONENTS==================== */
.header {
  position: fixed;
  z-index: 11;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 10rem;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-animation: 2s ease headerAnimation;
          animation: 2s ease headerAnimation;
}
@media (max-width: 1100px) {
  .header {
    padding: 2.5rem 5rem;
  }
}
@media (max-width: 600px) {
  .header {
    padding: 2.5rem 2.5rem;
  }
}
.header.green .header-logo svg .logo-icon {
  fill: #758982;
}
.header.green .toggle-icon span {
  background: #758982;
}
.header.scrolling {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: translateY(-52px);
      -ms-transform: translateY(-52px);
          transform: translateY(-52px);
  padding: 0 10rem 2.5rem;
  background: #fff;
}
@media (max-width: 1100px) {
  .header.scrolling {
    padding: 2.5rem 5rem;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}
@media (max-width: 600px) {
  .header.scrolling {
    padding: 2.5rem;
  }
}
.header.scrolling .header-language {
  opacity: 0;
  visibility: hidden;
}
.header.scrolling .header-logo svg .logo-icon {
  fill: #758982;
}
.header.scrolling .header-menu ul li a {
  color: #758982;
}
.header.scrolling .header-buttons .btn-white {
  color: #758982;
  border: 2px solid #758982;
}
.header.scrolling .header-buttons .btn-white:hover {
  border: 2px solid #fff;
}
.header.scrolling .toggle-icon span {
  background: #758982;
}
.header.hide {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}
.header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.header-language {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 2.5rem 0;
}
@media (max-width: 1100px) {
  .header-language {
    display: none;
  }
}
.header-language .language {
  position: relative;
  cursor: pointer;
  padding: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.header-language .language.active {
  background: #758982;
  border-radius: 1rem;
  padding: 0 2rem;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.header-language .language.active .language-current {
  color: #fff;
}
.header-language .language.active .language-current:after {
  border-top: 6px solid transparent;
  border-bottom: 6px solid #fff;
  top: 5px;
}
.header-language .language.active .language-selector {
  visibility: visible;
  opacity: 1;
}
.header-language .language.active .language-selector li {
  background: #fff;
}
.header-language .language-current {
  color: #fff;
  font-family: sofia-pro, sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  position: relative;
  padding: 0 2rem 0 0;
}
.header-language .language-current:after {
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  content: "";
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #fff;
  border-bottom: 6px solid transparent;
}
.header-language .language-selector {
  position: absolute;
  top: 2.7rem;
  left: 0;
  right: 0;
  z-index: 2;
  visibility: hidden;
  opacity: 0;
}
.header-language .language-selector li {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  padding: 0 2rem;
  border-radius: 1rem;
  margin: 1px 0;
}
.header-language .language-selector li a {
  color: #758982;
  text-decoration: none;
  font-family: sofia-pro, sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
}
.header-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.header-main .toggle {
  display: none;
}
@media (max-width: 1100px) {
  .header-main .toggle {
    display: block;
  }
}
.header-main .toggle-icon {
  cursor: pointer;
}
.header-main .toggle-icon span {
  display: block;
  width: 33px;
  height: 3px;
  margin-bottom: 5px;
  position: relative;
  background: #fff;
  border-radius: 1rem;
  z-index: 1;
  -webkit-transform-origin: 3px 0px;
      -ms-transform-origin: 3px 0px;
          transform-origin: 3px 0px;
  -webkit-transition: background 0.4s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.4s ease, -webkit-transform 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: background 0.4s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.4s ease, -webkit-transform 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: transform 0.4s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.4s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.4s ease;
  transition: transform 0.4s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.4s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.4s ease, -webkit-transform 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
}
.header-main .toggle-icon span:first-of-type {
  -webkit-transform-origin: 0% 0%;
      -ms-transform-origin: 0% 0%;
          transform-origin: 0% 0%;
}
.header-main .toggle-icon span:last-of-type {
  -webkit-transform-origin: 0% 100%;
      -ms-transform-origin: 0% 100%;
          transform-origin: 0% 100%;
  margin-bottom: 0;
}
.header-main .toggle-close .toggle-icon span {
  opacity: 1;
  -webkit-transform: rotate(45deg) translate(-3px, -5px);
      -ms-transform: rotate(45deg) translate(-3px, -5px);
          transform: rotate(45deg) translate(-3px, -5px);
}
.header-main .toggle-close .toggle-icon span:nth-of-type(2) {
  opacity: 0;
  -webkit-transform: rotate(0deg) scale(0.2, 0.2);
      -ms-transform: rotate(0deg) scale(0.2, 0.2);
          transform: rotate(0deg) scale(0.2, 0.2);
}
.header-main .toggle-close .toggle-icon span:nth-of-type(3) {
  -webkit-transform: rotate(-45deg) translate(0px, 1px);
      -ms-transform: rotate(-45deg) translate(0px, 1px);
          transform: rotate(-45deg) translate(0px, 1px);
}
.header-logo, .header-menu, .header-buttons {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header-logo {
  width: 100%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.header-logo svg {
  max-width: 16.5rem;
  width: 100%;
}
@media (max-width: 1100px) {
  .header-logo svg {
    max-width: 14rem;
  }
}
@media (max-width: 1100px) {
  .header-menu {
    display: none;
  }
}
.header-menu .menu ul {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-menu .menu ul li {
  list-style: none;
  padding: 0 2.5rem 0 0;
  margin: 0;
}
.header-menu .menu ul li:last-of-type {
  padding: 0;
}
.header-menu .menu ul li a {
  text-decoration: none;
  color: #fff;
  font-family: sofia-pro, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1.5rem;
  white-space: nowrap;
}
.header-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 1100px) {
  .header-buttons {
    display: none;
  }
}
.header-buttons .btn {
  white-space: nowrap;
}
.header-buttons .btn:first-of-type {
  margin: 0 1rem 0 2.5rem;
}
.header-mobile {
  position: fixed;
  background: #fff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
  display: none;
}
@media (max-width: 1100px) {
  .header-mobile {
    display: block;
  }
}
.header-mobile--open {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.header-mobile--open .header-mobile-block .menu {
  opacity: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.header-mobile--open .header-mobile-buttons {
  opacity: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.header-mobile-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  width: 100%;
  padding: 10rem 0 0;
}
.header-mobile-block .menu {
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.header-mobile-block .menu ul {
  padding: 0;
  margin: 0;
}
.header-mobile-block .menu ul li {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
  line-height: 2.6;
}
.header-mobile-block .menu ul li a {
  text-decoration: none;
  color: #758982;
  font-family: 300;
  text-transform: uppercase;
}
.header-mobile-block .menu ul li a:not(.active) {
  color: #bac4c0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.header-mobile-block .btn-white {
  color: #758982 !important;
  border: 2px solid #758982;
}
.header-mobile-block .btn-white:hover {
  border: 2px solid #fff;
}
.header-mobile-block .language {
  padding: 5rem 0 0;
}
.header-mobile-block .language-selector {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.header-mobile-block .language-selector li {
  list-style: none;
  padding: 0 2.5rem;
}
.header-mobile-block .language-selector li a {
  text-decoration: none;
  color: #758982;
}
.header-mobile-block .language-selector li a.active {
  font-weight: 600;
}
.header-mobile-buttons {
  padding: 4rem 0 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.header-mobile-buttons .btn {
  margin-top: 1rem;
  text-align: center;
}

#privacypolicy {
  background: #fff;
  color: #222222;
}
#privacypolicy a {
  color: #222222;
}

.privacy__container, .disclaimer__container {
  padding: 10rem 0 0;
}
.privacy-block, .disclaimer-block {
  padding: 15rem 10rem;
  color: #758982;
}
@media (max-width: 1100px) {
  .privacy-block, .disclaimer-block {
    padding: 10rem 5rem 0;
  }
}
@media (max-width: 600px) {
  .privacy-block, .disclaimer-block {
    padding: 5rem 2.5rem 0;
  }
}

.error__container, .about__container, .troeven__container, .howitworks__container, .faq__container, .contact__container {
  padding: 10rem 0 0;
}
.error-block, .about-block, .troeven-block, .howitworks-block, .faq-block, .contact-block {
  padding: 15rem 10rem;
  color: #758982;
}
@media (max-width: 1100px) {
  .error-block, .about-block, .troeven-block, .howitworks-block, .faq-block, .contact-block {
    padding: 10rem 5rem 0;
  }
}
@media (max-width: 600px) {
  .error-block, .about-block, .troeven-block, .howitworks-block, .faq-block, .contact-block {
    padding: 5rem 2.5rem 0;
  }
}

.termsfeed-com---nb-simple {
  max-width: 100% !important;
}

.cc-nb-main-container {
  font-family: sofia-pro, sans-serif !important;
  font-weight: 300 !important;
  font-size: 1.3rem !important;
  background: #fff !important;
  display: -ms-grid !important;
  display: grid !important;
  -ms-grid-columns: 1fr 1fr !important;
  grid-template-columns: 1fr 1fr !important;
  padding: 2rem 10rem !important;
}
@media (max-width: 1100px) {
  .cc-nb-main-container {
    padding: 2rem 5rem !important;
    -ms-grid-columns: 1fr !important;
    grid-template-columns: 1fr !important;
  }
}
.cc-nb-title {
  font-family: sofia-pro, sans-serif !important;
  font-weight: 500 !important;
  font-size: 2.75rem !important;
  line-height: 1.3 !important;
  color: #758982 !important;
}
.cc-nb-title-container {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
}
@media (max-width: 1100px) {
  .cc-nb-title-container {
    grid-column: unset !important;
    grid-row: unset !important;
  }
}
.cc-nb-text {
  color: #758982 !important;
  line-height: 1.5 !important;
  font-size: 1.5rem !important;
  font-family: sofia-pro, sans-serif !important;
  font-weight: 300 !important;
}
.cc-nb-text-container {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
}
@media (max-width: 1100px) {
  .cc-nb-text-container {
    grid-column: unset !important;
    grid-row: unset !important;
  }
}
.cc-nb-okagree {
  background: #758982 !important;
  border: 2px solid #758982 !important;
}
.cc-nb-okagree:hover {
  background: #fff !important;
  color: #758982 !important;
}
.cc-nb-reject {
  background: none !important;
  border: 2px solid #758982 !important;
  color: #758982 !important;
}
.cc-nb-changep {
  color: #758982 !important;
  background: #fff !important;
}
.cc-nb-buttons-container {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: row-reverse !important;
          flex-direction: row-reverse !important;
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
  height: 100% !important;
}
@media (max-width: 1100px) {
  .cc-nb-buttons-container {
    grid-column: unset !important;
    grid-row: unset !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
}
.cc-nb-buttons-container button {
  font-family: sofia-pro, sans-serif !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  font-size: 1.25rem !important;
  outline: none !important;
  border-radius: 20px !important;
  -ms-flex-item-align: end !important;
      align-self: flex-end !important;
  padding: 1rem 2rem !important;
}
@media (max-width: 1100px) {
  .cc-nb-buttons-container button {
    width: 100% !important;
  }
}

.cc-cp-foot-save {
  background: #222222 !important;
  font-family: sofia-pro, sans-serif !important;
  font-weight: 300 !important;
}
.cc-cp-foot-save:focus {
  outline: none !important;
  border: none !important;
}

form, input, label, textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

form {
  list-style-type: none;
  padding: 0;
  width: 100%;
}
form small a {
  color: #222222;
}
form .error {
  color: crimson;
}
form .error::-webkit-input-placeholder {
  color: crimson;
}
form .error::-moz-placeholder {
  color: crimson;
}
form .error:-ms-input-placeholder {
  color: crimson;
}
form .error::-ms-input-placeholder {
  color: crimson;
}
form .error::placeholder {
  color: crimson;
}
form .error + label {
  color: crimson;
  font-weight: bold;
}
form .error + label a {
  color: crimson !important;
}
form .error a {
  color: crimson;
}
form .error .checkbox:before {
  border: 0.5px solid crimson;
}

.form-group {
  margin-top: -1px;
  position: relative;
  border-radius: 2rem;
  background: #fff;
  width: 100%;
}

.form-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: 0 0 1.5rem;
  width: 100%;
}
@media (max-width: 1100px) {
  .form-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.form-container:last-of-type {
  margin: 0;
}

.noline {
  border-bottom: none;
  margin-top: 0;
}

#group-policy {
  padding: 0 0 10px;
  background: none;
}

label, input {
  -webkit-transition: color 0.4s ease, background-color 0.1s ease-in-out;
  transition: color 0.4s ease, background-color 0.1s ease-in-out;
}

label {
  color: black;
  font-size: 70%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  position: absolute;
  top: 10px;
  left: 10px;
}
input:focus + label, textarea:focus + label {
  color: #222222;
  font-weight: bold;
  letter-spacing: -0.01em;
}
input[type=checkbox]:focus + label {
  color: unset;
  font-weight: unset;
  letter-spacing: 0.03em;
}

input, textarea {
  background-color: transparent;
  border: none;
  color: #888888;
  font-size: 1.5rem;
  margin: 9px 0 7px 0;
  margin: 0;
  padding: 1.5rem 0;
  outline: none;
  width: 100%;
  text-align: center;
  font-family: sofia-pro, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 2rem;
  /* Chrome, Safari, Edge, Opera */
  /* Firefox */
}
input:focus, textarea:focus {
  color: #000;
  background-color: #888888, 40;
  -webkit-box-shadow: 0px 3px 4px -2px rgba(117, 137, 130, 0.25) inset;
          box-shadow: 0px 3px 4px -2px rgba(117, 137, 130, 0.25) inset;
}
input.error, textarea.error {
  padding: 2em 10px 2em 10px;
}
input::-webkit-outer-spin-button,
input a::-webkit-inner-spin-button, textarea::-webkit-outer-spin-button,
textarea a::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number], textarea[type=number] {
  -moz-appearance: textfield;
}

.error-text {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  margin: 0;
  font-size: 70%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: crimson;
  text-align: center;
}
.error-text.error-policy {
  position: relative;
  top: 10px;
  bottom: 0;
  left: 10px;
}

.policy {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0;
  line-height: 2;
}
@media (max-width: 600px) {
  .policy {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.policy a {
  text-decoration: underline;
  color: #758982;
}

#policy {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  display: inline-block;
  width: 0;
  height: 0;
  position: absolute;
  left: -99999999px;
}
#policy:checked + label:after {
  content: "";
  background: #758982;
  border: 0.5px solid #758982;
  position: absolute;
  top: 4px;
  left: -25px;
  width: 12px;
  height: 12px;
  border-radius: 2px;
}

.checkbox {
  position: relative;
  margin-left: 26px;
}
@media (max-width: 600px) {
  .checkbox {
    margin-left: 0;
  }
}
.checkbox:before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border: 0.5px solid #758982;
  left: -25px;
  top: 4px;
  border-radius: 2px;
}
.checkbox a {
  text-decoration: underline;
}

.label--required:after {
  content: "*";
  color: crimson;
  margin-left: 5px;
}

.fancybox__content {
  padding: 5rem !important;
}
.fancybox__content .carousel__button.is-close {
  top: 0 !important;
  right: 0;
}
.fancybox__content .carousel__button.is-close svg {
  color: #222222;
  -webkit-filter: none;
          filter: none;
  width: 2rem;
  height: 2rem;
}

.btn {
  font-family: sofia-pro, sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: block;
}
.btn-white {
  color: #fff;
}
.btn-white:hover {
  background: #fff;
  color: #758982;
}
.btn-green {
  color: #fff;
  background: #758982;
}
.btn-green:hover {
  background: #fff;
  color: #758982;
  border: 1px solid #fff;
}
.btn-bordered {
  border: 1px solid #fff;
  border-radius: 2rem;
  padding: 1rem 2rem;
  background: none;
}
.btn-bordered.btn-white {
  color: #fff;
}
.btn-bordered.btn-white:hover {
  background: #fff;
  color: #758982;
}
.btn-bordered.btn-green {
  color: #758982;
  border: 1px solid #758982;
}
.btn-bordered.btn-green:hover {
  background: #758982;
  color: #fff;
}
.btn-filled {
  border: 1px solid #758982;
  border-radius: 2rem;
  padding: 1rem 2rem;
}
.btn-calculate {
  padding: 1rem 4rem;
}

.swiper-buttons-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.swiper-buttons-prev, .swiper-buttons-next {
  position: relative;
  cursor: pointer;
  padding: 1rem 0;
}
.swiper-buttons-prev span, .swiper-buttons-next span {
  position: relative;
  display: block;
  width: 2.5rem;
  height: 1px;
  background: #222222;
  margin: 2px 0 0 2rem;
}
.swiper-buttons-prev span:before, .swiper-buttons-prev span:after, .swiper-buttons-next span:before, .swiper-buttons-next span:after {
  content: "";
  width: 4px;
  height: 1px;
  background: #222222;
  position: absolute;
  -webkit-transform-origin: right;
      -ms-transform-origin: right;
          transform-origin: right;
  top: 0;
  right: 0;
}
.swiper-buttons-prev span:before, .swiper-buttons-next span:before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.swiper-buttons-prev span:after, .swiper-buttons-next span:after {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.swiper-buttons-prev span {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-left: -1rem;
  margin-right: -1rem;
}

.column {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  margin-left: 1rem;
  margin-right: 1rem;
  max-width: 100%;
}

@media (max-width: 1100px) {
  .column {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.banner {
  padding-bottom: calc(var(--vh, 1vh) * 1 * 100);
  padding-bottom: 100vh;
}
.banner-container {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  min-height: 75rem;
  position: fixed;
  z-index: 1;
}
.banner-block {
  width: 100%;
  height: 100%;
  position: relative;
}
.banner-block .banner-bg {
  width: 100%;
  height: 100%;
  position: relative;
}
.banner-block .banner-bg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  z-index: 5;
}
.banner-block .banner-bg-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: left 75%;
}
@media (max-width: 600px) {
  .banner-block .banner-bg-image {
    background-position: 70% 75%;
  }
}
.banner-block .banner-bg .swiper-slide-block {
  width: 100%;
  height: 100%;
}
.banner-block .banner-bg .swiper-slide-block video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.banner-block .banner-bg .swiper-slide-video {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.banner-block .banner-bg .swiper-slide-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.banner-block .banner-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 10rem;
}
@media (max-width: 1100px) {
  .banner-block .banner-content {
    padding: 5rem;
  }
}
@media (max-width: 600px) {
  .banner-block .banner-content {
    padding: 30rem 2.5rem 5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.banner-block .banner-body {
  color: white;
  font-family: sofia-pro, sans-serif;
  font-weight: 500;
  font-size: 4rem;
  line-height: 1.05;
}
@media (max-width: 600px) {
  .banner-block .banner-body {
    text-align: center;
  }
  .banner-block .banner-body p br {
    display: none;
  }
}
.banner-block .banner-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 10rem 0 0;
  gap: 2rem;
}
@media (max-width: 600px) {
  .banner-block .banner-button .btn.hidedesktop {
    display: none;
  }
}

.builder-container {
  padding: 15rem 10rem;
}
@media (max-width: 1100px) {
  .builder-container {
    padding: 10rem 5rem 5rem;
  }
}
@media (max-width: 600px) {
  .builder-container {
    padding: 7.5rem 0 0;
  }
}
.builder-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media (max-width: 1100px) {
  .builder-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.builder-content-thumbnail, .builder-content-body {
  max-width: 50%;
  width: 100%;
}
@media (max-width: 1100px) {
  .builder-content-thumbnail, .builder-content-body {
    max-width: 100%;
  }
}
.builder-content-thumbnail {
  padding: 0 7%;
}
@media (max-width: 1100px) {
  .builder-content-thumbnail {
    padding: 0 5rem;
  }
}
@media (max-width: 600px) {
  .builder-content-thumbnail {
    padding: 0 2.5rem;
  }
}
.builder-content-body {
  padding: 5rem 0 0 10rem;
  color: #fff;
}
@media (max-width: 1100px) {
  .builder-content-body {
    padding: 5rem;
  }
}
@media (max-width: 600px) {
  .builder-content-body {
    padding: 7.5rem 2.5rem;
  }
}
.builder-content-body h2 {
  padding: 0 0 10rem;
}
@media (max-width: 1100px) {
  .builder-content-body h2 {
    padding: 0 0 5rem;
  }
}
@media (max-width: 600px) {
  .builder-content-body h2 {
    padding: 0 0 7.5rem;
  }
}
.builder-content-body .bycobefa {
  padding: 7.5rem 0 0;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("../images/ajax-loader.gif") center center no-repeat;
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before, .slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Icons */
}
@font-face {
  font-family: "slick";
  font-weight: normal;
  font-style: normal;
  src: url("../fonts/slick/slick.eot");
  src: url("../fonts/slick/slick.eot?#iefix") format("embedded-opentype"), url("../fonts/slick/slick.woff") format("woff"), url("../fonts/slick/slick.ttf") format("truetype"), url("../fonts/slick/slick.svg#slick") format("svg");
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted .slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/* SLICK Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-slider .slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-slider .slick-list:focus {
  outline: none;
}
.slick-slider .slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-slider .slick-track,
.slick-slider .slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-slider .slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-slider .slick-track:before, .slick-slider .slick-track:after {
  content: "";
  display: table;
}
.slick-slider .slick-track:after {
  clear: both;
}
.slick-loading .slick-slider .slick-track {
  visibility: hidden;
}
.slick-slider .slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slider .slick-slide {
  float: right;
}
.slick-slider .slick-slide img {
  display: block;
}
.slick-slider .slick-slide.slick-loading img {
  display: none;
}
.slick-slider .slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slider .slick-slide {
  display: block;
}
.slick-loading .slick-slider .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slider .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-slider .slick-arrow.slick-hidden {
  display: none;
}

/* =============PAGES==================== */
.about-button {
  display: none;
  padding: 7.5rem 2.5rem 0;
}
@media (max-width: 600px) {
  .about-button {
    display: block;
  }
}
.about-button .btn {
  text-align: center;
}
.about-container {
  background: #758982;
  padding: 0 0 15rem;
}
@media (max-width: 1100px) {
  .about-container {
    padding: 0 0 5rem;
  }
}
@media (max-width: 600px) {
  .about-container {
    padding: 0 0 7.5rem;
  }
}
.about-carousel {
  overflow-x: hidden;
  padding: 0 0 0 calc(8.6rem + 7%);
}
@media (max-width: 1100px) {
  .about-carousel {
    padding: 0;
  }
}
.about-carousel .swiper-slide {
  width: auto;
  display: block;
}
.about-carousel .swiper-slide img {
  width: auto;
  height: 45rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.about-carousel .swiper-controls {
  position: relative;
  z-index: 2;
  padding: 5rem 0 0;
}
@media (max-width: 1100px) {
  .about-carousel .swiper-controls {
    padding: 4rem 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.about-carousel .swiper-controls .block-arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1.5rem;
}
@media (max-width: 600px) {
  .about-carousel .swiper-controls .block-arrows {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.about-carousel .swiper-controls .block-arrows .slide-button-prev, .about-carousel .swiper-controls .block-arrows .slide-button-next {
  border: 1px solid #fff;
  display: block;
  padding: 1rem;
  border-radius: 50%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.about-carousel .swiper-controls .block-arrows .slide-button-prev:hover, .about-carousel .swiper-controls .block-arrows .slide-button-next:hover {
  background: #fff;
}
.about-carousel .swiper-controls .block-arrows .slide-button-prev:hover svg .d, .about-carousel .swiper-controls .block-arrows .slide-button-next:hover svg .d {
  stroke: #758982;
}
.about-carousel .swiper-controls .block-arrows .slide-button-prev svg, .about-carousel .swiper-controls .block-arrows .slide-button-next svg {
  width: 1rem;
  height: 1rem;
  display: block;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.about-carousel .swiper-controls .block-arrows .slide-button-prev svg .d, .about-carousel .swiper-controls .block-arrows .slide-button-next svg .d {
  stroke: #fff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.about-carousel .swiper-controls .block-arrows .slide-button-prev svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.troeven {
  position: relative;
}
.troeven:after {
  content: "";
  display: block;
  padding-bottom: calc(var(--vh, 1vh) * 80);
  padding-bottom: 80vh;
}
.troeven-container {
  padding: 15rem 10rem 0;
  background: #fff;
  position: relative;
  margin-top: -80vh;
  margin-top: -vh(80);
  z-index: 5;
}
@media (max-width: 1100px) {
  .troeven-container {
    padding: 5rem 5rem 0;
  }
}
@media (max-width: 600px) {
  .troeven-container {
    padding: 7.5rem 5rem 0;
  }
}
.troeven-container .roundedborders {
  position: absolute;
  bottom: -35rem;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
}
.troeven-container .roundedborders-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: calc(100% + 40rem);
  margin-left: -20rem;
  margin-right: -20rem;
}
.troeven-container #curved-corner-topleft, .troeven-container #curved-corner-topright {
  width: 50%;
  height: 35rem;
  overflow: hidden;
  position: relative;
}
.troeven-container #curved-corner-topleft:before, .troeven-container #curved-corner-topright:before {
  content: "";
  display: block;
  width: 250%;
  height: 100%;
  position: absolute;
  border-radius: 40%;
}
.troeven-container #curved-corner-topleft:before {
  top: 0;
  left: 0;
  -webkit-box-shadow: -25rem -20rem 0 0 white;
          box-shadow: -25rem -20rem 0 0 white;
}
.troeven-container #curved-corner-topright:before {
  top: 0;
  right: 0;
  -webkit-box-shadow: 25rem -20rem 0 0 white;
          box-shadow: 25rem -20rem 0 0 white;
}
.troeven-list {
  color: #758982;
}
@media (max-width: 600px) {
  .troeven-list {
    text-align: center;
  }
}
.troeven-list-elements {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 10rem 0 0;
  margin: 0 -5rem;
}
@media (max-width: 600px) {
  .troeven-list-elements {
    margin: 0;
    padding: 7.5rem 0 0;
  }
}
.troeven-list-element {
  max-width: 25%;
  width: 100%;
  padding: 0 5rem 10rem;
}
@media (max-width: 1100px) {
  .troeven-list-element {
    max-width: 50%;
  }
}
@media (max-width: 600px) {
  .troeven-list-element {
    max-width: 100%;
    padding: 0 0 7.5rem;
    text-align: center;
  }
}
.troeven-list-element .bodywrapper {
  position: relative;
}
.troeven-list-element-icon {
  padding: 0 0 5rem;
}
@media (max-width: 600px) {
  .troeven-list-element-icon {
    padding: 0 0 2.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.troeven-list-element-icon svg {
  display: block;
  height: 5.5rem;
  max-width: 4.5rem;
  width: 100%;
  fill: #758982;
}
.troeven-list-element-icon svg .cls-1 {
  fill: #758982;
}
.troeven-list-element h3 {
  margin: 0 0 2.5rem;
}
@media (max-width: 600px) {
  .troeven-list-element h3 {
    margin: 0 0 2.5rem;
  }
}
.troeven-bg {
  position: sticky;
  top: 20vh;
  top: calc(var(--vh, 1vh) * 20);
  z-index: -1;
}
.troeven-bg .troeven-thumbnail {
  height: calc(var(--vh, 1vh) * 80);
  height: 80vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  z-index: -10;
}

.how-container {
  position: relative;
}
.how-temporary {
  background: #fff;
}
.how-temporary-container {
  padding: 15rem 10rem;
}
@media (max-width: 1100px) {
  .how-temporary-container {
    padding: 10rem 5rem;
  }
}
@media (max-width: 600px) {
  .how-temporary-container {
    padding: 7.5rem 0;
  }
}
.how-section {
  padding: 15rem 10rem;
  color: #758982;
  background: #fff;
  position: relative;
}
@media (max-width: 1100px) {
  .how-section {
    padding: 10rem 5rem;
  }
}
@media (max-width: 600px) {
  .how-section {
    padding: 7.5rem 0;
  }
}
.how-section .carouselTitle {
  display: none;
}
@media (max-width: 1100px) {
  .how-section .carouselTitle {
    display: block;
    padding: 0 0 5rem 0;
  }
}
@media (max-width: 600px) {
  .how-section .carouselTitle {
    padding: 0 2.5rem 7.5rem;
    text-align: center;
  }
}
.how-carousel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: 0 -5rem;
}
@media (max-width: 1100px) {
  .how-carousel {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media (max-width: 600px) {
  .how-carousel {
    margin: 0;
  }
}
.how-carousel-content {
  max-width: 25%;
  width: 100%;
  padding: 0 5rem;
}
@media (max-width: 1100px) {
  .how-carousel-content {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .how-carousel-content {
    padding: 2.5rem 2.5rem 0;
    text-align: center;
  }
}
.how-carousel-content-inner {
  position: relative;
}
@media (max-width: 1100px) {
  .how-carousel-content-inner h2 {
    display: none;
  }
}
.how-carousel-content .watch-video {
  padding: 2.5rem 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
}
.how-carousel-content .swiper {
  padding: 10rem 0 0;
}
@media (max-width: 1100px) {
  .how-carousel-content .swiper {
    padding: 5rem 0 0;
  }
}
@media (max-width: 600px) {
  .how-carousel-content .swiper {
    padding: 0;
  }
}
.how-carousel-content .swiper-content ol {
  padding: 0 2rem;
}
.how-carousel-content .swiper-content-title {
  padding: 0 0 5rem;
}
@media (max-width: 600px) {
  .how-carousel-content .swiper-content-title.hide {
    display: none;
  }
}
@media (max-width: 600px) {
  .how-carousel-content .swiper-content-title {
    padding: 0 0 2.5rem;
  }
}
.how-carousel-thumbnail {
  max-width: 75%;
  width: 100%;
  padding: 0 5rem;
}
@media (max-width: 1100px) {
  .how-carousel-thumbnail {
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .how-carousel-thumbnail .swiper-slide {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .how-carousel-thumbnail {
    padding: 0;
  }
}
.how-carousel .swiper-controls {
  position: relative;
  z-index: 2;
  padding: 5rem 0 0;
}
@media (max-width: 1100px) {
  .how-carousel .swiper-controls {
    padding: 2.5rem 0 0;
  }
}
.how-carousel .swiper-controls .block-arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1.5rem;
}
@media (max-width: 600px) {
  .how-carousel .swiper-controls .block-arrows {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.how-carousel .swiper-controls .block-arrows .slide-button-prev, .how-carousel .swiper-controls .block-arrows .slide-button-next {
  border: 1px solid #758982;
  display: block;
  padding: 1rem;
  border-radius: 50%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.how-carousel .swiper-controls .block-arrows .slide-button-prev:hover, .how-carousel .swiper-controls .block-arrows .slide-button-next:hover {
  background: #758982;
}
.how-carousel .swiper-controls .block-arrows .slide-button-prev:hover svg .d, .how-carousel .swiper-controls .block-arrows .slide-button-next:hover svg .d {
  stroke: #fff;
}
.how-carousel .swiper-controls .block-arrows .slide-button-prev svg, .how-carousel .swiper-controls .block-arrows .slide-button-next svg {
  width: 1rem;
  height: 1rem;
  display: block;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.how-carousel .swiper-controls .block-arrows .slide-button-prev svg .d, .how-carousel .swiper-controls .block-arrows .slide-button-next svg .d {
  stroke: #758982;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.how-carousel .swiper-controls .block-arrows .slide-button-prev svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.how-detailshots {
  overflow: hidden;
  background: #fff;
  position: relative;
}
.how-detailshots-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 10rem 15rem;
  margin: 0 -5rem;
}
@media (max-width: 1100px) {
  .how-detailshots-inner {
    padding: 0 5rem 10rem;
    margin: 0 -2.5rem;
  }
}
@media (max-width: 600px) {
  .how-detailshots-inner {
    margin: 0;
    padding: 0 0 0;
    text-align: center;
  }
}
.how-detailshots-item {
  max-width: 25%;
  width: 100%;
  padding: 0 5rem;
}
@media (max-width: 1100px) {
  .how-detailshots-item {
    max-width: 50%;
    padding: 0 2.5rem 5rem;
  }
}
@media (max-width: 600px) {
  .how-detailshots-item {
    max-width: 100%;
    padding: 0 2.5rem 7.5rem;
  }
}
.how-detailshots-item-content {
  color: #758982;
  padding: 5rem 0 0;
}
@media (max-width: 600px) {
  .how-detailshots-item-content {
    padding: 2.5rem 0 0;
  }
}
.how-simulator {
  padding: 15rem 10rem;
  background: #758982;
  position: relative;
}
@media (max-width: 1100px) {
  .how-simulator {
    padding: 10rem 5rem;
  }
}
@media (max-width: 600px) {
  .how-simulator {
    padding: 7.5rem 2.5rem;
  }
}
.how-simulator .simulation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.how-simulator .simulation h2 {
  text-align: center;
  color: #fff;
}
.how-simulator .simulation-container {
  max-width: calc(50% + 15rem + 3rem);
  width: 100%;
  padding: 10rem 0 0;
}
@media (max-width: 1100px) {
  .how-simulator .simulation-container {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .how-simulator .simulation-container {
    padding: 7.5rem 0 0;
  }
}
.how-simulator .simulation-container form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.how-simulator .simulation-container form .form-container {
  margin: 0 0 1.5rem;
}
@media (max-width: 1100px) {
  .how-simulator .simulation-container form .form-container {
    margin: 0;
  }
}
.how-simulator .simulation-container form .form-container .form-group {
  margin: 0 1.5rem;
}
@media (max-width: 1100px) {
  .how-simulator .simulation-container form .form-container .form-group {
    margin: 0 0 1.5rem;
  }
}
.how-simulator .simulation-container form button {
  margin-top: 3.5rem;
}
.how-simulator .simulation-container #feedback-simulator {
  color: #fff;
  text-align: center;
}

.faq {
  background: #fff;
}
.faq-quote {
  position: relative;
}
.faq-quote .quote-container {
  position: relative;
}
.faq-quote .quote-bg {
  height: 65vh;
  height: calc(var(--vh, 1vh) * 65);
  width: 100%;
  min-height: 70rem;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@media (max-width: 600px) {
  .faq-quote .quote-bg {
    background-attachment: initial;
    height: 100%;
    min-height: initial;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.faq-quote .quote-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 600px) {
  .faq-quote .quote-content {
    position: relative;
    padding: 7.5rem 0;
  }
}
.faq-quote .quote-body {
  font-size: 4rem;
  font-family: sofia-pro, sans-serif;
  font-weight: 500;
  line-height: 1.1;
  color: white;
  padding: 0 10rem;
}
@media (max-width: 1100px) {
  .faq-quote .quote-body {
    padding: 0 5rem;
  }
}
@media (max-width: 600px) {
  .faq-quote .quote-body {
    padding: 0 2.5rem;
  }
}
.faq-quote .quote-body p {
  padding-bottom: 6.5rem;
}
.faq-quote .quote-body p:last-of-type {
  padding-bottom: 0;
  line-height: 0.7;
}
@media (max-width: 600px) {
  .faq-quote .quote-body p br {
    display: none;
  }
}
.faq-quote .quote-body h3 {
  line-height: 0.5;
}
.faq-quote .quote-body small {
  font-size: 1.5rem;
  font-family: sofia-pro, sans-serif;
  font-weight: 300;
}
.faq-accordion {
  padding: 15rem 10rem;
}
@media (max-width: 1100px) {
  .faq-accordion {
    padding: 10rem 5rem;
  }
}
@media (max-width: 600px) {
  .faq-accordion {
    padding: 7.5rem 2.5rem 5rem;
  }
}
.faq-accordion h2 {
  color: #758982;
}
.faq-accordion .accordions {
  padding: 10rem 0 0;
}
@media (max-width: 600px) {
  .faq-accordion .accordions {
    padding: 5rem 0 0;
  }
}
.faq-accordion .accordions .accordion {
  border-bottom: 1px solid #758982;
  padding: 2.5rem 0;
  color: #758982;
}
.faq-accordion .accordions .accordion:last-of-type {
  border-bottom: none;
}
@media (max-width: 1100px) {
  .faq-accordion .accordions .accordion-title {
    padding: 0 5rem 0 0;
  }
}
@media (max-width: 600px) {
  .faq-accordion .accordions .accordion-title {
    -ms-hyphens: auto;
        hyphens: auto;
    -webkit-hyphens: auto;
  }
}
.faq-accordion .accordions .accordion-head {
  font-family: proxima-nova, sans-serif;
  font-weight: 400;
  font-size: 3rem;
  padding: 0 1rem;
  line-height: 1;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 600px) {
  .faq-accordion .accordions .accordion-head {
    font-size: 2rem;
    padding: 0;
  }
}
.faq-accordion .accordions .accordion-head .icon {
  position: relative;
}
.faq-accordion .accordions .accordion-head .icon .accordion-icon {
  display: block;
  position: relative;
  width: 2rem;
  height: 2rem;
}
@media (max-width: 600px) {
  .faq-accordion .accordions .accordion-head .icon .accordion-icon {
    right: -8px;
  }
}
.faq-accordion .accordions .accordion-head .icon .accordion-icon:before, .faq-accordion .accordions .accordion-head .icon .accordion-icon:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: #758982;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.faq-accordion .accordions .accordion-head .icon .accordion-icon:after {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.faq-accordion .accordions .accordion-head.is-open {
  padding: 0 1rem 2.5rem;
}
@media (max-width: 600px) {
  .faq-accordion .accordions .accordion-head.is-open {
    padding: 0 0 2.5rem;
  }
}
.faq-accordion .accordions .accordion-head.is-open .icon .accordion-icon:before {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.faq-accordion .accordions .accordion-body {
  overflow: hidden;
  height: 0;
  -webkit-transition: height 200ms linear;
  transition: height 200ms linear;
}
.faq-accordion .accordions .accordion-body > .content {
  padding: 0 1.5rem;
  max-width: 110rem;
}
@media (max-width: 600px) {
  .faq-accordion .accordions .accordion-body > .content {
    padding: 0;
  }
}

.verdeler {
  padding: 15rem 10rem;
  background: #758982;
  position: relative;
}
@media (max-width: 1100px) {
  .verdeler {
    padding: 10rem 5rem;
  }
}
@media (max-width: 600px) {
  .verdeler {
    padding: 7.5rem 2.5rem;
  }
}
.verdeler-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.verdeler-container h2 {
  text-align: center;
  color: #fff;
}
.verdeler-container .reveal {
  padding: 5rem 0 0;
}
.verdeler-container .reveal.active {
  display: none;
}
.verdeler-container-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 0;
  overflow: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.verdeler-container-container.active {
  height: auto;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.verdeler-container-container form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: calc(50% + 15rem + 3rem);
  width: 100%;
  padding: 10rem 0 0;
}
@media (max-width: 1100px) {
  .verdeler-container-container form {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .verdeler-container-container form {
    padding: 7.5rem 0 0;
  }
}
.verdeler-container-container form .form-container {
  margin: 0 0 1.5rem;
}
@media (max-width: 1100px) {
  .verdeler-container-container form .form-container {
    margin: 0;
  }
}
.verdeler-container-container form .form-container .form-group {
  margin: 0 1.5rem;
}
@media (max-width: 1100px) {
  .verdeler-container-container form .form-container .form-group {
    margin: 0 0 1.5rem;
  }
}
.verdeler-container-container form button {
  margin-top: 3.5rem;
}
.verdeler-container-container #feedback-simulator {
  color: #fff;
  text-align: center;
}

.contact {
  position: relative;
  z-index: 2;
  background: #f6f6f6;
}
.contact-container {
  padding: 10rem 10rem;
  background: #f6f6f6;
  color: #758982;
}
@media (max-width: 1100px) {
  .contact-container {
    padding: 5rem;
  }
}
@media (max-width: 600px) {
  .contact-container {
    padding: 7.5rem 2.5rem;
    text-align: center;
  }
}
.contact-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 10rem 0 0;
}
@media (max-width: 1100px) {
  .contact-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 5rem 0 0;
  }
}
@media (max-width: 600px) {
  .contact-wrapper {
    padding: 7.5rem 0 0;
  }
}
.contact-wrapper h3 {
  padding: 0 0 5rem;
  font-weight: 500;
  font-size: 3rem;
}
@media (max-width: 600px) {
  .contact-wrapper h3 {
    padding: 0 0 2.5rem;
  }
}
.contact-info, .contact-form {
  max-width: 50%;
  width: 100%;
}
@media (max-width: 1100px) {
  .contact-info, .contact-form {
    max-width: 100%;
  }
}
.contact-info {
  padding: 0 0 4.5rem 0;
}
@media (max-width: 600px) {
  .contact-info {
    padding: 0 0 7.5rem 0;
  }
}
.contact-info-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  border-right: 1px solid #758982;
  padding: 3rem 5rem 3rem 0;
}
@media (max-width: 1100px) {
  .contact-info-wrapper {
    border: none;
    padding: 0;
  }
}
.contact-info-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media (max-width: 600px) {
  .contact-info-details {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.contact-info-details-about, .contact-info-details-socials {
  max-width: 50%;
  width: 100%;
}
@media (max-width: 600px) {
  .contact-info-details-about, .contact-info-details-socials {
    max-width: 100%;
  }
}
.contact-info-details-about a, .contact-info-details-socials a {
  color: #758982;
  text-decoration: none;
}
@media (max-width: 600px) {
  .contact-info-details-socials {
    padding: 7.5rem 0;
  }
}
.contact-info-social li {
  list-style: none;
  padding: 0 1.5rem 0 0;
}
.contact-info-social li:last-of-type {
  padding: 0;
}
.contact-info-social li svg {
  height: 2rem;
  width: 2rem;
  fill: #758982;
}
.contact-info-social li svg .cls-1 {
  fill: #758982;
}
.contact-info-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media (max-width: 600px) {
  .contact-info-social {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.contact-form {
  padding: 3rem 0 0 5rem;
}
@media (max-width: 1100px) {
  .contact-form {
    padding: 3rem 0;
  }
}
@media (max-width: 600px) {
  .contact-form {
    padding: 0 0 0;
  }
}
.contact-form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.contact-form form .form-group {
  margin: 0 0 1.5rem 0;
}
.contact-form form .formbordered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.contact-byplug {
  padding: 10rem 0 0;
  font-size: 1.15rem;
}
@media (max-width: 600px) {
  .contact-byplug {
    padding: 7.5rem 0 0;
  }
}
.contact-byplug-law {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media (max-width: 600px) {
  .contact-byplug-law {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.contact-byplug-law li {
  list-style: none;
}
.contact-byplug-law li:after {
  content: "|";
  padding: 0 5px;
}
.contact-byplug-law li:last-of-type:after {
  content: "";
}
.contact-byplug a {
  color: #758982;
  text-decoration: none;
}

.plg-realisationssection2 {
  padding: 0 50px;
}
.plg-realisationssection2 .plg-r2-grid {
  width: calc(100% + 20px);
  margin-left: -10px;
  /*display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;*/
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: row dense;
  gap: 20px;
  margin-bottom: 60px;
}
.plg-realisationssection2 .plg-r2-grid .plg-r2-item .heightsetter {
  width: 100%;
  height: 0;
  padding-bottom: 150%;
  z-index: -1;
}
.plg-realisationssection2 .plg-r2-grid .plg-r2-item.horizontal {
  -ms-grid-column-span: 2;
  grid-column: span 2;
  /*width: calc(50% - 20px);*/
}
.plg-realisationssection2 .plg-r2-grid .plg-r2-item.horizontal .plg-image {
  width: calc(50% - 10px);
}
.plg-realisationssection2 .plg-r2-grid .plg-r2-item .opensliderbtn {
  cursor: pointer;
}
.plg-realisationssection2 .plg-r2-grid .plg-r2-item .plg-imagecontainer {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}
.plg-realisationssection2 .plg-r2-grid .plg-r2-item .plg-imagecontainer .plg-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.plg-realisationssection2 .plg-r2-grid .plg-r2-item .plg-plus {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 40px;
  height: 40px;
}
.plg-realisationssection2 .plg-r2-grid .plg-r2-item .plg-plus img {
  width: 16px;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50, -50%);
      -ms-transform: translate(-50, -50%);
          transform: translate(-50, -50%);
  z-index: 3;
}
.plg-realisationssection2 .plg-r2-grid .plg-r2-item .plg-plus:after {
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 40px 40px;
  border-color: transparent transparent #dcdcdc transparent;
  z-index: -1;
}
.plg-realisationssection2 .plg-r2-grid .plg-r2-item h3 {
  margin: 0;
}
.plg-realisationssection2 .plg-r2-grid .plg-r2-item .separator {
  margin: 0 5px;
  display: inline-block;
}
.plg-realisationssection2 .plg-r2-grid .plg-r2-item .subtitle {
  margin: 0 0 10px 0;
}
.plg-realisationssection2 .plg-r2-grid .plg-r2-item .year {
  display: inline-block;
}
.plg-realisationssection2 .plg-r2-grid .plg-r2-item .location {
  display: inline-block;
}
.plg-realisationssection2 .plg-r2-grid .plg-r2-item .products {
  margin: 0;
}
.plg-realisationssection2 .plg-r2-grid .plg-r2-item .products .separator {
  color: black;
}
.plg-realisationssection2 .plg-r2-grid .plg-r2-item .products .separator:last-child {
  display: none;
}
.plg-realisationssection2 .plg-r2-grid .plg-r2-item .desc {
  width: 100%;
}
@media (max-width: 1100px) {
  .plg-realisationssection2 {
    padding: 0 30px;
  }
  .plg-realisationssection2 .plg-r2-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .plg-realisationssection2 .plg-r2-grid {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    display: block;
  }
}

.no-items {
  padding: 100px 50px;
  text-align: center;
}

.plg-slidercontainer {
  display: none;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  position: relative;
}
.plg-slidercontainer > * {
  pointer-events: none;
  position: relative;
}
.plg-slidercontainer .plg-slider {
  height: 100%;
}
.plg-slidercontainer .plg-slider .slick-list {
  height: 100%;
}
.plg-slidercontainer .plg-slider .slick-list .slick-track {
  height: 100%;
}
.plg-slidercontainer .plg-slider .slick-list .slick-track .slick-slide {
  height: 100%;
  width: 100%;
  display: block !important;
}
.plg-slidercontainer .plg-slider .slick-list .slick-track .slick-slide > div {
  height: 100%;
  width: 100%;
}
.plg-slidercontainer .plg-slider .plg-slider-image {
  width: 100%;
  height: 100%;
  position: relative;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.plg-slidercontainer .plg-slider .plg-slider-image .plg-imagecontainer {
  width: 70%;
  height: 70%;
  position: relative;
}
.plg-slidercontainer .plg-slider .plg-slider-image .plg-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.plg-slidercontainer .plg-slider .plg-slider-image .plg-video {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
}
.plg-slidercontainer .plg-slider .plg-slider-image iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: auto;
}
.plg-slidercontainer .plg-sliderclose {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 20px;
  height: 20px;
  z-index: 102;
  cursor: pointer;
  pointer-events: auto;
}
.plg-slidercontainer .plg-sliderclose img {
  width: 100%;
  height: auto;
}
.plg-slidercontainer .next, .plg-slidercontainer .prev {
  z-index: 102;
  position: absolute;
  cursor: pointer;
  display: block;
  pointer-events: auto;
}
.plg-slidercontainer .next img, .plg-slidercontainer .prev img {
  display: block;
  width: 30;
  height: 30px;
  cursor: pointer;
  pointer-events: none;
}
.plg-slidercontainer .next.slick-hidden, .plg-slidercontainer .next.slick-disabled, .plg-slidercontainer .prev.slick-hidden, .plg-slidercontainer .prev.slick-disabled {
  display: none;
}
.plg-slidercontainer .next {
  right: 20px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.plg-slidercontainer .prev {
  left: 20px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.plg-slidercontainer.showme {
  display: block;
  position: fixed;
  pointer-events: auto;
  z-index: 100;
}