@charset "UTF-8";
/**
 * OVERVIEW
 *
 * IMPORTS
 * reset, vars, mixins, core, plugins
 *
 * LAYOUT
 * Helpers
 * Header / Main / Footer
 * Components
 * Pages (page overrides)
 *
 * Hooks (IE, ...)
 * Print
 */
/**
 * GUIDELINES
 * CLASSES
 * Naming: BEM - http://getbem.com/
 * Abbreviations: Emmet - http://docs.emmet.io/cheat-sheet/ | example: .va-m
 *
 * MEDIAQUERIES
 * @media $small, $medium, $maxMedium, $large, $larger, $huge, $massive
 */
/* =============================================================================
   IMPORTS
   ========================================================================== */
/*============================================================================
  RESET

  Adapted version of:
  - Eric Meyer reset
  - Boilerplate Normalize.css
  - Normalize opentype
==============================================================================*/
html {
  overflow-y: scroll;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

html, body {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, p, .showroom a, blockquote, pre, a, abbr, acronym, address, cite, code, del,
dfn, em, img, q, s, samp, small, strike, sub, sup, tt, var, dd, dl, dt, li, ol, ul, fieldset,
form, label, legend, button, table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  line-height: 1;
  font-family: inherit;
}

article, aside, details, figcaption, figure, footer, header, hgroup, nav, time, section, main {
  display: block;
}

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

audio, canvas, video {
  display: inline-block;
}

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

a:focus {
  outline: thin dotted;
}

ol, ul {
  list-style: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

figure {
  margin: 0;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

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

abbr {
  text-transform: uppercase;
}

time {
  display: block;
}

button, input, select, textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
}

button, input {
  line-height: normal;
}

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

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

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

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

textarea {
  overflow: auto;
  vertical-align: top;
}

/*============================================================================
  VARIABLES
==============================================================================*/
@media (min-width: 480px) {
  .init-mediaqueries {
    margin: 0;
  }
}

@media (min-width: 768px) {
  .init-mediaqueries {
    margin: 0;
  }
}

@media (min-width: 1024px) {
  .init-mediaqueries {
    margin: 0;
  }
}

@media (min-width: 1200px) {
  .init-mediaqueries {
    margin: 0;
  }
}

@media (min-width: 1400px) {
  .init-mediaqueries {
    margin: 0;
  }
}

@media (min-width: 1680px) {
  .init-mediaqueries {
    margin: 0;
  }
}

/*============================================================================
  MIXINS
==============================================================================*/
.clearfix {
  *zoom: 1;
}

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

.clearfix:after {
  clear: both;
}

.ir {
  display: block;
  border: 0;
  text-indent: -999em;
  overflow: hidden;
  background-color: transparent;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
}

.hidden {
  display: none !important;
  visibility: hidden;
}

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

.vh.focusable:active, .vh.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

.invisible {
  visibility: hidden;
}

/*
==============================================
CSS3 ANIMATION CHEAT SHEET
==============================================

Made by Justin Aguilar

www.justinaguilar.com/animations/

Questions, comments, concerns, love letters:
justin@justinaguilar.com
==============================================
*/
/*
==============================================
slideDown
==============================================
*/
.slideDown {
  animation-name: slideDown;
  -webkit-animation-name: slideDown;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  visibility: visible !important;
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(8%);
  }
  65% {
    transform: translateY(-4%);
  }
  80% {
    transform: translateY(4%);
  }
  95% {
    transform: translateY(-2%);
  }
  100% {
    transform: translateY(0%);
  }
}

/*
==============================================
slideUp
==============================================
*/
.slideUp {
  animation-name: slideUp;
  -webkit-animation-name: slideUp;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}

@keyframes slideUp {
  0% {
    transform: translateY(100%);
  }
  50% {
    transform: translateY(-8%);
  }
  65% {
    transform: translateY(4%);
  }
  80% {
    transform: translateY(-4%);
  }
  95% {
    transform: translateY(2%);
  }
  100% {
    transform: translateY(0%);
  }
}

/*
==============================================
slideLeft
==============================================
*/
.slideLeft {
  animation-name: slideLeft;
  -webkit-animation-name: slideLeft;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}

@keyframes slideLeft {
  0% {
    transform: translateX(150%);
  }
  50% {
    transform: translateX(-8%);
  }
  65% {
    transform: translateX(4%);
  }
  80% {
    transform: translateX(-4%);
  }
  95% {
    transform: translateX(2%);
  }
  100% {
    transform: translateX(0%);
  }
}

/*
==============================================
slideRight
==============================================
*/
.slideRight {
  animation-name: slideRight;
  -webkit-animation-name: slideRight;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}

@keyframes slideRight {
  0% {
    transform: translateX(-150%);
  }
  50% {
    transform: translateX(8%);
  }
  65% {
    transform: translateX(-4%);
  }
  80% {
    transform: translateX(4%);
  }
  95% {
    transform: translateX(-2%);
  }
  100% {
    transform: translateX(0%);
  }
}

/*
==============================================
slideExpandUp
==============================================
*/
.slideExpandUp {
  animation-name: slideExpandUp;
  -webkit-animation-name: slideExpandUp;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease -out;
  visibility: visible !important;
}

@keyframes slideExpandUp {
  0% {
    transform: translateY(100%) scaleX(0.5);
  }
  30% {
    transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    transform: translateY(2%) scaleX(0.5);
  }
  50% {
    transform: translateY(0%) scaleX(1.1);
  }
  60% {
    transform: translateY(0%) scaleX(0.9);
  }
  70% {
    transform: translateY(0%) scaleX(1.05);
  }
  80% {
    transform: translateY(0%) scaleX(0.95);
  }
  90% {
    transform: translateY(0%) scaleX(1.02);
  }
  100% {
    transform: translateY(0%) scaleX(1);
  }
}

/*
==============================================
expandUp
==============================================
*/
.expandUp {
  animation-name: expandUp;
  -webkit-animation-name: expandUp;
  animation-duration: 0.7s;
  -webkit-animation-duration: 0.7s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}

@keyframes expandUp {
  0% {
    transform: translateY(100%) scale(0.6) scaleY(0.5);
  }
  60% {
    transform: translateY(-7%) scaleY(1.12);
  }
  75% {
    transform: translateY(3%);
  }
  100% {
    transform: translateY(0%) scale(1) scaleY(1);
  }
}

/*
==============================================
fadeIn
==============================================
*/
.fadeIn {
  animation-name: fadeIn;
  -webkit-animation-name: fadeIn;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}

@keyframes fadeIn {
  0% {
    transform: scale(0);
    opacity: 0.0;
  }
  60% {
    transform: scale(1.1);
  }
  80% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.fadeInOut {
  animation-name: fadeInOut;
  -webkit-animation-name: fadeInOut;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}

@keyframes fadeInOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fadeInOut2 {
  animation-name: fadeInOut2;
  -webkit-animation-name: fadeInOut2;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}

@keyframes fadeInOut2 {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*
==============================================
expandOpen
==============================================
*/
.expandOpen {
  animation-name: expandOpen;
  -webkit-animation-name: expandOpen;
  animation-duration: 1.2s;
  -webkit-animation-duration: 1.2s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}

@keyframes expandOpen {
  0% {
    transform: scale(1.8);
  }
  50% {
    transform: scale(0.95);
  }
  80% {
    transform: scale(1.05);
  }
  90% {
    transform: scale(0.98);
  }
  100% {
    transform: scale(1);
  }
}

/*
==============================================
bigEntrance
==============================================
*/
.bigEntrance {
  animation-name: bigEntrance;
  -webkit-animation-name: bigEntrance;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}

@keyframes bigEntrance {
  0% {
    transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}

/*
==============================================
hatch
==============================================
*/
.hatch {
  animation-name: hatch;
  -webkit-animation-name: hatch;
  animation-duration: 2s;
  -webkit-animation-duration: 2s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
  visibility: visible !important;
}

@keyframes hatch {
  0% {
    transform: rotate(0deg) scaleY(0.6);
  }
  20% {
    transform: rotate(-2deg) scaleY(1.05);
  }
  35% {
    transform: rotate(2deg) scaleY(1);
  }
  50% {
    transform: rotate(-2deg);
  }
  65% {
    transform: rotate(1deg);
  }
  80% {
    transform: rotate(-1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

/*
==============================================
bounce
==============================================
*/
.bounce {
  animation-name: bounce;
  -webkit-animation-name: bounce;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}

@keyframes bounce {
  0% {
    transform: translateY(0%) scaleY(0.6);
  }
  60% {
    transform: translateY(-100%) scaleY(1.1);
  }
  70% {
    transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }
  80% {
    transform: translateY(0%) scaleY(1.05) scaleX(1);
  }
  90% {
    transform: translateY(0%) scaleY(0.95) scaleX(1);
  }
  100% {
    transform: translateY(0%) scaleY(1) scaleX(1);
  }
}

/*
==============================================
pulse
==============================================
*/
.pulse {
  animation-name: pulse;
  -webkit-animation-name: pulse;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.7;
  }
}

/*
==============================================
floating
==============================================
*/
.floating {
  animation-name: floating;
  -webkit-animation-name: floating;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

@keyframes floating {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(8%);
  }
  100% {
    transform: translateY(0%);
  }
}

/*
==============================================
tossing
==============================================
*/
.tossing {
  animation-name: tossing;
  -webkit-animation-name: tossing;
  animation-duration: 2.5s;
  -webkit-animation-duration: 2.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

@keyframes tossing {
  0% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(-4deg);
  }
}

/*
==============================================
pullUp
==============================================
*/
.pullUp {
  animation-name: pullUp;
  -webkit-animation-name: pullUp;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}

@keyframes pullUp {
  0% {
    transform: scaleY(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}

/*
==============================================
pullDown
==============================================
*/
.pullDown {
  animation-name: pullDown;
  -webkit-animation-name: pullDown;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  -webkit-transform-origin: 50% 0%;
}

@keyframes pullDown {
  0% {
    transform: scaleY(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}

/*
==============================================
stretchLeft
==============================================
*/
.stretchLeft {
  animation-name: stretchLeft;
  -webkit-animation-name: stretchLeft;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 100% 0%;
  -ms-transform-origin: 100% 0%;
  -webkit-transform-origin: 100% 0%;
}

@keyframes stretchLeft {
  0% {
    transform: scaleX(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}

/*
==============================================
stretchRight
==============================================
*/
.stretchRight {
  animation-name: stretchRight;
  -webkit-animation-name: stretchRight;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  -webkit-transform-origin: 0% 0%;
}

@keyframes stretchRight {
  0% {
    transform: scaleX(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}

/*============================================================================
  GRID
==============================================================================*/
.grid, .grid--rev, .grid--full, .grid--g20 {
  *zoom: 1;
  margin: 0 0 20px -40px;
}

.grid:before, .grid--rev:before, .grid--full:before, .grid--g20:before, .grid:after, .grid--rev:after, .grid--full:after, .grid--g20:after {
  display: table;
  content: " ";
}

.grid:after, .grid--rev:after, .grid--full:after, .grid--g20:after {
  clear: both;
}

ul.grid, ul.grid--rev, ul.grid--full, ul.grid--g20,
ul.grid-uniform {
  list-style: none;
  padding: 0;
}

.grid__item {
  float: left;
  padding-left: 40px;
  width: 100%;
}

.grid--rev {
  direction: rtl;
  text-align: left;
}

.grid--rev > .grid__item {
  direction: ltr;
  text-align: left;
  float: right;
}

.grid--full {
  margin-left: 0;
}

.grid--full > .grid__item {
  padding-left: 0;
}

.grid--g20 {
  margin-left: -20px;
}

.grid--g20 > .grid__item {
  padding-left: 20px;
}

.one-whole {
  width: 100%;
}

.one-half {
  width: 50%;
}

.one-third {
  width: 33.333%;
  clear: none;
}

.two-thirds {
  width: 66.666%;
}

.one-quarter {
  width: 25%;
  clear: none;
}

.two-quarters {
  width: 50%;
}

.three-quarters {
  width: 75%;
}

.one-fifth {
  width: 20%;
  clear: none;
}

.two-fifths {
  width: 40%;
}

.three-fifths {
  width: 60%;
}

.four-fifths {
  width: 80%;
}

.one-sixth {
  width: 16.666%;
  clear: none;
}

.two-sixths {
  width: 33.333%;
}

.three-sixths {
  width: 50%;
}

.four-sixths {
  width: 66.666%;
}

.five-sixths {
  width: 83.333%;
}

.one-eighth {
  width: 12.5%;
}

.two-eighths {
  width: 25%;
}

.three-eighths {
  width: 37.5%;
}

.four-eighths {
  width: 50%;
}

.five-eighths {
  width: 62.5%;
}

.six-eighths {
  width: 75%;
}

.seven-eighths {
  width: 87.5%;
}

.one-tenth {
  width: 10%;
}

.two-tenths {
  width: 20%;
}

.three-tenths {
  width: 30%;
}

.four-tenths {
  width: 40%;
}

.five-tenths {
  width: 50%;
}

.six-tenths {
  width: 60%;
}

.seven-tenths {
  width: 70%;
}

.eight-tenths {
  width: 80%;
}

.nine-tenths {
  width: 90%;
}

.one-twelfth {
  width: 8.333%;
}

.two-twelfths {
  width: 16.666%;
}

.three-twelfths {
  width: 25%;
}

.four-twelfths {
  width: 33.333%;
}

.five-twelfths {
  width: 41.666%;
}

.six-twelfths {
  width: 50%;
}

.seven-twelfths {
  width: 58.333%;
}

.eight-twelfths {
  width: 66.666%;
}

.nine-twelfths {
  width: 75%;
}

.ten-twelfths {
  width: 83.333%;
}

.eleven-twelfths {
  width: 91.666%;
}

.one-half:nth-child(1n + 1) {
  clear: none;
}

.one-half:nth-child(2n + 3) {
  clear: both;
}

.one-third:nth-child(1n + 1) {
  clear: none;
}

.one-third:nth-child(3n + 4) {
  clear: both;
}

.one-quarter:nth-child(1n + 1) {
  clear: none;
}

.one-quarter:nth-child(4n + 5) {
  clear: both;
}

.one-fifth:nth-child(1n + 1) {
  clear: none;
}

.one-fifth:nth-child(5n + 6) {
  clear: both;
}

.one-sixth:nth-child(1n + 1) {
  clear: none;
}

.one-sixth:nth-child(6n + 7) {
  clear: both;
}

.show {
  display: block !important;
}

.hide {
  display: none !important;
}

.text-left {
  text-align: left !important;
}

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

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

.left {
  float: left !important;
}

.right {
  float: right !important;
}

@media only screen and (min-width: 480px) {
  .small--one-whole {
    width: 100%;
  }
  .small--one-half {
    width: 50%;
  }
  .small--one-third {
    width: 33.333%;
    clear: none;
  }
  .small--two-thirds {
    width: 66.666%;
  }
  .small--one-quarter {
    width: 25%;
    clear: none;
  }
  .small--two-quarters {
    width: 50%;
  }
  .small--three-quarters {
    width: 75%;
  }
  .small--one-fifth {
    width: 20%;
    clear: none;
  }
  .small--two-fifths {
    width: 40%;
  }
  .small--three-fifths {
    width: 60%;
  }
  .small--four-fifths {
    width: 80%;
  }
  .small--one-sixth {
    width: 16.666%;
    clear: none;
  }
  .small--two-sixths {
    width: 33.333%;
  }
  .small--three-sixths {
    width: 50%;
  }
  .small--four-sixths {
    width: 66.666%;
  }
  .small--five-sixths {
    width: 83.333%;
  }
  .small--one-eighth {
    width: 12.5%;
  }
  .small--two-eighths {
    width: 25%;
  }
  .small--three-eighths {
    width: 37.5%;
  }
  .small--four-eighths {
    width: 50%;
  }
  .small--five-eighths {
    width: 62.5%;
  }
  .small--six-eighths {
    width: 75%;
  }
  .small--seven-eighths {
    width: 87.5%;
  }
  .small--one-tenth {
    width: 10%;
  }
  .small--two-tenths {
    width: 20%;
  }
  .small--three-tenths {
    width: 30%;
  }
  .small--four-tenths {
    width: 40%;
  }
  .small--five-tenths {
    width: 50%;
  }
  .small--six-tenths {
    width: 60%;
  }
  .small--seven-tenths {
    width: 70%;
  }
  .small--eight-tenths {
    width: 80%;
  }
  .small--nine-tenths {
    width: 90%;
  }
  .small--one-twelfth {
    width: 8.333%;
  }
  .small--two-twelfths {
    width: 16.666%;
  }
  .small--three-twelfths {
    width: 25%;
  }
  .small--four-twelfths {
    width: 33.333%;
  }
  .small--five-twelfths {
    width: 41.666%;
  }
  .small--six-twelfths {
    width: 50%;
  }
  .small--seven-twelfths {
    width: 58.333%;
  }
  .small--eight-twelfths {
    width: 66.666%;
  }
  .small--nine-twelfths {
    width: 75%;
  }
  .small--ten-twelfths {
    width: 83.333%;
  }
  .small--eleven-twelfths {
    width: 91.666%;
  }
  .small--one-half:nth-child(1n + 1) {
    clear: none;
  }
  .small--one-half:nth-child(2n + 3) {
    clear: both;
  }
  .small--one-third:nth-child(1n + 1) {
    clear: none;
  }
  .small--one-third:nth-child(3n + 4) {
    clear: both;
  }
  .small--one-quarter:nth-child(1n + 1) {
    clear: none;
  }
  .small--one-quarter:nth-child(4n + 5) {
    clear: both;
  }
  .small--one-fifth:nth-child(1n + 1) {
    clear: none;
  }
  .small--one-fifth:nth-child(5n + 6) {
    clear: both;
  }
  .small--one-sixth:nth-child(1n + 1) {
    clear: none;
  }
  .small--one-sixth:nth-child(6n + 7) {
    clear: both;
  }
  .small--show {
    display: block !important;
  }
  .small--hide {
    display: none !important;
  }
  .small--text-left {
    text-align: left !important;
  }
  .small--text-right {
    text-align: right !important;
  }
  .small--text-center {
    text-align: center !important;
  }
  .small--left {
    float: left !important;
  }
  .small--right {
    float: right !important;
  }
}

@media only screen and (min-width: 768px) {
  .medium--one-whole {
    width: 100%;
  }
  .medium--one-half {
    width: 50%;
  }
  .medium--one-third {
    width: 33.333%;
    clear: none;
  }
  .medium--two-thirds {
    width: 66.666%;
  }
  .medium--one-quarter {
    width: 25%;
    clear: none;
  }
  .medium--two-quarters {
    width: 50%;
  }
  .medium--three-quarters {
    width: 75%;
  }
  .medium--one-fifth {
    width: 20%;
    clear: none;
  }
  .medium--two-fifths {
    width: 40%;
  }
  .medium--three-fifths {
    width: 60%;
  }
  .medium--four-fifths {
    width: 80%;
  }
  .medium--one-sixth {
    width: 16.666%;
    clear: none;
  }
  .medium--two-sixths {
    width: 33.333%;
  }
  .medium--three-sixths {
    width: 50%;
  }
  .medium--four-sixths {
    width: 66.666%;
  }
  .medium--five-sixths {
    width: 83.333%;
  }
  .medium--one-eighth {
    width: 12.5%;
  }
  .medium--two-eighths {
    width: 25%;
  }
  .medium--three-eighths {
    width: 37.5%;
  }
  .medium--four-eighths {
    width: 50%;
  }
  .medium--five-eighths {
    width: 62.5%;
  }
  .medium--six-eighths {
    width: 75%;
  }
  .medium--seven-eighths {
    width: 87.5%;
  }
  .medium--one-tenth {
    width: 10%;
  }
  .medium--two-tenths {
    width: 20%;
  }
  .medium--three-tenths {
    width: 30%;
  }
  .medium--four-tenths {
    width: 40%;
  }
  .medium--five-tenths {
    width: 50%;
  }
  .medium--six-tenths {
    width: 60%;
  }
  .medium--seven-tenths {
    width: 70%;
  }
  .medium--eight-tenths {
    width: 80%;
  }
  .medium--nine-tenths {
    width: 90%;
  }
  .medium--one-twelfth {
    width: 8.333%;
  }
  .medium--two-twelfths {
    width: 16.666%;
  }
  .medium--three-twelfths {
    width: 25%;
  }
  .medium--four-twelfths {
    width: 33.333%;
  }
  .medium--five-twelfths {
    width: 41.666%;
  }
  .medium--six-twelfths {
    width: 50%;
  }
  .medium--seven-twelfths {
    width: 58.333%;
  }
  .medium--eight-twelfths {
    width: 66.666%;
  }
  .medium--nine-twelfths {
    width: 75%;
  }
  .medium--ten-twelfths {
    width: 83.333%;
  }
  .medium--eleven-twelfths {
    width: 91.666%;
  }
  .medium--one-half:nth-child(1n + 1) {
    clear: none;
  }
  .medium--one-half:nth-child(2n + 3) {
    clear: both;
  }
  .medium--one-third:nth-child(1n + 1) {
    clear: none;
  }
  .medium--one-third:nth-child(3n + 4) {
    clear: both;
  }
  .medium--one-quarter:nth-child(1n + 1) {
    clear: none;
  }
  .medium--one-quarter:nth-child(4n + 5) {
    clear: both;
  }
  .medium--one-fifth:nth-child(1n + 1) {
    clear: none;
  }
  .medium--one-fifth:nth-child(5n + 6) {
    clear: both;
  }
  .medium--one-sixth:nth-child(1n + 1) {
    clear: none;
  }
  .medium--one-sixth:nth-child(6n + 7) {
    clear: both;
  }
  .medium--show {
    display: block !important;
  }
  .medium--hide {
    display: none !important;
  }
  .medium--text-left {
    text-align: left !important;
  }
  .medium--text-right {
    text-align: right !important;
  }
  .medium--text-center {
    text-align: center !important;
  }
  .medium--left {
    float: left !important;
  }
  .medium--right {
    float: right !important;
  }
}

@media only screen and (min-width: 1024px) {
  .large--one-whole {
    width: 100%;
  }
  .large--one-half {
    width: 50%;
  }
  .large--one-third {
    width: 33.333%;
    clear: none;
  }
  .large--two-thirds {
    width: 66.666%;
  }
  .large--one-quarter {
    width: 25%;
    clear: none;
  }
  .large--two-quarters {
    width: 50%;
  }
  .large--three-quarters {
    width: 75%;
  }
  .large--one-fifth {
    width: 20%;
    clear: none;
  }
  .large--two-fifths {
    width: 40%;
  }
  .large--three-fifths {
    width: 60%;
  }
  .large--four-fifths {
    width: 80%;
  }
  .large--one-sixth {
    width: 16.666%;
    clear: none;
  }
  .large--two-sixths {
    width: 33.333%;
  }
  .large--three-sixths {
    width: 50%;
  }
  .large--four-sixths {
    width: 66.666%;
  }
  .large--five-sixths {
    width: 83.333%;
  }
  .large--one-eighth {
    width: 12.5%;
  }
  .large--two-eighths {
    width: 25%;
  }
  .large--three-eighths {
    width: 37.5%;
  }
  .large--four-eighths {
    width: 50%;
  }
  .large--five-eighths {
    width: 62.5%;
  }
  .large--six-eighths {
    width: 75%;
  }
  .large--seven-eighths {
    width: 87.5%;
  }
  .large--one-tenth {
    width: 10%;
  }
  .large--two-tenths {
    width: 20%;
  }
  .large--three-tenths {
    width: 30%;
  }
  .large--four-tenths {
    width: 40%;
  }
  .large--five-tenths {
    width: 50%;
  }
  .large--six-tenths {
    width: 60%;
  }
  .large--seven-tenths {
    width: 70%;
  }
  .large--eight-tenths {
    width: 80%;
  }
  .large--nine-tenths {
    width: 90%;
  }
  .large--one-twelfth {
    width: 8.333%;
  }
  .large--two-twelfths {
    width: 16.666%;
  }
  .large--three-twelfths {
    width: 25%;
  }
  .large--four-twelfths {
    width: 33.333%;
  }
  .large--five-twelfths {
    width: 41.666%;
  }
  .large--six-twelfths {
    width: 50%;
  }
  .large--seven-twelfths {
    width: 58.333%;
  }
  .large--eight-twelfths {
    width: 66.666%;
  }
  .large--nine-twelfths {
    width: 75%;
  }
  .large--ten-twelfths {
    width: 83.333%;
  }
  .large--eleven-twelfths {
    width: 91.666%;
  }
  .large--one-half:nth-child(1n + 1) {
    clear: none;
  }
  .large--one-half:nth-child(2n + 3) {
    clear: both;
  }
  .large--one-third:nth-child(1n + 1) {
    clear: none;
  }
  .large--one-third:nth-child(3n + 4) {
    clear: both;
  }
  .large--one-quarter:nth-child(1n + 1) {
    clear: none;
  }
  .large--one-quarter:nth-child(4n + 5) {
    clear: both;
  }
  .large--one-fifth:nth-child(1n + 1) {
    clear: none;
  }
  .large--one-fifth:nth-child(5n + 6) {
    clear: both;
  }
  .large--one-sixth:nth-child(1n + 1) {
    clear: none;
  }
  .large--one-sixth:nth-child(6n + 7) {
    clear: both;
  }
  .large--show {
    display: block !important;
  }
  .large--hide {
    display: none !important;
  }
  .large--text-left {
    text-align: left !important;
  }
  .large--text-right {
    text-align: right !important;
  }
  .large--text-center {
    text-align: center !important;
  }
  .large--left {
    float: left !important;
  }
  .large--right {
    float: right !important;
  }
}

@media only screen and (min-width: 1200px) {
  .larger--one-whole {
    width: 100%;
  }
  .larger--one-half {
    width: 50%;
  }
  .larger--one-third {
    width: 33.333%;
    clear: none;
  }
  .larger--two-thirds {
    width: 66.666%;
  }
  .larger--one-quarter {
    width: 25%;
    clear: none;
  }
  .larger--two-quarters {
    width: 50%;
  }
  .larger--three-quarters {
    width: 75%;
  }
  .larger--one-fifth {
    width: 20%;
    clear: none;
  }
  .larger--two-fifths {
    width: 40%;
  }
  .larger--three-fifths {
    width: 60%;
  }
  .larger--four-fifths {
    width: 80%;
  }
  .larger--one-sixth {
    width: 16.666%;
    clear: none;
  }
  .larger--two-sixths {
    width: 33.333%;
  }
  .larger--three-sixths {
    width: 50%;
  }
  .larger--four-sixths {
    width: 66.666%;
  }
  .larger--five-sixths {
    width: 83.333%;
  }
  .larger--one-eighth {
    width: 12.5%;
  }
  .larger--two-eighths {
    width: 25%;
  }
  .larger--three-eighths {
    width: 37.5%;
  }
  .larger--four-eighths {
    width: 50%;
  }
  .larger--five-eighths {
    width: 62.5%;
  }
  .larger--six-eighths {
    width: 75%;
  }
  .larger--seven-eighths {
    width: 87.5%;
  }
  .larger--one-tenth {
    width: 10%;
  }
  .larger--two-tenths {
    width: 20%;
  }
  .larger--three-tenths {
    width: 30%;
  }
  .larger--four-tenths {
    width: 40%;
  }
  .larger--five-tenths {
    width: 50%;
  }
  .larger--six-tenths {
    width: 60%;
  }
  .larger--seven-tenths {
    width: 70%;
  }
  .larger--eight-tenths {
    width: 80%;
  }
  .larger--nine-tenths {
    width: 90%;
  }
  .larger--one-twelfth {
    width: 8.333%;
  }
  .larger--two-twelfths {
    width: 16.666%;
  }
  .larger--three-twelfths {
    width: 25%;
  }
  .larger--four-twelfths {
    width: 33.333%;
  }
  .larger--five-twelfths {
    width: 41.666%;
  }
  .larger--six-twelfths {
    width: 50%;
  }
  .larger--seven-twelfths {
    width: 58.333%;
  }
  .larger--eight-twelfths {
    width: 66.666%;
  }
  .larger--nine-twelfths {
    width: 75%;
  }
  .larger--ten-twelfths {
    width: 83.333%;
  }
  .larger--eleven-twelfths {
    width: 91.666%;
  }
  .larger--one-half:nth-child(1n + 1) {
    clear: none;
  }
  .larger--one-half:nth-child(2n + 3) {
    clear: both;
  }
  .larger--one-third:nth-child(1n + 1) {
    clear: none;
  }
  .larger--one-third:nth-child(3n + 4) {
    clear: both;
  }
  .larger--one-quarter:nth-child(1n + 1) {
    clear: none;
  }
  .larger--one-quarter:nth-child(4n + 5) {
    clear: both;
  }
  .larger--one-fifth:nth-child(1n + 1) {
    clear: none;
  }
  .larger--one-fifth:nth-child(5n + 6) {
    clear: both;
  }
  .larger--one-sixth:nth-child(1n + 1) {
    clear: none;
  }
  .larger--one-sixth:nth-child(6n + 7) {
    clear: both;
  }
  .larger--show {
    display: block !important;
  }
  .larger--hide {
    display: none !important;
  }
  .larger--text-left {
    text-align: left !important;
  }
  .larger--text-right {
    text-align: right !important;
  }
  .larger--text-center {
    text-align: center !important;
  }
  .larger--left {
    float: left !important;
  }
  .larger--right {
    float: right !important;
  }
}

@media only screen and (min-width: 1400px) {
  .huge--one-whole {
    width: 100%;
  }
  .huge--one-half {
    width: 50%;
  }
  .huge--one-third {
    width: 33.333%;
    clear: none;
  }
  .huge--two-thirds {
    width: 66.666%;
  }
  .huge--one-quarter {
    width: 25%;
    clear: none;
  }
  .huge--two-quarters {
    width: 50%;
  }
  .huge--three-quarters {
    width: 75%;
  }
  .huge--one-fifth {
    width: 20%;
    clear: none;
  }
  .huge--two-fifths {
    width: 40%;
  }
  .huge--three-fifths {
    width: 60%;
  }
  .huge--four-fifths {
    width: 80%;
  }
  .huge--one-sixth {
    width: 16.666%;
    clear: none;
  }
  .huge--two-sixths {
    width: 33.333%;
  }
  .huge--three-sixths {
    width: 50%;
  }
  .huge--four-sixths {
    width: 66.666%;
  }
  .huge--five-sixths {
    width: 83.333%;
  }
  .huge--one-eighth {
    width: 12.5%;
  }
  .huge--two-eighths {
    width: 25%;
  }
  .huge--three-eighths {
    width: 37.5%;
  }
  .huge--four-eighths {
    width: 50%;
  }
  .huge--five-eighths {
    width: 62.5%;
  }
  .huge--six-eighths {
    width: 75%;
  }
  .huge--seven-eighths {
    width: 87.5%;
  }
  .huge--one-tenth {
    width: 10%;
  }
  .huge--two-tenths {
    width: 20%;
  }
  .huge--three-tenths {
    width: 30%;
  }
  .huge--four-tenths {
    width: 40%;
  }
  .huge--five-tenths {
    width: 50%;
  }
  .huge--six-tenths {
    width: 60%;
  }
  .huge--seven-tenths {
    width: 70%;
  }
  .huge--eight-tenths {
    width: 80%;
  }
  .huge--nine-tenths {
    width: 90%;
  }
  .huge--one-twelfth {
    width: 8.333%;
  }
  .huge--two-twelfths {
    width: 16.666%;
  }
  .huge--three-twelfths {
    width: 25%;
  }
  .huge--four-twelfths {
    width: 33.333%;
  }
  .huge--five-twelfths {
    width: 41.666%;
  }
  .huge--six-twelfths {
    width: 50%;
  }
  .huge--seven-twelfths {
    width: 58.333%;
  }
  .huge--eight-twelfths {
    width: 66.666%;
  }
  .huge--nine-twelfths {
    width: 75%;
  }
  .huge--ten-twelfths {
    width: 83.333%;
  }
  .huge--eleven-twelfths {
    width: 91.666%;
  }
  .huge--one-half:nth-child(1n + 1) {
    clear: none;
  }
  .huge--one-half:nth-child(2n + 3) {
    clear: both;
  }
  .huge--one-third:nth-child(1n + 1) {
    clear: none;
  }
  .huge--one-third:nth-child(3n + 4) {
    clear: both;
  }
  .huge--one-quarter:nth-child(1n + 1) {
    clear: none;
  }
  .huge--one-quarter:nth-child(4n + 5) {
    clear: both;
  }
  .huge--one-fifth:nth-child(1n + 1) {
    clear: none;
  }
  .huge--one-fifth:nth-child(5n + 6) {
    clear: both;
  }
  .huge--one-sixth:nth-child(1n + 1) {
    clear: none;
  }
  .huge--one-sixth:nth-child(6n + 7) {
    clear: both;
  }
  .huge--show {
    display: block !important;
  }
  .huge--hide {
    display: none !important;
  }
  .huge--text-left {
    text-align: left !important;
  }
  .huge--text-right {
    text-align: right !important;
  }
  .huge--text-center {
    text-align: center !important;
  }
  .huge--left {
    float: left !important;
  }
  .huge--right {
    float: right !important;
  }
}

/*============================================================================
  TYPOGRAPHY
==============================================================================*/
p, .showroom a {
  line-height: 1.8em;
  margin-bottom: 1.5em;
}

strong {
  font-weight: 600;
  color: #000744;
  font-size: inherit;
}

em {
  font-style: italic;
  font-weight: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}

.rte p, .rte .showroom a, .showroom .rte a {
  color: #000744;
}

.rte a {
  text-decoration: underline;
  font-size: 16px;
  font-size: 1.6rem;
}

.rte a:hover, .rte a:focus {
  color: #000f91;
}

p a, .showroom a a {
  text-decoration: underline;
}

h1, .h1, h2, .h2, h3, .h3, .overview .text-block ul li, h4, .h4, h5, .h5, h6, .h6 {
  font-family: 'proxima-nova', Helvetica, Arial, Verdana, sans-serif;
  font-weight: 800;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  color: #000744;
  line-height: 1.2em;
  margin: 0 0 0.8em;
}

h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, .overview .text-block ul li a, h4 a, .h4 a, h5 a, .h5 a, h6 a, .h6 a {
  text-decoration: none;
  outline: 0;
  font-weight: inherit;
  color: #000744;
}

h1 a:hover, h1 a:focus, .h1 a:hover, .h1 a:focus, h2 a:hover, h2 a:focus, .h2 a:hover, .h2 a:focus, h3 a:hover, h3 a:focus, .h3 a:hover, .overview .text-block ul li a:hover, .h3 a:focus, .overview .text-block ul li a:focus, h4 a:hover, h4 a:focus, .h4 a:hover, .h4 a:focus, h5 a:hover, h5 a:focus, .h5 a:hover, .h5 a:focus, h6 a:hover, h6 a:focus, .h6 a:hover, .h6 a:focus {
  color: #000211;
}

h1, .h1 {
  font-size: 28px;
}

@media screen and (min-width: 768px) {
  h1, .h1 {
    font-size: calc(28px + 12 * (100vw - 768px) / 432);
  }
}

@media screen and (min-width: 1200px) {
  h1, .h1 {
    font-size: 40px;
  }
}

h2, .h2 {
  font-size: 22px;
}

@media screen and (min-width: 768px) {
  h2, .h2 {
    font-size: calc(22px + 6 * (100vw - 768px) / 432);
  }
}

@media screen and (min-width: 1200px) {
  h2, .h2 {
    font-size: 28px;
  }
}

h3, .h3, .overview .text-block ul li {
  font-size: 20px;
}

@media screen and (min-width: 768px) {
  h3, .h3, .overview .text-block ul li {
    font-size: calc(20px + 2 * (100vw - 768px) / 256);
  }
}

@media screen and (min-width: 1024px) {
  h3, .h3, .overview .text-block ul li {
    font-size: 22px;
  }
}

h4, .h4 {
  font-size: 18px;
  font-size: 1.8rem;
  color: #000744;
  font-weight: 800;
}

a {
  font-weight: 600;
  font-style: inherit;
  color: #000744;
  text-decoration: none;
  transition: 0.25s cubic-bezier(0, 0, 0.58, 1);
}

a:hover, a:focus {
  color: #0012aa;
}

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

a.tdn {
  text-decoration: none;
}

a.tdn:hover, a.tdn:focus {
  text-decoration: underline;
}

a[href^=tel] {
  text-decoration: none;
}

a[href^=tel]:hover, a[href^=tel]:focus {
  text-decoration: underline;
}

a:not([href]) {
  color: #000744;
  text-decoration: none;
}

ul, ol {
  margin: 0 0 1.5em 16px;
}

ul li, ol li {
  line-height: 1.5em;
  padding: 0;
}

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

ul {
  list-style: square;
  color: #000744;
}

ul li {
  font-weight: 400;
  font-style: inherit;
  color: #000744;
  text-decoration: none;
  transition: 0.25s cubic-bezier(0, 0, 0.58, 1);
}

ul li::first-letter {
  text-transform: uppercase;
}

ul ul {
  list-style: circle;
}

ul.lined li {
  border-bottom: 1px solid #E3E3E3;
  padding: 5px 0;
}

ul.lined li:first-child {
  padding-top: 0;
}

ul.lined li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

ol {
  list-style: decimal;
}

.unstyled, ul.lined, nav ul {
  margin: 0 0 1.5em;
  padding: 0;
  list-style: none;
}

.unstyled ul, ul.lined ul, nav ul ul {
  list-style: none;
}

.unstyled li, ul.lined li, nav ul li {
  list-style: none;
  list-style-image: none;
  padding: 0;
  background: none;
}

nav ul {
  *zoom: 1;
}

nav ul:before, nav ul:after {
  display: table;
  content: " ";
}

nav ul:after {
  clear: both;
}

dl {
  margin: 0 0 1.5em;
}

dt, dd {
  line-height: 1.5em;
}

dt {
  font-weight: 600;
}

dd {
  margin-bottom: 0.5em;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #B4B4B4;
  margin: 50px 0;
}

blockquote {
  line-height: inherit;
  padding-left: 20px;
  border-left: 1px solid #B4B4B4;
  margin-bottom: 1.5em;
  font-size: 20px;
  font-size: 2rem;
  font-style: italic;
}

blockquote p, blockquote .showroom a, .showroom blockquote a {
  margin-bottom: 0.5em;
}

blockquote cite {
  font-size: 14px;
  font-size: 1.4rem;
}

@media (min-width: 768px) {
  blockquote {
    padding-left: 40px;
  }
}

.statement-title {
  color: #3781C3;
  font-size: 21px;
  font-size: 2.1rem;
  font-size: 700;
  max-width: 1092px;
  margin: auto;
}

@media (min-width: 768px) {
  .statement-title {
    font-size: 44px;
    font-size: 4.4rem;
  }
}

/*============================================================================
  TABLES
==============================================================================*/
table {
  width: 100%;
  padding: 0;
  border-collapse: separate;
  border-spacing: 0;
  empty-cells: show;
  margin: 0 0 1.5em;
}

table th, table td {
  padding: 2rem 6px;
  text-align: left;
  vertical-align: middle;
  line-height: 1.5em;
}

table th {
  font-weight: bold;
  padding-bottom: 2rem;
}

tr:nth-of-type(even) {
  background: #F4F4F4;
}

tr td:nth-child(1) {
  color: #0011aa;
}

.contact table, .page-footer table, .category-footer table {
  width: 250px;
  margin: 0 auto;
  margin-top: 10px;
  font-size: 14px;
  font-size: 1.4rem;
}

@media (min-width: 1024px) {
  .contact table, .page-footer table, .category-footer table {
    font-size: 12px;
    font-size: 1.2rem;
    width: 220px;
    margin: 10px 0 0;
  }
}

.contact table th, .contact table td, .page-footer table th, .page-footer table td, .category-footer table th, .category-footer table td {
  padding: 0;
}

.contact table tbody, .page-footer table tbody, .category-footer table tbody {
  margin: 0 auto;
}

.contact tr:nth-of-type(even), .page-footer tr:nth-of-type(even), .category-footer tr:nth-of-type(even) {
  background: transparent;
}

.contact tr td:nth-child(1), .page-footer tr td:nth-child(1), .category-footer tr td:nth-child(1) {
  color: #444;
}

th {
  color: #0011aa;
  background-color: white;
  font-weight: bold;
}

@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px) {
  .isolerende-dakpanelen {
    /*
        Label the data
        */
  }
  .isolerende-dakpanelen table, .isolerende-dakpanelen thead, .isolerende-dakpanelen tbody, .isolerende-dakpanelen th, .isolerende-dakpanelen td, .isolerende-dakpanelen tr {
    display: block;
  }
  .isolerende-dakpanelen thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .isolerende-dakpanelen td {
    padding: 3rem 6px 1rem !important;
    border: none;
    position: relative;
    padding-left: 50%;
    overflow: scroll;
  }
  .isolerende-dakpanelen td:before {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    font-weight: bold;
  }
  .isolerende-dakpanelen td:nth-of-type(1):before {
    content: "Prestatievermogen en technische eigenschappen van de panelen";
  }
  .isolerende-dakpanelen td:nth-of-type(2):before {
    content: "25mm thermisch";
  }
  .isolerende-dakpanelen td:nth-of-type(3):before {
    content: "42 mm thermisch-akoestisch";
  }
  .isolerende-dakpanelen td:nth-of-type(4):before {
    content: "42mm Iso-Plus-Silence";
  }
  .isolerende-dakpanelen td:nth-of-type(5):before {
    content: "72mm IPS R-max";
  }
  .isolerende-dakpanelen td:nth-of-type(6):before {
    content: "85 mm Thermisch- akoestisch";
  }
}

/*============================================================================
  FORMS
==============================================================================*/
form {
  margin: 0;
}

legend {
  border: 0;
  padding: 0;
  white-space: normal;
  *margin-left: -7px;
  font-size: 18px;
}

button, input, select, textarea, .button {
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
  transition: 0.25s cubic-bezier(0, 0, 0.58, 1);
}

button, input {
  line-height: normal;
}

button, select {
  text-transform: none;
}

label, .label, input, select, textarea {
  font-family: 'Soleil', Arial, Verdana, sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5em;
  font-weight: 400;
  vertical-align: middle;
  color: #444;
}

label, .label {
  display: block;
  margin-bottom: 8px;
}

button, input[type="button"], input[type="reset"], input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
  *overflow: visible;
  border: none;
}

input[type="checkbox"], input[type="radio"] {
  cursor: pointer;
}

input[type="text"], input[type="search"], input[type="password"],
input[type="email"], input[type="tel"], input[type="date"], textarea, select {
  padding: 20px 15px;
  margin-bottom: 10px;
  display: block;
  box-shadow: none;
  border: none;
  background: #fff;
  height: 35px;
  line-height: inherit;
  width: 100%;
}

input[type="text"]:focus, input[type="search"]:focus, input[type="password"]:focus,
input[type="email"]:focus, input[type="tel"]:focus, input[type="date"]:focus, textarea:focus, select:focus {
  outline: 0;
}

input[type="text"]:-ms-input-placeholder, input[type="search"]:-ms-input-placeholder, input[type="password"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder, input[type="tel"]:-ms-input-placeholder, input[type="date"]:-ms-input-placeholder, textarea:-ms-input-placeholder, select:-ms-input-placeholder {
  font-style: normal;
  font-weight: lighter;
}

input[type="text"]::placeholder, input[type="search"]::placeholder, input[type="password"]::placeholder,
input[type="email"]::placeholder, input[type="tel"]::placeholder, input[type="date"]::placeholder, textarea::placeholder, select::placeholder {
  font-style: normal;
  font-weight: lighter;
}

input[type="email"] {
  display: block;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
  width: 100%;
  height: 100%;
}

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

input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
  width: auto;
  height: auto;
  padding: 0;
  margin: 3px 0;
  *margin-top: 0;
  *height: 13px;
  *width: 13px;
  line-height: normal;
  border: none;
}

input[type="file"] {
  background-color: #fff;
  padding: initial;
  border: initial;
  line-height: initial;
}

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

input[type="reset"], input[type="submit"], .button {
  display: inline-block;
  clear: both;
  transition: 0.25s cubic-bezier(0, 0, 0.58, 1);
  outline: 0;
  line-height: 1.2em;
  padding: 25px 45px;
  margin: 0;
  background-color: #000744;
  text-decoration: none;
  font-size: 19px;
  font-size: 1.9rem;
  color: #fff;
  font-family: 'proxima-nova', Helvetica, Arial, Verdana, sans-serif;
  font-weight: 800;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 999;
  word-wrap: normal;
  width: 90%;
  -ms-transform: translateY(-37px);
  transform: translateY(-37px);
  box-shadow: 0 14px 40px 0 rgba(0, 0, 0, 0.1);
}

@media (min-width: 480px) {
  input[type="reset"], input[type="submit"], .button {
    white-space: nowrap;
    width: auto;
    font-size: 20px;
    font-size: 2rem;
  }
}

input[type="reset"].dark, input[type="submit"].dark, .button.dark {
  background-color: #000744;
  color: #fff;
  padding: 15px 25px;
}

input[type="reset"].light, input[type="submit"].light, .button.light {
  background-color: #fff;
  color: #000744;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

input[type="reset"].light .icon-arrow, input[type="submit"].light .icon-arrow, .button.light .icon-arrow {
  background-image: url("../images/arrow.svg");
}

input[type="reset"].center, input[type="submit"].center, .button.center {
  left: 50%;
  -ms-transform: translateX(-50%) translateY(-37px);
  transform: translateX(-50%) translateY(-37px);
}

input[type="reset"].left, input[type="submit"].left, .button.left {
  left: 8%;
}

input[type="reset"].right, input[type="submit"].right, .button.right {
  left: auto;
  right: 8%;
}

input[type="reset"] i, input[type="submit"] i, .button i {
  margin: -5px 6px 0 5px;
}

input[type="reset"]:hover, input[type="reset"]:focus, input[type="reset"]:active, input[type="submit"]:hover, input[type="submit"]:focus, input[type="submit"]:active, .button:hover, .button:focus, .button:active {
  background-color: #fff;
  color: #000744;
}

input[type="reset"]:hover .icon-arrow, input[type="reset"]:focus .icon-arrow, input[type="reset"]:active .icon-arrow, input[type="submit"]:hover .icon-arrow, input[type="submit"]:focus .icon-arrow, input[type="submit"]:active .icon-arrow, .button:hover .icon-arrow, .button:focus .icon-arrow, .button:active .icon-arrow {
  background-image: url("../images/arrow.svg");
}

input[type="reset"].light:hover, input[type="reset"].light:focus, input[type="reset"].light:active, input[type="submit"].light:hover, input[type="submit"].light:focus, input[type="submit"].light:active, .button.light:hover, .button.light:focus, .button.light:active {
  background-color: #000744;
  color: #fff;
}

input[type="reset"].light:hover .icon-arrow, input[type="reset"].light:focus .icon-arrow, input[type="reset"].light:active .icon-arrow, input[type="submit"].light:hover .icon-arrow, input[type="submit"].light:focus .icon-arrow, input[type="submit"].light:active .icon-arrow, .button.light:hover .icon-arrow, .button.light:focus .icon-arrow, .button.light:active .icon-arrow {
  background-image: url("../images/arrow-white.svg");
}

input[type="reset"]:active, input[type="submit"]:active, .button:active {
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

input[type="reset"]::-moz-focus-inner, input[type="submit"]::-moz-focus-inner, .button::-moz-focus-inner {
  border: 0;
}

input[type="reset"].static, input[type="submit"].static, .button.static {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  float: none !important;
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

.button--no-hover:hover, .button--no-hover:focus, .button--no-hover:active {
  background-color: #000744;
  color: #fff;
  box-shadow: 0 14px 40px 0 rgba(0, 0, 0, 0.1) !important;
}

.button--no-hover.light:hover, .button--no-hover.light:focus, .button--no-hover.light:active {
  background-color: #fff;
  color: #000744;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1) !important;
}

button, input[type="text"], input[type="submit"], input[type="button"], input[type="reset"],
input[type="email"], input[type="tel"], textarea {
  -webkit-appearance: none;
}

button:focus, input[type="reset"]:focus, input[type="submit"]:focus, .button:focus, a.button:focus, select:focus {
  outline: 0;
  *outline: inherit;
  box-shadow: 0 0 1px 1px rgba(200, 200, 200, 0.1);
}

:-ms-input-placeholder {
  color: #999;
  font-style: italic;
}

::placeholder {
  color: #999;
  font-style: italic;
}

::-ms-clear {
  display: none;
}

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

::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

::-webkit-search-results-button {
  -webkit-appearance: none;
}

::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

form .row {
  margin-bottom: 0;
}

fieldset {
  width: auto;
}

fieldset p, fieldset .showroom a, .showroom fieldset a, fieldset ul, fieldset li {
  *zoom: 1;
}

fieldset p:before, fieldset .showroom a:before, .showroom fieldset a:before, fieldset p:after, fieldset .showroom a:after, .showroom fieldset a:after, fieldset ul:before, fieldset ul:after, fieldset li:before, fieldset li:after {
  display: table;
  content: " ";
}

fieldset p:after, fieldset .showroom a:after, .showroom fieldset a:after, fieldset ul:after, fieldset li:after {
  clear: both;
}

fieldset ul {
  margin-left: -20px;
}

fieldset ul li {
  list-style: none;
  background: none;
  list-style-image: none;
  margin: 0 0 10px;
  float: left;
  width: 100%;
  padding: 0 0 0 20px;
}

fieldset ul li.error input {
  border-color: #f1062c;
}

fieldset ul li.space {
  margin-top: 25px;
}

@media (min-width: 768px) {
  fieldset ul li.one-half {
    width: 50%;
  }
  fieldset ul li.one-fourth {
    width: 25%;
  }
}

.buttons {
  *zoom: 1;
}

.buttons:before, .buttons:after {
  display: table;
  content: " ";
}

.buttons:after {
  clear: both;
}

.buttons button, .buttons input[type="reset"], .buttons input[type="submit"], .buttons .button, .buttons a.button {
  float: left;
  clear: none;
  margin-right: 15px;
}

.buttons button.right, .buttons input[type="reset"].right, .buttons input[type="submit"].right, .buttons .button.right, .buttons a.button.right {
  float: right;
  margin-right: 0;
  margin-left: 15px;
}

.a-c .button, .a-c a.button, .a-c button {
  float: none;
  clear: none;
  display: inline-block;
}

.grecaptcha-badge {
  display: none;
}

body.fancybox-active {
  overflow: hidden;
}

body.fancybox-iosfix {
  position: fixed;
  left: 0;
  right: 0;
}

.fancybox-is-hidden {
  position: absolute;
  top: -9999px;
  left: -9999px;
  visibility: hidden;
}

.fancybox-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99992;
  -webkit-tap-highlight-color: transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.fancybox-outer {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.87;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption-wrap {
  position: absolute;
  direction: ltr;
  z-index: 99997;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, visibility 0s linear .25s;
  box-sizing: border-box;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption-wrap {
  opacity: 1;
  visibility: visible;
  transition: opacity .25s, visibility 0s;
}

.fancybox-infobar {
  top: 0;
  left: 0;
  font-size: 13px;
  padding: 0 10px;
  height: 44px;
  min-width: 44px;
  line-height: 44px;
  color: #ccc;
  text-align: center;
  pointer-events: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: subpixel-antialiased;
  mix-blend-mode: exclusion;
}

.fancybox-toolbar {
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
}

.fancybox-stage {
  overflow: hidden;
  direction: ltr;
  z-index: 99994;
  -webkit-transform: translate3d(0, 0, 0);
}

.fancybox-is-closing .fancybox-stage {
  overflow: visible;
}

.fancybox-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: auto;
  outline: none;
  white-space: normal;
  box-sizing: border-box;
  text-align: center;
  z-index: 99994;
  -webkit-overflow-scrolling: touch;
  display: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition-property: transform, opacity;
}

.fancybox-slide::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block;
}

.fancybox-slide--image {
  overflow: visible;
}

.fancybox-slide--image::before {
  display: none;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--video iframe {
  background: #000;
}

.fancybox-slide--map .fancybox-content,
.fancybox-slide--map iframe {
  background: #E5E3DF;
}

.fancybox-slide--next {
  z-index: 99995;
}

.fancybox-slide > * {
  display: inline-block;
  position: relative;
  padding: 24px;
  margin: 44px 0 44px;
  border-width: 0;
  vertical-align: middle;
  text-align: left;
  background-color: #fff;
  overflow: auto;
  box-sizing: border-box;
}

.fancybox-slide > title,
.fancybox-slide > style,
.fancybox-slide > meta,
.fancybox-slide > link,
.fancybox-slide > script,
.fancybox-slide > base {
  display: none;
}

.fancybox-slide .fancybox-image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  border: 0;
  z-index: 99995;
  background: transparent;
  cursor: default;
  overflow: visible;
  -ms-transform-origin: top left;
  transform-origin: top left;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition-property: transform, opacity;
}

.fancybox-can-zoomOut .fancybox-image-wrap {
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-image-wrap {
  cursor: zoom-in;
}

.fancybox-can-drag .fancybox-image-wrap {
  cursor: grab;
}

.fancybox-is-dragging .fancybox-image-wrap {
  cursor: grabbing;
}

.fancybox-image,
.fancybox-spaceball {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  max-width: none;
  max-height: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-slide--iframe .fancybox-content {
  padding: 0;
  width: 80%;
  height: 80%;
  max-width: calc(100% - 100px);
  max-height: calc(100% - 88px);
  overflow: visible;
  background: #fff;
}

.fancybox-iframe {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}

.fancybox-error {
  margin: 0;
  padding: 40px;
  width: 100%;
  max-width: 380px;
  background: #fff;
  cursor: default;
}

.fancybox-error p, .fancybox-error .showroom a, .showroom .fancybox-error a {
  margin: 0;
  padding: 0;
  color: #444;
  font-size: 16px;
  line-height: 20px;
}

/* Buttons */
.fancybox-button {
  box-sizing: border-box;
  display: inline-block;
  vertical-align: top;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 10px;
  border: 0;
  border-radius: 0;
  background: rgba(30, 30, 30, 0.6);
  transition: color .3s ease;
  cursor: pointer;
  outline: none;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #ccc;
}

.fancybox-button:focus,
.fancybox-button:hover {
  color: #fff;
}

.fancybox-button[disabled] {
  color: #ccc;
  cursor: default;
  opacity: 0.6;
}

.fancybox-button svg {
  display: block;
  position: relative;
  overflow: visible;
  shape-rendering: geometricPrecision;
}

.fancybox-button svg path {
  fill: currentColor;
  stroke: currentColor;
  stroke-linejoin: round;
  stroke-width: 3;
}

.fancybox-button--share svg path {
  stroke-width: 1;
}

.fancybox-button--play svg path:nth-child(2) {
  display: none;
}

.fancybox-button--pause svg path:nth-child(1) {
  display: none;
}

.fancybox-button--zoom svg path {
  fill: transparent;
}

/* Navigation arrows */
.fancybox-navigation {
  display: none;
}

.fancybox-show-nav .fancybox-navigation {
  display: block;
}

.fancybox-navigation button {
  position: absolute;
  top: 50%;
  margin: -50px 0 0 0;
  z-index: 99997;
  background: transparent;
  width: 60px;
  height: 100px;
  padding: 17px;
}

.fancybox-navigation button:before {
  content: "";
  position: absolute;
  top: 30px;
  right: 10px;
  width: 40px;
  height: 40px;
  background: rgba(30, 30, 30, 0.6);
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
}

.fancybox-navigation .fancybox-button--arrow_right {
  right: 0;
}

/* Close button on the top right corner of html content */
.fancybox-close-small {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  z-index: 10;
  cursor: pointer;
}

.fancybox-close-small:after {
  content: '×';
  position: absolute;
  top: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
  font: 22px/30px Arial,"Helvetica Neue",Helvetica,sans-serif;
  color: #888;
  font-weight: 300;
  text-align: center;
  border-radius: 50%;
  border-width: 0;
  background-color: transparent;
  transition: background-color .25s;
  box-sizing: border-box;
  z-index: 2;
}

.fancybox-close-small:focus {
  outline: none;
}

.fancybox-close-small:focus:after {
  outline: 1px dotted #888;
}

.fancybox-close-small:hover:after {
  color: #555;
  background: #eee;
}

.fancybox-slide--image .fancybox-close-small,
.fancybox-slide--iframe .fancybox-close-small {
  top: 0;
  right: -40px;
}

.fancybox-slide--image .fancybox-close-small:after,
.fancybox-slide--iframe .fancybox-close-small:after {
  font-size: 35px;
  color: #aaa;
}

.fancybox-slide--image .fancybox-close-small:hover:after,
.fancybox-slide--iframe .fancybox-close-small:hover:after {
  color: #fff;
  background: transparent;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-drag .fancybox-close-small {
  display: none;
}

/* Caption */
.fancybox-caption-wrap {
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 2vw 0 2vw;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.6) 80%, rgba(0, 0, 0, 0.8) 100%);
  pointer-events: none;
}

.fancybox-caption {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 14px;
  color: #fff;
  line-height: 20px;
  -webkit-text-size-adjust: none;
}

.fancybox-caption a,
.fancybox-caption button,
.fancybox-caption select {
  pointer-events: all;
  position: relative;
  /* Fix IE11 */
}

.fancybox-caption a {
  color: #fff;
  text-decoration: underline;
}

/* Loading indicator */
.fancybox-slide > .fancybox-loading {
  border: 6px solid rgba(100, 100, 100, 0.4);
  border-top: 6px solid rgba(255, 255, 255, 0.6);
  border-radius: 100%;
  height: 50px;
  width: 50px;
  animation: fancybox-rotate .8s infinite linear;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
  z-index: 99999;
}

@keyframes fancybox-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

/* Transition effects */
.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0);
  opacity: 0;
}

.fancybox-fx-slide.fancybox-slide--next {
  transform: translate3d(100%, 0, 0);
  opacity: 0;
}

.fancybox-fx-slide.fancybox-slide--current {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  transform: scale3d(1.5, 1.5, 1.5);
  opacity: 0;
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  transform: scale3d(0.5, 0.5, 0.5);
  opacity: 0;
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  transform: scale3d(1, 1, 1);
  opacity: 1;
}

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  -ms-transform: rotate(-360deg);
  transform: rotate(-360deg);
  opacity: 0;
}

.fancybox-fx-rotate.fancybox-slide--next {
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
  opacity: 0;
}

.fancybox-fx-rotate.fancybox-slide--current {
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  opacity: 1;
}

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
  opacity: 0;
}

.fancybox-fx-circular.fancybox-slide--next {
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
  opacity: 0;
}

.fancybox-fx-circular.fancybox-slide--current {
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  opacity: 1;
}

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  transform: translate3d(0, 0, 0) scale(1);
}

/* Share */
.fancybox-share {
  padding: 30px;
  border-radius: 3px;
  background: #f4f4f4;
  max-width: 90%;
  text-align: center;
}

.fancybox-share h1 {
  color: #222;
  margin: 0 0 20px 0;
  font-size: 35px;
  font-weight: 700;
}

.fancybox-share p, .fancybox-share .showroom a, .showroom .fancybox-share a {
  margin: 0;
  padding: 0;
}

p.fancybox-share__links, .showroom a.fancybox-share__links {
  margin-right: -10px;
}

.fancybox-share__button {
  display: inline-block;
  text-decoration: none;
  margin: 0 10px 10px 0;
  padding: 0 15px;
  min-width: 130px;
  border: 0;
  border-radius: 3px;
  background: #fff;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #fff;
  transition: all .2s;
}

.fancybox-share__button:hover {
  text-decoration: none;
}

.fancybox-share__button--fb {
  background: #3b5998;
}

.fancybox-share__button--fb:hover {
  background: #344e86;
}

.fancybox-share__button--pt {
  background: #bd081d;
}

.fancybox-share__button--pt:hover {
  background: #aa0719;
}

.fancybox-share__button--tw {
  background: #1da1f2;
}

.fancybox-share__button--tw:hover {
  background: #0d95e8;
}

.fancybox-share__button svg {
  position: relative;
  top: -1px;
  width: 25px;
  height: 25px;
  margin-right: 7px;
  vertical-align: middle;
}

.fancybox-share__button svg path {
  fill: #fff;
}

.fancybox-share__input {
  box-sizing: border-box;
  width: 100%;
  margin: 10px 0 0 0;
  padding: 10px 15px;
  background: transparent;
  color: #5d5b5b;
  font-size: 14px;
  outline: none;
  border: 0;
  border-bottom: 2px solid #d7d7d7;
}

/* Thumbs */
.fancybox-thumbs {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 212px;
  margin: 0;
  padding: 2px 2px 4px 2px;
  background: #fff;
  -webkit-tap-highlight-color: transparent;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  box-sizing: border-box;
  z-index: 99995;
}

.fancybox-thumbs-x {
  overflow-y: hidden;
  overflow-x: auto;
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

.fancybox-thumbs > ul {
  list-style: none;
  position: absolute;
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  font-size: 0;
  white-space: nowrap;
}

.fancybox-thumbs-x > ul {
  overflow: hidden;
}

.fancybox-thumbs-y > ul::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y > ul::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y > ul::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

.fancybox-thumbs > ul > li {
  float: left;
  overflow: hidden;
  padding: 0;
  margin: 2px;
  width: 100px;
  height: 75px;
  max-width: calc(50% - 4px);
  max-height: calc(100% - 8px);
  position: relative;
  cursor: pointer;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  box-sizing: border-box;
}

li.fancybox-thumbs-loading {
  background: rgba(0, 0, 0, 0.1);
}

.fancybox-thumbs > ul > li > img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: none;
  max-height: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-thumbs > ul > li:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 4px solid #4ea7f9;
  z-index: 99991;
  opacity: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fancybox-thumbs > ul > li.fancybox-thumbs-active:before {
  opacity: 1;
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 800px) {
  .fancybox-thumbs {
    width: 110px;
  }
  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }
  .fancybox-thumbs > ul > li {
    max-width: calc(100% - 10px);
  }
}

.formError {
  z-index: 990;
}

.formError .formErrorContent {
  z-index: 991;
}

.formError .formErrorArrow {
  z-index: 996;
}

.formErrorInsideDialog.formError {
  z-index: 5000;
}

.formErrorInsideDialog.formError .formErrorContent {
  z-index: 5001;
}

.formErrorInsideDialog.formError .formErrorArrow {
  z-index: 5006;
}

.inputContainer {
  position: relative;
  float: left;
}

.formError, .formError * {
  box-sizing: content-box;
}

.formError {
  position: absolute;
  top: 300px;
  left: 300px;
  display: block;
  cursor: pointer;
  margin: 0 0 0 -128px;
}

.ajaxSubmit {
  padding: 20px;
  background: #55ea55;
  border: 1px solid #999;
  display: none;
}

.formError .formErrorContent {
  background: #f1062c;
  position: relative;
  color: #fff;
  width: 150px;
  border: 1px solid #f1062c;
  padding: 4px 10px 4px 10px;
  font-size: 14px;
  font-size: 1.4rem;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}

.formError .formErrorArrow {
  /*width: 15px; margin: -2px 0 0 13px;*/
  position: relative;
  margin: -2px 0 0 145px;
  height: 10px;
}

.formError .formErrorArrow:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  border: 8px solid transparent;
  border-bottom: 0;
  border-top-color: #f1062c;
}

.formError .formErrorArrowBottom {
  box-shadow: none;
  margin: 0px 0 0 12px;
  top: 2px;
}

.formError .formErrorArrow div {
  display: none;
}

/* =============================================================================
   LAYOUT
   ========================================================================== */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}

body {
  font-family: 'Soleil', Arial, Verdana, sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5em;
  font-weight: 400;
  color: #000744;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
}

.page-wrap {
  position: relative;
  padding-bottom: 1100px;
}

@media (min-width: 768px) {
  .page-wrap {
    min-height: 100vh;
    z-index: 2;
    padding-bottom: 80vw;
  }
}

@media (min-width: 1024px) {
  .page-wrap {
    padding-bottom: 35vw;
  }
}

.container {
  position: relative;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 20px;
}

.container.small {
  max-width: 1080px;
}

.container.smaller {
  padding: 0 50px;
}

.container.container--wide {
  max-width: 2000px;
  padding: 0;
}

.container.container--wide .text-block {
  width: 100%;
}

@media (min-width: 1200px) {
  .container.container--wide .text-block {
    width: 50%;
  }
}

.container.container--hero .text-block {
  width: 100%;
}

@media (min-width: 1680px) {
  .container.container--hero {
    padding: 0 !important;
  }
}

.container.pointer--none {
  pointer-events: none;
}

.container.pointer--none > * {
  pointer-events: auto;
}

@media (min-width: 1024px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.container--hero .text-block {
  width: 100%;
  min-height: 326px;
}

@media (min-width: 1680px) {
  .container--hero {
    padding: 0 !important;
  }
}

.wf-loading {
  overflow: hidden;
}

.wf-loading body {
  visibility: hidden;
}

::selection {
  background-color: rgba(206, 27, 42, 0.25);
  color: inherit;
}

/* =============================================================================
   HELPERS
   ========================================================================== */
.icon {
  display: inline-block;
  vertical-align: middle;
  transition: 0.25s cubic-bezier(0, 0, 0.58, 1);
}

.icon-hamburger,
.icon-hamburger:before,
.icon-hamburger:after {
  width: 24px;
  position: absolute;
  left: 0;
  height: 1px;
  border-top: 3px solid #000744;
  transition: 0.25s cubic-bezier(0, 0, 0.58, 1);
}

.icon-hamburger {
  position: relative;
}

.icon-hamburger:before, .icon-hamburger:after {
  content: "";
  margin-left: 0;
}

.icon-hamburger:before {
  margin-top: 3px;
}

.icon-hamburger:after {
  margin-top: 9px;
}

.mb0.mb0 {
  margin-bottom: 0;
}

.mb40.mb40 {
  margin-bottom: 40px;
}

.gm-style img {
  max-width: inherit;
}

.video-container {
  position: relative;
  padding: 0 0 56.25%;
  height: 0;
  overflow: hidden;
  margin: 0 0 15px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.equal-h {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.equal-h > * {
  display: -ms-flexbox;
  display: flex;
}

.equal-h:before, .equal-h:after {
  display: none;
}

html.no-flexbox .equal-h {
  height: 100%;
}

html.no-flexbox .equal-h > div {
  float: left;
}

.block-link {
  position: relative;
  cursor: pointer;
}

.block-link__target:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/* =============================================================================
   HEADER
   ========================================================================== */
.page-header {
  *zoom: 1;
  padding: 20px 0 0;
}

.page-header:before, .page-header:after {
  display: table;
  content: " ";
}

.page-header:after {
  clear: both;
}

@media (min-width: 1024px) {
  .page-header {
    padding: 50px 0 40px;
  }
}

.page-header__wrapper {
  z-index: 99998;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
}

.page-header__logo {
  text-decoration: none;
  opacity: 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: inline-block;
  max-width: calc(100% - 50px);
}

.page-header__logo img {
  display: block;
}

.page-header__logo:hover, .page-header__logo:focus {
  opacity: 0.8;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.main-nav {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  color: #000744;
  font-family: 'proxima-nova', Helvetica, Arial, Verdana, sans-serif;
  font-weight: 800;
  font-size: 18px;
  font-size: 1.8rem;
}

@media (max-width: 1023px) {
  .main-nav a {
    text-decoration: none;
    color: #000744;
    padding: 12px 15px;
    margin-bottom: 0;
    display: block;
    margin-left: 5px;
    font-size: 1.8rem !important;
    font-weight: 700;
  }
}

@media (min-width: 1024px) {
  .main-nav {
    margin: 5px 0 0 0;
    float: right;
  }
  .main-nav li {
    float: left;
    margin: 0;
  }
}

.main-nav li:not(.offerte-button) a:hover,
.main-nav li:not(.offerte-button) a:focus,
.main-nav li:not(.offerte-button).active a {
  background-color: #F4FAFD;
  text-decoration: none;
}

.main-nav__trigger {
  display: block;
  position: relative;
  padding: 10px 20px 10px 0;
  background-color: transparent;
  color: #444;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: absolute;
  top: 35px;
  right: 20px;
  left: auto;
  box-shadow: none;
}

.main-nav__trigger .icon-hamburger {
  left: 0;
  top: 0;
  position: absolute;
}

.main-nav__trigger span {
  display: none;
}

.main-nav__trigger:hover, .main-nav__trigger:focus {
  background-color: transparent;
  box-shadow: none;
}

.main-nav__trigger:active {
  -ms-transform: none;
  transform: none;
}

@media (min-width: 1024px) {
  .main-nav__trigger {
    display: none;
  }
}

.top-nav {
  display: none;
  margin: 0 0 15px;
}

@media (min-width: 1024px) {
  .top-nav {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    padding-left: 40px;
    padding-right: 40px;
    margin-top: 15px;
    margin-bottom: 0;
  }
  .top-nav a {
    margin-left: 30px;
    font-size: 15px !important;
    font-weight: bold;
  }
  .top-nav a:hover {
    opacity: 0.8;
  }
  .top-nav a.active {
    color: #0081cc;
  }
  .top-nav li.active a {
    color: #0081cc;
  }
}

.job-amount {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #0081cc;
  display: inline-block;
  vertical-align: top;
  line-height: 15px;
  text-align: center;
  color: white;
  position: relative;
  font-size: 10px;
  font-size: 1rem;
}

.main-nav__wrap {
  display: none;
  margin-bottom: 0;
}

.main-nav__wrap a {
  text-decoration: none;
  color: #000744;
  padding: 12px 15px;
  margin-bottom: 0;
  display: block;
  margin-left: 5px;
  font-size: 1.8rem !important;
  font-weight: 700;
}

.main-nav__wrap li:not(.offerte-button) a:hover,
.main-nav__wrap li:not(.offerte-button) a:focus,
.main-nav__wrap li:not(.offerte-button) li.active a {
  background-color: #F4FAFD;
  text-decoration: none;
}

@media (min-width: 1024px) {
  .main-nav__wrap {
    margin: 0 0 0 -20px;
    display: block;
  }
  .main-nav__wrap a {
    border-top: 0;
    padding: 12px 8px;
    font-size: 1.55rem !important;
  }
}

@media (min-width: 1200px) {
  .main-nav__wrap a {
    padding: 12px 15px;
    font-size: 1.8rem !important;
  }
}

.fixed-nav__element {
  display: none;
  pointer-events: none;
}

@media (min-width: 768px) {
  .fixed-nav__element {
    display: block;
  }
}

.fixed-nav__element a {
  padding: 10px 20px;
  background-color: #ce1b2a;
  color: white;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  pointer-events: auto;
  position: fixed;
  bottom: 0;
  margin-bottom: 0;
  right: 20px;
  z-index: 99999;
  transition: top 0s linear 0.5s, background 0.5s ease;
  opacity: 1;
}

.fixed-nav__element a:hover {
  background-color: #000744;
  color: #fff;
}

.fixed-nav__element.fixed-true a {
  top: 40px;
  animation-name: fadeInOut;
  -webkit-animation-name: fadeInOut;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
}

.fixed-nav__element.fixed-false a {
  animation-name: fadeInOut2;
  -webkit-animation-name: fadeInOut2;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
}

.skip-link {
  left: -999px;
  position: absolute;
  top: auto;
  overflow: hidden;
  z-index: -999;
  white-space: nowrap;
}

.skip-link:focus {
  top: 0;
  left: 0;
  z-index: 999;
  background-color: #fff;
  padding: 0.5em 1em;
  font-size: 20px;
  font-size: 2rem;
}

/* =============================================================================
   MAIN
   ========================================================================== */
.main {
  padding: 0;
}

.header {
  position: relative;
  overflow: hidden;
}

.text-block__link {
  font-size: 1.8rem;
  text-decoration: underline;
}

.text-block,
.intro-text {
  z-index: 9999;
}

.text-block .text-block p::first-letter, .text-block .text-block .showroom a::first-letter, .showroom .text-block .text-block a::first-letter,
.intro-text .text-block p::first-letter,
.intro-text .text-block .showroom a::first-letter,
.showroom .intro-text .text-block a::first-letter {
  text-transform: uppercase;
}

.text-block .h1,
.intro-text .h1 {
  position: relative;
  color: transparent;
  overflow: hidden;
}

.text-block .h1:after,
.intro-text .h1:after {
  content: attr(data-content);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: #000744;
  transform: translate3d(0, 100%, 0);
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  transition: transform 1s ease 300ms;
}

.text-block p, .text-block .showroom a, .showroom .text-block a,
.text-block ul,
.text-block h2,
.intro-text p,
.intro-text .showroom a,
.showroom .intro-text a,
.intro-text ul,
.intro-text h2 {
  position: relative;
  top: 30px;
  opacity: 0;
  transition: all 1s ease 300ms;
}

.text-block p:after, .text-block .showroom a:after, .showroom .text-block a:after,
.text-block ul:after,
.text-block h2:after,
.intro-text p:after,
.intro-text .showroom a:after,
.showroom .intro-text a:after,
.intro-text ul:after,
.intro-text h2:after {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  transition: all 1s ease 300ms;
}

.text-block.visible:before,
.intro-text.visible:before {
  right: 0;
}

.text-block.visible p, .text-block.visible .showroom a, .showroom .text-block.visible a,
.text-block.visible ul,
.text-block.visible h2,
.intro-text.visible p,
.intro-text.visible .showroom a,
.showroom .intro-text.visible a,
.intro-text.visible ul,
.intro-text.visible h2 {
  top: 0;
  opacity: 1;
  color: #000744;
}

.text-block.visible p:after, .text-block.visible .showroom a:after, .showroom .text-block.visible a:after,
.text-block.visible ul:after,
.text-block.visible h2:after,
.intro-text.visible p:after,
.intro-text.visible .showroom a:after,
.showroom .intro-text.visible a:after,
.intro-text.visible ul:after,
.intro-text.visible h2:after {
  top: 100%;
}

.text-block.visible .h1:after,
.intro-text.visible .h1:after {
  transform: translateZ(0);
}

.hero-intro .intro-text p:after, .hero-intro .intro-text .showroom a:after, .showroom .hero-intro .intro-text a:after,
.hero-intro .intro-text ul:after,
.hero-intro .intro-text h2:after,
.hero-intro .intro-text .h1:after {
  transition-delay: 0s !important;
}

@media (min-width: 1200px) {
  .hero-intro .intro-text p:after, .hero-intro .intro-text .showroom a:after, .showroom .hero-intro .intro-text a:after,
  .hero-intro .intro-text ul:after,
  .hero-intro .intro-text h2:after,
  .hero-intro .intro-text .h1:after {
    background-color: #fff;
  }
}

.text-block {
  position: relative;
  padding: 30px;
  z-index: 999;
  margin-bottom: 55px;
  display: inline-block;
}

.text-block:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 100%;
  bottom: 0;
  background-color: #fff;
  box-shadow: 0 14px 40px 0 rgba(0, 0, 0, 0.07);
  z-index: -1;
  transition: right 1s cubic-bezier(0.71, 0.025, 0.05, 1);
}

.text-block p:after, .text-block .showroom a:after, .showroom .text-block a:after,
.text-block ul:after {
  background-color: #fff !important;
}

@media (min-width: 480px) {
  .text-block {
    padding: 50px;
  }
}

@media (min-width: 768px) {
  .text-block {
    padding: 80px;
  }
}

.about-section {
  position: relative;
  text-align: center;
  width: 100%;
}

.about-section .about-img {
  width: 100%;
  height: 30%;
  background-size: cover;
  background-position: center;
  position: absolute;
}

.about-section .about-img:nth-child(even) {
  top: 0;
  left: 0;
}

.about-section .about-img:nth-child(odd) {
  bottom: 0;
  right: 0;
}

.about-section .text-block {
  max-width: 700px;
  margin: 280px auto;
  text-align: left;
  position: relative;
  z-index: 99;
}

@media (min-width: 480px) {
  .about-section .about-img {
    width: 80%;
    height: 45%;
  }
  .about-section .text-block {
    margin: 320px 20px;
  }
}

@media (min-width: 1024px) {
  .about-section .text-block {
    margin: 220px auto;
  }
  .about-section .about-img {
    width: 55%;
    height: 45%;
  }
}

@media (min-width: 1400px) {
  .about-section .text-block {
    margin: 120px auto;
  }
  .about-section .about-img {
    width: 40%;
    height: 70%;
  }
}

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

.unicorn__image {
  padding-bottom: 75%;
  position: relative;
  background-color: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0);
  overflow: visible !important;
  z-index: 1;
}

.unicorn__image .unicorn__image__div {
  background-size: cover;
  background-position: 50% 30%;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: 800px;
  z-index: 1;
}

.unicorn__image .cycle-slideshow {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  max-height: 100%;
}

.unicorn__image .cycle-slideshow .cycle-slide {
  height: 100%;
  max-height: 100%;
}

@media (min-width: 768px) {
  .unicorn__image {
    padding-bottom: 60%;
  }
}

@media (min-width: 1024px) {
  .unicorn__image .cycle-slideshow {
    position: relative;
  }
}

.unicorn.flip .unicorn__image:before {
  left: -100px;
  right: calc(100% + 100px);
}

.unicorn.flip .unicorn__image.visible:before {
  right: 0;
}

.unicorn__image,
.about-img {
  transition: transform 1s cubic-bezier(0.075, 0.82, 0.165, 1), opacity 1.5s 0.2s ease;
  opacity: 0;
  -ms-transform: translateY(300px);
  transform: translateY(300px);
}

.unicorn__image.visible,
.about-img.visible {
  opacity: 1;
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.home-maps,
.unicorn {
  position: relative;
}

.home-maps .map,
.home-maps .unicorn__image,
.unicorn .map,
.unicorn .unicorn__image {
  overflow: hidden;
  position: relative;
}

.home-maps .text-block,
.unicorn .text-block {
  width: 100%;
  position: relative;
  z-index: 999;
  margin-top: -30px;
}

@media (min-width: 1024px) {
  .home-maps .map,
  .home-maps .unicorn__image,
  .unicorn .map,
  .unicorn .unicorn__image {
    position: absolute !important;
    top: 0;
    width: 60%;
    height: 100%;
    padding: 0;
    margin-bottom: 15rem;
  }
  .home-maps.flip .unicorn__image,
  .unicorn.flip .unicorn__image {
    right: 0;
  }
  .home-maps.flip .text-block,
  .unicorn.flip .text-block {
    margin: 100px 0 100px 0;
  }
}

@media (min-width: 1200px) {
  .home-maps .text-block,
  .unicorn .text-block {
    margin: 100px 0 100px 50%;
    width: 50%;
  }
}

.unicorn__image-half {
  width: 50% !important;
}

.references.solo .grid__item:nth-child(odd) .reference-img {
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}

.ref-detail img {
  width: 100%;
}

.ref-detail .text-block {
  width: 90%;
  top: -50px;
  padding: 0;
  left: 50%;
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.ref-detail .reference-text {
  width: 100%;
  padding: 100px;
  position: relative;
}

.ref-detail .reference-text:before {
  background-size: auto 80%;
}

.reference-img-link .reference-img .reference-img__title {
  opacity: 1;
  transition: opacity 0.6s cubic-bezier(0.55, 0.085, 0, 0.99);
}

.reference-img-link .reference-img .reference-img__div::before {
  top: 100%;
  transition: top 0.6s cubic-bezier(0.55, 0.085, 0, 0.99);
}

@media (min-width: 768px) {
  .reference-img-link .reference-img .reference-img__title {
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.55, 0.085, 0, 0.99);
  }
  .reference-img-link .reference-img .reference-img__div::before {
    top: 100%;
    transition: top 0.6s cubic-bezier(0.55, 0.085, 0, 0.99);
  }
  .reference-img-link:hover .reference-img .reference-img__title {
    opacity: 1;
    transition: opacity 0.6s cubic-bezier(0.55, 0.085, 0, 0.99);
  }
  .reference-img-link:hover .reference-img .reference-img__div {
    -ms-transform: scale(1.15, 1.15);
    transform: scale(1.15, 1.15);
  }
  .reference-img-link:hover .reference-img .reference-img__div::before {
    top: 0%;
    transition: top 0.6s cubic-bezier(0.55, 0.085, 0, 0.99);
  }
}

.reference-img {
  width: 100%;
  padding-bottom: 80%;
  overflow: hidden;
  position: relative;
  background-color: #def0f9;
  transition: top 1.5s cubic-bezier(0.19, 1, 0.22, 1), opacity 1s ease;
  opacity: 0;
  top: 150px;
}

.reference-img p, .reference-img .showroom a, .showroom .reference-img a {
  line-height: 1.4em;
}

.reference-img.visible {
  opacity: 1;
  top: 0;
}

@media (min-width: 1680px) {
  .reference-detail .unicorn .text-block {
    margin: 150px 0 200px 50%;
  }
}

@media (min-width: 1680px) {
  .reference-detail .unicorn.flip .text-block {
    margin: 150px 50% 200px 0;
  }
}

.styles-reference-img__div:hover {
  -ms-transform: scale(1.15, 1.15);
  transform: scale(1.15, 1.15);
}

.reference-img__div {
  position: absolute;
  background-size: cover;
  background-position: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -ms-transform: scale(1.15, 1.15);
  transform: scale(1.15, 1.15);
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.reference-img__div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  font-family: "object-fit: cover; object-position: center";
}

.reference-img__div:hover {
  -ms-transform: scale(1.15, 1.15);
  transform: scale(1.15, 1.15);
}

.reference-img__div::before {
  content: "";
  top: 100%;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(0, 128, 198, 0.65);
  transition: top 0.6s cubic-bezier(0.55, 0.085, 0, 0.99);
}

.reference-img__div.visible {
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}

.reference-img__title {
  position: absolute;
  z-index: 999;
  bottom: 0;
  left: 0;
  padding: 0 20px;
  margin-bottom: 20px;
  color: white;
  opacity: 0;
  width: 100%;
  line-height: 1.2em;
  transition: opacity 0.6s cubic-bezier(0.55, 0.085, 0, 0.99);
}

.jumbotron .reveal {
  background-color: #F4FAFD;
}

.slider__grid {
  position: relative;
  padding-bottom: 60px;
}

.slider__grid .grid__item {
  float: right;
}

@media (min-width: 1024px) {
  .slider__grid {
    width: calc(100% - 380px);
    margin: 0 0 0 auto;
    padding-left: calc(50vw - 740px + 40px);
  }
}

@media (min-width: 1400px) {
  .slider__grid {
    width: calc(100% - 340px);
    margin: 0 0 0 auto;
    padding-left: calc(50vw - 740px + 40px);
  }
}

.slider__grid__wrapper {
  position: relative;
}

.slider__grid__wrapper::before {
  content: "";
  display: block;
  position: absolute;
  top: 10%;
  left: -15%;
  right: 115%;
  bottom: -10%;
  background-color: #F4FAFD;
  transition: right 1s cubic-bezier(0.71, 0.025, 0.05, 1);
}

.slider__grid__wrapper.visible::before {
  right: 0;
}

.region .special .unicorn__image,
.prices .special .unicorn__image {
  height: 85%;
  min-height: 580px;
  max-height: 800px;
}

.region .unicorn.special,
.prices .unicorn.special {
  height: 85%;
  min-height: 500px;
}

.region .unicorn.special .text-block,
.prices .unicorn.special .text-block {
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .region .unicorn.special .text-block,
  .prices .unicorn.special .text-block {
    width: 100%;
  }
}

.region .slider__grid,
.prices .slider__grid {
  width: 100%;
  padding-left: 0;
}

.region .slider__grid .cycle-slide,
.prices .slider__grid .cycle-slide {
  padding-bottom: 70%;
}

@media (min-width: 768px) {
  .region .slider__grid .cycle-slide,
  .prices .slider__grid .cycle-slide {
    padding-bottom: 50%;
  }
}

@media (min-width: 1400px) {
  .region .slider__grid .cycle-slide,
  .prices .slider__grid .cycle-slide {
    padding-bottom: 70%;
  }
}

.special__unicorn__grid {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.special__unicorn__grid .grid__item:first-child {
  margin-top: -100px;
}

.special__unicorn__grid .unicorn__image--special {
  width: 100vw;
  left: -20px;
  padding-bottom: 65%;
  position: relative;
  margin-bottom: 50px;
  overflow: hidden;
}

.special__unicorn__grid .unicorn__image--special img {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media (min-width: 768px) {
  .special__unicorn__grid .unicorn__image--special {
    float: right;
    left: auto;
    width: 60vw;
    right: -20px;
    right: -40px;
    padding-bottom: 120%;
  }
}

@media (min-width: 1480px) {
  .special__unicorn__grid .unicorn__image--special {
    right: calc(-1 * (((100vw - 1480px) / 2) + 40px));
  }
}

@media (min-width: 768px) {
  .special__unicorn__grid {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .special__unicorn__grid .grid__item:first-child {
    margin-top: 50px;
  }
}

.desktop__only {
  display: none;
}

@media (min-width: 768px) {
  .desktop__only {
    display: block;
  }
}

.factors .grid__item {
  margin-bottom: 30px;
}

.factors .a-c {
  margin-bottom: 50px;
}

.header__text {
  width: 100%;
  text-align: center;
}

.header__text .text-block {
  margin-top: 50px;
  padding: 80px 40px 70px 0;
  max-width: 90%;
}

@media (min-width: 1024px) {
  .header__text .text-block {
    max-width: 300px;
  }
}

.header__text .text-block:before {
  left: -9999px;
}

@media (min-width: 1024px) {
  .header__text {
    text-align: left;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 999;
  }
  .header__text .text-block {
    width: 300px;
    position: absolute;
    top: 50%;
    left: 40px;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

@media (min-width: 1400px) {
  .header__text .text-block {
    top: 0;
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.slideshow__left {
  margin-left: 0;
}

.slideshow__right {
  margin-left: 0;
}

@media (min-width: 1400px) {
  .slideshow__left {
    margin-left: -15px;
  }
  .slideshow__right {
    margin-left: 15px;
  }
}

.slideshow__halve {
  position: relative;
  margin-bottom: 15px;
}

@media (min-width: 1400px) {
  .slideshow__halve {
    width: 50%;
    float: left;
  }
}

.cycle-slide-active .slideshow__img.visible {
  transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  opacity: 1;
}

.flex-container {
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 100%;
  -ms-flex-align: center;
  align-items: center;
}

.next-button,
.previous-button {
  display: block;
  margin: 20px auto;
}

.back-button {
  margin: 20px auto;
}

.next-button,
.previous-button,
.back-button {
  color: #000744;
  text-decoration: none;
  font-weight: 800;
  background-color: transparent;
}

@media (min-width: 768px) {
  .next-button,
  .previous-button,
  .back-button {
    display: inline-block;
    margin: 0;
  }
}

.next-button .icon-arrow,
.previous-button .icon-arrow,
.back-button .icon-arrow {
  vertical-align: top;
  margin: 5px auto 0;
  display: block;
}

@media (min-width: 768px) {
  .next-button .icon-arrow,
  .previous-button .icon-arrow,
  .back-button .icon-arrow {
    margin: 0;
    margin-top: 5px;
    display: inline-block;
  }
}

.previous-button--text,
.next-button--text {
  display: inline-block;
  line-height: 1.4;
  text-align: left;
}

.previous-button--text p, .previous-button--text .showroom a, .showroom .previous-button--text a,
.next-button--text p,
.next-button--text .showroom a,
.showroom .next-button--text a {
  margin: 0;
}

.back-button {
  text-align: center;
  display: block;
}

@media (min-width: 768px) {
  .next-button {
    float: right;
  }
  .next-button--text {
    text-align: right;
    margin-right: 10px;
  }
}

.icon-arrow {
  width: 30px;
  height: 10px;
  background-image: url("../images/arrow-white.svg");
  margin-left: 15px;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  transition: 0.25s cubic-bezier(0, 0, 0.58, 1);
}

.icon-arrow.reverse {
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  -ms-transform-origin: center;
  transform-origin: center;
  margin-left: 0;
}

@media (min-width: 768px) {
  .icon-arrow.reverse {
    margin-right: 10px;
  }
}

.icon-offerte {
  width: 20px;
  height: 20px;
  background-image: url("../images/offerte.svg");
  margin-right: 5px;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  transition: 0.25s cubic-bezier(0, 0, 0.58, 1);
}

.cycle-slide {
  width: 100%;
  height: calc(50vh - 75px);
  max-height: 300px;
  overflow: hidden;
  position: relative;
}

.cycle-slide .slideshow__img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center center;
  background-size: cover;
  background-color: #F4FAFD;
  -ms-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
  -ms-transform-origin: center center;
  transform-origin: center center;
  opacity: 0;
}

.cycle-slide .slideshow__img.visible {
  top: 0;
  transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1), opacity 1s ease;
}

@media (min-width: 480px) {
  .cycle-slide {
    max-height: 450px;
  }
}

@media (min-width: 1024px) {
  .cycle-slide {
    height: calc(50vh - 110px);
    max-height: 400px;
  }
}

@media (min-width: 1400px) {
  .cycle-slide {
    height: calc(100vh - 200px);
    max-height: calc(300px + 10vw);
  }
  .cycle-slide img {
    height: 100%;
    width: auto;
  }
}

.veranda .cycle-slide,
.pergola .cycle-slide,
.horeca-b2b .cycle-slide,
.carport .cycle-slide,
.poolhouse .cycle-slide {
  max-height: unset !important;
}

.slideshow__wrapper {
  position: relative;
}

.contact .map {
  margin-bottom: 0;
}

.contact-page__submit-btn {
  top: 100% !important;
}

.contact-form {
  position: relative;
  z-index: 999;
}

.contact-form > .grid > .grid__item:last-child, .contact-form > .grid--rev > .grid__item:last-child, .contact-form > .grid--full > .grid__item:last-child, .contact-form > .grid--g20 > .grid__item:last-child {
  padding-left: 0;
}

@media (min-width: 1024px) {
  .contact-form form li:last-child input {
    margin-bottom: 0;
  }
}

.contact-form fieldset li {
  padding: 0;
}

.contact-form .text-block {
  width: 100%;
  margin-bottom: 110px;
}

.contact-form .text-block:before {
  background-color: #F4FAFD;
  box-shadow: none;
}

.contact-form .button {
  left: 30px;
  top: 115%;
}

@media (min-width: 480px) {
  .contact-form .button {
    left: 50px;
  }
}

@media (min-width: 768px) {
  .contact-form .button {
    left: 80px;
  }
}

.contact .contact-form {
  top: -80px;
}

.category-footer__contact {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
}

.category-footer__contact h1 {
  text-align: center;
}

.category-footer__contact form {
  width: 75%;
  margin: 0 auto;
}

.category-footer__contact form fieldset .checkbox label {
  margin-left: 8rem;
}

.category-footer__contact .text-block {
  padding: 3rem 0;
}

.category-footer__contact button {
  margin-top: 2rem;
  left: 14.5%;
}

.checkbox-permission-category {
  margin-top: -3.3rem;
}

.checkbox-permission span {
  margin-top: 1rem;
}

.checkbox {
  margin-bottom: 20px;
}

.checkbox p, .checkbox .showroom a, .showroom .checkbox a {
  margin-right: 20px;
  color: #B4B4B4;
  font-weight: 300;
}

.checkbox label {
  margin: 0 20px 0 45px;
  padding: 12px 0;
  position: relative;
  color: #B4B4B4;
  font-weight: 300;
}

.checkbox input[type="checkbox"] {
  position: absolute;
  z-index: -9999;
}

.checkbox input[type="checkbox"] ~ span {
  display: inline-block;
  position: absolute;
  margin-left: -45px;
  width: 36px;
  height: 36px;
  background-color: white;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.checkbox input[type="checkbox"]#permission ~ span {
  top: 12px;
}

.checkbox input[type="checkbox"]:checked ~ span {
  background-image: url("../images/check.svg");
  background-size: contain;
}

@media (min-width: 1200px) {
  .checkbox {
    margin-bottom: 0;
  }
}

.showroom {
  background-color: #fff;
  padding: 40px 10vw;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.showroom a {
  color: #444;
  opacity: 1;
  text-decoration: underline;
}

.showroom a:hover {
  text-decoration: underline;
}

.showroom .showroom__info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
}

.showroom .showroom__info .showroom__info-title {
  color: #000744;
  font-weight: bold;
  margin-right: 1rem;
}

.showroom .showroom__info .showroom__info-text,
.showroom .showroom__info .showroom__info-title {
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .showroom {
    padding: 40px;
    text-align: left;
  }
  .showroom .showroom__info {
    -ms-flex-pack: left;
    justify-content: left;
  }
}

.showroom__container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
}

.showroom__info-location {
  margin-bottom: 0;
}

.showroom__info {
  font-size: 1.2em;
}

.showroom-info {
  margin: 1rem 0;
}

fieldset {
  width: 100%;
}

.contact main .container {
  margin-bottom: -120px;
}

@media (min-width: 1024px) {
  .contact main .container {
    margin-bottom: 0;
  }
}

.checkbox p, .checkbox .showroom a, .showroom .checkbox a,
.checkbox label {
  display: block;
  color: #444;
}

@media (min-width: 1200px) {
  .checkbox p, .checkbox .showroom a, .showroom .checkbox a,
  .checkbox label {
    display: inline-block;
  }
}

.contact .hero-intro .hero-img {
  width: 100%;
  padding-bottom: 50%;
}

.contact .hero-intro .hero-img.visible {
  background-position: center;
}

.contact .hero-intro .hero-img:after {
  display: none;
}

@media (min-width: 1024px) {
  .contact .hero-intro .hero-img {
    padding-bottom: 70%;
  }
}

@media (min-width: 1200px) {
  .contact .hero-intro .hero-img {
    padding-bottom: 0;
  }
}

.about-veranco {
  margin-top: -15rem;
}

.about-veranco .container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0;
}

.about-veranco .container .text-block {
  margin: 0 auto !important;
}

@media (min-width: 768px) {
  .about-veranco .container .text-block {
    width: 80%;
  }
}

.about-veranco .container .text-block:before {
  background-color: #F4FAFD;
}

.about-veranco .container .text-block-white {
  margin-bottom: 0;
}

.about-veranco .container .text-block-white:before {
  background-color: #fff;
}

@media (min-width: 768px) {
  .about-veranco {
    padding: 0 30px;
    margin-top: -25rem;
  }
}

@media (max-width: 1199px) {
  .about-veranco .text-block {
    width: 100%;
  }
  .about-veranco .text-block:last-child {
    margin-bottom: 50px !important;
  }
}

@media (max-width: 767px) {
  .about-veranco .text-block {
    width: 90%;
  }
}

@media (min-width: 1200px) {
  .about-veranco {
    margin-bottom: 0;
  }
  .about-veranco .text-block:last-child .h1 {
    display: block;
  }
  .about-veranco .container {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .about-veranco .container .text-block {
    margin: 0 auto 10rem !important;
  }
}

@media (min-width: 1024px) {
  .ral-container .large--two-thirds {
    padding-left: 80px;
  }
}

.ral-container .grid .grid, .ral-container .grid--rev .grid, .ral-container .grid--full .grid, .ral-container .grid--g20 .grid, .ral-container .grid .grid--rev, .ral-container .grid--rev .grid--rev, .ral-container .grid--full .grid--rev, .ral-container .grid--g20 .grid--rev, .ral-container .grid .grid--full, .ral-container .grid--rev .grid--full, .ral-container .grid--full .grid--full, .ral-container .grid--g20 .grid--full, .ral-container .grid .grid--g20, .ral-container .grid--rev .grid--g20, .ral-container .grid--full .grid--g20, .ral-container .grid--g20 .grid--g20 {
  margin-left: -10px;
}

.ral-container .grid .grid .grid__item, .ral-container .grid--rev .grid .grid__item, .ral-container .grid--full .grid .grid__item, .ral-container .grid--g20 .grid .grid__item, .ral-container .grid .grid--rev .grid__item, .ral-container .grid--rev .grid--rev .grid__item, .ral-container .grid--full .grid--rev .grid__item, .ral-container .grid--g20 .grid--rev .grid__item, .ral-container .grid .grid--full .grid__item, .ral-container .grid--rev .grid--full .grid__item, .ral-container .grid--full .grid--full .grid__item, .ral-container .grid--g20 .grid--full .grid__item, .ral-container .grid .grid--g20 .grid__item, .ral-container .grid--rev .grid--g20 .grid__item, .ral-container .grid--full .grid--g20 .grid__item, .ral-container .grid--g20 .grid--g20 .grid__item {
  padding-left: 10px;
}

.ral {
  width: 100%;
  padding-bottom: 50%;
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}

.ral:after {
  display: block;
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  background-color: #fff;
  z-index: 2;
  transition: 0.25s cubic-bezier(0, 0, 0.58, 1);
}

.ral p, .ral .showroom a, .showroom .ral a {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
  z-index: 3;
  padding: 0 10px;
  transition: 0.25s cubic-bezier(0, 0, 0.58, 1);
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1.4em;
  margin-top: 3px;
}

@media (min-width: 480px) {
  .ral p, .ral .showroom a, .showroom .ral a {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

@media (min-width: 768px) {
  .ral {
    margin-bottom: 10px;
  }
  .ral p, .ral .showroom a, .showroom .ral a {
    opacity: 0;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 16px;
    font-size: 1.6rem;
    margin-top: 0;
  }
  .ral:hover:after {
    opacity: 0.5;
    top: 0;
  }
  .ral:hover p, .ral:hover .showroom a, .showroom .ral:hover a {
    opacity: 1;
    top: 50%;
  }
}

.ral-9005 {
  background-color: #150f11;
}

.ral-9007 {
  background-color: #8e8c87;
}

.ral-9006 {
  background-color: #afb0af;
}

.ral-9010 {
  background-color: #fffff7;
}

.ral-9016 {
  background-color: #fafafa;
}

.ral-8019 {
  background-color: #3e3736;
}

.ral-7016 {
  background-color: #2d3035;
}

.ral-7015 {
  background-color: #474a53;
}

.ral-7021 {
  background-color: #23282b;
}

.ral-7030 {
  background-color: #928e84;
}

.ral-7039 {
  background-color: #6b6b63;
}

.qualicoat img,
.partner img {
  width: 100%;
  max-width: none;
}

@media (min-width: 1024px) {
  .qualicoat .grid:nth-child(2), .qualicoat .grid--rev:nth-child(2), .qualicoat .grid--full:nth-child(2), .qualicoat .grid--g20:nth-child(2),
  .partner .grid:nth-child(2),
  .partner .grid--rev:nth-child(2),
  .partner .grid--full:nth-child(2),
  .partner .grid--g20:nth-child(2) {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .qualicoat .grid:not(:last-child), .qualicoat .grid--rev:not(:last-child), .qualicoat .grid--full:not(:last-child), .qualicoat .grid--g20:not(:last-child),
  .partner .grid:not(:last-child),
  .partner .grid--rev:not(:last-child),
  .partner .grid--full:not(:last-child),
  .partner .grid--g20:not(:last-child) {
    margin-bottom: 100px;
  }
  .qualicoat .large--one-third,
  .partner .large--one-third {
    -ms-flex-align: center;
    align-items: center;
  }
}

.partner .landscape-image {
  padding-bottom: 50%;
  margin-bottom: 20px;
}

@media (min-width: 1024px) {
  .partner .landscape-image {
    margin-bottom: 0;
    padding-bottom: 40%;
  }
}

.qualicoat h2,
.ral-container h2 {
  margin-bottom: 50px;
}

@media (min-width: 1200px) {
  .qualicoat h2,
  .ral-container h2 {
    margin-bottom: 80px;
  }
}

.landscape-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 80%;
}

.landscape-image img {
  width: 100%;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}

@media (min-width: 1200px) {
  .landscape-image {
    padding-bottom: 50%;
  }
}

.text-block-white::before {
  background-color: white;
}

.detail__header-img {
  height: 50rem;
  overflow: hidden;
}

.detail__header-img-block {
  width: 50%;
  overflow: hidden;
}

.detail__header-img {
  padding: 0;
  margin-left: 4rem;
  width: 90%;
  height: auto;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .detail__header-img {
    width: 44%;
    margin-bottom: 0;
  }
}

.detail__intro-section {
  margin-bottom: 0 !important;
}

.detail__title-labels {
  margin-top: -2rem;
}

.detail__title-labels p, .detail__title-labels .showroom a, .showroom .detail__title-labels a {
  margin-right: 3rem;
  color: #000744;
}

.detail__title-labels-color {
  margin-bottom: 0;
  padding-top: 10px;
}

.detail__title-labels-color .text-block__link {
  color: #000744;
  font-weight: 300 !important;
}

@media (min-width: 768px) {
  .contact .hero-intro {
    min-height: 30vh;
  }
}

@media (min-width: 1400px) {
  .contact .hero-intro {
    min-height: 50vh;
  }
}

@media (min-width: 1024px) {
  .contact .hero-intro .hero-img {
    padding-bottom: 0 !important;
  }
}

.hero-intro {
  position: relative;
}

.hero-intro .hero-img {
  width: 100%;
  padding-bottom: 70%;
  display: inline-block;
  position: relative;
  background-size: cover;
  background-position: 0% 50%;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0);
  transition: box-shadow 1s ease 1.2s, background-position 1s ease;
}

.hero-intro .hero-img .cycle-slide {
  height: 100%;
  padding-bottom: 0;
}

.hero-intro .hero-img.visible {
  background-position: 50% 50%;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}

.hero-intro .hero-img.visible:after {
  top: 50px;
  left: 50px;
  bottom: -50px;
  right: -50px;
}

.hero-intro .hero-img-second {
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-intro .hero-img-second {
    left: 50%;
  }
}

.hero-intro .intro-text {
  display: inline-block;
  background-color: #F4FAFD;
  position: relative;
  top: -70px;
  margin-bottom: -70px;
  padding: 30px;
}

@media (min-width: 768px) {
  .hero-intro .intro-text {
    padding: 50px;
  }
}

@media (min-width: 1024px) {
  .hero-intro .intro-text {
    position: relative;
    padding: 100px 40px 100px 100px;
    top: 0;
    margin-bottom: 0;
    width: 50%;
    left: 50%;
    background-color: transparent;
  }
  .hero-intro .container {
    width: 100%;
    height: 100%;
  }
  .hero-intro .hero-img {
    width: 50%;
    position: absolute;
    height: 100%;
    padding-bottom: 0;
  }
}

@media (min-width: 1680px) {
  .hero-intro .intro-text {
    padding: 100px 0 100px 150px;
  }
}

@media (min-width: 768px) {
  .hero-intro {
    min-height: 50vh;
  }
}

@media (min-width: 1400px) {
  .hero-intro {
    min-height: 70vh;
  }
}

.bg-element {
  position: absolute;
  left: 0;
  top: 0;
  width: 150px;
  padding-bottom: 300px;
  -ms-transform: rotate(20deg);
  transform: rotate(20deg);
  background-image: url("../images/background-element.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
  -ms-transform-origin: center center;
  transform-origin: center center;
}

@media (min-width: 1680px) {
  .bg-element {
    width: 180px;
    padding-bottom: 360px;
  }
}

.bg-element.flip {
  left: auto;
  right: 0;
}

.why-us {
  padding-top: 80px;
}

.why-us p, .why-us .showroom a, .showroom .why-us a {
  margin-bottom: 0;
}

.why-us .text-block {
  margin-bottom: 0;
  width: 100%;
}

.why-us .grid__item {
  margin-bottom: 40px;
}

.why-us .grid__item:last-child {
  position: relative;
}

.why-us .grid__item:last-child .button {
  -ms-transform: translateX(0) translateY(0);
  transform: translateX(0) translateY(0);
  position: relative;
  top: 0;
  left: 0;
  bottom: auto;
  width: 100%;
  white-space: normal;
}

@media (min-width: 768px) {
  .why-us .grid__item:last-child {
    position: relative;
  }
  .why-us .grid__item:last-child .button {
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: 50%;
    left: calc(50% + 10px);
    width: 90%;
    white-space: normal;
  }
}

.to-know {
  position: relative;
}

.to-know:before {
  content: "";
  display: block;
  position: absolute;
  top: -20vh;
  left: 0;
  right: 0;
  bottom: -20vh;
  background-image: url("../images/know-bg.png");
  background-size: cover;
  background-position: center;
}

.to-know .grid, .to-know .grid--rev, .to-know .grid--full, .to-know .grid--g20 {
  padding: 20px;
}

.to-know .grid__item {
  position: relative;
}

.to-know .fudge {
  padding: 30px;
  position: relative;
  width: 100%;
  transition: all 1s ease;
  text-align: center;
}

.to-know .fudge p, .to-know .fudge .showroom a, .showroom .to-know .fudge a {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  transition: all 1s ease;
  padding: 0;
}

.to-know .fudge p span, .to-know .fudge .showroom a span, .showroom .to-know .fudge a span {
  position: absolute;
  top: 0;
  left: 0;
  margin-bottom: 20px;
}

.to-know .fudge:hover {
  background-color: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.to-know .fudge:hover .icon {
  opacity: 0;
  padding-bottom: 0 !important;
  background-position: 50% -100%;
}

@media (min-width: 768px) {
  .to-know .fudge {
    text-align: left;
  }
}

.to-know .icon {
  width: 100px;
  padding-bottom: 90px;
  background-size: 100% auto;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  margin: 0 auto;
  display: block;
  opacity: 1;
  transition: all 1s ease;
}

.about-reason {
  padding: 20px 30px;
}

.about .to-know h2 {
  margin-bottom: 100px;
}

.about .to-know .grid__item {
  margin-bottom: 50px;
}

.styles .grid__item {
  margin-bottom: 100px;
}

.reference-text {
  position: absolute;
  top: 0;
  left: 0;
  padding: 6vw;
  background-color: transparent;
}

.reference-text:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/review.png");
  background-size: 25%;
  background-position: 20px bottom;
  background-repeat: no-repeat;
  background-color: #fff;
  z-index: -1;
}

@media (min-width: 1024px) {
  .reference-text {
    padding: 8vw;
  }
}

@media (max-width: 1023px) {
  .cake .reference-img {
    -ms-transform: scale(0.95);
    transform: scale(0.95);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .cake .grid__item:nth-child(even) .reference-img,
  .cake .grid__item:nth-child(odd) .reference-img {
    -ms-transform: scale(1);
    transform: scale(1);
  }
  .cake .grid__item:nth-child(4n + 1) .reference-img {
    -ms-transform: scale(0.75);
    transform: scale(0.75);
    -ms-transform-origin: center right;
    transform-origin: center right;
  }
  .cake .grid__item:nth-child(4n + 4) .reference-img {
    -ms-transform: scale(0.75);
    transform: scale(0.75);
    -ms-transform-origin: center left;
    transform-origin: center left;
  }
  .cake .grid__item:nth-child(4n + 4) .reference-img .reference-img__title {
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .cake.double .grid__item:nth-child(4n + 1) .reference-img {
    -ms-transform: scale(0.75);
    transform: scale(0.75);
    -ms-transform-origin: center right;
    transform-origin: center right;
  }
  .cake.double .grid__item:nth-child(4n + 4) .reference-img {
    -ms-transform: scale(0.75);
    transform: scale(0.75);
    -ms-transform-origin: center left;
    transform-origin: center left;
  }
}

@media (min-width: 1400px) {
  .cake.huge--triple .grid__item:nth-child(2n + 0) .reference-img {
    -ms-transform: scale(1);
    transform: scale(1);
  }
  .cake.huge--triple .grid__item:nth-child(2n + 1) .reference-img {
    -ms-transform: scale(0.75);
    transform: scale(0.75);
  }
  .cake.huge--triple .grid__item:nth-child(6n + 5) .reference-img {
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
  }
  .cake.huge--triple .grid__item:nth-child(6n + 1) .reference-img {
    -ms-transform-origin: 100% 150px;
    transform-origin: 100% 150px;
  }
  .cake.huge--triple .grid__item:nth-child(6n + 3) .reference-img {
    -ms-transform-origin: 0% calc(100% - 150px);
    transform-origin: 0% calc(100% - 150px);
  }
  .cake.huge--triple .grid__item:nth-child(9) {
    display: block;
  }
  .cake.huge--triple .grid__item:nth-child(9) .reference-img {
    -ms-transform-origin: 0% 150px;
    transform-origin: 0% 150px;
  }
}

@media (min-width: 1024px) {
  .cake.triple .grid__item:nth-child(2n + 1) .reference-img {
    -ms-transform: scale(0.75);
    transform: scale(0.75);
  }
  .cake.triple .grid__item:nth-child(1) .reference-img {
    -ms-transform-origin: 100% calc(100% - 150px);
    transform-origin: 100% calc(100% - 150px);
  }
  .cake.triple .grid__item:nth-child(7) .reference-img {
    -ms-transform-origin: 100% 150px;
    transform-origin: 100% 150px;
  }
  .cake.triple .grid__item:nth-child(3) .reference-img {
    -ms-transform-origin: 0% calc(100% - 150px);
    transform-origin: 0% calc(100% - 150px);
  }
  .cake.triple .grid__item:nth-child(9) {
    display: block;
  }
  .cake.triple .grid__item:nth-child(9) .reference-img {
    -ms-transform-origin: 0% 150px;
    transform-origin: 0% 150px;
  }
}

.grid__item[data-fancybox="fancy_image"] {
  cursor: pointer;
}

.gallery__line .gallery-text {
  font-weight: 800;
  color: #000744;
}

.gallery__line .gallery__item {
  margin: 30px auto;
}

.gallery__line .gallery__item:nth-child(1) {
  width: 100%;
}

.gallery__line .gallery__item:nth-child(2) {
  width: 75%;
}

.gallery__line .gallery__item:nth-child(3) {
  width: 50%;
}

@media (min-width: 768px) {
  .gallery__line .gallery__item:nth-child(3n + 1) {
    width: 80%;
    padding-left: 0;
  }
  .gallery__line .gallery__item:nth-child(3n + 2) {
    width: 50%;
    float: left;
    display: inline-block;
    margin: 0;
  }
  .gallery__line .gallery__item:nth-child(3n + 3) {
    width: 42%;
    display: inline-block;
    padding: 0 5rem;
  }
  .gallery__line .gallery__item:nth-child(3n + 3) .gallery-text {
    position: relative;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .gallery__line:nth-child(odd) .gallery__item:nth-child(3n + 3) {
    width: 28%;
    padding: 0 5rem;
  }
  .gallery__line:nth-child(odd) .gallery__item:nth-child(3n + 2) {
    padding-right: 40px;
    padding-left: 0;
  }
  .gallery__line:nth-child(odd) .gallery__item:nth-child(3n + 1) {
    width: 40%;
    padding-right: 0;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .gallery__line {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: 100%;
  }
  .gallery__line:nth-child(odd) .gallery__item:nth-child(1) {
    -ms-flex-preferred-size: 80%;
    flex-basis: 80%;
    margin: 30px 0 30px auto;
  }
  .gallery__line:nth-child(odd) .gallery__item:nth-child(2) {
    width: 50%;
    margin: 30px 0 30px 10%;
  }
  .gallery__line:nth-child(odd) .gallery__item:nth-child(3) {
    width: calc(50% - 10%);
    padding: 0 30px;
  }
  .gallery__line:nth-child(even) .gallery__item:nth-child(1) {
    -ms-flex-preferred-size: 80%;
    flex-basis: 80%;
    margin: 30px auto 30px 0;
  }
  .gallery__line:nth-child(even) .gallery__item:nth-child(2) {
    width: 50%;
    margin: 30px 0 30px 10%;
  }
  .gallery__line:nth-child(even) .gallery__item:nth-child(3) {
    width: calc(50% - 10%);
    padding: 0 30px;
  }
}

@media (min-width: 1024px) {
  .gallery__line {
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
  }
  .gallery__line .reference-img,
  .gallery__line .gallery-text {
    position: relative;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .gallery__line .reference-img {
    top: calc(50% + 50px);
  }
  .gallery__line .reference-img.visible {
    top: 50%;
  }
  .gallery__line:nth-child(1), .gallery__line:nth-child(3) {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .gallery__line .gallery__item {
    padding-left: 40px;
  }
  .gallery__line .gallery__item:nth-child(3n + 1) {
    width: 40%;
    padding-left: 0;
  }
  .gallery__line .gallery__item:nth-child(3n + 2) {
    width: 32%;
  }
  .gallery__line:nth-child(odd) .gallery__item:nth-child(3n + 3) {
    width: 28%;
    padding: 0 5rem;
  }
  .gallery__line:nth-child(odd) .gallery__item:nth-child(3n + 2) {
    padding-right: 40px;
    padding-left: 0;
  }
  .gallery__line:nth-child(odd) .gallery__item:nth-child(3n + 1) {
    width: 40%;
    padding-right: 0;
  }
}

@media (min-width: 1200px) {
  .gallery__line .gallery__item:nth-child(3n + 3) {
    width: 28%;
    padding: 0 5rem;
  }
}

/* =============================================================================
   FOOTER
   ========================================================================== */
.footer-info {
  display: none;
}

@media (min-width: 1024px) {
  .footer-info {
    display: inline-block;
  }
}

.page-footer {
  position: relative;
  background-image: url("../images/veranco_footer_2.jpg");
  background-size: 300% auto;
  background-position: 100% 100%;
  background-repeat: no-repeat;
  height: 1250px;
  margin: -1250px 0 0;
  text-align: center;
  padding-top: 100px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}

.page-footer table {
  font-size: 12px;
  font-size: 1.2rem;
  max-width: 200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .page-footer table {
    margin: 0;
    max-width: unset;
  }
}

@media (min-width: 1024px) {
  .page-footer table {
    font-size: 11px;
    font-size: 1.1rem;
  }
}

@media (min-width: 1200px) {
  .page-footer table {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

@media (min-width: 1680px) {
  .page-footer table {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.page-footer a {
  text-decoration: underline;
}

.page-footer .button {
  text-decoration: none;
}

.page-footer .page-footer__info-container {
  width: 100%;
  margin-right: 0;
}

.page-footer .grid, .page-footer .grid--rev, .page-footer .grid--full, .page-footer .grid--g20 {
  margin-bottom: 0;
}

@media (min-width: 1400px) {
  .page-footer .grid, .page-footer .grid--rev, .page-footer .grid--full, .page-footer .grid--g20 {
    display: inline-block;
    width: 90%;
    float: right;
  }
}

.page-footer .text-block {
  top: 0;
  -ms-transform: translateY(0);
  transform: translateY(0);
  margin-top: calc(8vw - 80px);
}

.page-footer .text-block .button {
  z-index: 999;
}

.page-footer .text-block .button:hover {
  color: #000744;
  background-color: white;
}

.page-footer .text-block .button:hover span {
  background-image: url(../images/arrow.svg);
}

@media (min-width: 1024px) {
  .page-footer .text-block {
    width: 20vw;
  }
}

.page-footer .grid__item {
  margin: 20px;
  padding-left: 0;
}

@media (min-width: 768px) {
  .page-footer .grid__item {
    margin: 0;
    padding-left: 40px;
  }
}

.page-footer .footer-link {
  font-weight: 300;
  color: #444;
  font-family: 'Soleil', Arial, Verdana, sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5em;
  font-weight: 400;
}

.page-footer .footer-link:hover {
  color: black;
}

.page-footer .footer__title {
  font-weight: 600;
  font-size: 16px;
  font-size: 1.6rem;
  color: #000744;
  margin-bottom: 10px;
}

@media (min-width: 480px) {
  .page-footer {
    background-size: 200vw auto;
  }
}

@media (min-width: 768px) {
  .page-footer {
    background-size: 150% auto;
    text-align: left;
    height: 105vw;
    margin: -90vw 0 0;
  }
}

@media (min-width: 1024px) {
  .page-footer {
    padding-top: 8vw;
    padding-bottom: 40vw;
    height: 48vw;
    margin: -38vw 0 0;
    z-index: 5;
    background-size: 100% auto;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .page-footer .page-footer__info-container {
    width: 75%;
  }
}

.page-footer__form-wrapper {
  position: relative;
  text-align: center;
  width: 100%;
}

.page-footer__form-wrapper .text-block {
  padding: 8rem 25vw;
}

.page-footer__form-wrapper {
  display: -ms-flexbox;
  display: flex;
}

.page-footer__form-input-fields {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-direction: column;
  flex-direction: column;
}

.page-footer__form-input-fields .page-footer__form-input-field {
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .page-footer__form-input-fields {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .page-footer__form-input-fields .page-footer__form-input-field {
    width: 49%;
  }
}

.page-footer__form-consent {
  display: -ms-flexbox;
  display: flex;
  margin-top: 1rem;
  -ms-flex-align: center;
  align-items: center;
}

.page-footer__form-consent input {
  margin-right: 2rem;
  -webkit-appearance: none;
  background-color: white;
  padding: 2rem;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.page-footer__form-consent input::after {
  content: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 16.3 13.2' style='enable-background:new 0 0 16.3 13.2;' xml:space='preserve'><g><polygon fill='#07136A' points='7.5,13.2 0,4 3.1,1.4 7.5,6.9 13.2,0 16.3,2.6'/></g></svg>");
  width: 2.5rem;
  height: 2.5rem;
  font-size: 14px;
  position: absolute;
  left: 8px;
  opacity: 0;
  top: 20px;
  color: #000744;
  transition: top 0.3s ease, opacity 0.2s ease;
}

.page-footer__form-consent input[type="checkbox"]:checked:after {
  top: 10px;
  opacity: 1;
  transition: top 0.3s ease, opacity 0.2s ease;
}

.footer__title-underline {
  text-decoration: underline !important;
}

#page-footer__form-btn {
  left: 27.5%;
}

.social-media {
  display: inline-block;
}

.social-icon {
  width: 30px;
  height: 30px;
  margin: 5px;
  display: inline-block;
  float: left;
  background-image: url("../images/icon-fb.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.social-icon.twitter {
  background-image: url("../images/icon-twitter.png");
}

.social-icon.google {
  background-image: url("../images/icon-google.png");
}

@media (min-width: 768px) {
  .social-icon {
    display: block;
    float: none;
  }
}

a.esign {
  width: 80px;
  height: 20px;
  background-image: url("../images/logo-esign.svg");
  background-size: 77px 20px;
  background-repeat: no-repeat;
  background-position: top left;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  text-indent: -9999px;
  opacity: 0.6;
  transition-duration: 0.5s;
  display: block;
  outline: 0;
  z-index: 9999;
  margin: 20px auto;
}

a.esign:hover, a.esign:focus {
  opacity: 1;
}

@media (min-width: 768px) {
  a.esign {
    width: 16px;
    position: absolute;
    right: 45px;
    bottom: 30px;
    margin: 0;
  }
  a.esign:hover, a.esign:focus {
    opacity: 1;
    width: 80px;
  }
}

/* =============================================================================
   COMPONENTS
   ========================================================================== */
.large {
  font-size: 20px;
  font-size: 2rem;
}

.center-block {
  *zoom: 1;
  text-align: center;
  margin: 20px 0;
}

.center-block:before, .center-block:after {
  display: table;
  content: " ";
}

.center-block:after {
  clear: both;
}

.center-block .button {
  float: none;
  display: inline-block;
}

.button--static {
  padding: 10px 20px;
  background-color: #fff;
  color: #000744;
  margin-right: 15px;
  display: inline-block;
}

.button--static.active, .button--static:hover {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  background-color: #000744;
  color: #fff;
}

.button-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: -30px;
  margin-left: -30px;
}

.button-group .button,
.button-group a {
  margin-bottom: 30px;
  margin-left: 30px;
}

.button-group + .button-group {
  margin-top: 30px / 3;
}

.button-group .button + .button {
  margin-top: 0;
}

.button-group--center {
  -ms-flex-pack: center;
  justify-content: center;
}

.primary {
  display: block;
}

.secundary {
  margin-bottom: 20px;
}

.secundary a {
  color: #444;
  font-weight: 300;
  font-family: 'Soleil', Arial, Verdana, sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5em;
  font-weight: 400;
  font-size: 16px;
  font-size: 1.6rem;
  margin-top: 20px;
  margin-bottom: 0;
  padding: 0 20px;
  display: inline-block;
}

.secundary a.active {
  text-decoration: underline;
}

section,
.section {
  position: relative;
  margin-bottom: 60px;
}

@media (min-width: 1024px) {
  section,
  .section {
    margin-bottom: 120px;
  }
}

section.last,
.section.last {
  margin-bottom: 20rem;
}

.jumbotron {
  background-color: #F4FAFD;
  padding: 40px 0;
}

@media (min-width: 1024px) {
  .jumbotron {
    padding: 80px 0;
  }
}

article {
  *zoom: 1;
  margin: 0 0 20px;
}

article:before, article:after {
  display: table;
  content: " ";
}

article:after {
  clear: both;
}

article a img {
  display: block;
  opacity: 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

article a:hover img, article a:focus img {
  opacity: 0.8;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.article-detail__image {
  margin-bottom: 1.5em;
}

.note {
  *zoom: 1;
  margin: 0 0 20px;
  padding: 15px 20px 0;
  background: #efefef;
}

.note:before, .note:after {
  display: table;
  content: " ";
}

.note:after {
  clear: both;
}

.note ul,
.note p,
.note .showroom a,
.showroom .note a {
  margin-bottom: 1em;
}

.note--success {
  color: #39963a;
  background-color: #eff9ef;
}

.note--error {
  color: #f1062c;
  background-color: #fff7f8;
}

.cycle-slideshow {
  width: 100%;
  position: relative;
  top: 50px;
}

.cycle-slideshow::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.cycle-slideshow.visible {
  top: 0;
  transition: all 1s ease;
}

.cycle-pager {
  width: 100%;
  text-align: center;
}

.cycle-pager span {
  display: inline-block;
  margin: 0 3px;
  font-size: 36px;
  height: 20px;
  width: 20px;
  line-height: 14px;
  cursor: pointer;
  border: 2px solid #fff;
  border-radius: 20px;
  color: #fff;
  overflow: hidden;
  text-indent: -500px;
  transition: 0.25s cubic-bezier(0, 0, 0.58, 1);
}

.cycle-pager span:hover, .cycle-pager span:focus {
  transition: none;
}

.cycle-pager span:hover,
.cycle-pager span:focus,
.cycle-pager .cycle-pager-active {
  text-indent: 0;
}

.map {
  width: 100%;
  height: 350px;
  background: #efefef;
  margin: 0 0 40px;
  position: relative;
}

.map:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 98;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  transition: all 0.01s linear 1s;
}

.map:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 99;
  top: 0;
  bottom: 0;
  background-color: #ebf6fb;
}

.map.visible:after {
  animation: slider 2s cubic-bezier(0.71, 0.025, 0.05, 1);
}

.map.visible:before {
  left: 100%;
}

@media (min-width: 768px) {
  .map {
    height: 550px;
  }
}

.social {
  *zoom: 1;
  list-style: none;
  margin: 0 0 2em -5px;
}

.social:before, .social:after {
  display: table;
  content: " ";
}

.social:after {
  clear: both;
}

.social__item {
  padding: 0 0 5px 5px;
  float: left;
}

.social__link {
  height: 40px;
  width: 40px;
  line-height: 40px;
  display: block;
  border-radius: 40px;
  background-color: #000744;
  text-decoration: none;
  text-align: center;
  overflow: hidden;
}

.social__link--facebook {
  background-color: #3c5b9b;
}

.social__link--facebook:hover, .social__link--facebook:focus {
  background-color: #314a7e;
}

.social__link--twitter {
  background-color: #2daae1;
}

.social__link--twitter:hover, .social__link--twitter:focus {
  background-color: #1d94c9;
}

.social__link--pinterest {
  background-color: #cb2027;
}

.social__link--pinterest:hover, .social__link--pinterest:focus {
  background-color: #a81a20;
}

.social__link--linkedin {
  background-color: #0173b2;
}

.social__link--linkedin:hover, .social__link--linkedin:focus {
  background-color: #015989;
}

.disabled-link {
  opacity: 0.3;
  pointer-events: none;
  display: block;
}

/* =============================================================================
   PAGES
   ========================================================================== */
.landings-page__header {
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .landings-page__header {
    padding: 20px 120px;
  }
}

.landings-page__header-text {
  width: 40%;
}

.langings-page__header-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (min-width: 768px) {
  .langings-page__header-block {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .langings-page__header-block .landings-page__header-text {
    width: 100%;
  }
}

.landings-page__header-imgs {
  display: none;
}

.landings-page__header-imgs img {
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.2);
  width: 100%;
}

@media (min-width: 768px) {
  .landings-page__header-imgs {
    display: inline;
  }
}

.landings-page__header-imgs-first {
  margin-bottom: 3rem;
}

.landings-page__discover {
  padding: 5rem 0;
  margin-bottom: 0;
}

.landings-page__discover .hero-intro {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 0;
}

.landings-page__discover .hero-intro .hero-img-second {
  left: 0%;
  margin-top: 5rem;
}

.landings-page__discover .hero-img {
  height: 80%;
}

.landings-page__discover .button {
  margin-left: 20%;
}

.landings-page__discover h1 {
  text-align: center;
}

@media (min-width: 1200px) {
  .landings-page__discover .hero-intro {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .landings-page__discover .hero-intro .hero-img-second {
    left: 50%;
    margin-top: 0;
  }
}

.error-page {
  display: -ms-flexbox;
  display: flex;
  height: 30rem;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10rem;
}

/* =============================================================================
   VERANDAS
   ========================================================================== */
.veranda__references div:nth-child(n + 9) {
  display: none;
}

.breadcrumbs {
  display: inline-block;
  margin-bottom: 50px;
}

.breadcrumbs a {
  color: #000744;
  font-weight: 300;
  font-size: 16px;
  font-size: 1.6rem;
}

.breadcrumbs a:not(:last-child):after {
  content: ">";
  margin: 0 10px;
}

.breadcrumbs a:hover {
  color: #000744;
}

.reference-detail .breadcrumbs {
  margin-bottom: 20px;
}

@media (min-width: 1024px) {
  .reference-detail .breadcrumbs {
    margin-bottom: 0;
  }
}

.reference-detail .breadcrumbs a {
  text-transform: capitalize;
}

.overview .text-block ul li {
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.5em;
}

/* =============================================================================
   LANDING PAGES
   ========================================================================== */
.landing .cycle-slide {
  max-height: none !important;
}

.landing .landing__section {
  margin-bottom: 60px;
}

.landing .landing__section .unicorn,
.landing .landing__section .text-block {
  margin: 0;
}

.landing .landing__section .unicorn--image .text-block {
  margin-top: -30px;
}

.landing .landing__section .unicorn--button {
  margin-bottom: 97px;
}

.landing .landing__section.about-veranco .container .text-block {
  margin-bottom: 0 !important;
}

@media (max-width: 767px) {
  .landing .landing__section .text-block {
    margin-top: 0;
    margin-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .landing .landing__section {
    margin-bottom: 120px;
  }
  .landing .landing__section .unicorn--image .text-block {
    margin: 100px 0 100px 0;
  }
  .landing .landing__section .unicorn--button {
    margin-bottom: 0;
  }
  .landing .landing__section .unicorn--center.unicorn--button {
    margin-bottom: 157px;
  }
}

.landing .unicorn--rev .unicorn__image {
  left: 0;
  right: auto;
}

.landing .unicorn--rev .text-block {
  float: right;
}

.hero-intro__content {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.hero-intro__content .container {
  min-width: 400px;
}

.hero-intro__content .container .text-block {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-intro__content .container .text-block h1 {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .hero-intro__content .container {
    min-width: 600px;
  }
}

@media (min-width: 1024px) {
  .hero-intro__content .container {
    min-width: 800px;
  }
}

@media (min-width: 1200px) {
  .hero-intro__content .container {
    min-width: 1072px;
  }
}

.hero-intro--bottom-center {
  margin-bottom: 50px;
}

.hero-intro--bottom-center .hero-img {
  width: 100%;
  padding-bottom: 50%;
  position: relative;
}

.hero-intro--bottom-center .hero-img.visible {
  background-position: center;
}

.hero-intro--bottom-center .hero-img:after {
  display: none;
}

.hero-intro--bottom-center .hero-intro__content {
  position: relative;
  -ms-transform: none;
  transform: none;
  left: 0;
  margin-top: 50px;
}

@media (min-width: 768px) {
  .hero-intro--bottom-center .hero-intro__content {
    margin-top: -50px;
  }
}

@media (min-width: 1024px) {
  .hero-intro--bottom-center .hero-intro__content {
    margin-top: -100px;
  }
}

@media (min-width: 1200px) {
  .hero-intro--bottom-center .hero-intro__content {
    margin-top: -150px;
  }
}

@media (min-width: 1024px) {
  .hero-intro--bottom-center {
    margin-bottom: 100px;
  }
}

@media (min-width: 1200px) {
  .hero-intro--bottom-center {
    margin-bottom: 50px;
  }
}

@media (min-width: 1400px) {
  .hero-intro--bottom-center {
    margin-bottom: 150px;
  }
}

.hero-intro--center .hero-img {
  width: 100%;
}

.unicorn--center .text-block {
  display: block;
  margin-left: auto !important;
  margin-right: auto !important;
}

.unicorn--center .statement-title {
  text-align: center;
}

.unicorn--right .text-block {
  display: block;
  margin-left: auto !important;
  margin-right: 0 !important;
}

.button + .button {
  margin-left: 0;
  margin-top: 10px;
}

@media (min-width: 768px) {
  .button + .button {
    margin-left: 20px;
  }
}

.button--wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: -40px;
}

.button--wrapper .button {
  position: relative;
  -ms-transform: none;
  transform: none;
  left: 0;
}

@media (max-width: 767px) {
  .dark-container.cta-container {
    padding: 50px 0;
  }
}

/* =============================================================================
   PRINT
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */
@media print {
  @page {
    margin: 2cm 0.5cm 1cm;
  }
  html {
    font-size: 10px;
  }
  * {
    background-color: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  .ir {
    text-indent: 0;
    overflow: visible;
    direction: inherit;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  .page-footer,
  .main-nav {
    display: none;
  }
  .medium--one-half {
    width: 50%;
  }
  .medium--two-thirds {
    width: 66.66%;
  }
  .medium--one-third {
    width: 33.33%;
  }
  .medium--three-quarters {
    width: 75%;
  }
  .medium--one-quarter {
    width: 25%;
  }
}

.fancybox__wrapper {
  max-width: 1480px;
  width: calc(100%);
}

.fancybox__wrapper .grid:nth-child(1), .fancybox__wrapper .grid--rev:nth-child(1), .fancybox__wrapper .grid--full:nth-child(1), .fancybox__wrapper .grid--g20:nth-child(1) {
  margin-left: -80px;
}

.fancybox__wrapper img {
  margin-bottom: 30px;
}

.fancybox__wrapper .back-button,
.fancybox__wrapper button {
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "proxima-nova", Helvetica, Arial, Verdana, sans-serif !important;
}

.fancybox-container {
  font-family: 'Soleil', Arial, Verdana, sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5em;
  font-weight: 400;
}

.fancybox-list {
  list-style: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 99%;
}

.fancybox-list li {
  font-weight: normal;
}

@media (min-width: 1024px) {
  .fancybox-list .fancybox-list__item {
    width: 48%;
  }
}

.fancybox-list__item-content-blue {
  color: #000744;
  font-weight: bold;
}

.fancybox-list__item-content-blue p, .fancybox-list__item-content-blue .showroom a, .showroom .fancybox-list__item-content-blue a {
  color: #000744;
}

.fancybox-title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.fancybox-img {
  height: 40rem;
  overflow: hidden;
}

.fancybox-list__item-no-color {
  background-color: white !important;
}

.fancybox-list__item {
  width: 100%;
  padding: 20px;
}

.fancybox-list__item .fancybox-list__item-content-between-lists {
  margin-top: 3rem;
}

.dark-container {
  padding: 80px 30px 80px;
  background-color: #f4fafd;
  margin-bottom: 50px;
}

.dark-container .grid, .dark-container .grid--rev, .dark-container .grid--full, .dark-container .grid--g20 {
  margin-left: -80px;
}

.dark-container .grid__item {
  padding-left: 80px;
}

@media (min-width: 1200px) {
  .dark-container {
    margin-bottom: 0;
  }
  .dark-container > .container {
    padding: 0 100px 0;
    max-width: 1350px;
  }
}

.grid.flip .grid__item, .flip.grid--rev .grid__item, .flip.grid--full .grid__item, .flip.grid--g20 .grid__item {
  float: right;
}

.former-fancybox img {
  position: relative;
  top: 100px;
  opacity: 0;
  margin-bottom: 40px;
  transition: top 1s cubic-bezier(0.075, 0.82, 0.165, 1), opacity 1.5s 0.2s ease;
}

.former-fancybox img.visible {
  top: 0;
  opacity: 1;
}

.former-fancybox .unicorn .text-block {
  margin: 80px 0 80px 0;
}

@media (min-width: 768px) {
  .former-fancybox img {
    margin-bottom: 0;
  }
  .former-fancybox .spacer {
    margin: 0 0 100px;
  }
}

.fancybox-list__item-img {
  background-color: white;
}

.fancybox-list__item-img img {
  margin-bottom: 0;
}

.fancybox-list__item-content {
  margin-top: 2rem;
}

.fancybox-list__item-content a {
  font-size: 1.6rem;
  font-weight: normal;
  border-bottom: 0.1rem solid #000744;
}

.fancybox-list__item-content-list {
  list-style-type: square;
  color: #000744;
}

.fancybox-list__item-content-list li {
  margin-top: 0.5rem;
}

.fancybox-content {
  margin-top: 15rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.fancybox-content .fancybox-content__div {
  width: 100%;
  padding: 0;
  -ms-flex-order: 2;
  order: 2;
}

.fancybox-content .fancybox-content__div li {
  font-weight: normal;
  margin-bottom: 2rem;
}

.fancybox-content .fancybox-content__img {
  width: 100%;
  -ms-flex-order: 1;
  order: 1;
}

@media (min-width: 1024px) {
  .fancybox-content {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .fancybox-content .fancybox-content__div {
    width: 40%;
    -ms-flex-order: 1;
    order: 1;
  }
  .fancybox-content .fancybox-content__img {
    -ms-flex-order: 2;
    order: 2;
    width: 50%;
  }
}

.slider-down {
  animation-name: slider-down;
  -webkit-animation-name: slider-down;
  visibility: visible !important;
}

@keyframes slider-down {
  0% {
    bottom: 100%;
    top: 0%;
  }
  50% {
    bottom: 0%;
    top: 0%;
  }
  100% {
    bottom: 0%;
    top: 100%;
  }
}

.slider {
  animation-name: slider;
  -webkit-animation-name: slider;
  visibility: visible !important;
}

@keyframes slider {
  0% {
    right: 100%;
    left: 0;
  }
  50% {
    right: 0;
    left: 0;
  }
  100% {
    right: 0;
    left: 100%;
  }
}

.options {
  background-color: #F4FAFD;
  padding: 30px;
}

.options p:last-child, .options .showroom a:last-child, .showroom .options a:last-child {
  margin-bottom: 0;
}

.vacture-links {
  margin-bottom: 40px;
}

.offerte-button a {
  background-color: #ce1b2a;
  color: #fff;
}

.offerte-button.desktop {
  display: none;
}

@media (min-width: 1024px) {
  .offerte-button.desktop {
    display: block;
  }
}

.offerte-button.mobile {
  display: block;
}

@media (min-width: 1024px) {
  .offerte-button.mobile {
    display: none;
  }
}

.offerte-button--fixed {
  position: fixed;
  bottom: 10px;
  right: 5px;
  z-index: 999999;
}

.offerte-button--fixed a {
  padding: 7px 10px;
  font-size: 18px;
  font-size: 1.8rem;
}

.footer-regions {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  transition: 0.25s cubic-bezier(0, 0, 0.58, 1);
  margin-top: 20px;
  list-style: none;
}

.footer-regions.open {
  height: auto;
}

.footer-regions a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
}

.footer-regions p:not(.h4), .footer-regions .showroom a:not(.h4), .showroom .footer-regions a:not(.h4),
.footer-regions li {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 5px;
}

.footer-regions .h4 {
  margin-bottom: 10px;
}

.footer-regions ul {
  list-style: none;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .footer-regions p:not(.h4), .footer-regions .showroom a:not(.h4), .showroom .footer-regions a:not(.h4),
  .footer-regions li {
    font-size: 12px;
    margin-bottom: 2px;
  }
}

.full-width__image img {
  max-width: none;
  width: 100%;
}

@media (min-width: 768px) {
  .column--2 {
    column-count: 2;
  }
}

.rte--centered {
  max-width: 960px;
  text-align: center;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .small-image {
    width: 724px;
    height: 535px;
    margin-top: 250px;
  }
}

@media (min-width: 1024px) {
  .big-image {
    height: 732px;
  }
}

@media (min-width: 1024px) {
  .text-block--absolute {
    position: absolute;
    top: 40px;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    min-width: 712px;
  }
}

.maintenance {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  margin-bottom: 0;
  background-size: cover;
}

.maintenance__inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 50px;
  width: 90%;
  height: 90%;
  border-radius: 5px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background-color: white;
}

@media (min-width: 768px) {
  .maintenance__inner {
    width: 50%;
    height: 50%;
  }
}

/* Cookiebot - override */
.CybotCookiebotDialogActive button:hover, .CybotCookiebotDialogActive button:focus, .CybotCookiebotDialogActive button:active {
  box-shadow: none;
}

.CybotCookiebotDialogActive a {
  border: none;
}

.CybotCookiebotDialogCollapsed,
.CybotCookiebotDialogDetailBodyContentCookieContainerButton {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  border: none;
  box-shadow: none;
}

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