@import url('//fonts.googleapis.com/css?family=Karla:400,400i,700,700i');
@import url('//fonts.googleapis.com/css?family=Roboto+Slab:400,700');
@import url('//fonts.googleapis.com/css?family=Roboto:400,400i,700,700i');
@import url('//fonts.googleapis.com/css?family=Open+Sans:400,400i,700,700i');
/* ********************
Set root URL for LESS compiling
-------------------- */
/* ********************
Imports
******************** */
/* ********************
Browser Reset
******************** */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
figure,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
}
body {
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  -moz-osx-font-smoothing: grayscale;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
:focus {
  outline: 0;
}
ins {
  text-decoration: none;
}
del {
  text-decoration: line-through;
}
table {
  cellspacing: 0;
  border-collapse: collapse;
  border-spacing: 0;
}
/* ********************
Float & Align
******************** */
.fl {
  float: left;
}
.fr {
  float: right;
}
.fn {
  float: none;
}
.cb {
  clear: both !important;
}
.cl {
  clear: left !important;
}
.cr {
  clear: right !important;
}
.al {
  text-align: left !important;
}
.ar {
  text-align: right !important;
}
.ac {
  text-align: center !important;
}
/* ********************
Grid
******************** */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.grid {
  margin: 0 auto;
}
.grid:after,
.clear:after {
  clear: both !important;
  content: "";
  display: table;
}
[class*='col-'] {
  float: left;
}
/* ********************
Columns
******************** */
.col-1-1 {
  width: 100%;
}
.col-4-5 {
  width: 80%;
}
.col-3-4 {
  width: 75%;
}
.col-2-3 {
  width: 66.66666%;
}
.col-3-5 {
  width: 60%;
}
.col-1-2 {
  width: 50%;
}
.col-2-5 {
  width: 40%;
}
.col-1-4 {
  width: 25%;
}
.col-1-5 {
  width: 20%;
}
.col-1-3 {
  width: 33.33333%;
}
.col-1-8 {
  width: 12.5%;
}
.col-1-6 {
  width: 16.66%;
}
/* ********************
Mixins
******************** */
/* ****************************************
Flexbox
**************************************** */
.flex-row {
  margin: 0 auto;
  box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-row.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
/* ********************
Columns
******************** */
[class*="flex-col"] {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-basis: 0;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%;
}
.flex-col-1-1 {
  -webkit-flex-basis: 100%;
  -ms-flex-basis: 100%;
  flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  max-width: 100%;
}
.flex-col-1-2 {
  -webkit-flex-basis: 50%;
  -ms-flex-basis: 50%;
  flex-basis: 50%;
  -ms-flex-preferred-size: 50%;
  max-width: 50%;
}
.flex-col-1-3 {
  -webkit-flex-basis: 33.33333%;
  -ms-flex-basis: 33.33333%;
  flex-basis: 33.33333%;
  -ms-flex-preferred-size: 33.33333%;
  max-width: 33.33333%;
}
.flex-col-2-3 {
  -webkit-flex-basis: 66.66665999999999%;
  -ms-flex-basis: 66.66665999999999%;
  flex-basis: 66.66665999999999%;
  -ms-flex-preferred-size: 66.66665999999999%;
  max-width: 66.66665999999999%;
}
.flex-col-1-4 {
  -webkit-flex-basis: 25%;
  -ms-flex-basis: 25%;
  flex-basis: 25%;
  -ms-flex-preferred-size: 25%;
  max-width: 25%;
}
.flex-col-3-4 {
  -webkit-flex-basis: 75%;
  -ms-flex-basis: 75%;
  flex-basis: 75%;
  -ms-flex-preferred-size: 75%;
  max-width: 75%;
}
.flex-col-1-5 {
  -webkit-flex-basis: 20%;
  -ms-flex-basis: 20%;
  flex-basis: 20%;
  -ms-flex-preferred-size: 20%;
  max-width: 20%;
}
.flex-col-2-5 {
  -webkit-flex-basis: 40%;
  -ms-flex-basis: 40%;
  flex-basis: 40%;
  -ms-flex-preferred-size: 40%;
  max-width: 40%;
}
.flex-col-3-5 {
  -webkit-flex-basis: 60%;
  -ms-flex-basis: 60%;
  flex-basis: 60%;
  -ms-flex-preferred-size: 60%;
  max-width: 60%;
}
.flex-col-4-5 {
  -webkit-flex-basis: 80%;
  -ms-flex-basis: 80%;
  flex-basis: 80%;
  -ms-flex-preferred-size: 80%;
  max-width: 80%;
}
.flex-col-1-6 {
  -webkit-flex-basis: 16.66666%;
  -ms-flex-basis: 16.66666%;
  flex-basis: 16.66666%;
  -ms-flex-preferred-size: 16.66666%;
  max-width: 16.66666%;
}
.flex-col-1-8 {
  -webkit-flex-basis: 12.5%;
  -ms-flex-basis: 12.5%;
  flex-basis: 12.5%;
  -ms-flex-preferred-size: 12.5%;
  max-width: 12.5%;
}
.flex-col-1-12 {
  -webkit-flex-basis: 8.33333%;
  -ms-flex-basis: 8.33333%;
  flex-basis: 8.33333%;
  -ms-flex-preferred-size: 8.33333%;
  max-width: 8.33333%;
}
.flex-col-5-12 {
  -webkit-flex-basis: 41.66666%;
  -ms-flex-basis: 41.66666%;
  flex-basis: 41.66666%;
  -ms-flex-preferred-size: 41.66666%;
  max-width: 41.66666%;
}
/* ********************
Align
******************** */
.align-start {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: start;
}
.align-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.align-end {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  text-align: end;
}
.align-top {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.align-middle {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.align-bottom {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.align-around {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.align-between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.align-first {
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
  -ms-flex-order: -1;
  order: -1;
}
.align-last {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}
.align-stretch {
  -ms-flex-align: stretch;
  -ms-grid-row-align: stretch;
  align-items: stretch;
}
/* ********************
Align self
******************** */
.align-self-top {
  -ms-flex-item-align: start;
  align-self: flex-start;
}
.align-self-bottom {
  -ms-flex-item-align: end;
  align-self: flex-end;
}
.align-self-middle {
  -ms-flex-item-align: center;
  align-self: center;
}
.align-self-shrink {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  max-width: 100%;
}
.align-self-grow {
  -webkit-flex-grow: 0;
  -ms-flex-grow: 0;
  flex-grow: 0;
}
/* ********************
Flexbox mixins
******************** */
/* ********************
Colors
******************** */
#cookie-notice {
  padding: 20px;
}
#cookie-notice .cookie-notice-container {
  display: flex;
  overflow: hidden;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  max-width: 137rem;
  width: 100%;
  padding: 0;
}
@media (max-width: 600px) {
  #cookie-notice .cookie-notice-container {
    flex-flow: row wrap;
  }
}
#cookie-notice #cn-notice-text {
  flex: 0 1 137rem;
  font-size: 14px;
  text-align: left;
}
#cookie-notice #cn-notice-text a {
  font-size: 14px;
  color: inherit;
  text-decoration: underline;
}
#cookie-notice #cn-notice-text a:hover {
  text-decoration: none;
}
#cookie-notice #cn-accept-cookie {
  text-decoration: none;
}
#cookie-notice #cn-accept-cookie,
#cookie-notice #cn-more-info {
  background: #ffffff;
  color: #2a363c;
  padding: 1.2rem 0;
  width: 12rem;
  font-size: 14px;
  line-height: 100%;
  transition: all .2s ease;
  font-family: 'Karla';
  font-weight: normal;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
#cookie-notice #cn-more-info {
  background: none;
  color: inherit;
}
#cookie-notice #cn-more-info:hover {
  text-decoration: underline;
  background-color: transparent;
  color: white;
}
#cookie-notice.cookie-notice-hidden {
  display: none !important;
}
@media (max-width: 600px) {
  #cookie-notice #cn-notice-text {
    width: 100%;
    margin-bottom: 10px;
    font-size: 12px;
  }
  #cookie-notice #cn-notice-text a {
    font-size: 12px;
  }
  #cookie-notice #cn-accept-cookie {
    margin-left: 0;
  }
}
.cookie-settings-modal {
  position: fixed;
  display: inline-block;
  vertical-align: top;
  width: 100%;
  max-width: 800px;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-60%);
  background: white;
  z-index: 0;
  padding: 50px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease, transform .4s ease;
  max-height: 70vh;
  overflow: scroll;
}
.cookie-settings-modal.editor {
  color: #2a363c;
}
.cookie-settings-modal.editor h3 {
  color: #2a363c;
}
.cookie-settings-modal.editor p {
  font-size: 1.6rem;
  opacity: .7;
  line-height: 2.6rem;
}
.cookie-settings-modal.editor input {
  width: auto;
  height: auto;
}
.cookie-settings-modal.editor form ul {
  padding-top: 4rem;
  padding-left: 3rem;
}
.cookie-settings-modal.editor form ul li {
  margin-bottom: 2rem;
  padding-left: 0;
}
.cookie-settings-modal.editor form ul li:before {
  display: none;
  background: #ffffff;
}
.cookie-settings-modal.editor h1,
.cookie-settings-modal.editor h2,
.cookie-settings-modal.editor h3,
.cookie-settings-modal.editor h4,
.cookie-settings-modal.editor h5,
.cookie-settings-modal.editor h6 {
  margin-bottom: 1.5rem;
}
.cookie-settings-modal.editor p {
  margin-bottom: 1.5rem;
  opacity: .8;
}
.cookie-settings-modal.editor ol {
  counter-reset: li-counter;
  margin-bottom: 1.5rem;
}
.cookie-settings-modal.editor ol li {
  position: relative;
  padding-left: 0;
  color: #2a363c;
  opacity: .8;
  line-height: 1.8;
  font-size: 1.6rem;
}
.cookie-settings-modal.editor ol li a {
  text-decoration: underline;
  color: #2a363c;
  opacity: .8;
}
.cookie-settings-modal.editor ol li a:hover {
  opacity: 1;
}
.cookie-settings-modal.editor ol li:before {
  content: counter(li-counter) ".";
  width: 2rem;
  counter-increment: li-counter;
  color: #0085ff;
  font-weight: bold;
  display: inline-block;
}
.cookie-settings-modal.editor ul li label input[type=checkbox] {
  -webkit-appearance: checkbox;
}
.cookie-settings-modal .cookie-close {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 20px;
  right: 20px;
  padding: 0;
  background: none;
  cursor: pointer;
  border: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.cookie-settings-modal .cookie-close::before,
.cookie-settings-modal .cookie-close::after {
  position: absolute;
  width: 34px;
  height: 3px;
  left: 0;
  top: 19px;
  content: "";
  background: black;
}
.cookie-settings-modal .cookie-close::before {
  transform: rotate(-45deg);
}
.cookie-settings-modal .cookie-close::after {
  transform: rotate(45deg);
}
.cookie-settings-modal form {
  display: inline-block;
  vertical-align: top;
  width: 100%;
}
.cookie-settings-modal ul {
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.cookie-settings-modal ul li {
  padding-left: 0;
  margin-bottom: 15px;
}
.cookie-settings-modal ul li::after,
.cookie-settings-modal ul li::before {
  display: none;
}
.cookie-settings-modal ul li:last-child {
  margin-bottom: 0;
}
.cookie-settings-modal ul li label {
  cursor: pointer;
}
.cookie-settings-modal ul li.analytic {
  position: relative;
}
.cookie-settings-modal ul li.analytic:before {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBmaWxsPSIjMDBFNjc2IiBkPSJNMjAuMjg1IDJsLTExLjI4NSAxMS41NjctNS4yODYtNS4wMTEtMy43MTQgMy43MTYgOSA4LjcyOCAxNS0xNS4yODV6Ii8+PC9zdmc+') top left / 16px no-repeat;
  content: "";
}
.cookie-settings-modal ul li.analytic strong {
  padding-left: 22px;
}
.cookie-settings-modal ul li p {
  margin: 8px 0 0;
  padding-left: 22px;
  display: block !important;
}
.cookie-settings-modal h3 {
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: bold !important;
}
.cookie-settings-modal p {
  margin-bottom: 16px;
}
.cookie-settings-modal .button {
  line-height: 100%;
  padding: 13px 30px;
  font-family: inherit;
  background: #0085ff;
  color: #ffffff;
  border: 0;
  cursor: pointer;
  margin: 32px 0 0;
  text-decoration: none;
  font-size: 14px;
  transition: all .2s ease;
}
.cookie-settings-modal.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-50%);
}
@media only screen and (max-width: 640px), screen and (max-height: 768px) {
  .cookie-settings-modal {
    padding: 20px;
    left: 0;
    top: 2%;
    transform: translateX(0%) translateY(0%);
    max-height: calc(100vh - 4%);
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }
  .cookie-settings-modal .cookie-settings-scroll-inner {
    margin-bottom: 80px;
  }
  .cookie-settings-modal .cookie-close {
    top: 5px;
    right: 5px;
  }
  .cookie-settings-modal ul {
    padding: 10px;
  }
  .cookie-settings-modal.show {
    left: 0;
    top: 2%;
    transform: translateX(0%) translateY(0%);
    z-index: 100001 !important;
  }
  .cookie-settings-modal.editor h3 {
    margin-bottom: 10px;
  }
  .cookie-settings-modal.editor p {
    margin-bottom: 10px;
  }
}
body::before {
  transition: all 0.2s ease-in-out;
}
body.cn-modal-open::before {
  content: "";
  position: fixed;
  background: #2a363c;
  opacity: .8;
  width: 100%;
  height: 100vh;
  z-index: 10;
}
/* ********************
General
******************** */
html {
  font-size: 62.5%;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
body {
  font-family: 'Open Sans';
  font-weight: 400;
  font-size: 1.8rem;
  color: #2a363c;
  line-height: 3.2rem;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
body.modal--open,
html.modal--open {
  overflow: hidden;
}
.grid {
  max-width: 141rem;
  height: 100%;
  width: 100%;
  display: flex;
  margin: 0 auto;
  justify-content: center;
}
@media (max-width: 141rem) {
  .grid {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
.grid--medium {
  max-width: 123rem;
  width: 100%;
  display: flex;
  margin: 0 auto;
  justify-content: center;
}
@media (max-width: 123rem) {
  .grid--medium {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
.grid--small {
  max-width: 117rem;
  width: 100%;
  display: flex;
  margin: 0 auto;
  justify-content: center;
}
@media (max-width: 117rem) {
  .grid--small {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
.grid--xs {
  max-width: 96rem;
  width: 100%;
  display: flex;
  margin: 0 auto;
  justify-content: flex-start;
}
@media (max-width: 96rem) {
  .grid--xs {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
.grid--xxs {
  max-width: 69rem;
  width: 100%;
  display: flex;
  margin: 0 auto;
  justify-content: flex-start;
  flex-direction: column;
}
@media (max-width: 69rem) {
  .grid--xxs {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
.spacer {
  height: 8.1rem;
  width: 100%;
  display: block;
}
.grid.editor {
  flex-direction: column;
  padding-top: 10rem;
  padding-bottom: 10rem;
}
input,
textarea,
button {
  -webkit-appearance: none;
  border-radius: 0;
}
.slide__nav span {
  display: flex;
  align-items: center;
  justify-content: center;
}
select::-ms-expand {
  display: none;
}
.text-page {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
.text-page .grid--medium {
  flex-direction: column;
  justify-content: flex-start;
}
.text-page.editor h1,
.text-page.editor h2,
.text-page.editor h3,
.text-page.editor h4,
.text-page.editor h5,
.text-page.editor h6 {
  margin-bottom: 1.5rem;
}
.text-page.editor p {
  margin-bottom: 1.5rem;
}
.text-page.editor ul {
  margin-bottom: 1.5rem;
}
.text-page.editor ul li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: .5rem;
  opacity: .8;
  color: #2a363c;
}
.text-page.editor ul li:before {
  content: "";
  position: absolute;
  top: 1.9rem;
  left: 0;
  display: inline-block;
  margin-top: -.5rem;
  background: #0085ff;
  width: .6rem;
  height: .6rem;
  border-radius: 100%;
}
.text-page.editor ul li a {
  text-decoration: underline;
  color: #2a363c;
  opacity: .8;
}
.text-page.editor ul li a:hover {
  opacity: 1;
}
.text-page.editor ol {
  counter-reset: li-counter;
  margin-bottom: 1.5rem;
}
.text-page.editor ol li {
  position: relative;
  padding-left: 0;
  color: #2a363c;
  opacity: .8;
}
.text-page.editor ol li a {
  text-decoration: underline;
  color: #2a363c;
  opacity: .8;
}
.text-page.editor ol li a:hover {
  opacity: 1;
}
.text-page.editor ol li:before {
  content: counter(li-counter) ".";
  width: 2rem;
  counter-increment: li-counter;
  color: #0085ff;
  font-weight: bold;
  padding-right: 5px;
  display: inline-block;
}
/* ********************
Editor
******************** */
.editor {
  /* ---------------
	Heading
	--------------- */
  /* ---------------
	Paragraph
	--------------- */
  /* ---------------
	Unordered list
	--------------- */
  /* ---------------
	Ordered list
	--------------- */
  /* ---------------
	Blockqoute
	--------------- */
}
.editor h1,
.editor h2,
.editor h3,
.editor h4,
.editor h5,
.editor h6 {
  font-family: 'Roboto Slab';
}
.editor h1 {
  font-weight: bold;
  font-size: 4.8rem;
  line-height: 6.3rem;
}
.editor h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  /* font-size: 4rem; */
  line-height: 5.3rem;
}
.editor h3 {
  font-weight: 300;
  margin-bottom: 2rem;
  font-size: 2.8rem;
  /* font-size: 3.6rem; */
  line-height: 4.8rem;
}
.editor h4 {
  font-size: 2.4rem;
  /* font-size: 3.2rem; */
  line-height: 4.2rem;
}
.editor h5 {
  font-size: 2rem;
  /* font-size: 2.6rem; */
  line-height: 3.8rem;
}
.editor h6 {
  font-size: 1.8rem;
  /* font-size: 2.2rem; */
  line-height: 3.4rem;
}
@media (max-width: 768px) {
  .editor h1 {
    font-size: 3.2rem;
    line-height: 4.2rem;
  }
  .editor h2 {
    font-size: 3rem;
    line-height: 4rem;
  }
  .editor h3 {
    font-size: 2.6rem;
    line-height: 3.5rem;
  }
  .editor h4 {
    font-size: 2.3rem;
    line-height: 3.2rem;
  }
  .editor h5 {
    font-size: 2.1rem;
    line-height: 3rem;
  }
  .editor h6 {
    font-size: 2rem;
    line-height: 2.9rem;
  }
}
.editor iframe {
  width: 100%;
  height: 38.8rem;
}
.editor p {
  font-size: 1.6rem;
  line-height: 3.2rem;
  opacity: 0.8;
}
.editor p a {
  color: #2a363c;
}
.editor ol {
  counter-reset: li-counter;
}
.editor ol li {
  position: relative;
  padding-left: 3rem;
}
.editor ol li:before {
  content: counter(li-counter) ".";
  counter-increment: li-counter;
}
/* ********************
Sticky btn
******************** */
.sticky-btn-right {
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 99999;
  background: #0085ff;
  color: #ffffff;
  box-shadow: 0 -5px 5px rgba(0, 0, 0, 0.25);
  padding: 0 1.5rem;
  font-weight: bold;
  text-decoration: none;
  height: 5rem;
  width: 100%;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 641px) {
  .sticky-btn-right {
    display: none !important;
  }
}
.sticky-btn-right span {
  transform: rotate(0) translateY(-8%);
  white-space: nowrap;
  font-size: 1.6rem;
  flex: 1;
  text-align: center;
  min-width: 100%;
  min-height: 3.75rem;
  position: absolute;
  bottom: 0;
  left: 0;
}
.sticky-btn-right:hover {
  background: #0072db;
}
.sticky-btn-right--hide {
  opacity: 0;
  visibility: hidden;
}
/* ********************
Navigation
******************** */
header.header {
  position: fixed;
  height: 8.1rem;
  background: #ffffff;
  width: 100%;
  border-bottom: 0.1rem solid rgba(155, 155, 155, 0.3);
  z-index: 100000;
}
header.header .page-logo {
  margin-right: auto;
  display: flex;
  height: 100%;
  align-items: center;
}
@media all and (min-width: 768px) {
  header.header .page-logo svg {
    transform: scale(1.35);
    transform-origin: left center;
  }
}
header.header nav.mainmenu > ul.menu {
  display: flex;
  flex-direction: row;
  height: calc(@nav-height - .1rem);
  align-items: center;
}
header.header nav.mainmenu > ul.menu li {
  background: #ffffff;
  width: auto;
  margin-right: 5rem;
  /*
				&:last-child 		{ margin-right: 0; display: flex; align-items: center; height: 100%;
					a 				{ background: @blue; color: @white; padding-left: 1.5rem; padding-right: 1.5rem; height: 5rem; line-height: 5rem; font-weight: bold;
						&:hover 	{ background: darken(@blue, 7%); text-shadow: none; }
						&:after 	{ display: none; }
					}
				}
*/
}
header.header nav.mainmenu > ul.menu li a {
  line-height: 8.1rem;
  height: 100%;
  width: 100%;
  display: block;
  text-decoration: none;
  color: #2a363c;
  font-size: 1.5rem;
  transition: all 0.2s ease-in-out;
}
header.header nav.mainmenu > ul.menu li:after {
  content: '';
  display: block;
  width: 100%;
  height: .1rem;
  margin-top: -.1rem;
  background: rgba(155, 155, 155, 0.3);
  transition: all 0.15s ease-in-out;
}
header.header nav.mainmenu > ul.menu li:hover:after {
  height: .4rem;
  margin-top: -.4rem;
  background: #2a363c;
}
header.header nav.mainmenu > ul.menu li.nav-cta {
  position: relative;
  margin-right: 0;
}
header.header nav.mainmenu > ul.menu li.nav-cta a {
  background-color: #0085ff;
  padding: 0 2rem;
  width: 100%;
  display: block;
  color: #fff;
  position: relative;
  z-index: 1;
}
header.header nav.mainmenu > ul.menu li.current-menu-item:after {
  height: .4rem;
  margin-top: -.4rem;
  background: #2a363c;
}
header.header nav.mainmenu > ul.menu li.current-menu-item a {
  font-weight: bold;
}
header.header nav.mainmenu li.lang__menu-item {
  display: flex;
  flex-direction: row;
  height: 100%;
  align-items: center;
  align-content: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  background: #f7f9fa;
  transition: 260ms ease;
}
header.header nav.mainmenu li.lang__menu-item:hover {
  background: #eef2f4;
}
header.header nav.mainmenu li.lang__menu-item a {
  display: flex;
  flex-direction: row;
  color: rgba(42, 54, 60, 0.7);
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1.6rem;
  align-items: center;
  transition: all 0.2s ease-in-out;
  padding: 1rem 2.5rem;
}
header.header nav.mainmenu li.lang__menu-item a svg {
  margin-left: 1rem;
  transition: all 0.2s ease-in-out;
}
header.header nav.mainmenu li.lang__menu-item a svg g {
  fill: rgba(42, 54, 60, 0.7);
}
header.header nav.mainmenu li.lang__menu-item a:hover {
  color: #2a363c;
}
header.header nav.mainmenu li.lang__menu-item a.active svg {
  transform: rotate(180deg);
}
@media (max-width: 1180px) {
  header.header nav.mainmenu li.lang__menu-item {
    background: transparent;
  }
}
header.header nav.mainmenu ul.lang__sub-menu {
  max-height: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease-in-out;
  position: absolute;
  top: 8rem;
  left: 0;
  background: #ffffff;
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.1);
  width: 100%;
}
header.header nav.mainmenu ul.lang__sub-menu a img {
  margin-right: 8px;
}
header.header nav.mainmenu ul.lang__sub-menu.active {
  max-height: 100vh;
  visibility: visible;
  opacity: 1;
}
header.header nav.mainmenu ul.lang__menu {
  margin-left: 0;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
header.header .nav--toggle {
  display: none;
  cursor: pointer;
  position: fixed;
  z-index: 100;
  right: 1rem;
  top: .6rem;
  width: 7rem;
  border: none;
  height: 7rem;
  border-radius: 50%;
  padding: 0;
  background: #2a363c;
  box-shadow: 0 0.4rem 2.4rem rgba(0, 0, 0, 0.24);
  line-height: 0.6;
  text-align: center;
  transform: scale(0.6);
  transition: all 0.4s ease-in-out;
}
header.header .nav--toggle > span {
  display: inline-block;
  position: relative;
  height: .2rem;
  width: 3.4rem;
  border-radius: .1rem;
  background: #ffffff;
  vertical-align: middle;
}
header.header .nav--toggle > span:before,
header.header .nav--toggle > span:after {
  display: inline-block;
  position: absolute;
  content: "";
  height: .2rem;
  border-radius: .1rem;
  background: #ffffff;
  transition: all 0.4s ease-in-out;
}
header.header .nav--toggle > span:before {
  top: -1.1rem;
  left: 0;
  width: 3.4rem;
}
header.header .nav--toggle > span:after {
  top: 1.1rem;
  left: 0;
  width: 3.4rem;
}
header.header .nav--toggle.toggled > span {
  height: 0;
}
header.header .nav--toggle.toggled > span:after,
header.header .nav--toggle.toggled > span:before {
  top: 0;
  left: 0;
  width: 3.4rem;
}
header.header .nav--toggle.toggled > span:after {
  transform: rotate(-45deg);
}
header.header .nav--toggle.toggled > span:before {
  transform: rotate(45deg);
}
header.header .nav--toggle:focus {
  outline: none;
}
@media (max-width: 1300px) {
  header.header nav.mainmenu ul.menu li {
    margin-right: 3rem;
  }
}
@media (max-width: 1226px) {
  header.header .nav--toggle {
    display: inline-block;
  }
  header.header nav.mainmenu li:hover {
    background: none !important;
  }
  header.header nav.mainmenu:before {
    display: block;
    position: fixed;
    top: 8.1rem;
    left: 0;
    content: "";
    width: 100vw;
    height: 100vh;
    background: #0085ff;
    z-index: -1;
    transition: all 0.2s ease-in-out;
    transition-delay: .2s;
    opacity: 0;
    visibility: hidden;
  }
  header.header nav.mainmenu.active:before {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
  }
  header.header nav.mainmenu.active ul.menu {
    visibility: visible;
    opacity: 1;
    padding-top: 2rem;
  }
  header.header nav.mainmenu.active ul.lang__menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  header.header nav.mainmenu ul.menu {
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    width: 100%;
    height: calc(100vh - 12.5rem);
    left: 0;
    top: 14.5rem;
    transition: all 0.5s ease-in-out;
    padding-top: 0rem;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }
  header.header nav.mainmenu ul.menu li {
    width: 100%;
    height: 5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background: transparent;
    margin: 0 auto;
  }
  header.header nav.mainmenu ul.menu li a {
    font-size: 1.6rem;
    color: #ffffff;
    position: relative;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem !important;
    line-height: normal;
  }
  header.header nav.mainmenu ul.menu li a:after {
    display: none;
  }
  header.header nav.mainmenu ul.menu li:last-child {
    height: 6rem;
    margin-top: 1rem;
  }
  header.header nav.mainmenu ul.menu li:last-child a {
    max-width: calc(100% - 2.4rem);
    background: #fff;
    color: #0085ff;
    display: flex;
  }
  header.header nav.mainmenu ul.lang__menu {
    height: 100%;
    position: absolute;
    top: 8.1rem;
    left: 50%;
    margin-left: 0;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s ease-in-out;
    pointer-events: none;
  }
  header.header nav.mainmenu ul.lang__menu li a#toggle_langs {
    margin: 0;
    font-weight: bold;
    padding: 8px 1.6rem !important;
  }
  header.header nav.mainmenu ul.lang__menu li a {
    position: relative;
    color: #ffffff;
    padding: 0 1.6rem;
    margin: 0 1.6rem;
  }
  header.header nav.mainmenu ul.lang__menu li a:before {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    width: 0.1rem;
    height: 100%;
    background-color: white;
    opacity: 0.4;
  }
  header.header nav.mainmenu ul.lang__menu li a:last-child:before {
    display: none;
  }
  header.header nav.mainmenu ul.lang__menu li a:hover {
    color: #ffffff;
  }
  header.header nav.mainmenu ul.lang__menu li a svg {
    display: none;
  }
  header.header nav.mainmenu ul.lang__sub-menu {
    display: flex;
    flex-direction: row;
    max-height: inherit;
    visibility: visible;
    opacity: 1;
    position: relative;
    top: 0;
    transition: all 0.2s ease-in-out;
    background: transparent;
    box-shadow: none;
  }
  header.header nav.mainmenu ul.lang__sub-menu li.lang__menu-item {
    position: relative;
    padding: 0;
    text-align: center;
  }
  header.header nav.mainmenu ul.lang__sub-menu li.lang__menu-item:hover {
    background: none;
  }
  header.header nav.mainmenu ul.lang__sub-menu li.lang__menu-item a {
    padding-top: 16px !important;
  }
  header.header nav.mainmenu ul.lang__sub-menu li.lang__menu-item a img {
    position: absolute;
    top: 8px;
    left: 2px;
  }
  header.header nav.mainmenu ul.lang__sub-menu li.lang__menu-item:before {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    width: 0.1rem;
    height: 100%;
    background-color: white;
    opacity: 0.4;
  }
  header.header nav.mainmenu ul.lang__sub-menu li.lang__menu-item:last-child {
    padding-right: 0;
    margin-right: 0;
  }
  header.header nav.mainmenu ul.lang__sub-menu li.lang__menu-item:last-child:before {
    display: none;
  }
  header.header nav.mainmenu ul.lang__sub-menu li.lang__menu-item a {
    position: relative;
    color: white;
    padding: 0;
  }
}
@media (max-width: 321px) {
  header.header .page-logo svg {
    transform: scale(0.8);
    margin-left: -2.5rem;
  }
}
/* ********************
Header image
******************** */
.header-image {
  width: 100%;
  height: 75rem;
  position: relative;
  overflow: hidden;
}
.header-image .img-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
}
.header-image .img-wrapper img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
}
.header-image__slider {
  width: 100%;
  height: 75rem;
}
.header-image__content {
  color: #ffffff;
  position: relative;
  height: 75rem;
  z-index: 6;
  left: 0;
  right: 0;
  flex-direction: column;
  align-content: center;
  display: flex;
}
.header-image__content h1 {
  max-width: 55.4rem;
  margin-bottom: 2rem;
}
.header-image__content p {
  max-width: 72.3rem;
  margin-bottom: 3.5rem;
  line-height: 2.8rem;
  background-color: rgba(42, 54, 60, 0.95);
  padding: 2rem;
  opacity: 1;
}
.header-image__content .button {
  max-width: 500px;
}
@media (min-width: 768px) {
  .header-image__content {
    position: absolute;
  }
}
.header-image .slide__nav {
  margin-top: 3.5rem;
}
.header-image .slide__nav span {
  margin-right: 1rem;
  display: inline-block;
  cursor: pointer;
}
@media (max-width: 768px) {
  .header-image {
    height: auto;
    overflow: hidden;
    padding-bottom: 3rem;
  }
  .header-image::before {
    width: 30%;
    height: 100%;
  }
  .header-image::after {
    width: 100%;
    left: 30%;
    height: 100%;
    margin-left: -.1rem;
  }
  .header-image__slider {
    height: 48rem;
  }
  .header-image__content {
    justify-content: flex-start;
    padding-top: 3rem;
    height: 100%;
  }
  .header-image__content h1 {
    margin-bottom: 1.5rem;
  }
  .header-image__content p {
    margin-bottom: 3rem;
  }
}
@media (max-width: 580px) {
  .header-image__slider {
    height: 64rem;
  }
  .header-image__slider .editor p {
    font-size: 1.6rem;
  }
  .header-image__slider .button {
    font-size: 1.3rem;
    padding: 1rem 1.3rem;
  }
  .header-image__slider .button:before {
    display: none;
  }
}
@media (max-width: 321px) {
  .header-image a.button:before {
    display: none;
  }
}
.header-image__background {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  overflow: hidden;
}
.header-image__video-slide {
  position: absolute;
  min-width: 100%;
  min-height: 105%;
  width: 100%;
  left: 0;
  top: -16px;
  object-fit: cover;
  z-index: 3;
}
/* ********************
Text gallery
******************** */
.text-gallery {
  padding-top: 10rem;
  display: flex;
  overflow: hidden;
  align-items: center;
}
body.home .text-gallery {
  padding-top: 3.2rem;
  padding-bottom: 7rem;
}
body.page-id-39 .text-gallery {
  padding-bottom: 7.2rem;
}
.text-gallery__content {
  max-width: 51rem;
  padding-bottom: 0rem;
}
body.page-id-39 .text-gallery__content {
  padding-bottom: 0;
}
.text-gallery__content h2 {
  font-size: 3.6rem;
  line-height: 4.8rem;
  font-weight: 300;
  margin-bottom: 2rem;
}
.text-gallery__content a {
  margin-top: 1.5rem;
}
.text-gallery__slider {
  max-width: 51rem;
  margin-left: auto;
  margin-bottom: auto;
}
.text-gallery__slider .swiper-slide {
  height: 55rem;
  max-width: 51rem;
  object-fit: contain;
}
.text-gallery__slider .slide__nav {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  z-index: 999;
}
.text-gallery__slider .slide__nav--prev,
.text-gallery__slider .slide__nav--next {
  height: 7rem;
  width: 7rem;
  display: flex;
  background: #2a363c;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.text-gallery__slider .slide__nav--prev img,
.text-gallery__slider .slide__nav--next img {
  margin: 0 auto;
}
.text-gallery__slider .slide__nav--prev.swiper-button-disabled,
.text-gallery__slider .slide__nav--next.swiper-button-disabled {
  background: rgba(42, 54, 60, 0.9);
  cursor: default;
}
body.home .text-gallery__slider .slide__nav {
  left: 50%;
  right: unset;
  transform: translateX(-50%);
  bottom: -7rem;
}
@media (max-width: 768px) {
  .text-gallery {
    padding-top: 3rem;
    flex-direction: column;
    justify-content: center;
  }
  .text-gallery .col-1-2 {
    width: 100%;
  }
  body.page-id-39 .text-gallery .col-1-2 {
    padding-bottom: 0;
  }
  .text-gallery .swiper-slide {
    height: 40rem;
    max-width: 100%;
    object-fit: contain;
  }
  .text-gallery .slide__nav {
    bottom: -7rem;
  }
  .text-gallery__content {
    padding-top: 0;
    padding-bottom: 5rem;
    max-width: 100%;
  }
  body.home .text-gallery__content {
    padding-bottom: 5rem;
  }
  .text-gallery__slider {
    margin-left: 0;
    max-width: 100%;
    padding-bottom: 0;
  }
}
/* ********************
Inspiration partial
******************** */
.inspiration {
  padding-top: 10.4rem;
  width: 100%;
  background: #f7f9fa;
  margin-bottom: -7rem;
}
body.page-id-39 .inspiration {
  margin-top: 0;
}
.inspiration.news {
  margin-top: 0;
}
.inspiration .grid--small {
  position: relative;
  flex-direction: column;
  display: flex;
}
.inspiration .grid--small:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  background-color: #f7f9fa;
  height: 100%;
  z-index: 999;
  transform: translateX(-100%);
}
.inspiration .grid--small:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  height: 7rem;
  z-index: 9991;
  transform: translateX(-100%);
}
.inspiration__slider {
  height: 50rem;
  width: 100%;
  display: flex;
}
.inspiration .swiper-slide {
  width: 45rem;
  height: 100%;
  text-decoration: none;
  color: #2a363c;
  font-size: 1.6rem;
}
.inspiration__slide {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  max-width: 51rem;
  text-decoration: none;
  color: #2a363c;
  font-size: 1.6rem;
  font-weight: bold;
  overflow: hidden;
}
.inspiration__slide:hover img {
  transform: scale(1);
}
.inspiration__slide:hover:after {
  opacity: 0;
}
.inspiration__slide:hover span {
  color: #ffffff;
  background: #0085ff;
}
.inspiration__slide:hover span .arrow path {
  fill: #ffffff;
}
.inspiration__slide:after {
  content: "";
  background: #2a363c;
  position: absolute;
  z-index: 4;
  opacity: 0.4;
  height: 100%;
  width: 100%;
  transition: all 0.4s ease-in-out;
}
.inspiration__slide .slide-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.inspiration__slide span {
  /* width: 30rem; */
  display: flex;
  position: relative;
  height: 7rem;
  margin-top: -7rem;
  background: #ffffff;
  right: 0;
  align-self: flex-end;
  align-content: center;
  /* line-height: 7rem; */
  line-height: 2.4rem;
  padding-left: 4rem;
  padding-right: 3rem;
  z-index: 5;
  transition: all 0.2s ease-in-out;
  align-items: center;
  max-width: 90%;
}
.inspiration__slide span .arrow {
  /* margin-left: auto; */
  margin-left: 2rem;
}
.inspiration__slide span .arrow path {
  transition: all 0.2s ease-in-out;
}
.inspiration__slide img {
  width: 100%;
  transform: scale(1.1);
  height: 100%;
  object-fit: cover;
  position: relative;
  display: flex;
  transition: all 0.4s ease-in-out;
}
.inspiration .content {
  width: 100%;
  display: flex;
  flex-direction: row;
  padding-bottom: 6rem;
}
.inspiration .slide__nav {
  position: relative;
  display: flex;
  z-index: 999;
  justify-content: flex-end;
  margin-top: 7rem;
}
.inspiration .slide__nav--prev,
.inspiration .slide__nav--next {
  height: 7rem;
  width: 7rem;
  display: flex;
  background: #2a363c;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.inspiration .slide__nav--prev.swiper-button-disabled,
.inspiration .slide__nav--next.swiper-button-disabled {
  background: rgba(42, 54, 60, 0.9);
  cursor: default;
}
.inspiration .slide__nav--prev img,
.inspiration .slide__nav--next img {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .inspiration {
    padding-top: 4rem;
  }
  .inspiration .col-2-3,
  .inspiration .col-1-3 {
    width: 100%;
  }
  .inspiration .slide__nav {
    margin-top: 3rem;
  }
  .inspiration .content {
    flex-direction: column;
    padding-bottom: 3rem;
  }
  .inspiration .col-1-2 {
    width: 100%;
  }
  .inspiration .col-1-2 .slide__nav {
    margin-top: 3rem;
  }
  .inspiration__slider {
    height: 40rem;
  }
  .inspiration .swiper-slide {
    width: 100%;
  }
  .inspiration__slide {
    max-width: 100%;
  }
}
/* ********************
About
******************** */
.about__intro {
  padding-top: 10rem;
  background: #f7f9fa;
  width: 100%;
  display: flex;
  flex-direction: row;
}
.about__intro .grid--medium {
  align-items: flex-start;
  justify-content: flex-start;
}
.about__intro .content {
  width: 100%;
  max-width: 60rem;
  display: flex;
  flex-direction: column;
}
.about__intro .content h1 {
  margin-bottom: 3rem;
  font-size: 4.2rem;
  line-height: 5.5rem;
  max-width: 52.4rem;
}
.about__intro .content a.button {
  margin-top: 5rem;
}
.about__intro .img-wrapper {
  width: 100%;
  height: 66.6rem;
  margin-left: 8rem;
}
.about__intro .img-wrapper img {
  width: 180%;
  height: calc(100% + 10rem);
  object-fit: cover;
}
.about__history {
  background: #ffffff;
  padding-top: 25rem;
  display: flex;
  margin-bottom: -17.5rem;
}
.about__history .content {
  display: flex;
  flex-direction: column;
  margin-right: auto;
  width: 100%;
  max-width: 60.5rem;
}
.about__history .content h2 {
  font-size: 3.6rem;
  font-weight: normal;
  margin-bottom: 2rem;
}
.about__history .grid--small {
  flex-direction: column;
}
.about__history .top {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.about__history .slide__nav {
  position: relative;
  display: flex;
  z-index: 999;
  justify-content: flex-end;
  width: 100%;
  margin-top: 5rem;
}
.about__history .slide__nav--prev,
.about__history .slide__nav--next {
  height: 7rem;
  width: 7rem;
  display: flex;
  background: #2a363c;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  align-items: center;
}
.about__history .slide__nav--prev svg,
.about__history .slide__nav--next svg {
  margin: 0 auto;
}
.about__history .slide__nav--prev polygon,
.about__history .slide__nav--next polygon {
  fill: #ffffff;
}
.about__history .slide__nav--prev.swiper-button-disabled,
.about__history .slide__nav--next.swiper-button-disabled {
  background: rgba(42, 54, 60, 0.9);
  cursor: default;
}
.about__history .slides {
  width: 100%;
  margin-top: 7rem;
}
.about__history .slides .swiper-slide {
  width: 37.4rem;
  height: 53.9rem;
}
.about__history .slides .swiper-slide:before,
.about__history .slides .swiper-slide:after {
  transition: 260ms ease;
}
.about__history .slides .swiper-slide:before {
  position: absolute;
  content: "";
  z-index: 1;
  background: #2a363c;
  width: 100%;
  height: 50%;
}
.about__history .slides .swiper-slide:after {
  position: absolute;
  content: "";
  z-index: 1;
  bottom: 0;
  width: 100%;
  height: 50%;
  background-image: linear-gradient(-179deg, #2a363c 0%, rgba(42, 54, 60, 0) 100%);
}
.about__history .slides .swiper-slide:hover:before {
  opacity: 0.8;
}
.about__history .slides .swiper-slide:hover:after {
  opacity: 0.8;
}
.about__history .slides .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  position: absolute;
}
.about__history .slides .swiper-slide .slide__content {
  z-index: 3;
  color: #ffffff;
  position: absolute;
  padding: 5rem;
}
.about__history .slides .swiper-slide .slide__content h3 {
  font-size: 2.2rem;
  line-height: 2.9rem;
}
.about__history .slides .swiper-slide .slide__content p {
  max-width: 27.4rem;
  font-size: 1.6rem;
  line-height: 2.8rem;
}
.about .two-column-text {
  padding-top: 30rem;
}
@media (max-width: 768px) {
  .about__intro {
    padding-top: 3rem;
  }
  .about__intro .content {
    max-width: 100%;
  }
  .about__intro .content h1 {
    font-size: 3.2rem;
    line-height: 4.2rem;
    margin-bottom: 2rem;
    max-width: 100%;
  }
  .about__intro .content a.button {
    margin-top: 3rem;
  }
  .about__intro .grid--medium {
    flex-direction: column;
  }
  .about__intro .img-wrapper {
    width: 100%;
    margin-left: 0;
    height: 30rem;
    margin-top: 3rem;
  }
  .about__intro .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .about__history {
    padding-top: 3rem;
  }
  .about__history .grid--small .top {
    flex-direction: column;
  }
  .about__history .grid--small .top .slide__nav {
    margin-top: 3rem;
  }
  .about__history .slides {
    margin-top: 3rem;
  }
  .about__history .slides .swiper-wrapper {
    width: 100%;
  }
  .about__history .slides .swiper-wrapper .swiper-slide {
    height: 50rem;
    width: 100%;
  }
  .about__history .slides .swiper-wrapper .swiper-slide .slide__content {
    padding: 3rem;
  }
  .about__history .slides .swiper-wrapper .swiper-slide .slide__content p {
    max-width: 100%;
  }
  .about__history .slides .swiper-wrapper .swiper-slide:nth-of-type(even) {
    margin-top: 0;
  }
  .about .two-column-text {
    padding-top: 21rem;
  }
}
@media (max-width: 500px) {
  .about__history {
    padding-top: 3rem;
  }
  .about__history .slides {
    margin-top: 3rem;
  }
  .about__history .slides .swiper-wrapper .swiper-slide {
    width: 100%;
  }
}
/* ********************
Product
******************** */
.product.editor .content p {
  font-size: 1.6rem;
  line-height: 3rem;
}
.product__description {
  background: #f7f9fa;
  padding-bottom: 10rem;
}
.product__description .two-column {
  display: flex;
  flex-direction: row;
  width: 100%;
}
.product__description .two-column__column {
  flex-basis: 50%;
  max-width: 50%;
}
.product__description .two-column__column p {
  font-size: 1.6rem;
  line-height: 3rem;
}
@media (max-width: 768px) {
  .product__description {
    padding-bottom: 2rem;
  }
  .product__description .two-column {
    flex-direction: column;
  }
  .product__description .two-column__column {
    flex-basis: 100%;
    max-width: 100%;
  }
  .product__description .two-column__column:first-child {
    margin-bottom: 3rem;
  }
}
.product__about {
  background: #f7f9fa;
  padding-top: 12rem;
  padding-bottom: 12rem;
}
.product__about .grid--small {
  display: flex;
  flex-direction: row;
}
.product__about .content {
  max-width: 45rem;
}
.product__about .content h1 {
  max-width: 39.1rem;
  margin-bottom: 2rem;
}
.product__about .content .tabs {
  width: 100%;
  display: flex;
  position: relative;
  margin-top: 5rem;
  flex-direction: column;
}
.product__about .content .tabs-wrapper {
  display: flex;
  flex-direction: row;
  border-bottom: 0.1rem solid rgba(42, 54, 60, 0.2);
}
.product__about .content .tabs .tab {
  width: 100%;
  height: 5.6rem;
  width: auto;
  padding: 0 3rem;
  justify-content: center;
  display: flex;
  align-items: center;
  font-weight: bold;
  text-decoration: none;
  color: #2a363c;
  opacity: .3;
  border: .1rem solid transparent;
  border-top: .3rem solid transparent;
  transition: all 0.2s ease-in-out;
  margin-bottom: -.1rem;
}
.product__about .content .tabs .tab:hover {
  opacity: 1;
}
.product__about .content .tabs .tab.active {
  border: .1rem solid #ddd;
  border-bottom-color: #f7f9fa;
  border-top: 0.3rem solid #0085ff;
  opacity: 1;
}
.product__about .content .tabs .tab__content {
  visibility: hidden;
  opacity: 0;
  border: 0.1rem solid rgba(42, 54, 60, 0.2);
  top: 5.6rem;
  padding: 3rem;
  width: 100%;
  border-top: none;
  transition: all 0.2s ease-in-out;
  display: none;
  flex-direction: column;
}
.product__about .content .tabs .tab__content.active {
  visibility: visible;
  opacity: 1;
  display: flex;
}
.product__about .content .tabs .tab__content .row {
  display: flex;
  width: 100%;
}
.product__about .content .tabs .tab__content .row span {
  font-size: 1.6rem;
  opacity: .8;
}
.product__about .content .tabs .tab__content .row span:first-of-type {
  width: 20rem;
  font-weight: bold;
}
.product__about .chairs {
  width: 100%;
  max-width: 53.1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-right: auto;
}
.product__about .chairs .chair-1 .chair img {
  max-height: 531px;
  max-width: 531px;
}
.product__about .chairs .chair {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  /*
				&:last-child		{
					img				{ margin-left: 5rem; margin-top: 2rem; }
				}
*/
}
.product__about .chairs .chair.active {
  display: flex;
}
.product__about .chairs .chair img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  /* margin-left: 5rem; margin-top: 2rem;*/
  padding: 4rem;
  max-width: 571px;
  max-height: 571px;
}
.product__about .chairs .chair > div {
  position: absolute;
}
.product__about .chairs .chair > div .value {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 3.2rem;
  position: absolute;
}
.product__about .chairs .chair > div.width {
  right: 8rem;
  top: -1rem;
}
.product__about .chairs .chair > div.width .value {
  bottom: 4rem;
  left: 6rem;
}
.product__about .chairs .chair > div.length {
  left: 8rem;
  top: -2rem;
}
.product__about .chairs .chair > div.length .value {
  bottom: 4.5rem;
  left: 2rem;
}
.product__about .chairs .chair > div.height {
  top: calc(45% - 9.3rem);
  left: -2rem;
}
.product__about .chairs .chair > div.height .value {
  top: calc(50% - 1.6rem);
  left: -5rem;
}
.product__about .chairs .chair--wrapper {
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
}
.product__about .chairs .chair--wrapper.active {
  display: block;
  opacity: 1;
  visibility: visible;
  transition-delay: .2s;
}
.product__about .chairs .button--chair {
  display: flex;
  margin: 0 auto;
  margin-top: 6rem;
  font-size: 1.6rem;
  padding: 1rem 2rem;
  padding-right: 3rem;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.1);
  color: rgba(42, 54, 60, 0.8);
  text-decoration: none;
  font-weight: bold;
  border-radius: 2.9rem;
  transition: all 0.2s ease-in;
}
.product__about .chairs .button--chair .arrow {
  background: #f7f9fa;
  height: 3.8rem;
  width: 3.8rem;
  border-radius: 50%;
  color: #ffffff;
  margin-left: -.8rem;
  margin-right: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in;
}
.product__about .chairs .button--chair .arrow svg {
  opacity: .5;
  transition: all 0.2s ease-in;
}
.product__about .chairs .button--chair .arrow svg path {
  transition: all 0.2s ease-in;
}
.product__about .chairs .button--chair:hover {
  color: #2a363c;
}
.product__about .chairs .button--chair:hover svg {
  opacity: 1;
}
.product__about .chairs .button--chair.active {
  background: #2a363c;
  color: #ffffff;
}
.product__about .chairs .button--chair.active .arrow {
  background: #ffffff;
}
.product__about .chairs .button--chair.active .arrow svg {
  opacity: 1;
}
.product__about .chairs .button--chair.active .arrow svg path {
  fill: #2a363c;
}
@media (max-width: 1270px) {
  .product__about .chairs .chair > div.height {
    left: 2.5rem;
  }
}
@media (max-width: 768px) {
  .product__about {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .product__about .grid--small {
    flex-direction: column;
  }
  .product__about .chairs {
    max-width: 100%;
  }
  .product__about .chairs .chair > img {
    max-height: 40vh;
    margin: 0rem;
    margin-bottom: 3rem;
  }
  .product__about .chairs .chair > div {
    display: none;
  }
  .product__about .chairs .chair a.button--chair {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
  .product__about .chairs .buttons-wrapper {
    display: none;
  }
  .product__about .content {
    display: flex;
    flex-direction: column;
    margin-top: -4rem;
    max-width: 100%;
  }
  .product__about .content .tabs {
    order: -1;
    align-self: center;
    max-width: 45rem;
    margin-bottom: 1.5rem;
  }
  .product__about .content .tabs .tab {
    padding: 0 1.5rem;
  }
  .product__about .content .tabs .tab__content {
    padding: 2.5rem 1.5rem;
  }
  .product__about .content .tabs .tab__content .row {
    flex-direction: column;
    margin-bottom: 2rem;
  }
  .product__about .content .tabs .tab__content .row:last-child {
    margin-bottom: 0rem;
  }
  .product__about .content .tabs .tab__content .row span {
    line-height: 2rem;
  }
  .product__about .content .tabs--sizes {
    order: 1;
    margin-top: 0;
  }
  .product__about .content h1 {
    margin-bottom: 2rem;
  }
}
.product__how {
  background: #ffffff;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: -7rem;
  padding-top: 10rem;
}
.product__how .grid--xs {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.product__how .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  max-width: 54.6rem;
  margin-bottom: 7rem;
}
.product__how .content h2 {
  margin-bottom: 1.5rem;
}
.product__how .video {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product__how .video img {
  z-index: 1;
}
.product__how .video .play {
  width: 5.3rem;
  height: 5.3rem;
  position: absolute;
  border-radius: 50%;
  left: calc(50% - (5.3rem / 2));
  background: #2a363c;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}
.product__how .video .play::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: -2.1rem;
  bottom: -2rem;
  background: #2a363c;
  width: 9.4rem;
  height: 9.4rem;
  opacity: .3;
  z-index: -1;
}
@media (max-width: 768px) {
  .product__how {
    padding-top: 3rem;
  }
  .product__how .content {
    margin-bottom: 3rem;
  }
  .product__how .content h2 {
    margin-bottom: 0;
  }
}
.product__options {
  background: #f7f9fa;
  width: 100%;
  padding-top: 20rem;
  padding-bottom: 12rem;
}
.product__options .grid--small {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
}
.product__options .content {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 45rem;
  margin-right: auto;
}
.product__options .content h2 {
  font-weight: normal;
  font-size: 3.6rem;
  line-height: 4.8rem;
  margin-bottom: 1.5rem;
}
.product__options .content .button {
  margin-top: 4rem;
}
.product__options-slider {
  width: 100%;
  display: flex;
  flex-direction: column;
  max-width: 60rem;
}
.product__options .slider {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.product__options .slider .swiper-slide {
  width: 100%;
  height: 43rem;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.product__options .slider .swiper-slide img {
  height: auto;
  width: auto;
  object-fit: contain;
}
.product__options .slider .swiper-slide span.title {
  display: none;
}
.product__options .swiper-pagination {
  width: 100%;
  max-width: 16rem;
  background: rgba(42, 54, 60, 0.2);
  height: .1rem;
  position: relative;
  display: flex;
  margin: 0 2rem;
}
.product__options .swiper-pagination-progressbar-fill {
  background: #0085ff;
  height: .3rem;
  top: -.1rem;
}
.product__options .pagination {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  margin-top: .3rem;
}
.product__options .pagination span.digit {
  font-size: 1.6rem;
  opacity: .7;
  width: .5rem;
}
.product__options .navigation {
  width: 100%;
  position: relative;
  background: #ffffff;
  height: auto;
  display: flex;
  flex-direction: row;
  padding: 2.75rem 4.5rem;
  margin-top: 4rem;
}
.product__options .navigation span.title {
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 3.2rem;
}
.product__options .navigation--bar {
  display: flex;
  flex-direction: column;
  margin-right: auto;
  width: 30rem;
  justify-content: center;
}
.product__options .navigation--arrows {
  display: flex;
  width: auto;
  align-items: center;
}
.product__options .navigation--arrows .slide__nav {
  position: relative;
  display: flex;
  z-index: 999;
  justify-content: center;
  width: auto;
  margin-left: auto;
}
.product__options .navigation--arrows .slide__nav--prev,
.product__options .navigation--arrows .slide__nav--next {
  height: 7rem;
  width: 7rem;
  display: flex;
  background: #2a363c;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  align-items: center;
  justify-content: center;
}
.product__options .navigation--arrows .slide__nav--prev svg,
.product__options .navigation--arrows .slide__nav--next svg {
  margin: 0 auto;
}
.product__options .navigation--arrows .slide__nav--prev polygon,
.product__options .navigation--arrows .slide__nav--next polygon {
  fill: #ffffff;
}
.product__options .navigation--arrows .slide__nav--prev.swiper-button-disabled,
.product__options .navigation--arrows .slide__nav--next.swiper-button-disabled {
  background: rgba(42, 54, 60, 0.9);
  cursor: default;
}
@media (max-width: 768px) {
  .product__options {
    padding-top: 10rem;
    padding-bottom: 3rem;
  }
  .product__options .grid--small {
    flex-direction: column;
  }
  .product__options .content {
    margin-bottom: 3rem;
    max-width: 100%;
  }
  .product__options .content h2 {
    font-size: 3rem;
    line-height: 4rem;
  }
  .product__options .content a.button {
    margin-top: 3rem;
  }
  .product__options .navigation--arrows {
    position: absolute;
    top: 0;
    right: 0;
  }
  .product__options .navigation--arrows .slide__nav {
    margin-top: -7rem;
  }
}
.product__downloads {
  width: 100%;
  position: relative;
  padding-top: 20rem;
  /* padding-bottom: 16rem; */
  padding-bottom: 10.4rem;
}
.product__downloads .grid--small {
  display: flex;
  flex-direction: column;
}
.product__downloads .content {
  display: flex;
  /* align-items: center;  */
  width: 100%;
  margin-bottom: 4rem;
}
.product__downloads .content h2 {
  margin-right: auto;
  max-width: 39.3rem;
  font-weight: normal;
  font-size: 3.6rem;
  line-height: 4.4rem;
}
.product__downloads .content p {
  max-width: 69rem;
}
.product__downloads .image {
  padding-top: 4.8rem;
}
.product__downloads .image img {
  max-width: 100%;
  height: auto;
}
.product__downloads .downloads {
  min-width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.8rem;
}
.product__downloads .downloads li {
  display: flex;
  flex-direction: row;
  margin-bottom: 2rem;
  height: 7rem;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  flex-basis: 50%;
  max-width: 50%;
  transition: all 0.2s ease-in-out;
  padding: 0 0.8rem;
}
.product__downloads .downloads li a {
  text-decoration: none;
  color: #2a363c;
  background: #f7f9fa;
  border: 0.1rem solid rgba(74, 74, 74, 0.2);
  display: flex;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 3.2rem;
  color: rgba(42, 54, 60, 0.8);
  padding: 0 3rem;
  height: 100%;
  width: 100%;
  position: relative;
  align-items: center;
  transition: all 0.1s ease-in-out;
}
.product__downloads .downloads li a:hover {
  background: #eaf0f2;
}
.product__downloads .downloads li a .pdf {
  min-width: 8.1rem;
  width: 8.1rem;
  height: 3.2rem;
  background: #2a363c;
  color: #ffffff;
  margin-right: 3rem;
  text-transform: uppercase;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product__downloads .downloads li a .download {
  position: absolute;
  right: 3rem;
  top: 50%;
  margin-left: auto;
  width: auto;
  height: auto;
  padding: 0;
  transform: translate(0, -50%);
  display: flex;
  align-items: center;
}
.product__downloads .downloads__images {
  display: flex;
  flex-direction: row;
  margin-top: 4rem;
  align-items: center;
}
@media (max-width: 767px) {
  .product__downloads .downloads__images {
    flex-direction: column;
    margin-top: 2rem;
  }
}
.product__downloads .downloads__image--70 {
  flex-basis: 70%;
  max-width: 70%;
  padding-right: 3rem;
}
.product__downloads .downloads__image--30 {
  flex-basis: 30%;
  max-width: 30%;
  padding-left: 3rem;
}
.product__downloads .downloads__image img {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .product__downloads .downloads__image--70,
  .product__downloads .downloads__image--30 {
    flex-basis: 100%;
    max-width: 100%;
    padding-right: 0rem;
    padding-left: 0rem;
  }
  .product__downloads .downloads__image--70 {
    padding-bottom: 5rem;
  }
}
@media (max-width: 768px) {
  .product__downloads {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .product__downloads .grid--small {
    flex-direction: column;
  }
  .product__downloads .content {
    flex-direction: column;
    margin-bottom: 3rem;
    align-items: flex-start;
  }
  .product__downloads .content h2 {
    margin-bottom: 1.5rem;
  }
  .product__downloads ul.downloads {
    width: 100%;
    margin: 0 auto;
    flex-direction: column;
  }
  .product__downloads ul.downloads li {
    width: 100%;
    margin-bottom: 2rem;
    padding: 0;
    flex-basis: auto;
    max-width: 100%;
  }
  .product__downloads ul.downloads li a {
    line-height: 2rem;
    padding: 2rem;
    padding-right: 5rem;
  }
  .product__downloads ul.downloads li a .download {
    right: 2rem;
  }
}
.product__contact {
  width: 100%;
  height: 21rem;
  margin-bottom: -10.5rem;
  position: relative;
  display: flex;
  padding: 5rem;
  background: #0085ff;
  color: #ffffff;
  border-radius: .4rem;
  justify-content: flex-start;
}
.product__contact .content {
  width: 100%;
  max-width: 28.2rem;
  margin-right: auto;
}
.product__contact .content h3 {
  font-size: 2.6rem;
  line-height: 4.2rem;
  margin-bottom: 1rem;
}
.product__contact .content p {
  font-size: 1.6rem;
  opacity: .8;
  line-height: 2.4rem;
}
.product__contact .box {
  height: 24rem;
  width: 21.8rem;
  top: -7rem;
  position: absolute;
  left: calc(50% - 10.9rem);
}
.product__contact .box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.product__contact .buttons {
  display: flex;
  flex-direction: row;
  width: auto;
  justify-content: center;
  align-items: center;
}
.product__contact .buttons a {
  width: auto;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 2.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  color: #ffffff;
  transition: all 0.2s ease-in-out;
}
.product__contact .buttons a:first-of-type {
  background: #ffffff;
  color: #0085ff;
  margin-right: 3rem;
  padding-right: 4rem;
  padding-left: 4rem;
  height: 5.4rem;
  border: 0.2rem solid #ffffff;
}
.product__contact .buttons a:first-of-type:hover {
  color: #2a363c;
}
.product__contact .buttons a:last-of-type:hover {
  text-decoration: underline;
}
@media (max-width: 1005px) {
  .product__contact {
    border-radius: 0;
  }
  .product__contact .box {
    display: none;
  }
}
@media (max-width: 768px) {
  .product__contact.grid--small {
    flex-direction: column;
    height: 100%;
    padding: 3rem 2.5rem;
    border-radius: 0;
  }
  .product__contact .box {
    display: none;
  }
  .product__contact .content {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    margin: 0 auto;
    margin-bottom: 3rem;
  }
  .product__contact .buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  .product__contact .buttons a:last-of-type {
    margin-top: 1.5rem;
    text-decoration: underline;
  }
}
.product .two-column-text {
  padding-top: 10.4rem;
}
@media (max-width: 768px) {
  .product .two-column-text {
    padding-top: 4rem;
  }
}
.two-column {
  display: flex;
  flex-direction: row;
  width: 100%;
}
.two-column__column {
  flex-basis: 50%;
  max-width: 50%;
}
.two-column__column:first-of-type {
  padding-right: 1.5rem;
}
.two-column__column:last-of-type {
  padding-left: 1.5rem;
}
@media (max-width: 768px) {
  .two-column__column {
    margin-bottom: 2rem;
  }
  .two-column__column:first-of-type {
    padding-right: 0 !important;
  }
  .two-column__column:last-of-type {
    padding-left: 0 !important;
  }
}
.two-column__column p {
  font-size: 1.6rem;
  line-height: 3rem;
}
body.page-template-page_klanten .two-column {
  padding-top: 7rem;
  padding-bottom: 6.4rem;
}
@media (max-width: 768px) {
  .two-column {
    flex-direction: column;
  }
  .two-column__column {
    flex-basis: 100%;
    max-width: 100%;
  }
  body.page-template-page_klanten .two-column {
    padding-bottom: 2rem;
  }
}
/* ********************
Contact
******************** */
.page-template-page_contact .newsletter-cta::before {
  background: #ffffff;
}
.contact__about {
  background: #f7f9fa;
  width: 100%;
  padding-top: 10rem;
  padding-bottom: 45rem;
}
.contact__about .grid--medium {
  justify-content: flex-start;
  flex-direction: column;
}
.contact__about .content {
  max-width: 60.5rem;
  width: 100%;
  padding-bottom: 8rem;
}
.contact__about .content h1 {
  margin-bottom: 2rem;
}
.contact__about .content-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 6rem;
}
@media (max-width: 768px) {
  .contact__about .content-right {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-bottom: 0;
  }
}
@media (max-width: 480px) {
  .contact__about .content-right {
    align-items: center;
  }
}
.contact__about .buttons {
  max-width: 81.9rem;
  width: 100%;
  position: relative;
  display: flex;
}
.contact__about .buttons a {
  width: 50%;
  display: flex;
  align-items: center;
  height: 7rem;
  padding: 0 3rem;
  padding-right: 4rem;
  background: #2a363c;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.7rem;
  border: 0.1rem solid #2a363c;
  transition: all 0.2s ease-in-out;
}
.contact__about .buttons a:hover {
  background: #20292d;
}
.contact__about .buttons a:last-of-type {
  background: transparent;
  border: .1rem solid #c1c1c1;
  border-left: none;
  color: rgba(42, 54, 60, 0.8);
}
.contact__about .buttons a:last-of-type:hover {
  border-color: #0085ff;
  color: #0085ff;
}
.contact__about .buttons a:last-of-type:hover svg path {
  fill: #0085ff;
  opacity: 1;
}
@media (max-width: 480px) {
  .contact__about .buttons a:last-of-type {
    margin-top: 16px;
    border-top: .1rem solid #c1c1c1 !important;
  }
}
.contact__about .buttons a svg {
  margin-right: auto;
}
.contact__about .buttons a svg path {
  transition: all 0.2s ease-in-out;
}
.contact__map {
  width: 100%;
  margin-top: -40.9rem;
}
.contact__map .wrapper {
  width: 100%;
  display: flex;
  height: 63.8rem;
  position: relative;
}
.contact__map .wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact__map .wrapper .bottom {
  position: absolute;
  width: auto;
  right: 0;
  bottom: 0;
  display: flex;
}
.contact__map .wrapper .bottom #map {
  width: 34.5rem;
  height: 22.9rem;
  background: black;
}
.contact__map .wrapper .bottom #map a[href^="http://maps.google.com/maps"] {
  display: none !important;
}
.contact__map .wrapper .bottom #map a[href^="https://maps.google.com/maps"] {
  display: none !important;
}
.contact__map .wrapper .bottom #map .gmnoprint a,
.contact__map .wrapper .bottom #map .gmnoprint span,
.contact__map .wrapper .bottom #map .gm-style-cc {
  display: none;
}
.contact__map .wrapper .bottom #map .gmnoprint div {
  background: none !important;
}
.contact__map .wrapper .bottom .info {
  width: 28.4rem;
  height: 22.9rem;
  background: white;
  padding: 5rem;
  padding-bottom: 0;
}
.contact__map .wrapper .bottom .info h3 {
  font-size: 2.2rem;
  line-height: 2.9rem;
  opacity: .8;
}
.contact__map .wrapper .bottom .info span {
  opacity: .8;
  font-size: 1.7rem;
  line-height: 3.2rem;
  display: flex;
  width: 100%;
}
.contact__form {
  background: #ffffff;
  padding-top: 8rem;
  width: 100%;
}
.contact__form .grid--medium {
  flex-direction: column;
}
.contact__form .content {
  max-width: 60.5rem;
  width: 100%;
  margin-bottom: 5rem;
}
.contact__form .content h3 {
  font-size: 2.6rem;
  line-height: 3.4rem;
}
.contact__form .gform_confirmation_message {
  color: green;
}
.contact__form .validation_error,
.contact__form .validation_message {
  color: #cc0505;
}
.contact__form form .gform_body {
  margin: 0 -1.5rem;
}
.contact__form form ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.contact__form form ul li {
  width: 50%;
  padding: .9rem 1.5rem;
}
.contact__form form ul li label {
  display: none;
}
.contact__form form ul li.gsection {
  width: 100%;
  padding-bottom: 0;
  padding-top: 0;
}
.contact__form form ul li.gsection h2 {
  font-size: 1.4rem;
  font-weight: 600;
  opacity: .3;
  margin-left: 0;
  text-transform: uppercase;
}
.contact__form form input {
  height: 8.1rem;
  width: 100%;
  padding: 0 3.5rem;
  font-size: 1.8rem;
  color: #2a363c;
  font-family: 'Roboto Slab';
  border: 0.1rem solid rgba(155, 155, 155, 0.3);
}
.contact__form form input::placeholder {
  opacity: .5;
}
.contact__form form input[type=submit] {
  color: #ffffff;
  padding: 0;
  font-size: 1.6rem;
  font-weight: bold;
  max-width: 21rem;
  justify-content: center;
  border: none;
  font-family: 'Karla';
  margin-top: 2rem;
}
.contact__form form .gfield_visibility_hidden {
  display: none;
}
.contact__form form .gform_validation_container {
  display: none;
}
.contact__form form .textarea {
  width: 100%;
  height: 16rem;
}
.contact__form form .textarea .ginput_container {
  width: 100%;
  height: 100%;
}
.contact__form form .textarea textarea {
  width: 100%;
  resize: none;
  height: 100%;
  padding: 2.5rem 3.5rem;
  border: 0.1rem solid rgba(155, 155, 155, 0.3);
  font-size: 1.8rem;
  color: #2a363c;
  font-family: 'Roboto Slab';
}
.contact__form form .textarea textarea::placeholder {
  opacity: .5;
}
@media (max-width: 768px) {
  .contact form {
    padding-bottom: 2.5rem;
  }
  .contact form ul li {
    width: 100%;
  }
  .contact form input,
  .contact form textarea {
    -webkit-appearance: none;
    border-radius: 0;
  }
  .contact form input[type=submit] {
    width: 100%;
    margin-right: 0;
  }
  .contact__about {
    padding-top: 3rem;
  }
  .contact__about .content {
    padding-bottom: 3rem;
  }
  .contact__about .buttons {
    flex-direction: column;
    padding-bottom: 0;
  }
  .contact__about .buttons a {
    width: 100%;
    max-width: 41rem;
  }
  .contact__about .buttons a:last-child {
    border: .1rem solid #c1c1c1;
    border-top: none;
  }
  .contact__map .grid--medium {
    padding: 0;
  }
  .contact__map .wrapper {
    height: auto;
    flex-direction: column;
  }
  .contact__map .wrapper img {
    height: 30rem;
  }
  .contact__map .wrapper .bottom {
    position: relative;
    flex-direction: column;
  }
  .contact__map .wrapper .bottom #map {
    width: 100%;
  }
  .contact__map .wrapper .bottom .info {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 3rem 2.5rem;
    padding-bottom: 0;
  }
  .contact__map .wrapper .bottom .info h3 {
    margin-bottom: .5rem;
  }
  .contact__form {
    padding-top: 3rem;
  }
  .contact__form .content {
    margin-bottom: 2rem;
  }
  .contact__form .content h3 {
    margin-bottom: 1rem;
  }
}
@media (max-width: 480px) {
  .contact__about .buttons a {
    max-width: 100%;
  }
}
/* ********************
Clients
******************** */
.home .clients .grid--medium {
  align-items: center;
}
.home .clients .grid--medium .client__wrapper .client__card {
  margin: 0 1rem;
  margin-bottom: 2.5rem;
}
.clients {
  background: #ffffff;
  padding-top: 20rem;
  padding-bottom: 12.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.clients .grid--medium {
  flex-direction: column;
  text-align: center;
  width: 100%;
}
.clients .grid--medium a.button {
  margin: 0 auto;
}
.clients .grid--medium .client__content {
  max-width: 73.1rem;
  margin: 0 auto;
  margin-bottom: 6.5rem;
}
.clients .grid--medium .client__content h2 {
  margin-bottom: 1.5rem;
}
.clients .grid--medium .client__card {
  display: flex;
  background: #f7f9fa;
  flex: 1;
  width: 100%;
  height: 15rem;
  padding: 0 2rem;
  justify-content: center;
  align-items: center;
  border: 0.1rem solid rgba(74, 74, 74, 0.2);
}
.clients .grid--medium .client__card img {
  /* filter: grayscale(100%); opacity: 0.5; */
  max-height: 6rem;
  max-width: 14rem;
}
.clients .grid--medium .client__wrapper {
  display: flex;
  margin: 0 -1rem;
  margin-bottom: 5.5rem;
  width: 100%;
}
.clients .grid--medium .client__wrapper .col-1-4 {
  padding: 0 1rem;
}
@media (max-width: 768px) {
  .clients {
    padding-top: 10rem;
    padding-bottom: 3rem;
  }
  .clients .grid--medium .client__wrapper {
    flex-wrap: wrap;
    flex-direction: row;
    margin: 0;
  }
  .clients .grid--medium .client__card {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 2.5rem;
  }
  .clients .grid--medium .client__card:first-of-type {
    display: none;
  }
  .clients .grid--medium .client__card:nth-of-type(2) {
    display: none;
  }
  .clients .grid--medium .client__card:nth-of-type(3) {
    margin-right: 1.25rem;
  }
  .clients .grid--medium .client__card:nth-of-type(4) {
    margin-left: 1.25rem;
  }
  .clients .grid--medium .client__card:last-of-type {
    display: none;
  }
  .clients .grid--medium .client__content {
    margin-bottom: 3rem;
  }
}
@media (max-width: 500px) {
  .clients .grid--medium .client__card:nth-of-type(3) {
    margin: 0;
    margin-bottom: 3rem;
  }
  .clients .grid--medium .client__card:nth-of-type(4) {
    margin: 0;
    margin-bottom: 3rem;
  }
}
/* ********************
Two column text
******************** */
.two-column-text {
  background: #f7f9fa;
  padding-top: 12rem;
  padding-bottom: 2rem;
}
.two-column-text h5 {
  font-weight: normal;
  max-width: 44rem;
}
@media (max-width: 768px) {
  .two-column-text {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .two-column-text h5 {
    margin-bottom: 2rem;
    font-size: 2.4rem;
    line-height: 3.6rem;
  }
  .two-column-text .grid--small {
    flex-direction: column;
  }
  .two-column-text .grid--small .col-1-2 {
    width: 100%;
  }
}
.two-column-text__row:nth-child(2) {
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .two-column-text__row:nth-child(2) {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}
.two-column-text__image {
  height: auto;
  width: 28rem;
  max-width: 100%;
}
.two-column-text__image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
/* ********************
CTA
******************** */
.cta {
  height: 71.7rem;
  width: 120%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
}
.cta__content {
  position: absolute;
  background: #0085ff;
  display: flex;
  flex-direction: column;
  /* height: 47.4rem; */
  bottom: 0;
  color: #ffffff;
  padding: 9rem;
  max-width: 69rem;
  justify-content: center;
}
.cta .button-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  margin-top: 5rem;
}
.cta .button-wrapper .button--white {
  margin-left: 4rem;
  line-height: 8rem;
  transition: all 0.2s ease-in-out;
}
.cta .button-wrapper .button--white:hover {
  text-decoration: underline;
}
.cta .button-wrapper .col-1-2 {
  width: auto !important;
}
@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}
/* ********************
Onze klanten // NOTE: This is only to change some blocks layouts for this specific page, as they defer from the default styling.
******************** */
.onze-klanten .grid {
  position: relative;
  height: 45.7rem;
  width: 100%;
  background: #ffffff;
}
.onze-klanten .text-gallery {
  padding-bottom: 14rem;
  padding-top: 14rem;
}
.onze-klanten .text-gallery__slider {
  margin-bottom: 0;
}
.onze-klanten .text-gallery__slider .swiper-slide {
  height: 52.3rem;
}
.onze-klanten .inspiration {
  margin-bottom: 0;
  padding-bottom: 4rem;
  padding-top: 45rem;
}
.onze-klanten .inspiration__slide:hover span {
  background: #0085ff;
}
.onze-klanten .inspiration__slide span {
  background: #f7f9fa;
}
.onze-klanten .inspiration .content p {
  font-size: 1.6rem;
  line-height: 2.8rem;
}
.onze-klanten .clients {
  padding-top: 8.5rem;
  background: #f7f9fa;
  padding-bottom: 0;
}
.onze-klanten .clients .grid--medium {
  text-align: left;
}
.onze-klanten .clients .grid--medium h1 {
  margin-bottom: 2rem;
}
.onze-klanten .clients .grid--medium p {
  font-size: 1.6rem;
  line-height: 2.8rem;
  max-width: 80rem;
}
.onze-klanten .clients .client__wrapper {
  flex-wrap: wrap;
  margin: 0 -1rem;
  padding-top: 0rem;
}
.onze-klanten .clients .client__wrapper .client__card {
  margin: 2rem 0;
  width: 100%;
  height: 20.5rem;
  position: relative;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}
.onze-klanten .clients .client__wrapper .client__card .overlay {
  opacity: 0;
  visibility: hidden;
  top: 2.5rem;
  left: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  background: #ffffff;
  transition: all 0.2s ease-in-out;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 3rem;
}
.onze-klanten .clients .client__wrapper .client__card .overlay img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}
.onze-klanten .clients .client__wrapper .client__card img {
  transition: all 0.4s ease-in-out;
  z-index: 4;
  filter: grayscale(0);
  max-width: 15rem;
  max-height: 10rem;
}
.onze-klanten .clients .client__wrapper .client__card:hover {
  border: 0.1rem solid #0085ff;
}
.onze-klanten .clients .client__wrapper .client__card:hover .overlay {
  z-index: 3;
  transform: translateY(-2.5rem);
  opacity: 1;
  visibility: visible;
  transition-delay: .2s;
}
.onze-klanten .clients .client__wrapper .client__card:hover .overlay img {
  opacity: 1;
}
.onze-klanten .clients .client__wrapper .client__card:hover img.logo {
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 768px) {
  .onze-klanten .clients {
    padding-top: 3rem;
  }
  .onze-klanten .clients .col-1-1 {
    width: 100%;
  }
  .onze-klanten .clients .client__wrapper {
    padding-top: 2rem;
    flex-direction: row;
    padding-bottom: 2rem;
    margin: 0 auto;
    margin-bottom: -8rem;
  }
  .onze-klanten .clients .client__wrapper .col-1-4 {
    width: 50%;
    padding: 1.25rem 0;
  }
  .onze-klanten .clients .client__wrapper .client__card {
    width: 100%;
    height: 20rem;
    display: flex;
    margin: 0 auto;
  }
  .onze-klanten .text-gallery {
    padding-bottom: 0;
    padding-top: 3rem;
  }
  .onze-klanten .text-gallery__slider {
    padding-bottom: 0;
  }
  .onze-klanten .text-gallery__slider .swiper-slide {
    height: 25rem;
  }
  .onze-klanten .cta {
    background-attachment: scroll;
    width: 100%;
  }
  .onze-klanten .cta__content {
    padding: 3rem;
    height: auto;
    padding-bottom: 4rem;
    width: 100%;
  }
  .onze-klanten .cta .button-wrapper {
    flex-direction: column;
    margin-top: 3rem;
  }
  .onze-klanten .cta .button-wrapper > div.col-1-2 {
    width: 100%;
    display: flex;
  }
  .onze-klanten .cta .button-wrapper > div.col-1-2 .button {
    display: flex;
    height: auto;
  }
  .onze-klanten .cta .button-wrapper > div.col-1-2 .button--white {
    margin-left: 0;
    text-decoration: underline;
    line-height: 3rem;
    margin-top: 3rem;
  }
  .onze-klanten .cta .img-wrapper {
    height: 35rem;
    width: 100%;
  }
  .onze-klanten .cta .img-wrapper img {
    object-fit: cover;
    height: 100%;
    width: 100%;
  }
  .onze-klanten .inspiration {
    padding-top: 36rem;
  }
}
@media (max-width: 500px) {
  .onze-klanten .clients .client__wrapper .col-1-4 {
    width: 100%;
  }
}
/* ********************
Modal overlay (Klant)
******************** */
.modal {
  display: flex;
  position: fixed;
  width: 100%;
  min-height: 100vh;
  height: auto;
  top: 0;
  right: -100%;
  z-index: 999999;
  transition: all 500ms ease;
}
.modal::before {
  position: absolute;
  width: 100%;
  min-height: 100vh;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 99998;
  content: "";
  background: #2a363c;
  opacity: 0;
  transition: 600ms ease;
  transition-delay: 200ms;
}
.modal.active {
  transform: translateX(-100%);
}
.modal.active:before {
  opacity: 0.7;
}
.modal #close {
  margin-left: auto;
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 3.2rem;
  height: 3.2rem;
  background-image: url("/app/themes/festivalchairs/static/images/icon--close.svg");
  background-size: 1.2rem 1.3rem;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  z-index: 100000;
  transition: all 0.2s ease-in-out;
}
.modal__content {
  width: 100%;
  max-width: 132.7rem;
  margin-left: auto;
  background: #ffffff;
  z-index: 99999;
}
.modal__content--left,
.modal__content--right {
  display: flex;
  flex-direction: column;
}
.modal__content--left {
  background: #f7f9fa;
}
.modal__content--right {
  padding: 7.5rem 7rem 24rem 7rem;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  height: 100vh;
}
.modal .col-1-2 {
  min-height: 100vh;
  height: auto;
  position: relative;
}
.modal .content {
  margin-bottom: 3rem;
}
.modal .content p {
  font-size: 1.7rem;
  margin-bottom: 2rem;
}
.modal__title {
  font-size: 2.8rem;
  line-height: 3.7;
  font-weight: bold;
}
.modal__logo {
  border: 0.1rem solid rgba(151, 151, 151, 0.34);
  justify-content: center;
  align-content: center;
  align-items: center;
  padding: 1.5rem;
  margin-right: auto;
  margin-bottom: 5rem;
}
.modal__logo img {
  height: auto;
  width: auto;
  object-fit: contain;
  display: flex;
  max-width: 14rem;
  max-height: 14rem;
}
.modal__chair {
  width: 100%;
  height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  position: relative;
}
.modal__chair img {
  height: auto;
  width: auto;
  object-fit: contain;
  display: flex;
  max-width: 34rem;
  max-height: 34rem;
  mix-blend-mode: multiply;
}
.modal__link {
  font-size: 1.6rem;
  color: #0085ff;
  line-height: 2.6rem;
  font-weight: bold;
  text-decoration: none;
}
.modal__link:hover:after {
  margin-left: 2.5rem;
}
.modal__link:after {
  position: relative;
  background-image: url('/app/themes/festivalchairs/static/images/blue-arrow--right.svg');
  content: "";
  display: inline-block;
  width: 1.1rem;
  height: .8rem;
  transition: all 0.2s ease-in-out;
  margin-left: 2rem;
}
.modal__link.empty {
  display: none;
}
.modal__list-details {
  margin-top: -3rem;
  list-style: none;
  padding-left: 1.8rem;
  padding-bottom: 220px;
}
.modal__list-details li {
  font-size: 1.6rem;
  line-height: 3.2rem;
}
.modal__list-details li:before {
  content: "\2022";
  color: #0085ff;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
.modal__cta {
  height: 15rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #2a363c;
  position: absolute;
  bottom: 0;
  left: 0;
  flex-direction: column;
}
.modal__cta > a {
  background: #0085ff;
  height: 8rem;
  line-height: 8rem;
  text-align: center;
  margin: 0 auto;
}
.modal__cta > a:hover {
  background: #0078e6;
}
.modal__cta:before {
  position: absolute;
  z-index: 10;
  content: "";
  height: 3rem;
  width: 100%;
  top: -3rem;
  background-image: linear-gradient(-360deg, #ffffff 0%, rgba(255, 255, 255, 0.4) 100%);
}
.modal__slider {
  position: relative;
  overflow: hidden;
  height: 55vh;
}
.modal__slider .swiper-slide {
  height: 100%;
}
.modal__slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal__slider .swiper-wrapper {
  position: relative;
  z-index: 800;
}
.modal .slide__nav {
  position: absolute;
  display: flex;
  z-index: 999;
  justify-content: flex-start;
  bottom: 0;
  left: 0;
}
.modal .slide__nav--prev,
.modal .slide__nav--next {
  height: 7rem;
  width: 7rem;
  display: flex;
  background: #f7f9fa;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.modal .slide__nav--prev.swiper-button-disabled svg,
.modal .slide__nav--next.swiper-button-disabled svg {
  opacity: 0.2;
}
.modal .slide__nav--prev.swiper-button-disabled:hover,
.modal .slide__nav--next.swiper-button-disabled:hover {
  background: #f7f9fa;
  cursor: default;
}
.modal .slide__nav--prev:hover,
.modal .slide__nav--next:hover {
  background: #e7edf0;
}
.modal .slide__nav--prev svg,
.modal .slide__nav--next svg {
  margin: 0 auto;
  transition: all 0.2s ease-in-out;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.modal .loader__overlay {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 1000000;
  content: "";
  background: #2a363c;
  opacity: 1;
  justify-content: center;
  align-items: center;
  align-content: center;
  transition: all 300ms ease;
}
.modal .loader__overlay .loader {
  border: 0.5rem solid #ffffff;
  animation: spin 1s linear infinite;
  border-top: 0.5rem solid #0085ff;
  border-radius: 50%;
  width: 5rem;
  height: 5rem;
}
.modal .loader__overlay.loaded {
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 768px) {
  .modal:before {
    display: none;
  }
  .modal .col-1-2 {
    width: 100%;
    order: 1;
    height: auto;
    min-height: auto;
  }
  .modal__content {
    height: 100vh;
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
  }
  .modal__content--left.col-1-2 {
    order: 2;
    min-height: 100vh;
    padding-top: 0rem;
  }
  .modal__content--right {
    height: auto;
    overflow-y: visible;
    padding: 3rem;
  }
  .modal__chair {
    height: 40vh;
    padding-top: 3rem;
    padding-bottom: 9rem;
  }
  .modal__chair img {
    object-fit: contain;
    width: 100%;
    height: 100%;
  }
  .modal__slider {
    height: 60vh;
  }
  .modal__cta {
    position: relative;
    z-index: 1000;
    margin-top: 0rem;
  }
  .modal #close {
    mix-blend-mode: difference;
  }
}
/* ********************
News single page
******************** */
.page-template-page_inspiratie .newsletter-cta::before {
  background: #ffffff;
}
.news__single.inspiration__single .news__single-top {
  padding-bottom: 15rem;
}
.news__single.inspiration__single .news__single-top--small {
  padding-bottom: 5rem;
}
.news__single.inspiration__single .news__single-content--second {
  padding-bottom: 0;
  padding-top: 7rem;
}
.news__single.inspiration__single .news__single-content--second p {
  margin-bottom: 3rem;
}
.news__single.inspiration__single .inspiration__single-slider {
  margin-top: -10rem;
  overflow: hidden;
  position: relative;
  margin-bottom: -4rem;
  height: 47rem;
  padding: 0;
}
.news__single.inspiration__single .inspiration__single-slider .slide__nav {
  position: absolute;
  bottom: 0rem;
  right: 0;
  display: flex;
  z-index: 999;
}
.news__single.inspiration__single .inspiration__single-slider .slide__nav--prev,
.news__single.inspiration__single .inspiration__single-slider .slide__nav--next {
  height: 7rem;
  width: 7rem;
  display: flex;
  background: #2a363c;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  align-items: center;
}
.news__single.inspiration__single .inspiration__single-slider .slide__nav--prev svg,
.news__single.inspiration__single .inspiration__single-slider .slide__nav--next svg {
  margin: 0 auto;
}
.news__single.inspiration__single .inspiration__single-slider .slide__nav--prev polygon,
.news__single.inspiration__single .inspiration__single-slider .slide__nav--next polygon {
  transition: all 0.2s ease-in-out;
}
.news__single.inspiration__single .inspiration__single-slider .slide__nav--prev.swiper-button-disabled,
.news__single.inspiration__single .inspiration__single-slider .slide__nav--next.swiper-button-disabled {
  background: rgba(42, 54, 60, 0.9);
}
.news__single.inspiration__single .inspiration__single-slider .slide__nav--prev.swiper-button-disabled:hover,
.news__single.inspiration__single .inspiration__single-slider .slide__nav--next.swiper-button-disabled:hover {
  cursor: default;
}
.news__single.inspiration__single .inspiration__single-slider .slide__nav--prev.swiper-button-disabled path,
.news__single.inspiration__single .inspiration__single-slider .slide__nav--next.swiper-button-disabled path {
  opacity: .3;
}
.news__single.inspiration__single .inspiration__single-slider .news__single-image {
  height: 40rem;
}
.news__single.inspiration__single .inspiration__single-slider .news__single-image.contain {
  justify-content: center;
}
.news__single.inspiration__single .inspiration__single-slider .news__single-image.contain img {
  object-fit: unset;
  width: auto;
  height: 100%;
}
@media (max-width: 768px) {
  .news__single.inspiration__single .inspiration__single-slider {
    margin-bottom: -0.8rem;
    height: 39rem;
  }
  .news__single.inspiration__single .inspiration__single-slider .news__single-image {
    height: 32rem;
  }
}
.news__single-top {
  background: #f7f9fa;
  padding-top: 10rem;
  padding-bottom: 5rem;
}
.news__single-button {
  display: flex;
  align-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 1.6rem;
  line-height: 3.2rem;
  color: #2a363c;
  transition: all 0.2s ease-in-out;
  margin-bottom: 1.6rem;
}
.news__single-button:hover {
  color: #0085ff;
}
.news__single-button:before {
  content: "";
  position: relative;
  margin-right: 2rem;
  width: 1.6rem;
  height: 1.6rem;
  background-image: url('/app/themes/festivalchairs/static/images/icon--overview.svg');
  background-repeat: no-repeat;
  background-size: cover;
}
.news__single-date {
  color: #0085ff;
  font-size: 1.6rem;
  line-height: 3.2rem;
  margin-bottom: 1rem;
}
.news__single-image {
  width: 100%;
  max-height: 44rem;
  display: flex;
}
.news__single-image img {
  width: 100%;
  object-fit: cover;
  height: auto;
  max-width: 960px;
}
.news__single-image--full img {
  object-fit: contain;
}
.news__single-content--first,
.news__single-content--second {
  padding-top: 5rem;
  padding-bottom: 2rem;
}
.news__single-content--first p,
.news__single-content--second p {
  margin-bottom: 3rem;
}
.news__single-share {
  margin-bottom: 10rem;
  display: flex;
  flex-direction: column;
}
.news__single-share span {
  font-size: 1.6rem;
  line-height: 3.2rem;
  font-weight: bold;
  opacity: .8;
}
.news__single-share a {
  border-radius: 100%;
  height: 4.2rem;
  width: 4.2rem;
  border: 0.1rem solid rgba(42, 54, 60, 0.2);
  margin-left: 1rem;
  transition: all 0.1s ease-in-out;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
}
.news__single-share a svg path {
  transition: all 0.1s ease-in-out;
}
.news__single-share a:hover {
  border: 0.1rem solid #0085ff;
  background: #0085ff;
}
.news__single-share a:hover svg > path {
  fill: #ffffff;
}
.news__single-share:before {
  position: relative;
  height: .1rem;
  width: 100%;
  background: #2a363c;
  content: "";
  display: flex;
  opacity: .1;
  margin-bottom: 3rem;
}
.news__single-share--socials {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.news__single-share--socials ul.rrssb-buttons {
  display: flex;
}
.news__single-share--socials span {
  margin-right: auto;
}
.news__single-navigation {
  max-width: 104rem;
  display: flex;
  margin: 0 auto;
  width: 100%;
  justify-content: flex-start;
  padding-bottom: 6rem;
}
.news__single-navigation-cards {
  width: 100%;
  display: flex;
  justify-content: center;
}
.news__single-card {
  width: 100%;
  display: flex;
  position: relative;
  flex-direction: column;
  height: 17.3rem;
  color: white;
  overflow: hidden;
}
.news__single-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
  object-position: left;
}
.news__single-card--content {
  position: absolute;
  display: flex;
  flex-direction: column;
  z-index: 11;
  height: 100%;
  width: 100%;
  align-items: flex-end;
  justify-content: center;
  text-align: right;
}
.news__single-card--content .sub {
  opacity: .8;
  font-size: 1.6rem;
  line-height: 3.2rem;
  transition: all 0.2s ease-in-out;
}
.news__single-card svg {
  position: absolute;
  height: 100%;
  width: 1.6rem;
  z-index: 11;
}
.news__single-card:before {
  width: 100%;
  position: absolute;
  z-index: 10;
  display: flex;
  content: "";
  height: 100%;
  background-image: linear-gradient(-269deg, #2a363c 35%, rgba(42, 54, 60, 0) 120%);
}
.news__single-card:hover img {
  transform: scale(1.15);
}
.news__single-card:hover .sub {
  color: #0085ff;
}
.news__single--next {
  padding-left: 1.5rem;
}
.news__single--next .news__single-card svg {
  right: 3.5rem;
  top: 50%;
}
.news__single--next .news__single-card--content {
  text-align: left;
  align-items: flex-start;
  padding-left: 5rem;
}
.news__single--prev {
  padding-right: 1.5rem;
}
.news__single--prev .news__single-card svg {
  left: 3.5rem;
  top: 50%;
}
.news__single--prev .news__single-card--content {
  padding-right: 5rem;
}
.news__single--prev .news__single-card:before {
  transform: rotate(180deg);
}
@media (max-width: 1080px) {
  .news__single-navigation {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (max-width: 768px) {
  .news__single .inspiration__single-slider {
    padding: 0;
  }
  .news__single .inspiration__single-slider .news__single-image {
    width: 100%;
    height: 44rem;
  }
  .news__single.inspiration__single .news__single-top {
    padding-bottom: 13rem;
  }
  .news__single.inspiration__single .news__single-content--first,
  .news__single.inspiration__single .news__single-content--second {
    padding-bottom: 0rem;
    padding-top: 3rem;
  }
  .news__single-top {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .news__single-top h1 {
    font-size: 3.2rem;
    line-height: 4.2rem;
  }
  .news__single-content--first,
  .news__single-content--second {
    padding-bottom: 0rem;
    padding-top: 3rem;
  }
  .news__single-share {
    margin-bottom: 3rem;
  }
  .news__single-button {
    margin-bottom: 2rem;
  }
  .news__single-navigation {
    padding: 0;
  }
  .news__single-navigation-cards {
    margin: 0;
    flex-direction: column;
    padding: 0 2.5rem;
  }
  .news__single-navigation-cards > div {
    width: 100%;
    padding: 0;
    margin-bottom: 3rem;
  }
  .news__single-navigation-cards > div > a {
    min-height: 12rem;
    height: 100%;
    max-height: 15rem;
  }
  .news__single-navigation-cards > div .news__single-card--content {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .news__single-navigation-cards .news__single--prev svg {
    left: 3rem;
  }
  .news__single-navigation-cards .news__single--next svg {
    right: 3rem;
  }
}
@media (max-width: 321px) {
  .news__single .news__single-share--socials {
    justify-content: center;
  }
  .news__single .news__single-share--socials span {
    display: none;
  }
}
/* ********************
News
******************** */
.page-template-page_actueel .newsletter-cta::before {
  background: #ffffff;
}
.news {
  background: #f7f9fa;
  width: 100%;
  padding-top: 10rem;
  padding-bottom: 24rem;
  /*
	@media(max-width: 500px) 		{
		&__filter 					{
			&--controls 			{ flex-direction: column;
				button 				{ width: 100%; text-align: center; }
			}
		}
		&-overview 					{ margin-top: -10rem;
			&__card 				{
				&-wrapper 			{ width: 100%; max-height: 30rem;
					&:nth-of-type(even) 	{ margin-top: 3rem; }
					&:nth-of-type(odd) 		{ margin-top: 3rem; }
				}
			}
		}
		&-overview.inspiration-overview	{ margin-top: -13rem;
			.news-overview__card-wrapper{ max-height: 35rem;
				&:nth-of-type(even) 	{ margin-top: 3rem; }
				&:nth-of-type(odd) 		{ margin-top: 3rem; }
			}
		}
	}
*/
}
.news.inspiration {
  padding-bottom: 14rem;
}
.news .editor {
  display: flex;
  flex-direction: column;
}
.news__title {
  display: flex;
  flex-direction: row;
  margin-bottom: 6rem;
}
.news__title h1 {
  max-width: 410px;
}
.news__title p {
  margin-left: auto;
  max-width: 73.2rem;
  font-size: 1.6rem;
  line-height: 2.8rem;
}
.news__filter {
  display: flex;
  width: 100%;
  border: .1rem solid #c1c1c1;
  align-content: center;
  padding-left: 3rem;
  height: 7rem;
}
.news__filter--total {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.news__filter--total p {
  font-size: 1.7rem;
}
.news__filter--total .number {
  margin-right: 1.5rem;
  display: flex;
  justify-content: center;
  font-size: 1.5rem;
  border-radius: 50%;
  background: rgba(0, 133, 255, 0.2);
  width: 3.2rem;
  height: 3.2rem;
  color: #0085ff;
  font-weight: bold;
}
.news__filter--controls {
  margin-left: auto;
  position: relative;
  display: flex;
}
.news__filter--controls button {
  position: relative;
  width: 100%;
  height: 100%;
  right: 0;
  width: 20rem;
  text-align: center;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  padding-left: 3rem;
  padding-right: 3rem;
  font-family: 'Karla';
  font-size: 1.7rem;
  background: transparent;
  border: none;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  color: rgba(52, 54, 60, 0.7);
  text-decoration: underline;
}
.news__filter--controls .mixitup-control-active {
  border: none;
  color: #0085ff;
  cursor: default;
  text-decoration: none;
}
.news__filter--controls .mixitup-control-active:after {
  color: #ffffff;
}
.news-overview {
  width: 100%;
  height: auto;
  padding-bottom: 10rem;
  margin-top: -14rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.news-overview__cards {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
  flex-wrap: wrap;
  margin: 0 -1.5rem;
  padding-top: 1.5rem;
}
.news-overview__card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  max-width: 48rem;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.news-overview__card-wrapper {
  width: 50%;
  max-width: 48rem;
  /* height: 63.2rem; */
  height: 50rem;
  overflow: hidden;
  padding: 0 1.5rem;
  margin-top: 3rem;
}
.news-overview__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}
.news-overview__card--content {
  position: absolute;
  padding: 2rem 3rem;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: white;
  width: auto;
  max-width: calc(100% - 6rem);
}
.news-overview__card--content h2 {
  font-size: 1.8rem;
  line-height: 2.4rem;
  transition: all 0.2s ease-in-out;
  color: #2a363c;
}
.news-overview__card--content span {
  opacity: .7;
  font-size: 1.6rem;
  line-height: 2.4rem;
  display: block;
  color: #2a363c;
}
.news-overview__card--content span.intro {
  margin-top: .5rem;
  line-height: 2.6rem;
}
.news-overview__card:hover h2 {
  color: #0085ff;
}
.news-overview__card:hover img {
  transform: scale(1.08);
}
.news-overview.inspiration-overview .news-overview__card-wrapper {
  max-width: 48rem;
  max-height: 50rem;
}
.news-overview.inspiration-overview .news-overview__card--content {
  padding: 1.6rem 3.2rem;
  width: auto;
  right: 0;
  left: inherit;
  background: white;
  transition: all 0.3s ease-in-out;
}
.news-overview.inspiration-overview .news-overview__card--content h2 {
  font-size: 1.6rem;
  margin-bottom: 0rem;
  color: #2a363c;
  font-family: 'Karla';
  transition: all 0.3s ease-in-out;
}
.news-overview.inspiration-overview .news-overview__card--content:before {
  display: none;
  height: 22rem;
}
.news-overview.inspiration-overview .news-overview__card:hover .news-overview__card--content {
  background-color: #0085ff;
}
.news-overview.inspiration-overview .news-overview__card:hover .news-overview__card--content h2 {
  color: white;
}
@media only screen and (max-width: 1200px) and (min-width: 1024px) {
  .news-overview__card-wrapper {
    height: 42rem;
    padding: 0 1.2rem;
  }
}
.news-overview__card-wrapper {
  width: 33.333333%;
}
.news-overview__cards {
  width: calc(100% + 3rem);
  margin-left: -1.5rem;
}
@media (max-width: 1024px) {
  .news {
    padding-bottom: 14rem;
  }
  .news-overview__card-wrapper {
    height: 43.2rem;
  }
}
@media (max-width: 1023px) {
  .news {
    padding-bottom: 10.4rem;
    padding-top: 4rem;
  }
  .news-overview {
    margin-top: -12rem;
    padding-bottom: 3rem;
  }
  .news-overview__cards {
    margin: 0 1rem;
    padding: 0;
    padding-top: 3rem;
  }
  .news-overview__card {
    max-width: 100%;
  }
  .news-overview__card--content {
    padding: 3rem;
    padding-bottom: 2rem;
  }
  .news-overview__card-wrapper {
    width: 100%;
    max-width: 100%;
    padding: 0 1.5rem;
    max-height: 40rem;
  }
  .news__title {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 3rem;
  }
  .news__title h1 {
    margin-bottom: 1.5rem;
  }
  .news__title span {
    margin-left: 0;
    max-width: 100%;
  }
  .news__title p {
    margin: 0;
    max-width: 100%;
  }
  .news-overview.inspiration-overview {
    margin-top: -14rem;
  }
  .news-overview.inspiration-overview .news-overview__card-wrapper {
    max-height: 45rem;
  }
  .news__filter {
    flex-direction: column;
    padding-left: 0;
    padding-top: 1.5rem;
    height: auto;
  }
  .news__filter--controls {
    margin-left: 0;
    margin-top: 1.5rem;
    flex-direction: column;
  }
  .news__filter--controls button {
    width: 100%;
    height: 5rem;
    line-height: normal;
    align-items: center;
    padding: 0 2rem;
  }
  .news__filter--total {
    justify-content: flex-start;
    padding: 0 2rem;
  }
  .news.inspiration {
    padding-bottom: 10.4rem !important;
  }
}
/* ********************
Offerte aanvragen / Form
******************** */
.page-template-page_offerte .newsletter-cta::before {
  background: #ffffff;
}
.offerte-aanvragen .offerte {
  padding-top: 10rem;
  padding-bottom: 6rem;
  width: 100%;
  background: #f7f9fa;
}
.offerte-aanvragen .offerte .grid--medium {
  display: flex;
  flex-direction: column;
}
.offerte-aanvragen .offerte .content h1 {
  margin-bottom: 2.5rem;
}
.offerte-aanvragen .offerte .content p {
  font-size: 1.6rem;
  line-height: 2.8rem;
  max-width: 80rem;
}
.offerte-aanvragen .offerte__progress-bar {
  display: flex;
  width: 100%;
  height: 7rem;
  margin-top: 7.5rem;
  margin-left: .1rem;
}
.offerte-aanvragen .offerte__progress-bar .tab {
  width: 33.33333%;
  display: flex;
  font-size: 1.7rem;
  height: 100%;
  align-items: center;
  padding: 0 3.5rem 0 3rem;
  border: .1rem solid #c1c1c1;
  text-decoration: none;
  color: #2a363c;
  margin-left: -.1rem;
  z-index: 1;
  transition: all 0.2s ease-in-out;
}
.offerte-aanvragen .offerte__progress-bar .tab span.count {
  margin-right: auto;
}
.offerte-aanvragen .offerte__progress-bar .tab:hover {
  border-color: #0085ff;
  color: #0085ff;
  z-index: 2;
}
.offerte-aanvragen .form {
  background: #ffffff;
  width: 100%;
  padding-top: 8rem;
  font-family: 'Roboto Slab';
}
.offerte-aanvragen .form h2 {
  font-size: 1.4rem;
  font-weight: 600;
  opacity: .3;
  font-family: 'Karla';
  text-transform: uppercase;
  width: 100%;
  margin-left: 1.5rem;
}
.offerte-aanvragen .form--custom {
  margin: 0 -1.5rem;
}
.offerte-aanvragen .form .grid--medium {
  flex-direction: column;
}
.offerte-aanvragen .form .gfield_visibility_hidden {
  display: none;
}
.offerte-aanvragen .form .gform_validation_container {
  display: none;
}
.offerte-aanvragen .form form .gform_body {
  margin: 0 -1.5rem;
}
.offerte-aanvragen .form form .gform_body > ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.offerte-aanvragen .form form .gform_body > ul > li {
  width: 50%;
  padding: .9rem 1.5rem;
}
.offerte-aanvragen .form form .gform_body > ul > li#field_2_2:after {
  display: none;
}
.offerte-aanvragen .form form .gform_body > ul > li label {
  display: none;
}
.offerte-aanvragen .form form .gform_body > ul > li.gsection {
  width: 100%;
  padding-bottom: 0;
  padding-top: 0;
}
.offerte-aanvragen .form form .gform_body > ul > li.gsection h2 {
  font-size: 1.4rem;
  font-weight: 600;
  opacity: .3;
  margin-left: 0;
  text-transform: uppercase;
}
.offerte-aanvragen .form form .gform_body > ul select {
  width: 100%;
  background: white;
  font-family: 'Roboto Slab';
  font-size: 1.8rem;
  height: 8.1rem;
  padding: 0 3rem;
  display: flex;
  flex-direction: row;
  border: 0.1rem solid rgba(151, 151, 151, 0.3);
  justify-content: flex-start;
  align-items: center;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  -webkit-appearance: none;
  border-radius: 0;
}
.offerte-aanvragen .form form .gform_body > ul .ginput_container_select {
  width: 100%;
  height: 8.1rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offerte-aanvragen .form form .gform_body > ul .ginput_container_select:after {
  content: "";
  right: 3rem;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: .5rem .4rem 0 .4rem;
  border-color: #2a363c transparent transparent transparent;
}
.offerte-aanvragen .form form input {
  height: 8.1rem;
  width: 100%;
  padding: 0 3.5rem;
  font-size: 1.8rem;
  color: #2a363c;
  font-family: 'Roboto Slab';
  border: 0.1rem solid rgba(155, 155, 155, 0.3);
}
.offerte-aanvragen .form form input::placeholder {
  opacity: .5;
}
.offerte-aanvragen .form form input[type=submit] {
  color: #ffffff;
  padding: 0;
  justify-content: center;
  border: none;
  font-family: 'Karla';
  margin-top: 2rem;
}
.offerte-aanvragen .form form input[type=radio] {
  -webkit-appearance: radio;
}
.offerte-aanvragen .form form .gsection_title {
  margin-top: 5rem;
}
.offerte-aanvragen .form .gfield_radio li,
.offerte-aanvragen .form .ginput_container_select li {
  display: flex;
  align-items: center;
  height: 8.1rem;
  border: 0.1rem solid rgba(151, 151, 151, 0.3);
  margin-bottom: 2rem;
  cursor: pointer;
}
.offerte-aanvragen .form .gfield_radio li.active,
.offerte-aanvragen .form .ginput_container_select li.active {
  background: rgba(102, 182, 255, 0.1);
  border-color: #66b6ff;
}
.offerte-aanvragen .form .gfield_radio li.active label:after,
.offerte-aanvragen .form .ginput_container_select li.active label:after {
  width: 1.1rem;
  height: 1.1rem;
}
.offerte-aanvragen .form .gfield_radio li:last-of-type,
.offerte-aanvragen .form .ginput_container_select li:last-of-type {
  margin-bottom: 0;
}
.offerte-aanvragen .form .gfield_radio li label,
.offerte-aanvragen .form .ginput_container_select li label {
  display: flex !important;
  align-items: center;
  margin-left: 3.5rem;
  height: 100%;
  width: 100%;
  position: relative;
  cursor: pointer;
}
.offerte-aanvragen .form .gfield_radio li label:before,
.offerte-aanvragen .form .ginput_container_select li label:before {
  content: "";
  position: absolute;
  left: -4rem;
  height: 2.1rem;
  width: 2.1rem;
  min-width: 2.1rem;
  min-height: 2.1rem;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  border: 0.1rem solid rgba(151, 151, 151, 0.5600000000000001);
  border-radius: 50%;
  margin-right: 2rem;
}
.offerte-aanvragen .form .gfield_radio li label:after,
.offerte-aanvragen .form .ginput_container_select li label:after {
  width: 0;
  height: 0;
  left: -3.4rem;
  top: 50%;
  transform: translateY(-50%);
  background: #0085ff;
  content: "";
  border-radius: 50%;
  position: absolute;
  transition: all 0.2s ease-in-out;
  transform-origin: center;
}
.offerte-aanvragen .form .gfield_radio li input,
.offerte-aanvragen .form .ginput_container_select li input {
  width: auto;
  -webkit-appearance: none;
  border: none;
  padding: 0;
  margin-left: 3rem;
  cursor: pointer;
}
.offerte-aanvragen .form .print__options {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.offerte-aanvragen .form .print__option {
  width: 100%;
  height: 100%;
  padding: 0 3rem;
  display: flex;
  flex-direction: row;
  border: 0.1rem solid rgba(151, 151, 151, 0.3);
  justify-content: flex-start;
  align-items: center;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.offerte-aanvragen .form .print__option-wrapper {
  padding: 0 1.5rem;
  margin-bottom: 2rem;
  width: 50%;
  height: 19.7rem;
  justify-content: flex-start;
  align-items: center;
}
.offerte-aanvragen .form .print__option img {
  margin-left: auto;
  max-width: 18rem;
  max-height: 15rem;
}
.offerte-aanvragen .form .print__option .tooltip {
  min-height: 1.8rem;
  min-width: 1.8rem;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  font-size: 1.2rem;
  font-family: 'Karla';
  font-weight: bold;
  cursor: pointer;
  color: #0085ff;
  background: rgba(0, 133, 255, 0.2);
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  margin-left: .5rem;
  position: relative;
  line-height: 2.4rem;
}
.offerte-aanvragen .form .print__option .tooltip:hover .tooltip--text {
  visibility: visible;
  opacity: 1;
}
.offerte-aanvragen .form .print__option .tooltip--text {
  visibility: hidden;
  width: 24rem;
  margin-left: -12rem;
  background-color: #bfdcff;
  color: #0085ff;
  font-weight: normal;
  font-family: 'Karla';
  font-size: 1.2rem;
  line-height: 1.5;
  padding: 1.5rem;
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.1);
  position: absolute;
  z-index: 1;
  bottom: 140%;
  left: 50%;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.offerte-aanvragen .form .print__option .tooltip--text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -1rem;
  border-width: 10px;
  border-style: solid;
  border-color: #bfdcff transparent transparent transparent;
}
.offerte-aanvragen .form .print__option .radio {
  height: 2.1rem;
  width: 2.1rem;
  min-width: 2.1rem;
  min-height: 2.1rem;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  border: 0.1rem solid rgba(151, 151, 151, 0.5600000000000001);
  border-radius: 50%;
  margin-right: 2rem;
}
.offerte-aanvragen .form .print__option .radio:before {
  width: 0;
  height: 0;
  background: #0085ff;
  content: "";
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
}
.offerte-aanvragen .form .print__option .title {
  display: flex;
}
.offerte-aanvragen .form .print__option .title--hidden {
  display: none;
}
.offerte-aanvragen .form .print__option--active {
  border-color: #0085ff;
  background: rgba(0, 133, 255, 0.1);
}
.offerte-aanvragen .form .print__option--active .radio::before {
  width: 1.1rem;
  height: 1.1rem;
}
.offerte-aanvragen .gform_confirmation_message {
  color: green;
}
.offerte-aanvragen .validation_error,
.offerte-aanvragen .validation_message {
  color: #cc0505;
}
.offerte-aanvragen .form form ul li.textarea {
  width: 100%;
  height: 16rem;
}
.offerte-aanvragen .form form ul li.textarea .ginput_container {
  width: 100%;
  height: 100%;
}
.offerte-aanvragen .form form ul li.textarea textarea {
  width: 100%;
  resize: none;
  height: 100%;
  padding: 2.5rem 3.5rem;
  border: 0.1rem solid rgba(155, 155, 155, 0.3);
  font-size: 1.8rem;
  color: #2a363c;
  font-family: 'Roboto Slab';
}
.offerte-aanvragen .form form ul li.textarea textarea::placeholder {
  opacity: .5;
}
@media (max-width: 768px) {
  .offerte-aanvragen .form form .gform_body > ul > li {
    width: 100%;
  }
  .offerte-aanvragen .offerte {
    padding: 3rem 0;
  }
  .offerte-aanvragen .offerte .content h1 {
    margin-bottom: 1rem;
  }
  .offerte-aanvragen .offerte__progress-bar {
    display: none;
  }
  .offerte-aanvragen .form {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .offerte-aanvragen .form .form--custom .print__options .print__option img {
    display: none;
  }
  .offerte-aanvragen .form .form--custom .print__options .print__option-wrapper {
    width: 100%;
    height: 8.1rem;
  }
  .offerte-aanvragen .form .form--custom .print__sizes-amount {
    flex-direction: column;
  }
  .offerte-aanvragen .form form {
    padding-bottom: 2.5rem;
  }
  .offerte-aanvragen .form form ul li {
    width: 100%;
  }
  .offerte-aanvragen .form form input,
  .offerte-aanvragen .form form textarea {
    -webkit-appearance: none;
    border-radius: 0;
  }
  .offerte-aanvragen .form form input[type=submit] {
    width: 100%;
    margin-right: 0;
  }
}
@media (max-width: 500px) {
  .offerte-aanvragen .form .print__option .tooltip {
    display: none;
  }
}
#ui-datepicker-div {
  margin-top: -.1rem;
  background: #ffffff;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.3);
  border-radius: 0;
  display: none;
  padding: 2rem;
  width: 30rem;
}
#ui-datepicker-div select {
  width: 100%;
  background: #0085ff;
  color: #ffffff;
  font-family: 'Roboto Slab';
  font-size: 1.8rem;
  height: 4rem;
  text-align: center;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: row;
  border: 0.1rem solid rgba(151, 151, 151, 0.3);
  justify-content: flex-start;
  align-items: center;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  -webkit-appearance: none;
  border-radius: 0;
}
#ui-datepicker-div .ui-datepicker-prev,
#ui-datepicker-div .ui-datepicker-next {
  display: none;
}
#ui-datepicker-div .ui-datepicker-title select {
  width: 50%;
  float: left;
  border: none;
}
#ui-datepicker-div .ui-datepicker-title select:first-of-type {
  border-right: 0.2rem solid #ffffff;
}
#ui-datepicker-div .ui-datepicker-title select:last-of-type {
  border-left: 0.2rem solid #ffffff;
}
#ui-datepicker-div .ui-datepicker-title .ui-datepicker-month,
#ui-datepicker-div .ui-datepicker-title .ui-datepicker-year {
  margin: 0 auto;
  margin-bottom: 1rem;
}
#ui-datepicker-div table {
  width: 100%;
}
#ui-datepicker-div table td,
#ui-datepicker-div table th {
  text-align: center;
}
#ui-datepicker-div table td a {
  display: block;
  padding: .25rem;
  color: #0085ff;
  text-decoration: none;
}
#ui-datepicker-div table td a.ui-state-active {
  background: #0085ff;
  color: white;
}
#ui-datepicker-div table td.ui-datepicker-today {
  text-decoration: underline;
}
/* ********************
Footer
******************** */
.newsletter-cta {
  position: relative;
  padding: 0;
  max-width: 136rem;
  background: #0085ff;
  color: #ffffff;
  align-items: center;
  display: flex;
  margin: 9.4rem auto -20rem auto;
  padding: 7rem 6rem 15rem !important;
}
@media (max-width: 1260px) {
  .newsletter-cta {
    padding: 6rem 4rem;
  }
}
.newsletter-cta .grid--medium {
  width: 100%;
}
.newsletter-cta__content {
  flex-basis: 50%;
  max-width: 50%;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}
.newsletter-cta__content h2 {
  font-family: 'Roboto Slab';
  font-weight: 300;
  font-size: 2.6rem;
  line-height: 4.2rem;
  margin-bottom: 1rem;
}
.newsletter-cta__image {
  padding: 0 14rem;
  margin-top: -13rem;
}
.newsletter-cta__image img {
  max-width: 218px;
}
@media (max-width: 1260px) {
  .newsletter-cta__image {
    padding: 0 6rem;
  }
}
@media (max-width: 1140px) {
  .newsletter-cta__image {
    display: none;
  }
}
.newsletter-cta__form {
  flex-basis: 50%;
  max-width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.newsletter-cta__form:focus input[type=submit] {
  background: rgba(255, 255, 255, 0.2);
}
.newsletter-cta__form input {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-weight: 700;
  border: none;
  height: 6rem;
  border-radius: 3rem;
  padding-left: 3rem;
  padding-right: 10rem;
  width: 100%;
  max-width: 50rem;
  transition: all 0.2s ease-in-out;
  font-size: 1.6rem;
  font-family: 'Karla';
}
.newsletter-cta__form input:focus {
  background: #ffffff;
  color: #2a363c;
}
.newsletter-cta__form input::placeholder {
  color: #ffffff;
  font-weight: bolder;
  font-size: 1.6rem;
}
.newsletter-cta__form input:-ms-input-placeholder {
  color: #ffffff;
  font-weight: bolder;
  font-size: 1.6rem;
}
.newsletter-cta__form input::-ms-input-placeholder {
  color: #ffffff;
  font-weight: bolder;
  font-size: 1.6rem;
}
.newsletter-cta__form input[type=submit] {
  background: #ffffff;
  border: none;
  border-radius: 3rem;
  height: 6rem;
  width: 8.8rem;
  margin-left: -8.7rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  content: "";
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0085ff;
  font-weight: bolder;
}
.newsletter-cta__form input[type=submit].focused {
  box-shadow: 0 1rem 10rem #0085ff;
}
.newsletter-cta__form .hidden_label label {
  display: none;
}
.newsletter-cta__form .gform_footer {
  position: absolute;
  right: 0;
  top: 0;
}
.newsletter-cta__form form {
  position: relative;
}
.newsletter-cta__form .gform_wrapper {
  width: 100%;
  margin-left: auto;
  max-width: 51rem;
}
.newsletter-cta__form .gform_validation_container {
  display: none;
}
.newsletter-cta__form .gform_confirmation_message {
  color: lime;
}
.newsletter-cta__form .validation_error {
  color: red;
  display: none !important;
}
.newsletter-cta::before {
  position: absolute;
  width: calc(100vw + 100rem);
  left: -100rem;
  right: 0;
  top: -9.4rem;
  height: 60rem;
  content: "";
  background: #f7f9fa;
  z-index: -1;
}
@media (max-width: 768px) {
  .newsletter-cta {
    margin-top: 0;
    padding-top: 3rem;
    padding-bottom: 3.5rem;
    min-height: auto;
    height: auto;
    margin-bottom: -5rem;
    padding: 4rem 0;
  }
  .newsletter-cta .grid {
    flex-direction: column;
    align-items: center;
  }
  .newsletter-cta__content {
    flex-basis: 100%;
    max-width: 100%;
    margin-bottom: 3rem;
    align-items: center;
    text-align: center;
  }
  .newsletter-cta__content h2 {
    font-size: 2.8rem;
    line-height: 3.7rem;
    text-align: center;
  }
  .newsletter-cta__form {
    flex-basis: 100%;
    max-width: 100%;
  }
}
.footer {
  background: #2a363c;
  width: 100%;
  display: flex;
  min-height: auto;
  justify-content: center;
  padding-top: 25rem;
  flex-direction: column;
  padding-bottom: 2rem;
}
.footer .grid {
  width: 100%;
  flex-direction: column;
}
.footer__nav {
  width: 100%;
}
.footer__nav ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.footer__nav ul li {
  padding: 0 4rem;
}
.footer__nav ul li:last-child {
  margin-right: 0;
}
.footer__nav ul li a {
  font-size: 1.6rem;
  color: #ffffff;
  text-decoration: none;
}
.footer__nav:after {
  display: block;
  position: relative;
  content: "";
  width: 100%;
  height: .1rem;
  background: rgba(255, 255, 255, 0.2);
  margin-top: 6rem;
}
.footer__bottom {
  position: relative;
  display: flex;
  flex-direction: row;
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.4rem;
  padding-top: 3rem;
}
.footer__bottom p {
  line-height: 2.4rem;
}
.footer__bottom p a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.3);
  transition: all 0.2s ease-in-out;
}
.footer__bottom p a:hover {
  color: #ffffff;
}
.footer__bottom .content {
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .footer {
    height: 420px;
  }
}
@media (max-width: 991px) {
  .footer__nav ul li {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .footer {
    padding-top: 7.5rem;
    height: auto;
  }
  .footer__nav ul {
    flex-wrap: wrap;
  }
  .footer__nav ul li {
    padding: 0.8rem 0;
    flex-basis: 50%;
    max-width: 50%;
  }
  .footer__nav:after {
    margin-top: 1.5rem;
  }
  .footer__bottom {
    flex-direction: column;
  }
  .footer__bottom a {
    margin: 0;
  }
}
@media (max-width: 580px) {
  .footer__nav ul li a {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }
}
.socials {
  display: flex;
  margin-left: auto;
  margin-right: 32px;
}
.socials li {
  padding: 0 0.6rem;
}
.socials__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.8rem;
  height: 4.8rem;
  border: 0.1rem solid rgba(255, 255, 255, 0.2);
  border-radius: 100%;
  transition: all 0.2s ease-in-out;
}
.socials__icon img {
  max-width: 16px;
}
.socials__icon:hover {
  background: #0085ff;
  border-color: #0085ff;
}
.socials__icon--linkedin img,
.socials__icon--twitter img {
  width: 14px;
}
.socials__icon--facebook img {
  height: 16px;
}
.socials--dark {
  margin: 0;
}
.socials--dark .socials__icon {
  border: 0.1rem solid #c1c1c1;
  text-align: center;
}
.socials--dark .socials__icon svg {
  width: 16px;
  height: 16px;
  pointer-events: none;
}
.socials--dark .socials__icon svg path,
.socials--dark .socials__icon svg circle {
  transition: all 0.2s ease-in-out;
}
.socials--dark .socials__icon:hover {
  border-color: #0085ff;
}
.socials--dark .socials__icon:hover svg path,
.socials--dark .socials__icon:hover svg circle {
  fill: white;
}
@media (max-width: 768px) {
  .socials {
    padding: 1.6rem 0;
    margin-left: -0.8rem;
  }
}
/* ********************
Single post // NOTE: This is only to change some blocks layouts for this specific page, as they defer from the default styling.
******************** */
.single .newsletter-cta::before {
  background: #ffffff;
}
/* ********************
Buttons
******************** */
.button {
  width: auto;
  display: flex;
  margin-right: auto;
  text-align: center;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
  height: auto;
  font-size: 1.6rem;
  font-weight: bold;
  /* max-width: 31.4rem; */
  padding: 2.35rem 3rem;
  background: #2a363c;
  align-content: center;
  transition: all 0.2s ease-in-out;
}
.button:hover {
  background: #20292d;
}
.button__box {
  padding-left: 2.5rem;
}
.button__box::before {
  background-image: url("/app/themes/festivalchairs/static/images/chair-icon.svg");
  content: "";
  width: 3rem;
  height: 3.3rem;
  background-size: cover;
  position: relative;
  float: left;
  display: inline-block;
  margin-right: 2.5rem;
}
.button__box--blue {
  color: #0085ff;
  background: #ffffff;
  padding-left: 0;
  padding-right: 0;
  transition: all 0.2s ease-in-out;
}
.button__box--blue:hover {
  background: #ffffff;
  color: #005db3;
}
.button__box--blue::before {
  background-image: url("/app/themes/festivalchairs/static/images/chair-icon--blue.svg");
  content: "";
  width: 3rem;
  height: 3.3rem;
  background-size: cover;
  position: relative;
  float: left;
  display: inline-block;
  margin-right: 2rem;
}
.button--white {
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.6rem;
}
.button--blue {
  height: 3.3rem;
}
input[type=submit] {
  cursor: pointer;
}
/* ********************
Colors
******************** */
/* ********************
Variables
******************** */
/* ********************
General
******************** */
.block {
  display: block;
}
.inlineblock {
  display: inline-block;
}
.none {
  display: none;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.fixed {
  position: fixed;
}
.hidden {
  overflow: hidden;
}
.gform_ajax_spinner {
  display: none;
}
.gfield_contains_required {
  position: relative;
}
.gfield_contains_required:after {
  content: "";
  display: block;
  width: .6rem;
  height: .6rem;
  border-radius: 50%;
  background: #0085ff;
  position: absolute;
  top: 3rem;
  right: 3.5rem;
}
.page-template-default .newsletter-cta::before {
  background: white;
}
.page-template-default.home .newsletter-cta::before,
.single-klant .newsletter-cta::before {
  background: #f7f9fa;
}
.ginput_container_date span {
  display: none;
}
.buttons-wrapper {
  display: flex;
}
@media (max-width: 860px) {
  .buttons-wrapper {
    flex-direction: column;
  }
  .buttons-wrapper a {
    margin-top: 3rem !important;
  }
}
@media (max-width: 768px) {
  .buttons-wrapper {
    flex-direction: row;
  }
  .buttons-wrapper a {
    margin-top: 3rem !important;
  }
}
@media (max-width: 560px) {
  .buttons-wrapper {
    flex-direction: column;
  }
  .buttons-wrapper a {
    justify-content: space-between !important;
    margin: 0 !important;
    margin-bottom: 2rem !important;
  }
}
.inspiration__single-slider {
  overflow-x: hidden;
  padding: 0;
}
.cookiebar-offset {
  display: none;
}
.search-results h1 {
  text-align: center;
}
.search-results-overview {
  padding-top: 60px;
}
.search-results-overview li {
  width: 100%;
  height: auto;
  padding: 20px;
  margin: 20px 0;
  border: .1rem solid #ddd;
}
.search-results-overview li h2 {
  font-family: 'Karla';
  font-size: 22px;
  line-height: 30px;
  color: #2a363c;
}
.search-results-overview li h2:hover {
  color: #0085ff;
}
.search-results-overview li .content {
  font-family: 'Karla';
  font-size: 16px;
  line-height: 22px;
}
.search-results-overview li a {
  text-decoration: none;
}
.search-results-overview li a:hover {
  color: #0085ff;
  text-decoration: underline;
}
.search-results-overview li a.button {
  display: inline-block;
  font-weight: bold;
  font-size: 14px;
  color: white;
  padding: 8px 16px;
  background: #0085ff;
}
.search-results .navigation.pagination {
  text-align: center;
}
.search-results .navigation.pagination h2 {
  display: none;
}
.search-results .navigation.pagination .nav-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 40px 0;
}
.search-results .navigation.pagination .nav-links .page-numbers {
  margin: 0 16px;
  font-family: 'Karla';
  font-size: 14px;
  text-decoration: none;
  color: #2a363c;
}
.search-results .navigation.pagination .nav-links .page-numbers .pagination {
  text-transform: uppercase;
  font-size: 12px;
}
.search-results .navigation.pagination .nav-links .page-numbers.current {
  color: #0085ff;
}
.search-results .navigation.pagination .nav-links a:hover {
  color: #0085ff;
}
.grecaptcha-badge {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
/* NF Styles */
.about__history .slide:last-child .timeline {
  display: none;
}
.about__history .slide .timeline {
  background: #2a363c;
  display: block;
  position: absolute;
  width: 120%;
  height: 6px;
  right: -80px;
  top: 3.5em;
  z-index: -1;
}
.about__history .slide h3 {
  position: relative;
}
.about__history .slide h3 span {
  color: #0085ff;
  display: block;
  font-weight: normal;
  font-size: 1.75rem;
}
.about__history .swiper-scrollbar {
  height: 4px;
  margin-top: 1em;
}
.slide__nav--prev.swiper-button-disabled,
.slide__nav--next.swiper-button-disabled {
  background: rgba(42, 54, 60, 0.025) !important;
  cursor: default !important;
}
.slide__nav--prev.swiper-button-disabled svg,
.slide__nav--next.swiper-button-disabled svg {
  opacity: .25 !important;
}
.slide__nav--prev,
.slide__nav--next {
  background: rgba(42, 54, 60, 0.1) !important;
  border: 1px solid #fff !important;
}
.slide__nav--prev svg,
.slide__nav--next svg {
  transform: scale(1.5) !important;
}
.header-image {
  display: flex;
  flex-wrap: wrap;
}
@media all and (max-width: 979px) {
  .header-image h1 {
    font-size: calc(3rem);
    line-height: 1.2;
  }
}
.header-image img {
  width: 50%;
  flex-grow: 1;
  object-fit: cover;
  flex-basis: 384px;
}
@media all and (max-width: 767px) {
  .header-image img {
    height: 200px;
  }
}
@media all and (max-width: 767px) {
  .header-image:first-child {
    display: block;
  }
}
.header-image:first-child .header-image__content {
  flex-shrink: 1;
  background-color: #2a363c;
  flex-grow: 0;
  flex-basis: 35vw;
  padding: 5vw;
}
@media all and (max-width: 767px) {
  .header-image:first-child .header-image__content {
    flex-grow: 1;
    margin: -5rem auto 0;
    width: 90%;
  }
}
.header-image:first-child .header-image__content p {
  padding: 0;
}
.header-image:nth-child(2),
.header-image:nth-child(3) {
  height: auto;
}
@media all and (min-width: 768px) {
  .header-image:nth-child(2),
  .header-image:nth-child(3) {
    padding: 10rem 10rem 0;
  }
}
.header-image:nth-child(2) .header-image__content,
.header-image:nth-child(3) .header-image__content {
  height: auto;
  padding: 5vw;
}
@media all and (min-width: 768px) {
  .header-image:nth-child(2) .header-image__content,
  .header-image:nth-child(3) .header-image__content {
    padding: 5rem;
    flex-shrink: 2;
  }
}
.header-image:nth-child(2) .header-image__content h1,
.header-image:nth-child(3) .header-image__content h1 {
  color: #2a363c;
}
.header-image:nth-child(2) .header-image__content p,
.header-image:nth-child(3) .header-image__content p {
  background-color: transparent;
  padding: 0;
  color: #2a363c;
}
.header-image:nth-child(2) {
  flex-direction: row-reverse;
}
.header-image:nth-child(3) .button {
  background-color: transparent;
  border: 2px solid #2a363c;
  color: #2a363c;
}
.header-image:nth-child(3) .button:before {
  display: none;
}
.header-image:nth-child(3) .button:hover {
  color: #fff;
  background-color: #2a363c;
}
.button-outline {
  background-color: transparent;
  border: 2px solid #2a363c;
  color: #2a363c;
  display: inline-flex;
}
.button-outline:before {
  display: none;
}
.button-outline:hover {
  color: #fff;
  background-color: #2a363c;
}
.header-image__slider {
  flex-direction: column;
  height: auto;
}
.header-image__slider .header-image__content,
.header-image__slider .img-wrapper,
.header-image__slider .header-image__background,
.header-image__slider .header-image__video-slide {
  position: relative;
  flex-basis: 384px;
  flex-grow: 1;
}
.header-image__slider .button {
  background-color: #0085ff;
}
@media all and (max-width: 414px) {
  .header-image__slider .button {
    width: 100%;
    max-width: 100%;
    display: block;
    text-align: center;
  }
}
.header-image__slider .button:hover {
  background-color: #006acc;
}
.button-cta {
  background-color: #0085ff;
  text-align: center;
  display: block;
  margin-top: 2rem;
}
.newsletter-cta__content h2 {
  line-height: 1.2;
}
.newsletter-cta__content a {
  display: inline-block;
  margin-top: 2rem;
  color: #fff;
  text-decoration: none;
}
.newsletter-cta__content label {
  font-size: 1.5rem;
  margin: 0 auto .5em;
  font-weight: 600;
}
@media all and (min-width: 769px) {
  .newsletter-cta__content label {
    margin: 0 0 .5em 0;
  }
}
.newsletter-cta__content .newsletter-cta__form {
  margin-top: 2rem;
  max-width: 100%;
  width: 100%;
  flex-basis: 100% !important;
  justify-content: flex-start;
}
.newsletter-cta__form {
  flex-wrap: wrap;
}
.newsletter-cta__form a {
  width: 100%;
  border: 2px solid #fff;
  cursor: pointer;
  display: block;
  text-align: center;
  background-color: #fff;
  color: #0085ff;
}
.newsletter-cta__form a:hover {
  background-color: transparent;
  color: #fff;
}
/* responsive youtube*/
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
div[data-name="Classic"],
.home .header-image:first-child .header-image__content {
  background: no-repeat url("/app/uploads/2020/08/rdda_winner.jpg") 97% bottom / 100px auto;
}
@media all and (min-width: 1240px) {
  div[data-name="Classic"],
  .home .header-image:first-child .header-image__content {
    background: no-repeat url("/app/uploads/2020/08/rdda_winner.jpg") 97% bottom / 150px auto;
  }
}
.home .header-image:first-child .header-image__content {
  background-color: #2a363c;
  padding-bottom: 90px !important;
}
@media all and (min-width: 1240px) {
  .home .header-image:first-child .header-image__content {
    padding-bottom: 0 !important;
  }
}
div[data-name="Classic"] {
  background-color: #f7f9fa;
  background-blend-mode: darken;
  padding-bottom: 30px !important;
}
@media all and (min-width: 1240px) {
  div[data-name="Classic"] {
    padding-bottom: 0 !important;
  }
}
