@charset "UTF-8";
/**
 * Dependencies
 * ----------------------------------------------------------------------------
 */
/* mixins */
@-webkit-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-5px);
  }
  60% {
    -webkit-transform: translateY(-3px);
  }
}

@-moz-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -moz-transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-5px);
  }
  60% {
    -moz-transform: translateY(-3px);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  60% {
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
    transform: translateY(-3px);
  }
}

@font-face {
  font-family: "Freight Sans";
  src: url("../fonts/FreightSans-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Freight Sans";
  src: url("../fonts/FreightSans-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Freight Sans";
  src: url("../fonts/FreightSans-Book.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Freight Sans";
  src: url("../fonts/FreightSans-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Icons";
  src: url("../fonts/Icons.woff") format("woff");
}

:root {
  --font-freight: "Freight Sans", Helvetica, sans-serif;
}

* {
  margin: 0;
  padding: 0px;
}

body,
html {
  width: 100%;
  height: 100%;
}

body {
  font-family: var(--font-freight);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "lnum";
  overflow: hidden;
}

button {
  font-family: var(--font-freight);
}

#total {
  width: 100%;
  height: 100%;
  position: relative;
}
#total #wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 30;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -o-transition: 0.6s;
  -ms-transition: 0.6s;
  transition: 0.6s;
}
#total #animation {
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
}

hr {
  border: 0px;
  outline: none;
}

a {
  text-decoration: none;
}

input[type="submit"] {
  -webkit-appearance: none;
}

#total {
  overflow: hidden;
}

.container {
  width: 1040px;
  position: relative;
  margin: 0 auto;
}

.container.flex-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: auto;
  margin: auto;
}

.container .column {
  float: left;
}
.container .column.center {
  position: relative;
  margin: 0 auto;
}
.container .column.one {
  width: 360px;
}
.container .column.two {
  width: 520px;
}
.container .column.three {
  width: 780px;
}
.container .column.four {
  width: 1040px;
}

@media (max-width: 1024px), (max-height: 800px) {
  #form .container .column.one {
    width: 424px;
    left: -212px;
  }
}
.radio-options {
  display: flex;
  gap: 20px;
}
input {
  box-sizing: border-box;
}
.block,
#sections .block {
  background: #fff;
  float: left;
  width: 100%;
  border-radius: 2px;
  position: relative;
  height: auto;
}
.block .area,
#sections .block .area {
  padding: 48px;
  float: left;
  box-sizing: border-box;
}
.block .area header,
#sections .block .area header {
  display: block;
}
.block .area header h1,
#sections .block .area header h1 {
  font-size: 16px;
  color: #2b5370;
  font-weight: 700;
}
.block .area header h1.large,
#sections .block .area header h1.large {
  font-size: 36px;
  font-weight: 400;
  color: #595755;
}
@media (max-width: 1024px), (max-height: 800px) {
  .block .area header h1.large,
  #sections .block .area header h1.large {
    font-size: 30px;
    color: #595755;
    line-height: 120%;
  }
}

.block .area header hr,
#sections .block .area header hr {
  margin: 15px 0px 40px 0px;
  text-align: left;
}
.block .area ul,
#sections .block .area ul {
  width: 100%;
  height: auto;
  float: left;
  margin-bottom: 40px;
}
.block .area ul li,
#sections .block .area ul li {
  width: 100%;
  float: left;
  height: 56px;
  border-bottom: 1px solid #D9D9D9;
  list-style: none;
  display: flex;
  align-items: center;
}
.block .area ul li span,
#sections .block .area ul li span {
  font-size: 16px;
  color: #595755;
  line-height: 39px;
}
.block .area ul li .left,
#sections .block .area ul li .left {
  width: 180px;
  float: left;
}
.block .area ul li .left span,
#sections .block .area ul li .left span {
  font-weight: 400;
}
.block .area ul li .right,
#sections .block .area ul li .right {
  /*width: 260px;*/
  float: left;
}
.block .area ul li .right span,
#sections .block .area ul li .right span {
  font-weight: 500;
}
.block .area ul li .right span.nrl,
#sections .block .area ul li .right span.nrl {
  font-weight: 400;
}
.block .area p,
#sections .block .area p {
  font-weight: 400;
  color: #595755;
  font-size: 16px;
  line-height: 24px;
}
.block .area form .part,
#sections .block .area form .part {
  padding: 0;
  padding-bottom: 20px;
  float: left;
  width: 100%;
  gap: 0 20px;
}
.block .area form .part.clr,
#sections .block .area form .part.clr {
  display: flex;
  flex-direction: column;
}
.block .area form .part.clr,
#sections .block .area form .part.clr.radio {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.block .area form .part.submit,
#sections .block .area form .part.submit {
  text-align: right;
  padding-bottom: 0 !important;
}
.block .area form .part label,
#sections .block .area form .part label {
  display: block;
  font-size: 16px;
  color: #595755;
  font-weight: 400;
  padding-bottom: 8px;
}
.area form .part label.radio_option {
  padding-bottom: 0;
}
.block .area form .part input,
.block .area form .part select,
#sections .block .area form .part input,
#sections .block .area form .part select {
  padding: 0px 12px 0px 12px;
  border-radius: 2px;
  background: white;
  border: 1px solid #D9D9D9;
  font-size: 16px;
  height: 50px;
  display: flex;
  align-items: center;
  font-family: "Freight Sans", sans-serif;
  color: #272725;
}
.block .area form .part input[type="radio"],
.block .area form .part select[type="radio"],
#sections .block .area form .part input[type="radio"],
#sections .block .area form .part select[type="radio"] {
  -webkit-appearance: radio !important;
  margin-right: 5px;
}
.block .area form .part input:hover,
.block .area form .part select:hover,
#sections .block .area form .part input:hover,
#sections .block .area form .part select:hover {
  border: 1px solid #D9D9D9;
}
.block .area form .part input:focus,
.block .area form .part select:focus,
#sections .block .area form .part input:focus,
#sections .block .area form .part select:focus {
  outline: none;
  -webkit-appearance: none;
  border: 1px solid #D9D9D9;
}
.block .area form .part input::-webkit-input-placeholder,
.block .area form .part select::-webkit-input-placeholder,
#sections .block .area form .part input::-webkit-input-placeholder,
#sections .block .area form .part select::-webkit-input-placeholder {
  color: #959595;
}
.block .area form .part input:-ms-input-placeholder,
.block .area form .part select:-ms-input-placeholder,
#sections .block .area form .part input:-ms-input-placeholder,
#sections .block .area form .part select:-ms-input-placeholder {
  color: #959595;
}
.block .area form .part input::-moz-placeholder,
.block .area form .part select::-moz-placeholder,
#sections .block .area form .part input::-moz-placeholder,
#sections .block .area form .part select::-moz-placeholder {
  color: #959595;
}
.block .area form .part input:-moz-placeholder,
.block .area form .part select:-moz-placeholder,
#sections .block .area form .part input:-moz-placeholder,
#sections .block .area form .part select:-moz-placeholder {
  color: #959595;
}
.block .area form .part input[type="submit"],
.block .area form .part select[type="submit"],
#sections .block .area form .part input[type="submit"],
#sections .block .area form .part select[type="submit"] {
  border: 0px;
  outline: none;
  box-shadow: none;
  background: #fc6621;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 16px 20px 16px 20px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.block .area form .part input[type="submit"]:hover,
.block .area form .part select[type="submit"]:hover,
#sections .block .area form .part input[type="submit"]:hover,
#sections .block .area form .part select[type="submit"]:hover {
  background: #FC6621;
  cursor: pointer;
  margin-top: 16px;
}
.block .area form .part input.middle,
.block .area form .part select.middle,
#sections .block .area form .part input.middle,
#sections .block .area form .part select.middle {
  width: 100%;
  box-sizing: border-box;
}
.block .area form .part input.zipcode,
.block .area form .part select.zipcode,
#sections .block .area form .part input.zipcode,
#sections .block .area form .part select.zipcode {
  width: 100%;
  box-sizing: border-box;
}
.block .area form .part input.housenumber,
.block .area form .part select.housenumber,
#sections .block .area form .part input.housenumber,
#sections .block .area form .part select.housenumber {
  width: 116px;
}
.block .area form .part.address,
#sections .block .area form .part.address {
  color: ##272725;
  font-size: 16px;
}
.block .area form .part:last-child,
#sections .block .area form .part:last-child {
  padding: 0px;
}
.block .area form .part.radio label,
#sections .block .area form .part.radio label {
  display: inline-block;
}
.block .area form select,
.block .area form select:active,
.block .area form select:focus,
#sections .block .area form select,
#sections .block .area form select:active,
#sections .block .area form select:focus {
  height: 38px;
  -webkit-appearance: normal;
}
@media (max-width: 1024px), (max-height: 800px) {
  .block .area form .part,
  .block .area form .part.clr,
  #sections .block .area form .part,
  #sections .block .area form .part.clr {
    padding-bottom: 16px;
  }
  .block .area form .part label.main_label,
  .block .area form .part.clr label.main_label,
  #sections .block .area form .part label.main_label,
  #sections .block .area form .part.clr label.main_label {
    display: inline-block;
    width: 86px;
    color: #595755;
    font-size: 16px;
  }
  #sections .block .area form .part label strong {
    font-weight: 500;
    font-size: 18px;
  }
  .block .area form .part input[type="text"],
  .block .area form .part input[type="email"],
  .block .area form .part.clr input[type="text"],
  .block .area form .part.clr input[type="email"],
  #sections .block .area form .part input[type="text"],
  #sections .block .area form .part input[type="email"],
  #sections .block .area form .part.clr input[type="text"],
  #sections .block .area form .part.clr input[type="email"] {
    width: 100%;
  }
  .block .area form .part.submit,
  .block .area form .part.clr.submit,
  #sections .block .area form .part.submit,
  #sections .block .area form .part.clr.submit {
    width: 343px;
  }
  .block .area form .part.address,
  .block .area form .part.clr.address,
  #sections .block .area form .part.address,
  #sections .block .area form .part.clr.address {
    padding-left: 90px;
  }
}
.block .close,
#sections .block .close {
  position: absolute;
  top: 20px;
  right: 20px;
}
.block .close:hover,
#sections .block .close:hover {
  opacity: 0.8;
  cursor: pointer;
}

label.radio_option {
  position: relative;
  padding-left: 25px;
}
label.radio_option input {
  position: absolute;
  left: -3000em;
}
label.radio_option input + span:before,
label.radio_option input + span:after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
}
label.radio_option input + span:before {
  background: white;
  border: 1px solid #D9D9D9;
  left: 0px;
  top: 0;
  width: 16px;
  height: 16px;
}
label.radio_option input + span:after {
  background: white;
  width: 7px;
  height: 7px;
  left: 5.5px;
  top: 5.5px;
}
label.radio_option input:checked + span:before {
  background: #3B5E80;
  border: 1px solid #3B5E80;
}

.form_promo {
  width: 100%;
  margin-top: 36px;
  display: flex;
  overflow: hidden;
}
@media (max-width: 1024px), (max-height: 800px) {
  .form_promo {
    width: auto;
  }
}

[class^="icon-"],
[class*=" icon-"] {
  font-family: "Icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-size: 100%;
}

.icon-arrow-down:before {
  content: "";
}

.icon-arrows-down:before {
  content: "";
}

.icon-arrows-scrolldown:before {
  content: "";
}

.icon-close:before {
  content: "";
}

/* Dynamic variables */
#animation .loader {
  width: 100%;
  height: 100%;
}

#animation .loader .canvas img {
  width: 100%;
  height: auto;
}

#menu {
  width: 100vw;
  height: 100%;
  background: #3B5E80;
  position: fixed;
  display: block;
  z-index: 50;
  top: 0px;
  left: 0px;
  margin-left: -100%;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -o-transition: 0.6s;
  -ms-transition: 0.6s;
  transition: 0.6s;
}
#menu .label {
  text-transform: uppercase;
  text-align: center;
  color: #B7C7CE;
  margin-bottom: 25px;
  font-size: 11px;
  letter-spacing: 2px;
}
#menu ul {
  width: 600px;
  margin: 0 auto;
}
#menu ul li {
  list-style: none;
  text-align: center;
}
#menu ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 30px;
  font-weight: 400;
  line-height: 70px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
#menu ul li.special a.callToAction {
  background: white;
  display: flex;
  align-items: center;
  color: #595755;
  font-weight: 500;
  line-height: 150%;
  max-height: 56px;
  gap: 20px;
  padding: 16px 16px 16px 20px;
  justify-content: center;
  border: 1px solid #D2D1CF;
  line-height: 150%;
  width: max-content;

}
#menu ul li a.link:hover {
  opacity: 0.8;
}
#menu ul li.special {
  padding-top: 40px;
  display: flex;
  justify-content: center;
}
#menu ul li.special a {
  background: #fc6621;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  padding: 16px 20px 16px 20px;
}

.nav-dots {
  position: absolute;
  right: 30px;
  top: 50%;
  margin-top: -40px;
  z-index: 50;
}
.nav-dots .dot {
  cursor: pointer;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  display: block;
  background: #b7c7ce;
  margin-bottom: 20px;
}
.nav-dots .dot.active {
  background: #fb6e2d;
  position: relative;
}
.nav-dots .dot.active:before {
  content: "";
  background: #fc6621;
  opacity: 0.4;
  width: 24px;
  height: 24px;
  display: block;
  border-radius: 50%;
  position: absolute;
  left: -7px;
  top: -7px;
}
.nav-dots .dot.active:after {
  display: block;
  content: "";
  width: 10px;
  background: #ffcfa9;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
}
.nav-dots .dot.active:first-child {
  background: #b7c7ce;
}
.nav-dots .dot.active:first-child:before {
  background: #ffcfa9);
}
.nav-dots .dot.active:first-child:after {
  background: #ffcfa9;
}

@-webkit-keyframes mouseanimation {
  0% {
    top: 0;
  }
  50% {
    top: 9px;
  }
  100% {
    top: 0;
  }
}

@-moz-keyframes mouseanimation {
  0% {
    top: 0;
  }
  50% {
    top: 9px;
  }
  100% {
    top: 0;
  }
}

@keyframes mouseanimation {
  0% {
    top: 0;
  }
  50% {
    top: 9px;
  }
  100% {
    top: 0;
  }
}

#preloader {
  width: 100%;
  height: 100%;
  background: #3b5e80;
  position: fixed;
  pointer-events: none;
  display: block;
  z-index: 80;
  opacity: 1;
  -webkit-transition: 1.2s;
  -moz-transition: 1.2s;
  -o-transition: 1.2s;
  -ms-transition: 1.2s;
  transition: 1.2s;
  easing: linear;
}
#preloader .container {
  width: 100%;
}
#preloader .wrap {
  height: 100vh;
  position: relative;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
#preloader .wrap #progress {
  height: 100%;
  background: #6786a5;
  float: left;
  position: absolute;
  z-index: 2;
  overflow: hidden;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
#preloader .wrap #progress .line {
  position: relative;
  width: 1px;
  height: 100%;
  overflow: hidden;
  float: left;
}
#preloader .wrap #progress .line .inner {
  width: 1px;
  height: 100px;
  background: white;
  /* transition: 10ms height; */
}
#preloader .wrap #progress .circles .circle {
  width: 9px;
  height: 9px;
  background: #d4d8da;
  border-radius: 18px;
  margin-bottom: 27px;
  position: relative;
  border: 3px solid #fff;
}
#preloader .wrap #progress .circles .circle.active {
  animation: grow 0.3s;
  background: #f97a3f;
}

@keyframes grow {
  50% {
    margin-bottom: 23px;
    top: -2px;
    width: 13px;
    height: 13px;
    left: -2px;
  }
  100% {
    margin-bottom: 27px;
    top: 0px;
    width: 9px;
    height: 9px;
    left: 0px;
  }
}
#preloader .wrap #info {
  position: absolute;
  z-index: 1;
  display: block;
  min-width: 400px;
  display: flex;
  justify-content: center;
}
#preloader .wrap #info .slider {
  float: left;
  position: relative;
  margin-top: 40px;
  display: flex;
  align-items: center;
  width: 100%;
  /* transition: 10ms margin-top; */
}
#preloader .wrap #info .slider #percentage {
  float: left;
  text-align: center;
  min-width: 162px;
  display: flex;
  justify-content: flex-end;
}
#preloader .wrap #info .slider #percentage span {
  color: #fff;
  padding-top: 7px;
  display: block;
  font-size: 72px;
  font-weight: 300;
}
#preloader .wrap #info .slider .break-line {
  width: 40px;
  background: transparent;
  float: left;
}
#preloader .wrap #info .slider .text {
  float: left;
  height: 70px;
  padding-left: 40px;
}
#preloader .wrap #info .slider .text h1 {
  font-size: 30px;
  color: white;
  font-weight: 400;
  float: left;
}
#preloader .wrap .newText {
  height: 50px;
  float: left;
  margin-top: 100px;
}
#preloader .wrap .newText .left {
  float: left;
}
#preloader .wrap .newText .left span {
  font-size: 16px;
  color: white;
  font-weight: 400;
  display: block;
  color: #b7c7ce;
  padding-left: 10px;
}
#preloader .wrap .newText .left span.bold {
  font-weight: 400;
  color: white;
}
#preloader .wrap .newText .left span:first-child {
  margin-top: 9px;
}
#preloader.mouse .wrap {
  -webkit-transition: 0.75s;
  -moz-transition: 0.75s;
  -o-transition: 0.75s;
  -ms-transition: 0.75s;
  transition: 0.75s;
}
#preloader.mouse .wrap #progress {
  background-clip: padding-box;
  border-color: transparent;
  margin-top: 100px;
}
#preloader.mouse .wrap #progress .circles {
  height: 16px;
  background: #dedede;
  width: 7px;
  left: 11px;
  border-radius: 7px;
}
#preloader.mouse .wrap #progress .circles .circle {
  display: none;
}
#preloader.mouse .wrap #progress .circles .circle:first-child {
  display: block;
  border: 0px;
  width: 7px;
  height: 7px;
  margin-bottom: 0px;
  left: 0px;
}
#preloader.mouse .wrap #progress .circles .circle.animate {
  animation-name: mouseanimation;
  animation-duration: 1s;
  -webkit-animation: mouseanimation 1s infinite;
  /* Safari 4+ */
  -moz-animation: mouseanimation 1s infinite;
  /* Fx 5+ */
  -o-animation: mouseanimation 1s infinite;
  /* Opera 12+ */
  animation: mouseanimation 1s infinite;
}
#preloader.mouse .wrap #progress .line {
  display: none;
}
#preloader.mouse .wrap #progress .line .inner {
  display: none;
}
#preloader.mouse.no-bg {
  background: none;
}

#sections {
  min-width: 320px;
  width: 25%;
  margin-left: 7.6%;
  height: 100%;
  position: absolute;
}
@media (max-width: 1024px), (max-height: 800px) {
  #sections {
    margin-left: 40px;
    width: 35%;
  }
}

section.content {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  float: left;
  z-index: 40;
  padding-left: 0;
  padding-bottom: 60px;
  display: block;
  -webkit-transition: all 800ms cubic-bezier(0.84, 0, 0.455, 0.77);
  /* older webkit */
  -webkit-transition: all 800ms cubic-bezier(0.84, -0.275, 0.455, 0.77);
  -moz-transition: all 800ms cubic-bezier(0.84, -0.275, 0.455, 0.77);
  -o-transition: all 800ms cubic-bezier(0.84, -0.275, 0.455, 0.77);
  transition: all 800ms cubic-bezier(0.84, -0.275, 0.455, 0.77);
  /* custom */
}
section.content .part {
  display: flex;
  flex-direction: column;
  padding: 15px 0;
  -webkit-transition: all 800ms cubic-bezier(0.84, 0, 0.455, 0.77);
  /* older webkit */
  -webkit-transition: all 800ms cubic-bezier(0.84, -0.275, 0.455, 0.77);
  -moz-transition: all 800ms cubic-bezier(0.84, -0.275, 0.455, 0.77);
  -o-transition: all 800ms cubic-bezier(0.84, -0.275, 0.455, 0.77);
  transition: all 800ms cubic-bezier(0.84, -0.275, 0.455, 0.77);
  /* custom */
}
section.content .part h1 {
  color: #595755;
  font-size: 60px;
  font-weight: 400;
  line-height: 100%;
}
section.content .part h1 span {
  font-weight: 300;
}
section.content .part h1 sup {
  text-transform: none;
}
section.content .part h1 + h2 {
  margin-top: 16px;
}
section.content .part h2 {
  color: #595755;
  font-size: 24px;
  font-weight: 400;
}
section.content .part h3 {
  color: #9E9E9E;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
}
section.content .part p {
  color: #595755;
  font-weight: 400;
  font-size: 18px;
  line-height: 175%;
}
@media (max-width: 1024px), (max-height: 800px) {
  section.content .part p {
    font-size: 16px;
  }
}
section.content .part .button.scrollDown {
  background: #fb7c42;
  padding: 10px;
  border-radius: 3px;
  float: left;
  position: relative;
}
section.content .part .button.scrollDown .mouse {
  width: 30px;
  height: 50px;
  background: #fff;
  border-radius: 50px;
  position: relative;
  float: left;
}
section.content .part .button.scrollDown .mouse .scroll-area {
  position: absolute;
  width: 8px;
  height: 18px;
  margin-left: 11px;
  margin-top: 8px;
  background: #dedede;
  border-radius: 18px;
}
section.content .part .button.scrollDown .mouse .scroll-area .mover {
  width: 8px;
  height: 8px;
  background: #fc6621;
}
section.content .part .button.scrollDown .text {
  float: left;
  padding-left: 15px;
  position: relative;
  margin-top: 5px;
}
section.content .part .button.scrollDown .text span {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  display: block;
}
section.content .part .button.scrollDown .text span.light {
  font-weight: 400;
}
section.content .part .button.scrollDown .text span.bold {
  font-weight: 900;
}
section.content .part .button.callToAction a,
.download-button {
  font-size: 16px;
  display: flex;
  gap: 20px;
  color: #fff;
  font-weight: 500;
  padding: 16px 16px 16px 20px;
  align-items: center;
  background: #fc6621;
  float: left;
  text-decoration: none;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
section.content .part .button.callToAction a .button-label {
  flex-shrink: 0;
}

section.content .part .button.callToAction a:hover {
  background: #fb6e2d;
}
section.content .part .toggle {
  width: 110px;
  height: 55px;
  border-radius: 2px;
  overflow: hidden;
  float: left;
  margin-top: 12px;
  display: flex;
}
section.content .part .toggle .item {
  float: left;
  width: 56px;
  height: 56px;
  background: #fff;
  position: relative;
  z-index: 1;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
section.content .part .toggle .item:hover {
  cursor: pointer;
}
section.content .part .toggle .item svg .toFill {
  fill: #3B5E80;
}
section.content .part .toggle .left {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
section.content .part .toggle .right {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
section.content .part .toggle .active {
  background: #3B5E80;
  border: 0px;
  box-shadow: none;
  z-index: 2;
}
section.content .part .toggle .active svg .toFill {
  fill: #B7C7CE;
}
section.content .part.colors strong {
  margin-bottom: 12px;
  display: block;
  color: #9E9E9E;
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
}
section.content .part.colors .color-selector {
  width: 380px;
}
section.content .part.colors .color-selector li {
  list-style: none;
  display: inline-block;
  width: 55px;
  height: 55px;
  margin: 0 16px 16px 0;
  cursor: pointer;
  transition: 300ms transform;
}
section.content .part.colors .color-selector li a {
  display: block;
  height: 55px;
  background-color: #fff;
  background-size: cover;
  background-repeat: no-repeat;
  text-indent: -4000em;
  position: relative;
  transition: 200ms transform;
}
section.content .part.colors .color-selector li a.wit {
  background-color: #fff;
  background-image: url(../img/color-wit.jpg);
}
section.content .part.colors .color-selector li a.antraciet {
  background-color: #514f51;
  background-image: url(../img/color-antraciet.jpg);
}
section.content .part.colors .color-selector li a.creme {
  background-color: #f3e6db;
  background-image: url(../img/color-creme.jpg);
}
section.content .part.colors .color-selector li a.donkerbruin {
  background-color: #3e3430;
  background-image: url(../img/color-donkerbruin.jpg);
}
section.content .part.colors .color-selector li a.donkergroen {
  background-color: #363e30;
  background-image: url(../img/color-donkergroen.jpg);
}
section.content .part.colors .color-selector li a.goldenoak {
  background-color: #ab7433;
  background-image: url(../img/color-goldenoak.jpg);
}
section.content .part.colors .color-selector li a.grijs {
  background-color: #b9b4af;
  background-image: url(../img/color-grijs.jpg);
}
section.content .part.colors .color-selector li a.lichtivoor {
  background-color: #ede0c7;
  background-image: url(../img/color-lichtivoor.jpg);
}
section.content .part.colors .color-selector li a.mahonie {
  background-color: #3d2c24;
  background-image: url(../img/color-mahonie.jpg);
}
section.content .part.colors .color-selector li a.monumentenblauw {
  background-color: #2c282d;
  background-image: url(../img/color-monumentenblauw.jpg);
}
section.content .part.colors .color-selector li a.monumentengroen {
  background-color: #302e2c;
  background-image: url(../img/color-monumentengroen.jpg);
}
section.content .part.colors .color-selector li a.staalblauw {
  background-color: #2a2e3f;
  background-image: url(../img/color-staalblauw.jpg);
}
section.content .part.colors .color-selector li a.vergrijsd_cederhout {
  background-color: #baa894;
  background-image: url(../img/color-vergrijsd_cederhout.jpg);
}
section.content .part.colors .color-selector li a.wijnrood {
  background-color: #522929;
  background-image: url(../img/color-wijnrood.jpg);
}
section.content .part.colors .color-selector li a.kwartsgrijs {
  background-color: #522929;
  background-image: url(../img/color-kwartsgrijs.jpg);
}
section.content .part.colors .color-selector li a.zwartgrijs {
  background-color: #522929;
  background-image: url(../img/color-zwartgrijs.jpg);
}
section.content .part.colors .color-selector li a.grafietzwart {
  background-color: #522929;
  background-image: url(../img/color-grafietzwart.jpg);
}
section.content .part.colors .color-selector li:hover a {
  transform: scale(1.2);
}
section.content .part.colors .color-selector li .check {
  transition: 300ms opacity;
  background-image: url(../img/svg/check.svg);
  background-size: 12px 12px;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  border: 2px solid white;
  background-color: #FC6621;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -7px;
  right: -7px;
  border-radius: 100%;
  background-position: center;
}
section.content .part.colors .color-selector li:not(.active) .check {
  opacity: 0;
}
section.content .part.colors .color-selector li.active .check {
  opacity: 100;
}
section.content .part.half {
  width: 50%;
}
section.content .part.variant {
  margin-right: 40px;
}
section.content.hiddenTop {
  -webkit-transform: translate(0px, -100%);
  -moz-transform: translate(0px, -100%);
  -ms-transform: translate(0px, -100%);
  -o-transform: translate(0px, -100%);
  transform: translate(0px, -100%);
  opacity: 0;
  z-index: 39;
}
section.content.hiddenTop .part {
  padding: 40px 0px 40px 0px;
}
section.content.hiddenBottom {
  -webkit-transform: translate(0px, 100%);
  -moz-transform: translate(0px, 100%);
  -ms-transform: translate(0px, 100%);
  -o-transform: translate(0px, 100%);
  transform: translate(0px, 100%);
  opacity: 0;
  z-index: 39;
}
section.content.hiddenBottom .part {
  padding: 40px 0px 40px 0px;
}
section.content#section1,
section.content#section2,
section.content#section3,
section.content#section4,
section.content#section5,
section.content#section6 {
  height: 400px;
  bottom: 10%;
  padding-bottom: 0;
}
section.content#section1 {
  bottom: 20%;
}
section.content#section3,
section.content#section6 {
  bottom: 0;
}
section.content#section1 .button span {
  vertical-align: bottom;
  display: inline-block;
  margin: 0 10px 1px -5px;
}
section.content#section7,
section.content#section8 {
  height: 630px;
  top: 50%;
  margin-top: -315px;
  padding-bottom: 0;
}
@media (max-width: 1024px), (max-height: 800px) {
  section.content#section7,
  section.content#section8 {
    margin-top: -250px;
    height: 500px;
  }
  section.content#section7#section8 .main,
  section.content#section8#section8 .main {
    margin-top: 50px;
  }
}
section.content#section8 .block {
  width: 496px;
  max-width: 90vw;
  margin-top: 0;
  box-shadow: 0px 32px 48px 0px rgba(0, 0, 0, 0.20);
}
@media (max-width: 1024px), (max-height: 800px) {
  section.content#section8 .block {
    width: 435px;
  }
}
.actions-group {
  display: flex;
}

#subsections #subsection7,
#subsections section {
  display: none;
  background: #fff;
  font-size: 14px;
  padding: 10px 15px;
  position: absolute;
  right: 20px;
  bottom: 20px;
  color: #595755;
}

#subsections #subsection7,
#subsections section .subsection-content {
  display: flex;
  gap: 4px;
  align-items: center;
}

#subsections section .subsection-content .tpl_color {
  font-weight: 500;
}

.tablet-inline-block {
  display: none !important;
}

@media (max-width: 1024px), (max-height: 800px) {
  .desktop-only {
    display: none !important;
  }
  .tablet-inline-block {
    display: inline-block !important;
  }
}

#controls {
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 60;
  float: left;
}
#controls .right {
  width: auto;
  padding-right: 20px;
  padding-top: 20px;
  height: 100%;
  float: right;
  position: relative;
}
#controls .right #menu-button {
  float: left;
  overflow: hidden;
  width: auto;
  background-color: #3b5e80;
}
#controls .right #menu-button .close.background {
  display: flex;
  position: absolute;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 300ms opacity;
  background-color: #3b5e80;
}
#controls .right #menu-button.active .close.background {
  opacity: 1;
}

#controls .right #menu-button .pre,
#controls .right #menu-button .pre-2 {
  height: 40px;
  width: auto;
  float: left;
  background-color: #3b5e80;
  overflow: hidden;
  white-space: nowrap;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
#controls .right #menu-button .pre .area,
#controls .right #menu-button .pre-2 .area {
  padding: 10px 15px 10px 15px;
  float: left;
}
#controls .right #menu-button .pre .area span,
#controls .right #menu-button .pre-2 .area span {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
#controls .right #menu-button .pre-2 .area span {
  color: #fff;
}
#controls .right #menu-button:hover {
  cursor: pointer;
}
#controls .right #menu-button .hamburger {
  width: 40px;
  height: 40px;
  position: relative;
  float: left;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
  transition-delay: 0.6s;
  display: flex;
  justify-content: center;
  align-items: center;
}
#controls .right #menu-button .hamburger.background {
  background: #3B5E80;
}
#controls .right #menu-button .hamburger .handler {
  width: 14px;
  height: 14px;
  margin: 13px;
  position: relative;
  overflow: hidden;
}
#controls .right #menu-button .hamburger .handler .close {
  width: 14px;
  height: 14px;
}
#controls .right #menu-button .hamburger .handler .close img {
  width: 14px;
  height: 14px;
}
#controls .right #menu-button .hamburger .handler .open .line {
  height: 2px;
  width: 14px;
  background: #fff;
  margin-bottom: 4px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
#controls .right #menu-button .hamburger .handler .open .line:last-child {
  margin-bottom: 0px;
}
#controls .right #menu-button .hamburger .handler .open .line.under {
  position: absolute;
  top: 6px;
}
#controls .right #menu-button .hamburger .handler .open .line.crossable {
  -webkit-transition: all 0.3s cubic-bezier(0.5, 0, 0.5, 1.65);
  /* older webkit */
  -webkit-transition: all 0.3s cubic-bezier(0.5, -0.6, 0.5, 1.65);
  -moz-transition: all 0.3s cubic-bezier(0.5, -0.6, 0.5, 1.65);
  -o-transition: all 0.3s cubic-bezier(0.5, -0.6, 0.5, 1.65);
  transition: all 0.3s cubic-bezier(0.5, -0.6, 0.5, 1.65);
  /* custom */
}
.hamburger-icon,
.close-icon {
  width: 32px;
  height: 32px;
}

.video_button,
.submit_button {
  background: #FC6621;
  padding: 0 16px 0 20px;
  height: 56px;
  color: white;
  gap: 20px;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  margin-top: 12px;
  cursor: pointer;
  border: none;
  display: flex;
  justify-content: center;
}
.video_button span {
  display: block;
  font-weight: normal;
}

#scroll-description {
  position: absolute;
  z-index: 49;
  bottom: 0;
  left: 7.6%;
  width: 230px;
  padding: 20px 16px;
  font-size: 14px;
  line-height: 16px;
  background: rgba(102, 118, 128, 0.8);
  border-radius: 3px 3px 0 0;
  color: #fff;
  cursor: pointer;
}
#scroll-description strong {
  display: block;
  font-weight: 700;
}
#scroll-description .icon {
  display: block;
  float: left;
  margin-right: 18px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  text-align: center;
  border: 1px solid #f9fafa;
}
#scroll-description .icon * {
  line-height: 37px;
  font-size: 10px;
  display: inline-block;
  -webkit-animation: bounce 2s infinite;
  -moz-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

#scroll-indication {
  position: absolute;
  left: 50%;
  margin-left: -30px;
  bottom: -60px;
  z-index: 49;
  width: 56px;
  height: 56px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  transition: 300ms bottom ease-in-out;
}
#scroll-indication .arrow-down {
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -webkit-animation: bounce 2s infinite;
  -moz-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

#scroll-indication .icon {
  color: rgba(0, 0, 0, 0.5);
  font-size: 26px;
  position: absolute;
  width: 100%;
  text-align: center;
  top: 0;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
  -webkit-animation: bounce 2s infinite;
  -moz-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}
#scroll-indication .icon.last {
  top: 16px;
}
#scroll-indication.highlight {
  bottom: 0px;
}

.logo {
  position: absolute;
  left: 40px;
  top: 30px;
  z-index: 90;
  width: 120px;
  height: 35px;
}

#layOvers {
  position: absolute;
  z-index: 70;
  top: 0;
  left: 0;
  float: left;
  width: 100%;
  height: 100%;
  background-color: #3B5E80;
  background-color: rgba(50, 74, 92, 0.9);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000)";
}
#layOvers .layover {
  z-index: 80;
  display: block;
  height: 0px;
  overflow: hidden;
  opacity: 1;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
  width: 100vw;
  height: 100vh;
  position: absolute;
}
#layOvers .layover.fadeOut {
  opacity: 0;
  height: 0px;
  width: 0px;
}
#layOvers .layover .block {
  position: relative;
  z-index: 100;
  cursor: default;
}
#layOvers:hover {
  cursor: pointer;
}

#video .video-title {
  display: none;
  position: absolute;
  left: 20px;
  top: 20px;
  color: #a8b1b5;
  font-weight: 600;
}

#video .verticalAlign .area {
  float: none;
}
#video .verticalAlign .area hr {
  margin-bottom: 20px;
}

#portrait {
  position: fixed;
  z-index: 79;
  top: 0;
  left: 0;
  float: left;
  width: 100%;
  height: 100%;
  background: #ebebe9;
}
#portrait .wrap {
  float: left;
  width: 100%;
  margin-top: 140px !important;
}
#portrait .wrap .image {
  float: left;
  overflow: hidden;
  position: relative;
  left: 50%;
  margin-left: -105px;
  width: 210px;
  height: 210px;
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(168, 177, 181, 0.5);
  border-radius: 210px;
}
#portrait .wrap .image .tablet {
  width: 80px;
  height: 110px;
  position: relative;
  background: #a8b1b5;
  border-radius: 3px;
  margin-top: 50px;
  margin-left: 65px;
}
#portrait .wrap .image .tablet .screen {
  width: 70px;
  height: 75px;
  position: absolute;
  background: #fff;
  top: 10px;
  left: 5px;
}
#portrait .wrap .image .tablet .screen #rotator {
  width: 35px;
  height: 35px;
  position: relative;
  top: 20px;
  left: 18px;
  animation: anim 1s;
}
#portrait .wrap .image .tablet .screen #rotator img {
  width: 100%;
  height: 100%;
}

@keyframes anim {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
#portrait .wrap .image .tablet .oval {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: #858a8c;
  top: 93px;
  left: 35px;
}
#portrait .wrap .text {
  margin-top: 30px;
  float: left;
  width: 100%;
  text-align: center;
}
#portrait .wrap .text p {
  font-size: 17px;
  color: #2b5370;
  line-height: 32px;
}
#portrait .wrap .text p span {
  font-weight: 700;
}
#portrait .wrap .text p a {
  background: #fff;
  color: #f97a3f;
  padding: 5px 8px;
  border-radius: 2px;
}
section.content .part.field-group,
.part.field-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border: 0;
}

.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}

.embed-responsive-4by3 {
  padding-bottom: 75%;
}

html.mobile-page body {
  overflow: visible;
  background: #eee;
}

html body .mobile-content {
  margin: 0 auto;
  background: #fff;
  width: 100%;
}
html body .mobile-content header img {
  margin: 20px;
}
html body .mobile-content img {
  max-width: 100%;
  height: auto;
}
html body .mobile-content section {
  position: relative;
  float: none;
  padding-bottom: 30px;
  bottom: inherit;
}
html body .mobile-content section img {
  width: 100%;
}
html body .mobile-content section .submit_button img,
html body .mobile-content section .link img {
  width: 20px;
  height: 20px;
}
html body .mobile-content section .body {
  padding: 20px;
  float: none;
}
html body .mobile-content section .body .part {
  float: none;
}
html body .mobile-content section .part h1 {
  font-weight: 400;
  font-size: 30px;
  color: #595755;
  line-height: 120%;
}
html body .mobile-content .section1 h2 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
}
html body .mobile-content .section1 .button {
  /*display: none;*/
}
html body .mobile-content .section7,
html body .mobile-content .section8 {
  margin-top: 0 !important;
}
html body .mobile-content .section7 .label {
  display: none;
}
html body .mobile-content .section7 .colors .color-selector {
  max-width: none;
  width: auto;
}
html body .mobile-content .section7 .colors .color-selector li a {
  border-color: #d8d8d8 !important;
}
html body .mobile-content #section8 {
  float: none;
  bottom: 0;
  top: 0;
  height: auto;
  max-width: none;
  background: #fff;
}
html body .mobile-content #section8 .body {
  padding: 5px;
}
html body .mobile-content #section8 hr {
  margin-bottom: 20px;
}
html body .mobile-content #section8 .block {
  float: none;
  margin: 0 auto;
  min-width: 293px;
  max-width: 100%;
  box-shadow: none;
}
html body .mobile-content #section8 .block .area {
  float: none;
  padding: 20px;
}
html body .mobile-content #section8 .block .area .part {
  float: left;
}
html body .mobile-content #section8 .block .area .part.clr {
  float: none;
}
html body .mobile-content #section8 .block .area .part input[type="submit"] {
  width: 100%;
}
html body #section8 .block .area .part_postal,
html body #section8 .block .area .part_housenumber,
html body #section8 .block .area .part_firstname,
html body #section8 .block .area .part_lastname {
  display: flex;
  flex-direction: column;
}
html body .mobile-content #section8 .block .area .part_postal label,
html body .mobile-content #section8 .block .area .part_housenumber label,
html body .mobile-content #section8 .block .area .part_firstname label,
html body .mobile-content #section8 .block .area .part_lastname label {
  display: block;
}
html body .mobile-content .block .area form .part.clr.submit {
  width: auto;
  text-align: left;
}
html body .mobile-content .block .area .part label.main_label {
  width: 100%;
}

/*# sourceMappingURL=main.css.map */
