/* ********************
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;
}
/* ********************
General
******************** */
.block {
  display: block;
}
.inlineblock {
  display: inline-block;
}
.none {
  display: none;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.fixed {
  position: fixed;
}
.hidden {
  overflow: hidden;
}
/* ********************
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
******************** */
.clear:after,
.clearfix:after {
  clear: both;
  content: "";
  display: table;
}
/* ****************************************
Flexbox
**************************************** */
.flex-row {
  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%;
}
@media only screen and (max-width: 768px) {
  .flex-col-1-2 {
    -webkit-flex-basis: 100%;
    -ms-flex-basis: 100%;
    flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    max-width: 100%;
  }
}
.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
******************** */
.flex {
  display: flex;
}
@font-face {
  font-family: 'RobotoCondensed-Regular';
  src: url('/wp-content/themes/tseonline/static/fonts/RobotoCondensed-Regular.woff2') format('woff2'), url('/wp-content/themes/tseonline/static/fonts/RobotoCondensed-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'RobotoCondensed-Bold';
  src: url('/wp-content/themes/tseonline/static/fonts/RobotoCondensed-Bold.woff2') format('woff2'), url('/wp-content/themes/tseonline/static/fonts/RobotoCondensed-Bold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'RobotoCondensed-Light';
  src: url('/wp-content/themes/tseonline/static/fonts/RobotoCondensed-Light.woff2') format('woff2'), url('/wp-content/themes/tseonline/static/fonts/RobotoCondensed-Light.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
.roboto-light {
  font-family: 'RobotoCondensed-Light';
  font-weight: normal !important;
  font-size: normal !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.roboto {
  font-family: 'RobotoCondensed-Regular';
  font-weight: normal !important;
  font-size: normal !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.roboto-bold {
  font-family: 'RobotoCondensed-Bold';
  font-weight: normal !important;
  font-size: normal !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@font-face {
  font-family: 'Uni-Sans-Regular';
  src: url('/wp-content/themes/tseonline/static/fonts/Uni-Sans-Regular.woff2') format('woff2'), url('/wp-content/themes/tseonline/static/fonts/Uni-Sans-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Uni-Sans-SemiBold';
  src: url('/wp-content/themes/tseonline/static/fonts/Uni-Sans-SemiBold.woff2') format('woff2'), url('/wp-content/themes/tseonline/static/fonts/Uni-Sans-SemiBold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Uni-Sans-Bold';
  src: url('/wp-content/themes/tseonline/static/fonts/Uni-Sans-Bold.woff2') format('woff2'), url('/wp-content/themes/tseonline/static/fonts/Uni-Sans-Bold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
.uni-sans-regular {
  font-family: 'Uni-Sans-Regular';
  font-weight: normal !important;
  font-size: normal !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.uni-sans-semibold {
  font-family: 'Uni-Sans-SemiBold';
  font-weight: normal !important;
  font-size: normal !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.uni-sans-bold {
  font-family: 'Uni-Sans-Bold';
  font-weight: normal !important;
  font-size: normal !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html {
  font-size: 62.5%;
}
body {
  font-family: 'RobotoCondensed-Regular';
  font-weight: normal !important;
  font-size: normal !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 10rem;
  font-size: 1.8rem;
  line-height: 3.2rem;
}
@media only screen and (max-width: 1100px) {
  body {
    padding-top: 6rem;
  }
}
body.no-scroll {
  overflow: hidden;
}
body.locked {
  overflow: hidden;
  height: 100%;
  max-height: 100%;
}
p {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #858585;
}
@media only screen and (max-width: 660px) {
  p {
    font-size: 1.6rem;
  }
}
a {
  color: #858585;
  text-decoration: underline;
}
.post-tiles__link,
.branche-tiles__link {
  text-decoration: none !important;
}
blockquote {
  font-size: 2.6rem;
  line-height: 3.2rem;
  padding: 2rem 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Uni-Sans-Bold';
  font-weight: normal !important;
  font-size: normal !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.section--white {
  padding: 6rem 0;
}
.section--white + .section--white {
  padding-top: 0;
}
.section--grey {
  padding: 6rem 0;
}
.section--grey + .section--grey {
  padding-top: 0;
}
.editor > *:first-child {
  padding-top: 0;
}
.editor p {
  padding: 20px 0;
}
.editor h2,
.editor .h2 {
  font-family: 'Uni-Sans-SemiBold';
  font-weight: normal !important;
  font-size: normal !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 2.8rem;
  line-height: 2.6rem;
  color: #333333;
}
.editor ul {
  margin-top: -2rem;
  list-style: disc;
  padding-left: 3rem;
  font-size: 2rem;
  line-height: 4rem;
  color: #858585;
}
.editor ul li {
  padding-left: 1rem;
}
body.postid-229  .layout-flexible-content__text {
  padding-bottom: 12rem;
}
body.single-post .editor h3 {
  font-family: 'Uni-Sans-SemiBold';
  font-weight: normal !important;
  font-size: normal !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 2.2rem;
  line-height: 2.8rem;
}
body.single-post .editor p:last-child {
  margin-bottom: 0;
}
body.single-post .post-tiles--margin-top {
  margin-top: 3.2rem;
}
body.single-post .post-tiles__return {
  padding: 4.2rem 1.2rem 0 1.2rem;
}
body.single-post .content-section--bg-shade + .content-section--social-share {
  margin-top: 4rem;
}
body.single-post .content-section--bg-shade + .content-section--social-share .social-share {
  margin-top: 0rem;
  border-top: 0;
  padding-top: 0;
}
@media only screen and (min-width: 1100px) {
  .body-container:before {
    position: fixed;
    top: 10rem;
    left: 0;
    bottom: 0;
    width: 9.9rem;
    height: calc(100% - 10rem);
    border-right: 1px solid #dfdfdf;
    display: block;
    content: "";
    z-index: 8000;
    background-color: #ffffff;
  }
}
form textarea,
form input.text,
form input[type="text"],
form input[type="number"],
form input[type="button"],
form input[type="submit"],
form .input-checkbox {
  font-family: 'RobotoCondensed-Regular';
  font-weight: normal !important;
  font-size: normal !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  font-size: 1.6rem;
  -webkit-appearance: none;
}
form input[type="button"],
form input[type="submit"] {
  font-family: 'RobotoCondensed-Bold';
  font-weight: normal !important;
  font-size: normal !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.8rem;
}
form input[type="text"],
form input[type="search"],
form input[type="number"] {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  width: 100%;
  font-size: 1.8rem;
  border: none;
  padding: 0 2rem;
  height: 5.6rem;
  line-height: 5.6rem;
  display: inline-block;
}
.button {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  font-family: 'RobotoCondensed-Bold';
  font-weight: normal !important;
  font-size: normal !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 2.4rem;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 1.2rem 2.4rem;
  display: inline-block !important;
  text-decoration: none !important;
  background-color: #e11a3b;
  border: 0.2rem solid #e11a3b;
  color: #ffffff !important;
  text-align: center;
  justify-content: center;
}
.button:hover {
  background-color: #ca1735;
}
.button--margin-top {
  margin-top: 6rem;
}
@media only screen and (max-width: 660px) {
  .button--margin-top {
    margin-top: 3rem;
  }
}
.button--stretch {
  width: 100%;
}
.button--as-text {
  border: 2px solid transparent;
  background: transparent;
  color: #e11a3b;
}
.button--as-text:hover {
  border: 2px solid transparent;
  background: transparent;
}
.button--video {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  position: relative;
  padding-left: 7.2rem;
}
.button--video:before {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  position: absolute;
  top: 0;
  left: 0;
  height: 5rem;
  width: 5rem;
  background-color: #ffffff;
  border: 2px solid #e11a3b;
  display: block;
  content: "";
  background-image: url("/wp-content/themes/tseonline/static/images/icons/video--red.svg");
  background-position: center center;
  background-repeat: no-repeat;
  pointer-events: none;
}
.button--video:hover:before {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.button--bordered {
  color: #e11a3b !important;
  background-color: transparent;
  border: 2px solid #e11a3b;
}
.button--bordered:hover {
  border: 2px solid #e11a3b;
  background-color: #e11a3b;
  color: #ffffff !important;
}
.button--white {
  background-color: #ffffff;
  border: 0.2rem solid #ffffff;
  color: #81b5bd !important;
}
.button--white:hover {
  border: 2px solid #ffffff;
  background-color: #81b5bd;
  color: #ffffff !important;
}
.button--white-bordered {
  color: #ffffff;
  background-color: transparent;
  border: 2px solid #ffffff !important;
}
.button--white-bordered:hover {
  border: 2px solid #ffffff;
  background-color: #ffffff;
  color: #81b5bd !important;
}
.button--white-bordered-alt {
  color: #ffffff !important;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.button--white-bordered-alt:hover {
  border: 2px solid #ffffff;
  background-color: #ffffff;
  color: #81b5bd !important;
}
.button--blue {
  background-color: #81b5bd;
  border: 0.2rem solid #81b5bd;
}
.button--blue:hover {
  border: 2px solid #ffffff;
  background-color: #ffffff;
  color: #81b5bd !important;
}
.button--blue-bordered {
  color: #81b5bd !important;
  background-color: transparent;
  border: 2px solid #81b5bd;
}
.button--blue-bordered:hover {
  border: 2px solid #ffffff;
  background-color: #ffffff;
  color: #81b5bd !important;
}
.button--blue-bordered-alt {
  color: #81b5bd !important;
  background-color: transparent;
  border: 2px solid #81b5bd;
}
.button--blue-bordered-alt:hover {
  border: 2px solid #81b5bd;
  background-color: #81b5bd;
  color: #ffffff !important;
}
.button--darkgrey {
  color: #ffffff !important;
  background-color: #bdb6b1;
  border: 0.2rem solid #bdb6b1;
}
.button--darkgrey:hover {
  border: 2px solid #ffffff;
  background-color: #ffffff;
  color: #bdb6b1 !important;
}
.img--responsive {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
}
.img--stretch {
  display: block;
  width: 100%;
  height: auto;
}
.img--logo {
  max-width: 200px;
}
.img-link {
  position: relative;
  display: block;
  background-color: #333333;
}
.img-link:before {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-opacity: 0.3;
  -moz-opacity: 0.3;
  opacity: 0.3;
  content: "";
  display: block;
  position: absolute;
  bottom: -2.7rem;
  left: -2.7rem;
  z-index: 50;
  height: 10.4rem;
  width: 10.4rem;
  background-color: #bdb6b1;
  pointer-events: none;
}
.img-link:after {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 100;
  height: 5.2rem;
  width: 5.2rem;
  background-color: #ffffff;
  background-image: url("/wp-content/themes/tseonline/static/images/icons/magnifier--blue.svg");
  background-position: center center;
  background-repeat: no-repeat;
  pointer-events: none;
}
.img-link:hover:before {
  -webkit-transform: scale(2);
  -moz-transform: scale(2);
  -ms-transform: scale(2);
  -o-transform: scale(2);
  transform: scale(2);
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
}
.img-link:hover:after {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.img-link:hover img {
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
}
.img-link img {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 100;
}
.social-media-icons {
  display: flex;
}
.social-media-icons__item {
  display: block;
  height: 4.2rem;
  width: 4.2rem;
  min-width: 4.2rem;
}
.social-media-icons__item:not(:last-of-type) {
  margin-right: 1rem;
}
.social-media-icons__link {
  display: block;
  height: 4.2rem;
  width: 4.2rem;
  text-indent: -999rem;
  border: 1px solid #81b5bd;
  background-position: center center;
  background-repeat: no-repeat;
}
.social-media-icons__link:hover {
  border: 1px solid #ffffff;
  background-color: #ffffff;
}
.social-media-icons__link--twitter {
  background-image: url("/wp-content/themes/tseonline/static/images/icons/social-twitter--blue.svg");
}
.social-media-icons__link--facebook {
  background-image: url("/wp-content/themes/tseonline/static/images/icons/social-facebook--blue.svg");
}
.social-media-icons__link--linkedin {
  background-image: url("/wp-content/themes/tseonline/static/images/icons/social-linkedin--blue.svg");
}
.social-media-icons__link--mail {
  background-image: url("/wp-content/themes/tseonline/static/images/icons/social-mail--blue.svg");
}
.social-media-icons__link--youtube {
  background-image: url("/wp-content/themes/tseonline/static/images/icons/social-youtube--blue.svg");
}
.social-media-icons--on-white .social-media-icons__link:hover {
  border: 1px solid #81b5bd;
  background-color: #81b5bd;
}
.social-media-icons--on-white .social-media-icons__link:hover.social-media-icons__link--twitter {
  background-image: url("/wp-content/themes/tseonline/static/images/icons/social-twitter--white.svg");
}
.social-media-icons--on-white .social-media-icons__link:hover.social-media-icons__link--facebook {
  background-image: url("/wp-content/themes/tseonline/static/images/icons/social-facebook--white.svg");
}
.social-media-icons--on-white .social-media-icons__link:hover.social-media-icons__link--linkedin {
  background-image: url("/wp-content/themes/tseonline/static/images/icons/social-linkedin--white.svg");
}
.social-media-icons--on-white .social-media-icons__link:hover.social-media-icons__link--mail {
  background-image: url("/wp-content/themes/tseonline/static/images/icons/social-mail--white.svg");
}
.social-media-icons--on-white .social-media-icons__link:hover.social-media-icons__link--youtube {
  background-image: url("/wp-content/themes/tseonline/static/images/icons/social-youtube--white.svg");
}
.grid {
  max-width: 1340px;
}
@media only screen and (max-width: 1640px) {
  .grid {
    padding-left: 14rem;
    padding-right: 14rem;
  }
}
@media only screen and (max-width: 900px) {
  .grid {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.grid--relative {
  position: relative;
  z-index: 100;
}
.grid--xsmall {
  max-width: 480px;
}
@media only screen and (max-width: 1640px) {
  .grid--xsmall {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.grid--small {
  max-width: 660px;
}
@media only screen and (max-width: 1640px) {
  .grid--small {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.grid--medium {
  max-width: 768px;
}
@media only screen and (max-width: 1640px) {
  .grid--medium {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.grid--large {
  max-width: 1100px;
}
.body-overlay {
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 4000;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(106, 100, 96, 0.75);
}
.body-overlay--active {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  pointer-events: all;
}
.type-heading {
  hyphens: auto;
  font-family: 'Uni-Sans-Bold';
  font-weight: normal !important;
  font-size: normal !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  font-size: 5.8rem;
  line-height: 6.8rem;
  margin-bottom: 1rem;
  color: #333333;
  word-break: break-word;
}
@media only screen and (max-width: 1100px) {
  .type-heading {
    font-size: 3.4rem;
    line-height: 3.8rem;
    word-break: break-word;
  }
}
.type-heading--large {
  font-size: 6.2rem;
  line-height: 7rem;
}
@media only screen and (max-width: 900px) {
  .type-heading--large {
    font-size: 5rem;
    line-height: 5rem;
  }
}
@media only screen and (max-width: 660px) {
  .type-heading--large {
    font-size: 3rem;
    line-height: 3rem;
  }
}
.type-heading--xxmedium {
  font-size: 6rem;
  line-height: 7rem;
}
@media only screen and (max-width: 768px) {
  .type-heading--xxmedium {
    font-size: 4rem;
    line-height: 5rem;
  }
}
@media only screen and (max-width: 660px) {
  .type-heading--xxmedium {
    font-size: 2rem;
    line-height: 2.2rem;
  }
}
.type-heading--xmedium {
  font-size: 5.2rem;
  line-height: 6.2rem;
}
@media only screen and (max-width: 768px) {
  .type-heading--xmedium {
    font-size: 3rem;
    line-height: 4rem;
  }
}
@media only screen and (max-width: 660px) {
  .type-heading--xmedium {
    font-size: 1.8rem;
    line-height: 2rem;
  }
}
.type-heading--medium {
  font-family: 'Uni-Sans-SemiBold';
  font-weight: normal !important;
  font-size: normal !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 3.2rem;
  line-height: 3.2rem;
}
@media only screen and (max-width: 768px) {
  .type-heading--medium {
    font-size: 2.6rem;
    line-height: 2.6rem;
  }
}
@media only screen and (max-width: 660px) {
  .type-heading--medium {
    font-size: 2rem;
    line-height: 2.2rem;
  }
}
.type-heading--small {
  font-family: 'Uni-Sans-SemiBold';
  font-weight: normal !important;
  font-size: normal !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 2.8rem;
  line-height: 2.6rem;
}
@media only screen and (max-width: 768px) {
  .type-heading--small {
    font-size: 2.4rem;
    line-height: 2.5rem;
  }
}
@media only screen and (max-width: 660px) {
  .type-heading--small {
    font-size: 1.9rem;
    line-height: 2.1rem;
  }
}
.type-heading--xsmall {
  font-family: 'Uni-Sans-SemiBold';
  font-weight: normal !important;
  font-size: normal !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 2.2rem;
  line-height: 2.6rem;
}
@media only screen and (max-width: 768px) {
  .type-heading--xsmall {
    font-size: 1.8rem;
    line-height: 2rem;
  }
}
@media only screen and (max-width: 660px) {
  .type-heading--xsmall {
    font-size: 1.4rem;
    line-height: 1.6rem;
  }
}
.type-heading--alt {
  font-family: 'RobotoCondensed-Light';
  font-weight: normal !important;
  font-size: normal !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-opacity: 0.7;
  -moz-opacity: 0.7;
  opacity: 0.7;
  color: #81b5bd;
  font-size: 2.8rem;
  line-height: 3.4rem;
  margin-bottom: 5rem;
}
@media only screen and (max-width: 768px) {
  .type-heading--alt {
    font-size: 2.4rem;
    line-height: 2.6rem;
  }
}
@media only screen and (max-width: 660px) {
  .type-heading--alt {
    font-size: 2.2rem;
    line-height: 2.4rem;
  }
}
.type-heading--white {
  color: #ffffff;
}
.type-heading--red {
  color: #e11a3b;
}
.type-heading--uppercase {
  text-transform: uppercase;
}
.breadcrumbs {
  background-color: #f1f1f1;
  padding: 2rem 0;
  line-height: 3rem;
}
.breadcrumbs p {
  max-height: 3rem;
  font-size: 1.4rem;
  margin-bottom: 0rem;
}
.breadcrumbs a {
  -webkit-opacity: 0.4;
  -moz-opacity: 0.4;
  opacity: 0.4;
  margin-right: 0.6rem;
  padding-right: 1.6rem;
  background-image: url("/wp-content/themes/tseonline/static/images/icons/point-right--grey.svg");
  background-position: right center;
  background-size: 0.6rem;
  background-repeat: no-repeat;
  text-decoration: none;
}
.site-footer {
  z-index: 9000;
  position: relative;
}
.site-footer__back-to-top {
  width: 10rem;
  height: 10rem;
  background-color: #525252;
  background-image: url("/wp-content/themes/tseonline/static/images/icons/point-up--shade.svg");
  background-position: center center;
  background-repeat: no-repeat;
  cursor: pointer;
  align-self: flex-end;
}
@media only screen and (min-width: 900px) {
  .site-footer {
    margin-top: -20rem;
  }
  .site-footer:before {
    position: absolute;
    top: 20rem;
    left: 0;
    width: 9.9rem;
    height: calc(100% - 20rem);
    content: "";
    display: block;
    z-index: 4000;
    background-color: #333333;
    border-right: 1px solid #525252;
    align-self: auto;
  }
  .site-footer__back-to-top {
    position: absolute;
    top: 20rem;
    left: 0;
    width: 10rem;
    height: 10rem;
    background-color: #525252;
    background-image: url("/wp-content/themes/tseonline/static/images/icons/point-up--shade.svg");
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 4500;
    cursor: pointer;
  }
}
.site-footer__newsletter {
  background-color: #333333;
}
.site-footer__newsletter-wrap {
  padding: 5.8rem;
  -webkit-transform: translate(0, 10rem);
  -moz-transform: translate(0, 10rem);
  -ms-transform: translate(0, 10rem);
  -o-transform: translate(0, 10rem);
  transform: translate(0, 10rem);
  height: 20rem;
  background-color: #ffffff;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
@media only screen and (max-width: 1640px) {
  .site-footer__newsletter-wrap {
    padding: 5.8rem;
    height: auto;
    min-height: 0;
    min-width: 0;
  }
  .site-footer__newsletter-wrap .site-footer__action-button-set {
    flex-wrap: wrap;
    margin-left: 0;
  }
}
@media only screen and (max-width: 1340px) {
  .site-footer__newsletter-wrap {
    padding: 3.5rem 4rem;
  }
  .site-footer__newsletter-wrap .site-footer__action-button-set {
    flex-direction: column;
    justify-content: space-between;
  }
  .site-footer__newsletter-wrap .site-footer__action-button-set a {
    flex-basis: 45%;
    max-width: 45%;
  }
  .site-footer__newsletter-wrap .site-footer__action-button-set a:first-of-type {
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 768px) {
  .site-footer__newsletter-wrap {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .site-footer__newsletter-wrap .site-footer__action-button-set {
    margin: 0 0 0 15px;
  }
  .site-footer__newsletter-wrap .site-footer__action-button-set a {
    flex-basis: 100%;
    max-width: 100%;
    margin: 0;
  }
}
@media only screen and (max-width: 480px) {
  .site-footer__newsletter-wrap {
    flex-direction: column;
  }
  .site-footer__newsletter-wrap .site-footer__action-button-set {
    width: 100%;
    margin: 15px 0 0;
  }
}
.site-footer__newsletter-wrap .newsletter-signup {
  width: 100%;
}
.site-footer__newsletter-wrap .mc4wp-form-fields p {
  font-family: 'Uni-Sans-SemiBold';
  font-weight: normal !important;
  font-size: normal !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 3.4rem;
  line-height: 4.2rem;
  flex-grow: 1;
  color: #81b5bd;
  margin-bottom: 0;
}
.site-footer__newsletter-wrap .mc4wp-response {
  margin-top: 2rem;
}
.site-footer__newsletter-wrap .mc4wp-response p {
  margin: 0;
}
.site-footer__action-wrap {
  padding: 5.8rem;
  -webkit-transform: translate(0, 10rem);
  -moz-transform: translate(0, 10rem);
  -ms-transform: translate(0, 10rem);
  -o-transform: translate(0, 10rem);
  transform: translate(0, 10rem);
  height: 20rem;
  background-color: #81b5bd;
  display: flex;
  align-items: center;
  position: relative;
}
@media only screen and (max-width: 1640px) {
  .site-footer__action-wrap {
    padding: 5.8rem;
    height: auto;
    min-height: 0;
    min-width: 0;
  }
  .site-footer__action-wrap .site-footer__action-button-set {
    flex-wrap: wrap;
    margin-left: 0;
  }
}
@media only screen and (max-width: 1340px) {
  .site-footer__action-wrap {
    padding: 3.5rem 4rem;
  }
  .site-footer__action-wrap .site-footer__action-button-set {
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
  }
  .site-footer__action-wrap .site-footer__action-button-set a {
    flex-basis: 45%;
    max-width: 45%;
  }
  .site-footer__action-wrap .site-footer__action-button-set a:first-of-type {
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 768px) {
  .site-footer__action-wrap {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .site-footer__action-wrap .site-footer__action-button-set {
    margin: 0 0 0 15px;
  }
  .site-footer__action-wrap .site-footer__action-button-set a {
    flex-basis: 100%;
    max-width: 100%;
    margin: 0;
  }
}
@media only screen and (max-width: 1100px) {
  .site-footer__action-wrap {
    flex-direction: column;
    align-items: start;
  }
  .site-footer__action-wrap .site-footer__action-button-set {
    width: 100%;
    margin: 15px 0 0;
  }
}
.site-footer__action-wrap p {
  font-family: 'Uni-Sans-SemiBold';
  font-weight: normal !important;
  font-size: normal !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 3.4rem;
  line-height: 4.2rem;
  max-width: 26rem;
  color: #ffffff;
  margin-bottom: 0;
}
.site-footer__action-button-set {
  display: flex;
  flex-wrap: wrap;
  margin-left: auto;
  align-items: center;
}
.site-footer__action-button-set > *:not(:last-of-type) {
  margin-right: 1.5rem;
}
.site-footer__action-button-set > a {
  min-height: 50px;
  min-width: 28.4rem;
}
.site-footer__logo {
  display: block;
  margin-bottom: 2rem;
}
.site-footer__main {
  background-color: #333333;
  padding: 20rem 0 3rem 0;
  color: #999999;
}
.site-footer__main-wrap {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 480px) {
  .site-footer__main-wrap {
    flex-wrap: wrap;
  }
}
.site-footer__columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 66.66%;
  flex-basis: 66.66%;
  min-width: 66.66%;
}
@media only screen and (max-width: 660px) {
  .site-footer__columns {
    width: 100%;
    flex-basis: 100%;
    min-width: 100%;
  }
  .site-footer__columns > .site-footer__nav {
    flex-wrap: wrap;
    width: 100%;
    flex-basis: 100%;
    min-width: 100%;
  }
}
.site-footer__contact {
  text-align: right;
  width: 33.33%;
  flex-basis: 33.33%;
  min-width: 33.33%;
}
.site-footer__contact a {
  color: #999999;
  text-decoration: none;
}
.site-footer__contact a:hover {
  color: white;
}
@media only screen and (max-width: 660px) {
  .site-footer__contact {
    margin-top: 2.5rem;
    text-align: left;
    width: 100%;
    flex-basis: 100%;
    min-width: 100%;
  }
}
.site-footer__nav {
  flex-basis: calc(50% - 15px);
  min-width: calc(50% - 15px);
  padding-bottom: 7rem;
}
.site-footer__nav p {
  font-family: 'RobotoCondensed-Bold';
  font-weight: normal !important;
  font-size: normal !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 2.2rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
  display: block;
  text-transform: uppercase;
  color: #ffffff;
}
.site-footer__nav-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.site-footer__nav-menu li {
  width: calc(50% - 5px);
  min-width: calc(50% - 5px);
}
.site-footer__nav-menu li a {
  color: #999999;
  text-decoration: none;
}
.site-footer__nav-menu li a:hover {
  color: #ffffff;
}
.site-footer__bottom {
  background-color: #333333;
  padding: 0 0 8rem 0;
  color: #666666;
  font-size: 14px;
}
.site-footer__bottom a {
  color: #666666;
  text-decoration: none;
}
.site-footer__bottom a:hover {
  color: #999999;
}
@media only screen and (max-width: 900px) {
  .site-footer__bottom {
    padding: 0;
    display: flex;
  }
}
.site-footer__bottom-wrap {
  display: flex;
}
.site-footer__bottom-wrap ul {
  display: flex;
  margin: 0 -1rem;
}
.site-footer__bottom-wrap ul li {
  padding: 0 1rem;
  height: 14px;
  line-height: 14px;
}
.site-footer__bottom-wrap ul li:not(:last-child) {
  border-right: 1px solid #666666;
}
.site-footer__bottom-wrap ul:last-of-type {
  margin-left: auto;
}
@media only screen and (max-width: 900px) {
  .site-footer__bottom-wrap {
    width: 100%;
  }
  .site-footer__bottom-wrap ul {
    text-align: right;
    flex-direction: column;
    align-items: flex-end;
    padding-bottom: 1rem;
  }
  .site-footer__bottom-wrap ul#menu-footer {
    text-align: left;
  }
  .site-footer__bottom-wrap ul li {
    border: none !important;
    display: block;
    height: auto;
    width: 100%;
    line-height: 24px;
  }
}
@media only screen and (max-width: 660px) {
  .site-footer__bottom-wrap {
    flex-direction: column;
  }
  .site-footer__bottom-wrap ul {
    text-align: left;
    margin: 0 !important;
  }
}
@media only screen and (max-width: 768px) {
  .site-footer__action .grid,
  .site-footer__newsletter .grid {
    padding: 0;
  }
  .site-footer__main {
    padding: 4rem 0;
  }
  .site-footer__nav {
    padding-bottom: 2rem;
  }
  .site-footer__nav p {
    margin: 0;
  }
  .site-footer__nav .social-media-icons {
    margin-top: 2rem;
  }
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 10rem;
  background-color: #bdb6b1;
  z-index: 99999;
}
.site-header__wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
  justify-content: space-between;
}
.site-header__logo {
  display: flex;
}
.site-header__nav {
  height: 100%;
  display: flex;
  align-content: stretch;
  flex-direction: column;
  flex-grow: 1;
  margin-left: 4.5rem;
}
.site-header__nav > ul {
  display: flex;
  height: 100%;
  align-items: center;
}
.site-header__nav > ul > li {
  display: flex;
  height: 100%;
  align-items: center;
}
@media only screen and (min-width: 1100px) {
  .site-header__nav > ul > li:hover .site-header__nav-dropdown {
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .site-header__nav > ul > li:hover > a {
    background-color: #e3e3e2;
    color: #333333;
  }
}
.site-header__nav > ul > li.has-child > a:after {
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
  height: 20px;
  width: 20px;
  content: "";
  margin-left: 10px;
  display: block;
  background-image: url("/wp-content/themes/tseonline/static/images/icons/dropdown--grey.svg");
  background-position: center center;
  background-repeat: no-repeat;
}
.site-header__nav > ul > li.has-child:hover > a:after {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
@media only screen and (max-width: 1100px) {
  .site-header__nav > ul > li.has-child .site-header__nav-dropdown.open {
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
.site-header__nav > ul > li > a {
  text-decoration: none;
  display: flex;
  height: 100%;
  align-items: center;
  padding: 0 2.5rem;
  font-size: 2rem;
  color: #ffffff;
}
@media only screen and (max-width: 660px) {
  .site-header__nav > ul > li > a {
    font-size: 1.6rem;
  }
}
.site-header__nav-dropdown {
  -webkit-transform: translate(0, -100%);
  -moz-transform: translate(0, -100%);
  -ms-transform: translate(0, -100%);
  -o-transform: translate(0, -100%);
  transform: translate(0, -100%);
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  visibility: hidden;
  background-color: #e3e3e2;
  position: absolute;
  top: 10rem;
  left: 0;
  right: 0;
  width: 100%;
}
.site-header__nav-dropdown-wrap {
  position: relative;
}
.site-header__nav-dropdown-wrap ul {
  padding-right: 40rem;
  padding-top: 6.6rem;
  padding-bottom: 6.6rem;
  display: flex;
  flex-grow: 1;
  width: auto;
  flex-wrap: wrap;
}
.site-header__nav-dropdown-wrap ul > li {
  min-width: 200px;
  margin-right: 5rem;
  margin-bottom: 2rem;
  line-height: 2.2rem;
}
.site-header__nav-dropdown-wrap ul > li.is-parent {
  display: none;
}
@media only screen and (min-width: 768px) {
  .site-header__nav-dropdown-wrap ul > li {
    flex-basis: calc(50% - 5rem);
    max-width: calc(50% - 5rem);
  }
}
.site-header__nav-dropdown-wrap ul > li > a {
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
  color: #333333;
  text-decoration: none;
}
.site-header__nav-dropdown-wrap ul > li > a:hover {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  color: #81b5bd;
}
.site-header__nav-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 40rem;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.site-header__language-switcher {
  margin-left: auto;
  margin-right: 4rem;
}
.site-header__language-switcher > li {
  position: relative;
}
.site-header__language-switcher > li.menu-item-has-children > a:after {
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
  height: 2rem;
  width: 2rem;
  content: "";
  margin-left: 5px;
  display: block;
  background-image: url("/wp-content/themes/tseonline/static/images/icons/dropdown--grey.svg");
  background-position: center center;
  background-repeat: no-repeat;
}
.site-header__language-switcher > li.menu-item-has-children:hover > a:after {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
.site-header__language-switcher > li:hover .sub-menu {
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  pointer-events: all;
}
.site-header__language-switcher > li:hover a {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
.site-header__language-switcher > li a {
  -webkit-opacity: 0.6;
  -moz-opacity: 0.6;
  opacity: 0.6;
  font-family: 'RobotoCondensed-Regular';
  font-weight: normal !important;
  font-size: normal !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  align-items: center;
  font-size: 14px;
  text-transform: uppercase;
}
.site-header__language-switcher > li .sub-menu {
  -webkit-transform: translate(0, -1rem);
  -moz-transform: translate(0, -1rem);
  -ms-transform: translate(0, -1rem);
  -o-transform: translate(0, -1rem);
  transform: translate(0, -1rem);
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  background-color: #e3e3e2;
  right: 0;
  padding: 5px 25px;
}
@media only screen and (max-width: 1100px) {
  .site-header {
    height: 6rem;
  }
  .site-header__logo img {
    max-width: 80px;
  }
  .site-header__nav {
    position: fixed;
    bottom: 0;
    left: 0;
    margin: 0;
    background-color: #ffffff;
    width: 100vw;
    height: calc(100% - 6rem);
    transform: translateX(-100%);
    transition: all 0.375s ease-in-out;
  }
  .site-header__nav > ul > li a {
    padding: 0 2.5rem 0 1.5rem;
  }
  .site-header__nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
  }
  .site-header__nav ul li {
    line-height: 4.2rem;
    flex-direction: column;
    height: auto;
  }
  .site-header__nav ul li a {
    color: #333333;
  }
  .site-header__nav ul li.has-child a {
    display: block;
    position: relative;
  }
  .site-header__nav ul li.has-child a:after {
    position: absolute;
    top: 13px;
    right: 0;
    margin: 0;
    transform: rotate(-90deg);
  }
  .site-header__nav ul li.has-child a:focus {
    background-color: transparent;
  }
  .site-header__nav-image {
    display: none;
  }
  .site-header__cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    padding: 1.2rem 6rem;
    margin: 4rem 0 0;
  }
  .site-header__nav-dropdown {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    opacity: 1;
    z-index: 1;
    pointer-events: all;
    transform: translateX(-100%);
    transition: all 0.175s ease-in-out;
  }
  .site-header__nav-dropdown li.is-parent {
    display: list-item !important;
  }
  .site-header__nav-dropdown ul > li > a {
    padding: 0;
  }
  .site-header__nav-dropdown.open {
    transform: translateX(0);
  }
  .site-header__toggle {
    position: absolute;
    top: 0;
    right: 0;
    height: 6rem;
    width: 6rem;
    background-color: #81b5bd;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .site-header__bar {
    transition: all 0.175s ease-in-out;
    display: block;
    background-color: #ffffff;
    height: 0.3rem;
    width: calc(6rem * 0.5);
  }
  .site-header__bar:nth-child(1),
  .site-header__bar:nth-child(2) {
    margin-bottom: 0.5rem;
  }
  .site-header.open .site-header__nav {
    transform: translateX(0%);
  }
  .site-header.open .site-header__bar {
    width: calc(6rem * 0.3);
  }
  .site-header.open .site-header__bar:nth-child(1),
  .site-header.open .site-header__bar:nth-child(2) {
    position: relative;
    transform: rotate(45deg);
  }
  .site-header.open .site-header__bar:nth-child(1) {
    top: 0.8rem;
  }
  .site-header.open .site-header__bar:nth-child(2) {
    top: 0;
  }
  .site-header.open .site-header__bar:nth-child(3) {
    position: relative;
    top: -0.8rem;
    transform: rotate(-45deg);
  }
  .site-header.open.submenu .site-header__toggle {
    background-color: #e11a3b;
  }
  .site-header.open.submenu .site-header__bar:nth-child(1),
  .site-header.open.submenu .site-header__bar:nth-child(2),
  .site-header.open.submenu .site-header__bar:nth-child(3) {
    left: -0.2rem;
    width: calc(6rem * 0.175);
  }
  .site-header.open.submenu .site-header__bar:nth-child(1) {
    transform: rotate(-45deg);
    top: 0.5rem;
  }
  .site-header.open.submenu .site-header__bar:nth-child(2) {
    transform: rotate(45deg);
    top: 0.3rem;
  }
  .site-header.open.submenu .site-header__bar:nth-child(3) {
    transform: rotate(45deg);
    top: -0.5rem;
  }
}
.site-header-search__toggle {
  position: absolute;
  top: 0;
  right: 0;
  height: 10rem;
  width: 10rem;
  background-color: #cac5c1;
  background-position: center center;
  background-repeat: no-repeat;
  cursor: pointer;
  overflow: hidden;
}
.site-header-search__toggle:before {
  background-image: url("/wp-content/themes/tseonline/static/images/icons/magnifier--black.svg");
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  height: 10rem;
  width: 10rem;
  content: "";
  display: block;
  z-index: 10;
}
.site-header-search__toggle:after {
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -webkit-transition: height 0.3s ease;
  -moz-transition: height 0.3s ease;
  -ms-transition: height 0.3s ease;
  -o-transition: height 0.3s ease;
  transition: height 0.3s ease;
  position: absolute;
  bottom: 0;
  right: 0;
  height: 0;
  width: 10rem;
  content: "";
  display: block;
  z-index: 5;
  background-color: #bdb6b1;
}
.site-header-search__toggle:hover {
  background-color: #d4d0cd;
}
.site-header-search__toggle:active:after,
.site-header-search__toggle--active:after {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  height: 10rem;
}
.site-header-search__toggle--active {
  left: 0;
  right: auto;
}
.site-header-search__toggle--active:before {
  background-image: url("/wp-content/themes/tseonline/static/images/icons/close--black.svg");
}
.site-header-search__search-area {
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translate(0, -10rem);
  -moz-transform: translate(0, -10rem);
  -ms-transform: translate(0, -10rem);
  -o-transform: translate(0, -10rem);
  transform: translate(0, -10rem);
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  left: 10rem;
  height: 10rem;
  width: calc(100% - 10rem);
  background-color: #e3e3e2;
}
.site-header-search__search-area input[type="text"] {
  font-family: 'RobotoCondensed-Light';
  font-weight: normal !important;
  font-size: normal !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 100%;
  text-align: center;
  font-size: 2.2rem;
  width: calc(100% - 10rem);
  background-color: #e3e3e2;
  color: #797979;
}
.site-header-search__search-area input[type="submit"] {
  width: 10rem;
  height: 10rem;
  margin-left: auto;
  text-indent: -999rem;
  background-image: url("/wp-content/themes/tseonline/static/images/icons/magnifier--white.svg");
  background-position: center center;
  background-repeat: no-repeat;
}
.site-header-search__search-area--visible {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
@media only screen and (max-width: 1100px) {
  .site-header-search__toggle {
    height: 6rem;
    width: 6rem;
    right: 6rem;
    left: auto;
  }
  .site-header-search__toggle:before {
    height: 6rem;
    width: 6rem;
  }
  .site-header-search__search-area {
    left: 0;
    height: 6rem;
    width: 100%;
  }
  .site-header-search__search-area input[type="text"] {
    font-size: 1.8rem;
    text-align: left;
    width: calc(100% - (6rem * 2));
  }
  .site-header-search__search-area input[type="submit"] {
    width: 6rem;
    height: 6rem;
  }
}
.gallery-carousel__wrap {
  display: flex;
  max-width: 100%;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.gallery-carousel__item {
  display: flex;
  margin: 15rem 0;
}
body.single-post .gallery-carousel__item {
  margin: 6.4rem 0 8.4rem 0;
}
.gallery-carousel__item img {
  max-height: 50rem;
  width: 100%;
  object-fit: cover;
}
.gallery-carousel .swiper-slide {
  -webkit-opacity: 0.2;
  -moz-opacity: 0.2;
  opacity: 0.2;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.gallery-carousel .swiper-slide .img-link {
  pointer-events: none;
}
.gallery-carousel .swiper-slide .img-link:before,
.gallery-carousel .swiper-slide .img-link:after {
  display: none;
}
.gallery-carousel .swiper-slide.swiper-slide-active {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
.gallery-carousel .swiper-slide.swiper-slide-active .img-link {
  pointer-events: all;
}
.gallery-carousel .swiper-slide.swiper-slide-active .img-link:before,
.gallery-carousel .swiper-slide.swiper-slide-active .img-link:after {
  display: block;
}
.gallery-carousel .swiper-controls .swiper-navigation {
  top: -10rem;
}
.gallery-carousel .swiper-controls .swiper-navigation__button {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  position: absolute;
  top: 50%;
  bottom: auto;
  right: 8rem;
  margin: 0;
  width: 5.2rem;
  height: 5.2rem;
  border: 2px solid #e3e3e2;
  background-image: url("/wp-content/themes/tseonline/static/images/icons/arrow-right--blue.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-color: white;
  background-size: 1.6rem;
  cursor: pointer;
  z-index: 2000;
}
.gallery-carousel .swiper-controls .swiper-navigation__button:hover {
  border: 2px solid #81b5bd;
  background-color: #81b5bd;
  background-image: url("/wp-content/themes/tseonline/static/images/icons/arrow-right--white.svg");
}
.gallery-carousel .swiper-controls .swiper-navigation__button--prev {
  right: auto;
  left: calc(8rem + 9.9rem);
  background-image: url("/wp-content/themes/tseonline/static/images/icons/arrow-left--blue.svg");
  margin-top: -0.2rem;
}
.gallery-carousel .swiper-controls .swiper-navigation__button--prev:hover {
  background-image: url("/wp-content/themes/tseonline/static/images/icons/arrow-left--white.svg");
}
.gallery-carousel .swiper-controls .swiper-pagination-wrap {
  color: #333333;
  display: flex;
  font-size: 1.6rem;
  line-height: 3.3rem;
  justify-content: center;
  margin: -7rem 0 8rem 0;
}
body.single-post .gallery-carousel .swiper-controls .swiper-pagination-wrap {
  margin: -5rem 0 3rem 0;
}
.gallery-carousel .swiper-controls .swiper-pagination-wrap .last {
  color: rgba(0, 0, 0, 0.2);
}
.gallery-carousel .swiper-controls .swiper-pagination-progressbar {
  bottom: auto;
  left: auto;
  top: 1.6rem;
  margin: 0 1.5rem;
  position: relative;
  height: 0.1rem;
  width: 8.7rem;
  background-color: rgba(0, 0, 0, 0.2);
}
.gallery-carousel .swiper-controls .swiper-pagination-progressbar span {
  background-color: #000000;
}
.content-section {
  padding-top: 15rem;
  padding-bottom: 15rem;
}
@media only screen and (max-width: 768px) {
  .content-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.content-section--bg-shade {
  background-color: #f1f1f1;
}
.content-section--bg-white-bottom {
  position: relative;
}
.content-section--bg-white-bottom:after {
  content: "";
  z-index: 1;
  width: 100%;
  background-color: white;
  position: absolute;
  display: block;
  right: 0;
  bottom: 0;
  left: 0;
}
.content-section--bg-white-bottom.content-section--spacing-small:after {
  height: calc(10rem + 5.2rem);
}
.content-section--bg-white-bottom.content-section--spacing-xsmall:after {
  height: calc(5rem + 5.2rem);
}
.content-section--bg-white-bottom.content-section--spacing-medium:after {
  height: calc(12rem + 5.2rem);
}
.content-section--bg-shade-bottom {
  position: relative;
  margin-bottom: 9rem;
}
@media only screen and (max-width: 768px) {
  .content-section--bg-shade-bottom .layout-flexible-content__text {
    margin-bottom: 0;
    padding-bottom: 0 !important;
  }
  .content-section--bg-shade-bottom .layout-flexible-content__image {
    justify-content: flex-start !important;
    padding-top: 0 !important;
  }
}
.content-section--bg-shade-bottom:after {
  content: "";
  z-index: -1;
  width: 100%;
  background-color: #f1f1f1;
  position: absolute;
  display: block;
  right: 0;
  bottom: 0;
  left: 0;
}
.content-section--bg-shade-bottom .layout-flexible-content__text {
  padding-bottom: 4rem;
}
.content-section--bg-shade-bottom .layout-flexible-content__image {
  position: relative;
  bottom: -5rem;
}
.content-section--bg-shade-bottom .layout-flexible-content__image a {
  height: 90%;
}
.content-section--bg-shade-bottom .layout-flexible-content__image a img {
  object-fit: cover;
  height: 100%;
}
.content-section--bg-shade-bottom .layout-flexible-content__image.productlijn-video {
  bottom: inherit;
}
.content-section--bg-shade-bottom.content-section--spacing-small {
  /*
			.layout-introduction__scroller {
				bottom: -10rem;
			}
*/
}
.content-section--bg-shade-bottom.content-section--spacing-small .layout-introduction__scroller {
  bottom: 2rem;
}
.content-section--bg-shade-bottom.content-section--spacing-small:after {
  height: calc(10rem + 5.2rem);
}
body.page-template-page-about .content-section--bg-shade-bottom.content-section--spacing-small:after {
  height: 10rem;
}
.content-section--bg-shade-bottom.content-section--spacing-xsmall {
  padding-bottom: 15.2rem;
}
.content-section--bg-shade-bottom.content-section--spacing-xsmall .layout-introduction__scroller {
  bottom: -10rem;
}
.content-section--bg-shade-bottom.content-section--spacing-xsmall:after {
  height: calc(10rem + 5.2rem);
}
.content-section--bg-shade-bottom.content-section--spacing-medium {
  padding-bottom: 17.2rem;
}
.content-section--bg-shade-bottom.content-section--spacing-medium .layout-introduction__scroller {
  bottom: -10rem;
}
.content-section--bg-shade-bottom.content-section--spacing-medium:after {
  height: calc(12rem + 5.2rem);
}
@media only screen and (max-width: 768px) {
  .content-section--bg-shade-bottom:after {
    display: none;
  }
}
.content-section--spacing-medium {
  padding-top: 12rem;
  padding-bottom: 12rem;
}
@media only screen and (max-width: 768px) {
  .content-section--spacing-medium {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.content-section--spacing-small {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
body.single-post .content-section--spacing-small {
  padding-top: 6.4rem;
  padding-bottom: 6.4rem;
}
@media only screen and (max-width: 768px) {
  .content-section--spacing-small {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.content-section--spacing-xsmall {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media only screen and (max-width: 768px) {
  .content-section--spacing-xsmall {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.content-section--no-spacing {
  padding-top: 0;
  padding-bottom: 0;
}
.content-section--no-spacing-top {
  padding-top: 0;
}
.content-section--no-spacing-bottom {
  padding-bottom: 0;
}
.content-section--spacing-bottom-large {
  padding-bottom: 28rem;
}
@media only screen and (max-width: 768px) {
  .content-section--spacing-bottom-large {
    padding-bottom: 12rem;
  }
}
@media only screen and (max-width: 660px) {
  .content-section--spacing-bottom-large {
    padding-bottom: 4rem;
  }
}
.content-section--spacing-bottom-small {
  padding-bottom: 9rem;
}
@media only screen and (max-width: 768px) {
  .content-section--spacing-bottom-small {
    padding-bottom: 4.5rem;
  }
}
.content-section--spacing-top-large {
  padding-top: 28rem;
}
@media only screen and (max-width: 768px) {
  .content-section--spacing-top-large {
    padding-top: 12rem;
  }
}
@media only screen and (max-width: 660px) {
  .content-section--spacing-top-large {
    padding-top: 4rem;
  }
}
.content-section--pull-top {
  position: relative;
  margin-top: -4rem;
  z-index: 100;
}
@media only screen and (max-width: 660px) {
  .content-section--pull-top {
    margin-top: 4rem;
  }
}
.layout-flexible-content--title-text {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.layout-flexible-content--title-text .layout-flexible-content__title {
  padding-right: 14rem;
}
@media only screen and (max-width: 1640px) {
  .layout-flexible-content--title-text .layout-flexible-content__title {
    padding-right: 5rem;
  }
}
@media only screen and (max-width: 1100px) {
  .layout-flexible-content--title-text .layout-flexible-content__title {
    padding-right: 2.5rem;
  }
}
@media only screen and (max-width: 660px) {
  .layout-flexible-content--title-text .layout-flexible-content__title {
    padding-right: 0;
  }
}
.layout-flexible-content--title-text .layout-flexible-content__title,
.layout-flexible-content--title-text .layout-flexible-content__text {
  flex-basis: 50%;
  min-width: 50%;
  max-width: 50%;
}
@media only screen and (max-width: 1100px) {
  .layout-flexible-content--title-text .layout-flexible-content__title,
  .layout-flexible-content--title-text .layout-flexible-content__text {
    flex-basis: 100%;
    max-width: 100%;
    min-width: 100%;
  }
}
.layout-flexible-content--title-text iframe {
  margin-top: 2.5rem;
  max-width: 100%;
}
.layout-flexible-content--text-image {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  /*
		.layout-flexible-content__text, .layout-flexible-content__image {
			flex-basis: 50%;
			max-width: 50%;
			min-width: 50%;
			@media @large {
				flex-basis: 100%;
				max-width: 100%;
				min-width: 100%;
			}
		}
*/
}
.layout-flexible-content--text-image .layout-flexible-content__text {
  padding-right: 14rem;
}
.layout-flexible-content--text-image .layout-flexible-content__text--logo {
  padding-bottom: 0;
}
.layout-flexible-content--text-image .layout-flexible-content__text--logo p a {
  display: inline-block !important;
}
@media only screen and (max-width: 1640px) {
  .layout-flexible-content--text-image .layout-flexible-content__text {
    padding-right: 5rem;
  }
}
@media only screen and (max-width: 1100px) {
  .layout-flexible-content--text-image .layout-flexible-content__text {
    padding-right: 2.5rem;
  }
}
@media only screen and (max-width: 660px) {
  .layout-flexible-content--text-image .layout-flexible-content__text {
    padding-right: 0;
  }
}
.layout-flexible-content--text-image .layout-flexible-content__text .type-heading {
  padding: 4rem 0 2rem 0;
}
@media only screen and (max-width: 768px) {
  .layout-flexible-content--text-image .layout-flexible-content__text .type-heading {
    padding: 2rem 0 0;
  }
}
.layout-flexible-content--text-image .layout-flexible-content__text p a {
  color: #858585;
  text-decoration: underline;
  margin-top: 1.6rem;
  display: block;
}
.layout-flexible-content--text-image .layout-flexible-content__image {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.layout-flexible-content--text-image .layout-flexible-content__image--logo {
  justify-content: center;
  align-items: center;
  bottom: 0;
}
.layout-flexible-content--text-image .layout-flexible-content__image--full {
  justify-content: center;
  align-items: center;
}
.layout-flexible-content--text-image .layout-flexible-content__image--full a {
  background: transparent;
}
.layout-flexible-content--text-image .layout-flexible-content__image--full a img {
  height: auto;
  width: auto;
  object-fit: unset;
  max-width: 540px;
  max-height: 373px;
}
@media only screen and (max-width: 768px) {
  .layout-flexible-content--text-image .layout-flexible-content__image--full {
    position: relative;
  }
  .layout-flexible-content--text-image .layout-flexible-content__image--full:before {
    content: "";
    width: 1px;
    margin-left: -1px;
    float: left;
    height: 0;
    padding-top: 100%;
  }
  .layout-flexible-content--text-image .layout-flexible-content__image--full a,
  .layout-flexible-content--text-image .layout-flexible-content__image--full a img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .layout-flexible-content--text-image .layout-flexible-content__image--full a img {
    object-fit: contain;
  }
}
.layout-flexible-content--text-image .layout-flexible-content__image-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 1100px) {
  .layout-flexible-content--text-image .layout-flexible-content__image {
    padding-top: 4rem;
  }
}
.layout-flexible-content--text-image .layout-flexible-content__text {
  flex-basis: 60%;
  max-width: 60%;
  min-width: 60%;
}
@media only screen and (max-width: 1100px) {
  .layout-flexible-content--text-image .layout-flexible-content__text {
    flex-basis: 100%;
    max-width: 100%;
    min-width: 100%;
  }
}
.layout-flexible-content--text-image .layout-flexible-content__image {
  flex-basis: 40%;
  max-width: 40%;
  min-width: 40%;
}
@media only screen and (max-width: 1100px) {
  .layout-flexible-content--text-image .layout-flexible-content__image {
    flex-basis: 100%;
    max-width: 100%;
    min-width: 100%;
  }
}
.layout-flexible-content--text-image iframe {
  margin-top: 2.5rem;
  max-width: 100%;
}
.layout-flexible-content--text-image-left {
  flex-direction: row-reverse;
}
.layout-flexible-content--text-image-left .layout-flexible-content__text {
  z-index: 2;
  padding-right: 0;
  padding-left: 14rem;
}
@media only screen and (max-width: 1640px) {
  .layout-flexible-content--text-image-left .layout-flexible-content__text {
    padding-left: 5rem;
  }
}
@media only screen and (max-width: 1100px) {
  .layout-flexible-content--text-image-left .layout-flexible-content__text {
    padding-left: 2.5rem;
  }
}
@media only screen and (max-width: 660px) {
  .layout-flexible-content--text-image-left .layout-flexible-content__text {
    padding-left: 0;
  }
}
.newsletter-signup .mc4wp-form-fields {
  display: flex;
  align-content: center;
  align-items: center;
}
.newsletter-signup .mc4wp-form-fields p {
  flex-basis: 50%;
}
.newsletter-signup .mc4wp-form-fields .text {
  min-width: 28rem;
  max-width: 28rem;
  margin-left: 1.5rem;
  height: 5.2rem;
  border: none;
  background-color: #e3e3e2;
  color: #999999;
}
.newsletter-signup .mc4wp-form-fields .text::-webkit-input-placeholder {
  color: #adadad;
}
.newsletter-signup .mc4wp-form-fields .text:-moz-placeholder {
  color: #adadad;
}
.newsletter-signup .mc4wp-form-fields .text::-moz-placeholder {
  color: #adadad;
}
.newsletter-signup .mc4wp-form-fields .text:-ms-input-placeholder {
  color: #adadad;
}
.newsletter-signup .mc4wp-form-fields .text:first-of-type {
  margin-left: 9rem;
}
.newsletter-signup .mc4wp-form-fields .submit {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: block;
  text-indent: -9999px;
  cursor: pointer;
  margin: 0;
  width: 8rem !important;
  height: 5.2rem !important;
  border: 2px solid #81b5bd;
  background-image: url("/wp-content/themes/tseonline/static/images/icons/arrow-right--blue.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-color: transparent;
  background-size: 1.6rem;
  position: relative;
  margin-left: 1.5rem;
}
.newsletter-signup .mc4wp-form-fields .submit:hover {
  border: 2px solid #81b5bd;
  background-color: #81b5bd;
  background-image: url("/wp-content/themes/tseonline/static/images/icons/arrow-right--white.svg");
}
@media only screen and (max-width: 1640px) {
  .newsletter-signup .mc4wp-form-fields {
    flex-wrap: wrap;
  }
  .newsletter-signup .mc4wp-form-fields p {
    min-width: 100%;
    max-width: 100%;
    flex-basis: 100%;
    margin-bottom: 4rem;
  }
  .newsletter-signup .mc4wp-form-fields .text {
    min-width: 33.3333%;
    max-width: 33.3333%;
    flex-basis: 33.3333%;
  }
  .newsletter-signup .mc4wp-form-fields .text:first-of-type {
    margin: 0;
  }
}
@media only screen and (max-width: 660px) {
  .newsletter-signup .mc4wp-form-fields .text,
  .newsletter-signup .mc4wp-form-fields .submit {
    min-width: calc(50% - 0.75rem);
    max-width: calc(50% - 0.75rem);
    flex-basis: calc(50% - 0.75rem);
  }
  .newsletter-signup .mc4wp-form-fields .submit {
    margin: 2rem 0 0;
  }
}
@media only screen and (max-width: 660px) {
  .newsletter-signup .mc4wp-form-fields .text,
  .newsletter-signup .mc4wp-form-fields .submit {
    margin: 2rem 0 0;
    min-width: calc(100% - 0.75rem);
    max-width: calc(100% - 0.75rem);
    flex-basis: calc(100% - 0.75rem);
  }
}
.certificates {
  display: flex;
}
.certificates__text {
  min-width: 50%;
  max-width: 50%;
  padding-right: 18rem;
}
.certificates__list {
  min-width: 50%;
  max-width: 50%;
}
.certificates__list-item {
  display: flex;
  border-bottom: 1px solid #dfdfdf;
  line-height: 3rem;
  padding: 2rem 0;
  align-content: center;
  align-items: center;
}
.certificates__list-item:last-child {
  border-bottom: 0;
}
.certificates__list-item:before {
  content: "";
  height: 2rem;
  width: 2rem;
  margin-left: 2rem;
  margin-right: 4rem;
  background-image: url("/wp-content/themes/tseonline/static/images/icons/file--red.svg");
  background-size: 1.2rem;
  background-position: center center;
  background-repeat: no-repeat;
}
.certificates__list-item a {
  font-size: 2rem;
  color: #858585;
}
@media only screen and (max-width: 660px) {
  .certificates__list-item a {
    font-size: 1.6rem;
  }
}
.certificates__list-item a:hover {
  color: #e11a3b;
}
.certificates__list-item span {
  -webkit-opacity: 0.4;
  -moz-opacity: 0.4;
  opacity: 0.4;
  font-family: 'RobotoCondensed-Regular';
  font-weight: normal !important;
  font-size: normal !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-transform: uppercase;
  margin-left: auto;
  font-size: 1.4rem;
}
.productsheet {
  display: flex;
  align-content: stretch;
  align-items: stretch;
}
@media only screen and (max-width: 900px) {
  .productsheet {
    flex-direction: column;
  }
}
.productsheet__download {
  background-color: #e11a3b;
  padding: 5rem;
  min-width: 33.33%;
  max-width: 33.33%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  align-items: flex-start;
  justify-content: space-between;
}
@media only screen and (max-width: 900px) {
  .productsheet__download {
    min-width: auto;
    max-width: none;
  }
}
@media only screen and (max-width: 660px) {
  .productsheet__download {
    padding: 2rem;
  }
}
.productsheet__download p {
  -webkit-opacity: 0.6;
  -moz-opacity: 0.6;
  opacity: 0.6;
  padding-bottom: 1.2rem;
  color: #ffffff;
}
.productsheet__download .button {
  margin-top: auto;
  background-image: url("/wp-content/themes/tseonline/static/images/icons/point-down--white.svg");
  background-size: 1.2rem;
  background-position: right 2.2rem top 2.2rem;
  background-repeat: no-repeat;
}
.productsheet__download .button:hover {
  color: #e11a3b;
  background-image: url("/wp-content/themes/tseonline/static/images/icons/point-down--red.svg");
}
body.single-post .productsheet__download .button {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-image: none;
}
body.single-post .productsheet__download .button span svg {
  opacity: 0.8;
  width: 1.4rem;
}
.productsheet__content {
  height: auto;
  display: flex;
  flex-direction: column;
  padding: 7rem 9rem;
  flex-grow: 1;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #e3e3e2;
}
@media only screen and (max-width: 900px) {
  .productsheet__content {
    padding: 5rem;
  }
}
@media only screen and (max-width: 660px) {
  .productsheet__content {
    padding: 2rem;
  }
}
.productsheet__content ul {
  list-style: disc;
  padding-left: 1rem;
  color: #858585;
}
.productsheet__content ul li {
  position: relative;
  display: list-item;
}
.productsheet__content .type-heading {
  min-width: 100%;
  max-width: 100%;
}
.productsheet--case .productsheet__download {
  min-width: 100%;
  max-width: 100%;
}
.layout-introduction {
  position: relative;
}
.layout-introduction .button {
  margin-top: -30px;
}
.layout-introduction .button:hover {
  background: #4a858e;
  border: 2px solid #4a858e;
  color: white;
}
.layout-introduction .type-heading--alt {
  margin-bottom: 3rem;
}
.layout-introduction__columns {
  display: flex;
  flex-direction: row;
  min-height: 400px;
}
.layout-introduction__text {
  max-width: 50%;
  min-width: 50%;
  padding-right: 20rem;
  min-height: 30rem;
}
.layout-introduction__text--wide {
  max-width: 35%;
}
.layout-introduction__text--fw {
  min-width: 100%;
  max-width: 100%;
}
@media only screen and (min-width: 768px) {
  body.single-markten .layout-introduction__text {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    max-width: 100%;
  }
  body.single-markten .layout-introduction__text .type-heading {
    min-width: 50%;
    max-width: 50%;
    word-break: normal;
  }
  body.single-markten .layout-introduction__text p {
    min-width: 50%;
    max-width: 50%;
  }
}
.layout-introduction__image {
  max-width: 50%;
  min-width: 50%;
}
@media only screen and (max-width: 1100px) {
  .layout-introduction__image {
    margin-top: 2.5rem;
  }
}
.layout-introduction__button-set {
  max-width: 50%;
  display: flex;
  flex-direction: column;
  margin-top: 4.5rem;
}
.layout-introduction__button-set a {
  margin-top: 1.5rem;
}
.layout-introduction__return {
  padding: 4rem 0;
}
@media only screen and (max-width: 660px) {
  .layout-introduction__return {
    padding: 2rem 0 2rem;
  }
}
.layout-introduction__return a {
  color: #e11a3b;
  font-size: 1.6rem;
  line-height: 1.8rem;
  padding-left: 3rem;
  background-image: url("/wp-content/themes/tseonline/static/images/icons/grid--red.svg");
  background-size: 1.8rem;
  background-position: left center;
  background-repeat: no-repeat;
  text-decoration: none;
}
.layout-introduction__scroller {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: absolute;
  bottom: -5rem;
  width: 5.2rem;
  height: 5.2rem;
  border: 2px solid #e3e3e2;
  background-image: url("/wp-content/themes/tseonline/static/images/icons/arrow-down--blue.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-color: white;
  cursor: pointer;
  z-index: 2000;
  background-color: #ffffff;
}
.layout-introduction__scroller--relative {
  position: relative;
  bottom: inherit;
  margin-top: 5rem;
}
.layout-introduction__scroller:before {
  -webkit-transform: scale(0.45);
  -moz-transform: scale(0.45);
  -ms-transform: scale(0.45);
  -o-transform: scale(0.45);
  transform: scale(0.45);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-opacity: 0.3;
  -moz-opacity: 0.3;
  opacity: 0.3;
  content: "";
  display: block;
  position: absolute;
  bottom: -2.7rem;
  left: -2.7rem;
  z-index: -1;
  height: 10.4rem;
  width: 10.4rem;
  background-color: #ffffff;
  pointer-events: none;
}
.layout-introduction__scroller:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.layout-introduction__scroller:hover:before {
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -webkit-transform: scale(2);
  -moz-transform: scale(2);
  -ms-transform: scale(2);
  -o-transform: scale(2);
  transform: scale(2);
}
@media only screen and (max-width: 768px) {
  .layout-introduction__scroller {
    display: none;
  }
}
.layout-introduction__post-meta {
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
@media only screen and (max-width: 768px) {
  .layout-introduction__post-meta {
    margin-top: 4rem;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
.layout-introduction__post-meta .grid {
  max-width: calc(10rem + 768px);
}
.layout-introduction__post-meta-inner {
  background-color: #81b5bd;
  padding: 4rem 5rem;
}
.layout-introduction__post-meta-inner ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.layout-introduction__post-meta-inner ul li {
  flex-basis: 33.33%;
  min-width: 33.33%;
  max-width: 33.33%;
  display: flex;
  flex-direction: column;
}
.layout-introduction__post-meta-inner ul li p {
  font-size: 1.6rem;
  color: #cde1e5;
}
.layout-introduction__post-meta-inner ul li p:first-of-type {
  color: #ffffff;
  font-family: 'Uni-Sans-SemiBold';
  font-weight: normal !important;
  font-size: normal !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}
.layout-introduction__post-meta-inner ul li p a {
  color: #cde1e5;
  text-decoration: none;
}
.layout-introduction__post-meta-inner ul li p a:hover {
  color: #ffffff;
}
.layout-introduction__post-meta-inner ul li dl {
  display: flex;
  flex-wrap: wrap;
}
.layout-introduction__post-meta-inner ul li dl dt {
  font-family: 'Uni-Sans-SemiBold';
  font-weight: normal !important;
  font-size: normal !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #ffffff;
  min-width: 100%;
  max-width: 100%;
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}
.layout-introduction__post-meta-inner ul li dl dd a {
  line-height: 2.4rem;
  background-color: #70abb4;
  padding: 0.5rem 2rem;
  margin-right: 0.6rem;
  margin-bottom: 0.6rem;
  color: #ffffff;
  text-decoration: none;
}
.layout-introduction__post-meta-inner ul li dl dd a:hover {
  color: #81b5bd;
  background-color: #ffffff;
}
@media only screen and (max-width: 1100px) {
  .layout-introduction__post-meta-inner {
    padding: 4rem 5rem;
  }
  .layout-introduction__post-meta-inner ul li {
    flex-basis: 50%;
    min-width: 50%;
    max-width: 50%;
  }
  .layout-introduction__post-meta-inner ul li:not(:last-of-type) {
    margin-bottom: 1.5rem;
  }
}
@media only screen and (max-width: 660px) {
  .layout-introduction__post-meta-inner {
    padding: 2rem 2.5rem;
  }
}
@media only screen and (max-width: 480px) {
  .layout-introduction__post-meta-inner ul li {
    flex-basis: 100%;
    min-width: 100%;
    max-width: 100%;
  }
}
.layout-introduction__post-meta-avatar {
  display: flex;
}
.layout-introduction__post-meta-avatar img {
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  width: 3.6rem;
  height: 3.6rem;
  margin-right: 1.5rem;
}
.layout-introduction--has-slider {
  position: static;
  min-height: 70rem;
}
.layout-introduction--has-slider .layout-introduction__text {
  z-index: 200;
}
@media only screen and (max-width: 1100px) {
  .layout-introduction--has-slider .layout-introduction__text {
    position: relative;
    max-width: 100%;
    flex-basis: 100%;
  }
}
.layout-introduction--has-slider .layout-introduction__slider {
  position: relative;
  flex-basis: 100%;
  min-height: 70rem;
}
@media only screen and (max-width: 1100px) {
  .layout-introduction--has-slider .layout-introduction__slider {
    min-height: 50rem;
  }
}
.layout-introduction--has-slider .layout-introduction__slider--installation .layout-introduction__slider-controls .layout-introduction__slider-controls-inner {
  background-color: transparent;
}
.layout-introduction--has-slider .layout-introduction__slider--installation .layout-introduction__slider-controls .layout-introduction__slider-controls-inner:after,
.layout-introduction--has-slider .layout-introduction__slider--installation .layout-introduction__slider-controls .layout-introduction__slider-controls-inner:before {
  display: none;
}
.layout-introduction--has-slider .layout-introduction__slider--installation .layout-introduction__slider-controls .layout-introduction__slider-controls-inner .swiper-controls {
  padding: 1px;
  flex-direction: row-reverse;
  align-items: flex-end;
}
.layout-introduction--has-slider .layout-introduction__slider--installation .layout-introduction__slider-controls .layout-introduction__slider-controls-inner .swiper-controls .swiper-button-next,
.layout-introduction--has-slider .layout-introduction__slider--installation .layout-introduction__slider-controls .layout-introduction__slider-controls-inner .swiper-controls .swiper-button-prev {
  margin-right: 1px;
  border: none;
}
.layout-introduction--has-slider .swiper-introduction,
.layout-introduction--has-slider .swiper-installation {
  position: absolute;
  top: 0rem;
  left: 0;
  margin-left: 0;
  width: 50vw;
  height: 40px;
  min-height: 70rem;
  z-index: 100;
}
.layout-introduction--has-slider .swiper-introduction .layout-introduction__slider-image,
.layout-introduction--has-slider .swiper-installation .layout-introduction__slider-image {
  height: 100%;
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 1100px) {
  .layout-introduction--has-slider .swiper-introduction,
  .layout-introduction--has-slider .swiper-installation {
    top: 0;
    left: 0;
    min-height: 40rem;
    width: calc(100% + 3rem);
    margin-left: -1.5rem;
  }
}
.layout-introduction--has-slider .swiper-introduction--sliding-next .layout-introduction__slider-controls-item,
.layout-introduction--has-slider .swiper-introduction--sliding-prev .layout-introduction__slider-controls-item {
  opacity: 0;
}
.layout-introduction--has-slider .swiper-introduction--sliding-next .layout-introduction__slider-controls-item {
  transform: translateY(0);
}
.layout-introduction--has-slider .swiper-introduction--sliding-prev .layout-introduction__slider-controls-item {
  transform: translateY(-100%);
}
.layout-introduction--has-slider .swiper-introduction .layout-introduction__slider-image {
  height: calc(100% - 10rem);
}
.layout-introduction--has-slider .swiper-introduction:not(.swiper-introduction--sliding-next):not(
          .swiper-introduction--sliding-prev
        ) .swiper-slide-active .layout-introduction__slider-controls-item {
  opacity: 1;
  transition: all 0.175s ease-in-out;
}
.layout-introduction--has-slider .layout-introduction__slider-controls {
  background-color: #ffffff;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 10rem;
  z-index: 150;
  width: 50vw;
}
@media only screen and (max-width: 1100px) {
  .layout-introduction--has-slider .layout-introduction__slider-controls {
    width: calc(100% + 3rem);
    margin-left: -1.5rem;
  }
}
.layout-introduction--has-slider .layout-introduction__slider-controls .grid {
  padding: 0;
}
.layout-introduction--has-slider .layout-introduction__slider-controls-item {
  height: auto;
  display: flex;
  align-content: center;
  flex-direction: row;
  align-items: center;
  padding: 0 5rem 0 7.5rem;
  flex-wrap: wrap;
  position: relative;
  width: 100%;
  z-index: 30;
  top: 5rem;
  transform: translateY(-50%);
  opacity: 0;
}
.layout-introduction--has-slider .layout-introduction__slider-controls-item p {
  margin-bottom: 0rem;
}
.layout-introduction--has-slider .layout-introduction__slider-controls-item p:last-of-type {
  padding-right: 2rem;
}
.layout-introduction--has-slider .layout-introduction__slider-controls-item p strong {
  font-family: 'Uni-Sans-SemiBold';
  font-weight: normal !important;
  font-size: normal !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 2.2rem;
  line-height: 2.6rem;
  color: #333333;
  margin-right: 1.5rem;
}
.layout-introduction--has-slider .layout-introduction__slider-controls-item a {
  margin-left: auto;
  color: #81b5bd;
}
.layout-introduction--has-slider .layout-introduction__slider-controls-item a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 1100px) {
  .layout-introduction--has-slider .layout-introduction__slider-controls-item {
    padding: 0 2rem 0 7.6rem;
    align-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
  }
  .layout-introduction--has-slider .layout-introduction__slider-controls-item p,
  .layout-introduction--has-slider .layout-introduction__slider-controls-item a {
    line-height: 2.2rem;
  }
  .layout-introduction--has-slider .layout-introduction__slider-controls-item p {
    flex-basis: auto;
  }
  .layout-introduction--has-slider .layout-introduction__slider-controls-item a {
    margin-left: 0;
    padding: 0;
  }
}
.layout-introduction--has-slider .layout-introduction__slider-controls-inner {
  position: absolute;
  bottom: 0;
  display: flex;
  width: 100%;
  height: 10rem;
  background-color: #ffffff;
}
.layout-introduction--has-slider .layout-introduction__slider-controls-inner:before,
.layout-introduction--has-slider .layout-introduction__slider-controls-inner:after {
  pointer-events: none;
  position: absolute;
  content: "";
  left: 5.2rem;
  right: 0;
  z-index: 2000;
  display: block;
  height: 4rem;
}
.layout-introduction--has-slider .layout-introduction__slider-controls-inner .swiper-container {
  width: 100%;
}
.layout-introduction--has-slider .layout-introduction__slider-controls-inner .swiper-controls {
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
}
.layout-introduction--has-slider .layout-introduction__slider-controls-inner .swiper-controls .swiper-button-next,
.layout-introduction--has-slider .layout-introduction__slider-controls-inner .swiper-controls .swiper-button-prev {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  margin: 0;
  width: 5.2rem;
  height: 5.2rem;
  border: 2px solid #e3e3e2;
  background-image: url("/wp-content/themes/tseonline/static/images/icons/arrow-right--blue.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-color: white;
  background-size: 1.6rem;
  position: relative;
}
.layout-introduction--has-slider .layout-introduction__slider-controls-inner .swiper-controls .swiper-button-next:hover,
.layout-introduction--has-slider .layout-introduction__slider-controls-inner .swiper-controls .swiper-button-prev:hover {
  border: 2px solid #81b5bd;
  background-color: #81b5bd;
  background-image: url("/wp-content/themes/tseonline/static/images/icons/arrow-right--white.svg");
}
.layout-introduction--has-slider .layout-introduction__slider-controls-inner .swiper-controls .swiper-button-prev {
  background-image: url("/wp-content/themes/tseonline/static/images/icons/arrow-left--blue.svg");
  margin-top: -0.2rem;
}
.layout-introduction--has-slider .layout-introduction__slider-controls-inner .swiper-controls .swiper-button-prev:hover {
  background-image: url("/wp-content/themes/tseonline/static/images/icons/arrow-left--white.svg");
}
@media only screen and (max-width: 1100px) {
  .layout-introduction--has-slider .layout-introduction__slider-controls-inner {
    width: 100%;
  }
  .layout-introduction--has-slider .layout-introduction__slider-controls-inner:before,
  .layout-introduction--has-slider .layout-introduction__slider-controls-inner:after {
    display: none;
  }
}
.layout-introduction--hero {
  height: 77rem;
}
@media only screen and (max-width: 768px) {
  .layout-introduction--hero {
    height: auto;
    padding: 2rem 0;
  }
}
.layout-introduction--hero .grid {
  height: 100%;
}
.layout-introduction--hero .layout-introduction__text p {
  -webkit-opacity: 0.6;
  -moz-opacity: 0.6;
  opacity: 0.6;
  color: #ffffff;
}
.layout-introduction--hero .layout-introduction__scroller {
  bottom: -2.7rem;
}
.layout-introduction--hero .layout-introduction__hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.layout-introduction--hero .layout-introduction__hero-image img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: -20;
}
.layout-introduction--hero .layout-introduction__hero-image:before {
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
  background-image: linear-gradient(-90deg, rgba(0, 0, 0, 0) 20%, rgba(23, 23, 23, 0.35) 50%, #333333 90%);
  display: block;
  content: "";
  position: absolute;
  z-index: -10;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.layout-introduction--hero .layout-introduction__hero-image--no-image:before {
  background: #3c3733;
}
.layout-introduction--hero .layout-introduction__hero-image--darker:before {
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
  background-image: linear-gradient(-90deg, rgba(0, 0, 0, 0) 0%, rgba(23, 23, 23, 0.35) 20%, #222222 90%);
}
@media only screen and (max-width: 1640px) {
  .layout-introduction__text {
    padding-right: 10rem;
  }
  .layout-introduction__columns .type-heading--alt,
  .layout-introduction__text .type-heading--alt {
    margin-bottom: 1rem;
  }
}
@media only screen and (max-width: 1100px) {
  .layout-introduction__text {
    padding-right: 2.5rem;
  }
  .layout-introduction__columns {
    flex-wrap: wrap;
  }
  .layout-introduction__text,
  .layout-introduction__image {
    max-width: 100%;
    flex-basis: 100%;
  }
}
@media only screen and (max-width: 660px) {
  .layout-introduction__text {
    padding-right: 0;
    min-height: auto;
  }
  .layout-introduction__columns .type-heading--alt,
  .layout-introduction__text .type-heading--alt {
    margin-bottom: 2rem;
  }
}
.post-tiles {
  display: flex;
  flex-wrap: wrap;
  margin: -1.2rem;
}
.post-tiles--margin-top {
  margin-top: 8rem;
}
@media only screen and (max-width: 660px) {
  .post-tiles--margin-top {
    margin-top: 0;
  }
}
.post-tiles--margin-top-small {
  margin-top: 4rem;
}
.post-tiles__documents {
  margin-top: 1.6rem;
  font-size: 1.6rem;
}
.post-tiles__documents a {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: block;
  color: #858585;
  text-decoration: none;
}
.post-tiles__documents a svg {
  margin-right: 1rem;
}
.post-tiles__documents a:hover {
  color: #e11a3b;
}
.post-tiles__documents-title {
  font-family: 'RobotoCondensed-Bold';
  font-weight: normal !important;
  font-size: normal !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
}
.post-tiles__item {
  display: flex;
  flex-direction: column;
  flex-basis: 33.33%;
  max-width: 33.33%;
  align-content: stretch;
  height: 50rem;
  padding: 1.2rem;
}
@media only screen and (max-width: 1100px) {
  .post-tiles__item {
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media only screen and (max-width: 768px) {
  .post-tiles__item {
    min-height: 40rem;
    height: auto;
  }
}
@media only screen and (max-width: 660px) {
  .post-tiles__item {
    flex-basis: 100%;
    max-width: 100%;
  }
}
.post-tiles__item--col-2 {
  flex-basis: 50%;
  min-width: 50%;
  max-width: 50%;
}
@media only screen and (max-width: 1100px) {
  .post-tiles__item--col-2 {
    flex-basis: 50%;
    min-width: 50%;
    max-width: 50%;
  }
}
@media only screen and (max-width: 660px) {
  .post-tiles__item--col-2 {
    flex-basis: 100%;
    min-width: 100%;
    max-width: 100%;
  }
}
.post-tiles__no-link {
  display: flex;
  position: relative;
  height: 100%;
  background-color: #e3e3e2;
  overflow: hidden;
  flex-direction: column;
}
.post-tiles__link {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: relative;
  height: 100%;
  background-color: #e3e3e2;
  overflow: hidden;
}
.post-tiles__link:hover {
  background-color: #5c5c5c;
}
.post-tiles__link:hover .post-tiles__content {
  height: 54%;
}
.post-tiles__link:hover .post-tiles__content-inner {
  transform: translateY(-1rem);
}
.post-tiles__link:hover .post-tiles__image {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-opacity: 0.3;
  -moz-opacity: 0.3;
  opacity: 0.3;
}
.post-tiles__content {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  height: 50%;
  padding: 0 4rem;
}
@media only screen and (max-width: 768px) {
  .post-tiles__content {
    position: relative;
    min-height: 18rem;
    padding: 3rem 1.5rem 1.5rem;
  }
}
.post-tiles__content-inner {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.post-tiles__content-inner h2,
.post-tiles__content-inner h3,
.post-tiles__content-inner .h2,
.post-tiles__content-inner .h3 {
  font-family: 'Uni-Sans-Regular';
  font-weight: normal !important;
  font-size: normal !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 2.4rem;
  line-height: 3rem;
  word-break: break-word;
}
.post-tiles__content-inner p {
  font-size: 1.6rem;
  margin-bottom: 0rem;
}
.post-tiles__content-tables {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
}
.post-tiles__content-tables dl {
  flex-wrap: wrap;
  display: flex;
  max-width: calc(50% - 1rem);
  min-width: calc(50% - 1rem);
  font-size: 1.6rem;
}
.post-tiles__content-tables dl dt {
  font-family: 'RobotoCondensed-Bold';
  font-weight: normal !important;
  font-size: normal !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  min-width: 100%;
  max-width: 100%;
  border-bottom: 1px solid #dfdfdf;
  padding-bottom: 0.6rem;
}
.post-tiles__content-tables dl dd {
  font-family: 'RobotoCondensed-Regular';
  font-weight: normal !important;
  font-size: normal !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #858585;
  min-width: 50%;
  max-width: 50%;
  border-bottom: 1px solid #dfdfdf;
  border-left: 1px solid #dfdfdf;
  padding: 0 2rem;
}
.post-tiles__content-tables dl dd:nth-child(odd) {
  border-right: 1px solid #dfdfdf;
}
.post-tiles__term {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  font-family: 'Uni-Sans-Regular';
  font-weight: normal !important;
  font-size: normal !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #81b5bd;
  line-height: 2.6rem;
  font-size: 1.8rem;
  padding-bottom: 1.2rem;
}
.post-tiles__term--cases {
  color: #e11a3b;
}
.post-tiles__image {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  max-width: 100%;
  height: 50%;
  overflow: hidden;
}
.post-tiles__image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.post-tiles__image img.logo {
  object-fit: scale-down;
}
@media only screen and (max-width: 1100px) {
  .post-tiles__image {
    height: 40%;
  }
}
@media only screen and (max-width: 768px) {
  .post-tiles__image {
    position: relative;
    top: 0;
    height: 20rem;
  }
}
.post-tiles__return {
  padding: 7rem 1.2rem 0 1.2rem;
  flex-basis: 100%;
  max-width: 100%;
  min-width: 100%;
}
.post-tiles__return a {
  color: #e11a3b;
  font-size: 1.6rem;
  line-height: 1.8rem;
  padding-left: 3rem;
  background-image: url("/wp-content/themes/tseonline/static/images/icons/grid--red.svg");
  background-size: 1.8rem;
  background-position: left center;
  background-repeat: no-repeat;
}
.post-tiles__item--post .post-tiles__link {
  background-color: #5c5c5c;
  color: #ffffff;
}
.post-tiles__item--post .post-tiles__link:hover {
  background-color: #81b5bd;
}
.post-tiles__item--post .post-tiles__link:hover .post-tiles__image {
  -webkit-opacity: 0.05;
  -moz-opacity: 0.05;
  opacity: 0.05;
}
.post-tiles__item--post .post-tiles__link:hover .post-tiles__term {
  color: #ffffff;
}
.post-tiles__item--post .post-tiles__image {
  -webkit-opacity: 0.3;
  -moz-opacity: 0.3;
  opacity: 0.3;
  height: 100%;
}
.post-tiles__item--post .post-tiles__content {
  position: absolute;
  background-color: transparent;
  padding: 3rem;
}
.post-tiles__item--post .post-tiles__content-inner h2,
.post-tiles__item--post .post-tiles__content-inner h3,
.post-tiles__item--post .post-tiles__content-inner .h2,
.post-tiles__item--post .post-tiles__content-inner .h3 {
  font-family: 'Uni-Sans-Bold';
  font-weight: normal !important;
  font-size: normal !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-transform: uppercase;
}
.post-tiles__item--downloads .post-tiles__link:hover {
  background-color: #d6d6d5;
}
.post-tiles__item--downloads .post-tiles__content {
  background-color: #e3e3e2;
  z-index: 1;
}
.post-tiles__item--downloads .post-tiles__download {
  position: absolute;
  top: 4rem;
  left: 4rem;
  background-color: #81b5bd;
  line-height: 2rem;
  font-size: 1.6rem;
  padding: 0.7rem 2rem;
  color: #cde1e5;
}
.post-tiles__item--productlijnen .post-tiles__link:hover,
.post-tiles__item--producten .post-tiles__link:hover {
  background-color: white;
}
.post-tiles__item--productlijnen .post-tiles__link:hover .post-tiles__image,
.post-tiles__item--producten .post-tiles__link:hover .post-tiles__image {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -webkit-transform: scale(1) translate(0, 0.5rem);
  -moz-transform: scale(1) translate(0, 0.5rem);
  -ms-transform: scale(1) translate(0, 0.5rem);
  -o-transform: scale(1) translate(0, 0.5rem);
  transform: scale(1) translate(0, 0.5rem);
}
.post-tiles__item--productlijnen .post-tiles__content-inner h2,
.post-tiles__item--producten .post-tiles__content-inner h2,
.post-tiles__item--productlijnen .post-tiles__content-inner h3,
.post-tiles__item--producten .post-tiles__content-inner h3,
.post-tiles__item--productlijnen .post-tiles__content-inner .h2,
.post-tiles__item--producten .post-tiles__content-inner .h2,
.post-tiles__item--productlijnen .post-tiles__content-inner .h3,
.post-tiles__item--producten .post-tiles__content-inner .h3 {
  font-family: 'Uni-Sans-Bold';
  font-weight: normal !important;
  font-size: normal !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-transform: uppercase;
}
.post-tiles__item--productlijnen .post-tiles__image,
.post-tiles__item--producten .post-tiles__image {
  height: 50%;
  width: 100%;
  position: absolute;
  top: 2rem;
  z-index: 100;
}
.post-tiles__item--productlijnen .post-tiles__image img,
.post-tiles__item--producten .post-tiles__image img {
  object-fit: inherit;
  height: 100%;
  margin: 0 auto;
  width: auto;
  top: 0;
}
@media only screen and (max-width: 1100px) {
  .post-tiles__item--productlijnen .post-tiles__image,
  .post-tiles__item--producten .post-tiles__image {
    height: 40%;
  }
}
@media only screen and (max-width: 768px) {
  .post-tiles__item--productlijnen .post-tiles__image,
  .post-tiles__item--producten .post-tiles__image {
    position: relative;
    top: 0;
    height: 20rem;
  }
}
.post-tiles__item--flex-height {
  height: auto;
}
.post-tiles__item--flex-height .post-tiles__link:hover {
  background-color: white;
}
.post-tiles__item--flex-height .post-tiles__link:hover .post-tiles__image {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -webkit-transform: scale(1) translate(0, 0.5rem);
  -moz-transform: scale(1) translate(0, 0.5rem);
  -ms-transform: scale(1) translate(0, 0.5rem);
  -o-transform: scale(1) translate(0, 0.5rem);
  transform: scale(1) translate(0, 0.5rem);
}
.post-tiles__item--flex-height .post-tiles__link {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: relative;
  display: flex;
  flex-direction: column;
}
.post-tiles__item--flex-height .post-tiles__image {
  height: 22rem;
}
.post-tiles__item--flex-height .post-tiles__content {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: relative;
  bottom: auto;
  height: auto;
  margin-top: 22rem;
  padding: 8rem 4rem 4rem 4rem;
  flex-grow: 1;
}
@media only screen and (max-width: 768px) {
  .post-tiles__item--flex-height .post-tiles__content {
    margin-top: 2rem;
    padding: 2rem;
  }
}
.post-tiles__item--flex-height .post-tiles__content-inner {
  justify-content: flex-start;
}
.post-tiles__item--flex-height .post-tiles__content-inner h2,
.post-tiles__item--flex-height .post-tiles__content-inner h3,
.post-tiles__item--flex-height .post-tiles__content-inner .h2,
.post-tiles__item--flex-height .post-tiles__content-inner .h3 {
  font-size: 3.8rem;
  line-height: 5rem;
}
.social-share {
  border-top: 1px solid #dfdfdf;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: flex-start;
  padding-top: 3.2rem;
  margin-top: -3.2rem;
  position: relative;
  z-index: 9999;
}
.social-share__text {
  font-size: 1.6rem;
  margin-right: 2.5rem;
  color: #333333;
}
.branche-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 0 -1.2rem;
}
@media only screen and (max-width: 1024px) {
  .branche-tiles {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 768px) {
  .branche-tiles {
    grid-template-columns: 1fr;
  }
}
.branche-tiles__item {
  flex: 1;
  min-width: 25rem;
  margin: 0 1.2rem;
  display: flex;
}
.branche-tiles__item a {
  width: 100%;
}
.branche-tiles__link {
  display: flex;
  flex-direction: column;
}
.branche-tiles__image {
  overflow: hidden;
  aspect-ratio: 1.5;
}
.branche-tiles__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}
.branche-tiles__image img,
.branche-tiles__image .ie-image {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  transition: all 1s ease-out;
}
.branche-tiles__content-button {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  position: absolute;
  bottom: 0;
  left: 4rem;
  right: 4rem;
}
.branche-tiles__content {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  position: relative;
  margin: -4rem 0 2.5rem 4rem;
  background-color: #ffffff;
  padding: 4rem;
  flex: 1;
}
.branche-tiles__content h2 {
  font-family: 'RobotoCondensed-Bold';
  font-weight: normal !important;
  font-size: normal !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 2.2rem;
  display: block;
  text-transform: uppercase;
  word-break: break-word;
}
.branche-tiles__content p {
  font-size: 1.6rem;
  line-height: 2.6rem;
}
@media only screen and (min-width: 768px) {
  .branche-tiles__link:hover .branche-tiles__image img,
  .branche-tiles__link:hover .branche-tiles__image .ie-image {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
  .branche-tiles__link:hover .branche-tiles__content {
    margin-top: -10rem;
    padding-bottom: 10rem;
    background-color: #81b5bd;
  }
  .branche-tiles__link:hover .branche-tiles__content h2,
  .branche-tiles__link:hover .branche-tiles__content p,
  .branche-tiles__link:hover .branche-tiles__content .h2 {
    color: #ffffff;
  }
  .branche-tiles__link:hover .branche-tiles__content-button {
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    -webkit-transform: translate(0, -3rem);
    -moz-transform: translate(0, -3rem);
    -ms-transform: translate(0, -3rem);
    -o-transform: translate(0, -3rem);
    transform: translate(0, -3rem);
  }
}
.branche-tiles__item--large {
  overflow: hidden;
  margin-bottom: 50px;
  padding-bottom: 0;
}
.branche-tiles__item--large .branche-tiles__content {
  margin: -4rem 0 6.6rem 4rem;
}
.branche-tiles__item--large .branche-tiles__content h2,
.branche-tiles__item--large .branche-tiles__content .h2 {
  margin-bottom: 1rem;
  font-size: 3rem;
  line-height: 3.8rem;
}
@media only screen and (max-width: 1100px) {
  .branche-tiles__item--large .branche-tiles__content h2,
  .branche-tiles__item--large .branche-tiles__content .h2 {
    font-size: 2.4rem;
    line-height: 3rem;
  }
}
@media only screen and (max-width: 1640px) {
  .branche-tiles__item--large .branche-tiles__content {
    margin: 0 0 6.6rem 0;
  }
}
@media only screen and (max-width: 1340px) {
  .branche-tiles {
    justify-content: space-between;
  }
}
@media only screen and (max-width: 900px) {
  .branche-tiles {
    margin: 0;
  }
}
@media only screen and (max-width: 660px) {
  .branche-tiles__item--large .branche-tiles__content {
    margin-left: 0;
  }
}
.toolbar {
  display: flex;
  flex-wrap: wrap;
}
.toolbar__item {
  align-content: center;
  align-items: center;
  display: flex;
  margin-left: 6rem;
}
.toolbar__item p {
  font-family: 'RobotoCondensed-Bold';
  font-weight: normal !important;
  font-size: normal !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 3rem;
  font-size: 1.6rem;
  color: #333333;
}
.toolbar__item select {
  font-family: 'RobotoCondensed-Regular';
  font-weight: normal !important;
  font-size: normal !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  font-size: 1.6rem;
  padding: 0 4rem 0 2rem;
  color: #999999;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 5.2rem;
  border: 2px solid #e3e3e2;
  background-image: url("/wp-content/themes/tseonline/static/images/icons/dropdown--grey.svg");
  background-position: right 2rem center;
  background-size: 0.8rem;
  background-repeat: no-repeat;
  cursor: pointer;
}
.toolbar__item select:hover {
  border: 2px solid #d1d1d1;
  color: #666666;
}
.toolbar__item select::-ms-expand {
  display: none;
  /* hide the default arrow in ie10 and ie11 */
}
@media only screen and (max-width: 1340px) {
  .toolbar__item {
    margin-left: 2.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .toolbar {
    width: 100%;
  }
  .toolbar__item {
    flex-basis: 100%;
    margin: 0 0 1rem;
  }
  .toolbar__item p {
    margin: 0 auto 0 0;
  }
}
.hero {
  background-color: #333333;
  position: relative;
}
.hero__item {
  position: relative;
}
.hero__caption {
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  color: #ffffff;
  font-size: 2.8rem;
  z-index: 20;
  margin-top: -8rem;
}
.hero__caption p {
  color: #ffffff;
}
@media only screen and (max-width: 660px) {
  .hero__caption {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
    position: absolute;
    top: 0;
    padding-top: 4rem;
    height: 100%;
    margin-top: 0;
  }
}
.hero__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 10;
}
.hero__bg:before {
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
  background-image: linear-gradient(-90deg, rgba(0, 0, 0, 0) 20%, rgba(23, 23, 23, 0.35) 50%, #333333 90%);
  display: block;
  content: "";
  position: absolute;
  z-index: 15;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero__title {
  max-width: 54rem;
}
.hero__title p {
  -webkit-opacity: 0.7;
  -moz-opacity: 0.7;
  opacity: 0.7;
  font-family: 'RobotoCondensed-Light';
  font-weight: normal !important;
  font-size: normal !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 2.8rem;
}
.hero__title h1,
.hero__title h2,
.hero__title .h1,
.hero__title .h2 {
  font-family: 'Uni-Sans-Bold';
  font-weight: normal !important;
  font-size: normal !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-top: 3rem;
  font-size: 5.8rem;
  line-height: 6.8rem;
}
@media only screen and (max-width: 660px) {
  .hero__title h1,
  .hero__title h2,
  .hero__title .h1,
  .hero__title .h2 {
    font-size: 1.9rem;
    line-height: 2.2rem;
  }
}
.hero__button-set {
  display: flex;
  margin-top: 5rem;
}
.hero__button-set > *:not(:last-of-type) {
  margin-right: 1rem;
}
.hero--large {
  max-height: 84rem;
  overflow: hidden;
}
.hero--large .hero__item {
  height: 84rem;
}
@media only screen and (max-width: 660px) {
  .hero--large {
    max-height: 40rem;
  }
  .hero--large .hero__item {
    height: 40rem;
  }
}
.hero .swiper-hero .swiper-controls {
  position: absolute;
  bottom: 18rem;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000000;
}
.hero .swiper-hero .swiper-controls .grid {
  display: flex;
}
@media only screen and (max-width: 660px) {
  .hero .swiper-hero .swiper-controls {
    bottom: 1rem;
  }
}
.hero .swiper-hero .swiper-controls .swiper-navigation {
  display: flex;
  margin: 0.8rem 0 0 4.4rem;
}
.hero .swiper-hero .swiper-controls .swiper-navigation__button {
  -webkit-opacity: 0.4;
  -moz-opacity: 0.4;
  opacity: 0.4;
  height: 1.6rem;
  width: 1.6rem;
  background-image: url("/wp-content/themes/tseonline/static/images/icons/arrow-left--white.svg");
  background-position: center center;
  background-repeat: no-repeat;
  cursor: pointer;
  z-index: 1000;
  position: relative;
}
.hero .swiper-hero .swiper-controls .swiper-navigation__button:hover {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
.hero .swiper-hero .swiper-controls .swiper-navigation__button--next {
  margin-left: 1.5rem;
  background-image: url("/wp-content/themes/tseonline/static/images/icons/arrow-right--white.svg");
}
.hero .swiper-hero .swiper-controls .swiper-pagination-wrap {
  color: #ffffff;
  display: flex;
  font-size: 1.6rem;
  line-height: 3.3rem;
}
.hero .swiper-hero .swiper-controls .swiper-pagination-progressbar {
  bottom: auto;
  left: auto;
  top: 1.6rem;
  margin: 0 1.5rem;
  position: relative;
  height: 0.1rem;
  width: 8.7rem;
  background-color: rgba(255, 255, 255, 0.2);
}
.hero .swiper-hero .swiper-controls .swiper-pagination-progressbar span {
  background-color: #ffffff;
}
@media only screen and (max-width: 1100px) {
  body.home .uitgelichte-inhoud__information .flex-col-1-3 {
    flex-basis: 100%;
    max-width: 100%;
  }
  body.home .uitgelichte-inhoud__information .button-set {
    margin-top: 25px;
  }
}
body.home .uitgelichte-inhoud .post-tiles--uitgelichte-inhoud {
  display: grid;
}
@media only screen and (min-width: 1100px) {
  body.home .uitgelichte-inhoud .post-tiles--uitgelichte-inhoud {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }
  body.home .uitgelichte-inhoud .post-tiles--uitgelichte-inhoud .post-tiles__item {
    max-width: none;
    padding: 0;
  }
  body.home .uitgelichte-inhoud .post-tiles--uitgelichte-inhoud .post-tiles__item:first-child {
    grid-column: span 2;
  }
}
body.post-type-archive-resources .content-section.first-of-type {
  padding-bottom: 17rem;
}
body.post-type-archive-resources .searchandfilter {
  margin-top: -15.5rem;
}
body.single-resources .layout-introduction--hero {
  height: 74rem;
}
@media only screen and (max-width: 1100px) {
  body.single-resources .layout-introduction--hero {
    height: auto;
  }
}
@media only screen and (min-width: 1100px) {
  body.single-resources .layout-introduction__text--fw {
    padding-right: 30rem;
  }
}
body.single-resources .layout-introduction__post-meta-inner ul li {
  max-width: 66.66%;
}
body.single-post .layout-introduction--hero {
  height: 74rem;
}
@media only screen and (max-width: 768px) {
  body.single-post .layout-introduction--hero {
    height: auto;
  }
}
body.page-template-page-about .layout-introduction__cta {
  bottom: 0;
  z-index: 2000;
  margin-top: 2.5rem;
}
@media only screen and (min-width: 1100px) {
  body.page-template-page-about .about-video-block + .content-section .layout-flexible-content__image {
    margin-top: -16rem;
  }
  body.page-template-page-about .about-video-block + .content-section .layout-flexible-content__text {
    margin-top: -4rem;
  }
  body.page-template-page-about .about-video-block + .content-section:after {
    display: none;
  }
}
@media only screen and (max-width: 1100px) {
  body.page-template-page-about .layout-introduction__cta {
    position: relative;
    margin-bottom: 2.5rem;
  }
  body.page-template-page-about .about-header::after {
    display: none;
  }
  body.page-template-page-about .content-section--bg-shade-bottom.content-section--spacing-medium {
    padding-bottom: 10rem;
  }
}
body.page-template-page-about .about-video-block .layout-flexible-content__title {
  padding-bottom: 4rem;
}
@media only screen and (max-width: 1100px) {
  body.page-template-page-about .about-video-block .layout-flexible-content__title {
    padding-bottom: 1rem;
  }
}
@media only screen and (max-width: 1100px) {
  body.page-template-page-about .about-team-block .layout-flexible-content__text {
    padding-bottom: 1rem;
  }
  body.page-template-page-about .about-team-block .layout-flexible-content__text p {
    margin-bottom: 0rem;
    padding-bottom: 0rem;
  }
}
@media only screen and (max-width: 1100px) {
  body.page-template-page-about .about-team-block .layout-flexible-content__image {
    bottom: 0rem;
    padding-top: 0rem;
  }
}
body.page-template-page-about .about-logo-block {
  padding-bottom: 0;
}
body.page-template-page-about .about-logo-block + .about-logo-block {
  padding-top: 10.4rem;
  padding-bottom: 17.2rem !important;
}
@media only screen and (max-width: 1100px) {
  body.page-template-page-about .about-logo-block + .about-logo-block {
    padding-top: 8rem;
  }
}
@media only screen and (max-width: 1100px) {
  body.page-template-page-about .about-logo-block {
    padding-top: 0;
    padding-bottom: 0 !important;
  }
}
@media only screen and (max-width: 1100px) {
  body.page-template-page-about .about-logo-block .layout-flexible-content__image--logo {
    padding-bottom: 0;
    order: 2;
  }
}
@media only screen and (max-width: 768px) {
  body.page-template-page-about .about-logo-block .layout-flexible-content__image--logo {
    padding-bottom: 0;
    padding-top: 0;
  }
}
body.page-template-page-contact .layout-introduction__button-set .button {
  margin-top: 0rem;
}
body.page-template-page-contact .layout-introduction__button-set .button:nth-child(2) {
  margin-top: 2rem;
}
body.page-template-page-contact .layout-introduction {
  position: static;
  min-height: 70rem;
}
body.page-template-page-contact .layout-introduction__text {
  z-index: 500;
}
body.page-template-page-contact .layout-introduction__map {
  position: relative;
  width: 100%;
  height: 100%;
}
body.page-template-page-contact .layout-introduction__maps {
  min-height: 70rem;
  z-index: 100;
  position: relative;
  top: 0;
  left: 0;
  margin-left: 0;
  width: 100%;
  min-width: 50vw;
  height: auto;
}
@media only screen and (max-width: 768px) {
  body.page-template-page-contact .layout-introduction__maps {
    min-height: 30rem;
  }
}
body.page-template-page-contact .layout-introduction__maps-details {
  position: absolute;
  width: 100%;
  z-index: 150;
  left: 0;
  bottom: -8rem;
}
body.page-template-page-contact .layout-introduction__maps-details .grid {
  padding: 0;
}
body.page-template-page-contact .layout-introduction__maps-details-inner {
  flex-wrap: wrap;
  top: 0;
  width: 100%;
  background-color: #ffffff;
  padding: 5rem;
  position: relative;
  float: right;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
body.page-template-page-contact .layout-introduction__maps-details-inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
body.page-template-page-contact .layout-introduction__maps-details-inner ul li {
  padding: 0;
  font-size: 2rem;
  color: #858585;
}
@media only screen and (max-width: 660px) {
  body.page-template-page-contact .layout-introduction__maps-details-inner ul li {
    font-size: 1.6rem;
  }
}
body.page-template-page-contact .layout-introduction__maps-details-inner ul li.hidden {
  display: none;
}
@media only screen and (max-width: 1640px) {
  body.page-template-page-contact .layout-introduction__button-set {
    max-width: 100%;
    margin-bottom: 2.5rem;
  }
}
@media only screen and (max-width: 1100px) {
  body.page-template-page-contact .layout-introduction__maps {
    width: calc(100% + 3rem);
    margin-left: -1.5rem;
  }
  body.page-template-page-contact .layout-introduction__maps-details {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
    position: relative;
    left: 0;
    bottom: 0;
    width: calc(100% + 3rem);
    margin-left: -1.5rem;
  }
  body.page-template-page-contact .layout-introduction__maps-details .grid {
    padding: 0;
  }
  body.page-template-page-contact .layout-introduction__maps-details-inner {
    padding: 2.5rem;
  }
}
body.search .content-section.content-section--bg-shade-bottom::after {
  display: none;
}
body.search .layout-introduction,
body.search .layout-introduction__text,
body.search .layout-introduction__columns {
  min-height: auto;
}
@media only screen and (max-width: 768px) {
  body.single-markten .content-section--no-spacing-top {
    padding-top: 8rem;
  }
}
@media only screen and (max-width: 660px) {
  body.single-markten .content-section--no-spacing-top {
    padding-top: 2.5rem;
  }
}
.searchandfilter .sf-field-taxonomy-categorie {
  /* checkbox aspect */
  /* checked mark aspect */
  /* checked mark aspect changes */
  /* disabled checkbox */
  /* accessibility */
}
.searchandfilter .sf-field-taxonomy-categorie ul {
  display: flex;
  background-color: #ffffff;
  padding: 0;
  margin: 0;
  border: 1px solid #dfdfdf;
}
.searchandfilter .sf-field-taxonomy-categorie ul li {
  min-width: 25%;
  border-right: 1px solid #dfdfdf;
  padding: 0;
  margin: 0;
}
.searchandfilter .sf-field-taxonomy-categorie [type="checkbox"]:not(:checked),
.searchandfilter .sf-field-taxonomy-categorie [type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}
.searchandfilter .sf-field-taxonomy-categorie [type="checkbox"]:not(:checked) + label,
.searchandfilter .sf-field-taxonomy-categorie [type="checkbox"]:checked + label {
  font-family: 'RobotoCondensed-Regular';
  font-weight: normal !important;
  font-size: normal !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-opacity: 0.6;
  -moz-opacity: 0.6;
  opacity: 0.6;
  display: block;
  font-size: 2rem;
  line-height: 2rem;
  position: relative;
  padding: 3.5rem 3.5rem 3.5rem 7.5rem;
  cursor: pointer;
}
.searchandfilter .sf-field-taxonomy-categorie [type="checkbox"]:checked + label {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  color: #81b5bd;
}
.searchandfilter .sf-field-taxonomy-categorie [type="checkbox"]:not(:checked) + label:before,
.searchandfilter .sf-field-taxonomy-categorie [type="checkbox"]:checked + label:before {
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  content: "";
  position: absolute;
  top: 50%;
  left: 3.5rem;
  margin-top: -1rem;
  width: 2rem;
  height: 2rem;
  background: #e3e3e2;
}
.searchandfilter .sf-field-taxonomy-categorie [type="checkbox"]:checked + label:before {
  background-color: #81b5bd;
  background-image: url("/wp-content/themes/tseonline/static/images/icons/check--white.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 1.2rem;
}
.searchandfilter .sf-field-taxonomy-categorie [type="checkbox"]:not(:checked) + label:after,
.searchandfilter .sf-field-taxonomy-categorie [type="checkbox"]:checked + label:after {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  position: absolute;
  display: block;
  content: "";
  height: 0.4rem;
  background-color: #81b5bd;
  left: 0;
  bottom: 0;
}
.searchandfilter .sf-field-taxonomy-categorie [type="checkbox"]:not(:checked) + label:after {
  width: 0;
}
.searchandfilter .sf-field-taxonomy-categorie [type="checkbox"]:checked + label:after {
  width: 100%;
}
.searchandfilter .sf-field-taxonomy-categorie [type="checkbox"]:disabled:not(:checked) + label:before,
.searchandfilter .sf-field-taxonomy-categorie [type="checkbox"]:disabled:checked + label:before {
  background-color: #ddd;
}
.searchandfilter .sf-field-taxonomy-categorie [type="checkbox"]:disabled:checked + label:after {
  color: #999;
}
.searchandfilter .sf-field-taxonomy-categorie [type="checkbox"]:disabled + label {
  color: #aaa;
}
.searchandfilter .sf-field-taxonomy-categorie [type="checkbox"]:checked:focus + label:before,
.searchandfilter .sf-field-taxonomy-categorie [type="checkbox"]:not(:checked):focus + label:before {
  background-color: #81b5bd;
}
.searchandfilter .sf-field-taxonomy-categorie label:hover:before {
  background-color: #81b5bd;
}
#swipebox-close {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  width: 5rem;
  height: 5rem;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #81b5bd;
  background-size: 1.6rem;
  background-image: url("/wp-content/themes/tseonline/static/images/icons/close--white.svg") !important;
  right: 0;
}
#swipebox-arrows {
  width: 100%;
  max-width: 100%;
}
#swipebox-arrows #swipebox-prev,
#swipebox-arrows #swipebox-next {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  width: 5rem;
  height: 5rem;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 1.6rem;
  cursor: pointer;
}
#swipebox-arrows #swipebox-prev:hover,
#swipebox-arrows #swipebox-next:hover {
  border: 2px solid #81b5bd;
  background-color: #81b5bd;
}
#swipebox-arrows #swipebox-prev {
  background-image: url("/wp-content/themes/tseonline/static/images/icons/arrow-left--white.svg") !important;
}
#swipebox-arrows #swipebox-prev:hover {
  background-image: url("/wp-content/themes/tseonline/static/images/icons/arrow-left--white.svg") !important;
}
#swipebox-arrows #swipebox-next {
  background-image: url("/wp-content/themes/tseonline/static/images/icons/arrow-right--white.svg") !important;
}
#swipebox-arrows #swipebox-next:hover {
  background-image: url("/wp-content/themes/tseonline/static/images/icons/arrow-right--white.svg") !important;
}
.case-table {
  margin-top: 4rem;
  border-bottom: 0.1rem solid #e4e2e2;
}
.case-table__row {
  display: flex;
  border-bottom: 0.1rem solid #e4e2e2;
}
.case-table__row:last-child {
  border-bottom: 0;
}
.case-table__row--head {
  font-family: 'Uni-Sans-SemiBold';
  font-weight: normal !important;
  font-size: normal !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #81b5bd;
}
.case-table__row--head .case-table__col {
  color: white;
  padding: 2.4rem;
  font-size: 1.8rem;
}
.case-table__row--head .case-table__col:first-child {
  border-left: 0.1rem solid #81b5bd;
  border-right: 0.1rem solid rgba(255, 255, 255, 0.2);
}
.case-table__row--head .case-table__col:last-child {
  border-right: 0.1rem solid #81b5bd;
}
.case-table__col {
  padding: 1.6rem 2.4rem;
  font-size: 1.6rem;
  color: #858585;
}
.case-table__col:first-child {
  border-right: 0.1rem solid #e4e2e2;
  border-left: 0.1rem solid #e4e2e2;
  flex-basis: 60%;
  max-width: 60%;
}
.case-table__col:last-child {
  border-right: 0.1rem solid #e4e2e2;
  flex-basis: 40%;
  max-width: 40%;
}
.case-table__col:last-child svg {
  max-width: 2rem;
}
@media only screen and (max-width: 660px) {
  .case-table__row--head .case-table__col {
    font-size: 1.6rem;
    padding: 0.8rem;
  }
  .case-table__col {
    padding: 0.8rem;
  }
}
.c-partners {
  margin-top: 12rem;
}
.c-partners .h4,
.c-partners h4 {
  font-family: 'Uni-Sans-Bold';
  font-weight: normal !important;
  font-size: normal !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
}
.c-partners .logo-slider {
  margin-top: 4rem;
  width: calc(100% + 2.4rem);
  margin-left: -1.2rem;
  min-height: 10rem;
}
.c-partners .logo-slider .swiper-slide {
  display: flex;
  height: 9rem;
}
.c-partners .logo-slider .swiper-slide a {
  display: flex;
  flex-grow: 1;
  justify-content: flex-start;
  cursor: pointer;
  padding: 1.2rem;
}
.c-partners .logo-slider .swiper-slide a img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  filter: grayscale(100%);
  opacity: 0.4;
  transition: all 0.3s ease;
}
.c-partners .logo-slider .swiper-slide a .ie-image {
  filter: grayscale(100%);
  opacity: 0.4;
}
.c-partners .logo-slider .swiper-slide a:hover img,
.c-partners .logo-slider .swiper-slide a:hover .ie-image {
  filter: none;
  opacity: 1;
}
.c-pagination {
  padding: 1.2rem;
}
.c-pagination .page-numbers {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  border: 1px solid #81b5bd;
  font-size: 1.6rem;
}
.c-pagination .page-numbers.current {
  background-color: #81b5bd;
  color: #ffffff;
}
.c-pagination .page-numbers:hover {
  background-color: #81b5bd;
  color: #ffffff;
}
.c-pagination .page-numbers.dots {
  border: none;
  background-color: transparent;
  color: #333333;
}
.c-pagination .page-numbers.next,
.c-pagination .page-numbers.prev {
  background-position: 1.5rem 1.2rem;
  background-size: 0.8rem;
  background-repeat: no-repeat;
  background-image: url("/wp-content/themes/tseonline/static/images/icons/point-right--grey.svg");
}
.c-pagination .page-numbers.next:hover,
.c-pagination .page-numbers.prev:hover {
  background-image: url("/wp-content/themes/tseonline/static/images/icons/point-right--white.svg");
}
.c-pagination .page-numbers.prev {
  transform: rotate(180deg);
}
.layout-flexible-content ul,
.layout-introduction ul {
  margin-top: 2rem;
  list-style: disc;
  padding-left: 3rem;
  font-size: 2rem;
  line-height: 4rem;
  color: #858585;
}
.layout-flexible-content ul li,
.layout-introduction ul li {
  padding-left: 1rem;
}
.formulier .gform_wrapper form .validation_error {
  font-size: 1.6rem;
  color: #e11b3b;
}
.formulier .gform_wrapper form .gform_heading {
  display: none;
}
.formulier .gform_wrapper form .gform_body ul {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 32px);
  margin-left: -16px;
  margin-top: 0;
  padding-left: 0;
  list-style: none;
}
@media only screen and (max-width: 660px) {
  .formulier .gform_wrapper form .gform_body ul {
    width: 100%;
    margin-left: 0;
  }
}
.formulier .gform_wrapper form .gform_body ul li {
  position: relative;
  flex-basis: 50%;
  max-width: 50%;
  padding: 8px 16px;
}
@media only screen and (max-width: 660px) {
  .formulier .gform_wrapper form .gform_body ul li {
    flex-basis: 100%;
    max-width: 100%;
    padding: 8px 0;
  }
}
.formulier .gform_wrapper form .gform_body ul li label {
  display: none;
}
.formulier .gform_wrapper form .gform_body ul li.show-label label {
  display: block;
  margin-bottom: 1.6rem;
  color: #121212;
}
@media only screen and (max-width: 660px) {
  .formulier .gform_wrapper form .gform_body ul li.show-label label {
    margin-bottom: 0.8rem;
  }
}
.formulier .gform_wrapper form .gform_body ul li.show-label label .gfield_required {
  font-size: 1.6rem;
  color: #e11b3b;
  margin-left: 8px;
}
.formulier .gform_wrapper form .gform_body ul li.show-label:before {
  display: none;
}
.formulier .gform_wrapper form .gform_body ul li.col-1-1 {
  flex-basis: 100%;
  max-width: 100%;
}
.formulier .gform_wrapper form .gform_body ul li.gfield_contains_required:before {
  position: absolute;
  content: "";
  top: 3.2rem;
  right: 3.2rem;
  width: 0.6rem;
  height: 0.6rem;
  background-color: #e11b3b;
  border-radius: 100%;
}
.formulier .gform_wrapper form .gform_body ul li .validation_message {
  color: #e11b3b;
  font-size: 1.6rem;
}
.formulier .gform_wrapper form .gform_body ul li .ginput_container_select {
  position: relative;
}
.formulier .gform_wrapper form .gform_body ul li .ginput_container_select:after {
  position: absolute;
  content: "▼";
  right: 2rem;
  top: 1rem;
  font-size: 1rem;
  color: #121212;
}
.formulier .gform_wrapper form .gform_body ul li .ginput_container_select select {
  font-family: 'RobotoCondensed-Regular';
  font-weight: normal !important;
  font-size: normal !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.8rem;
  line-height: 5.6rem;
  padding: 0 2rem;
  width: 100%;
  height: 56px;
  border-radius: 0;
  border: 0;
  background: white;
  -webkit-appearance: none;
  color: #858585;
}
.formulier .gform_wrapper form .gform_body ul li .ginput_container_textarea textarea {
  font-family: 'RobotoCondensed-Regular';
  font-weight: normal !important;
  font-size: normal !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  border: 0;
  resize: none;
  font-size: 1.8rem;
  line-height: 5.6rem;
  padding: 0.8rem 1.6rem;
  max-height: 16rem;
}
@media only screen and (max-width: 660px) {
  .formulier .gform_wrapper form .gform_footer input[type="submit"] {
    width: 100%;
  }
}
.productlijn-video {
  padding-bottom: 10rem;
}
body.page-template-page-certificering .layout-introduction__image {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}
body.page-template-page-certificering .layout-introduction__image img {
  max-width: 200px;
}
body.page-template-page-certificering .branche-tiles {
  margin: 0;
  width: calc(100% + 3.2rem);
  margin-left: -1.6rem;
}
body.page-template-page-certificering .branche-tiles__item--large {
  flex-basis: 50%;
  max-width: 50%;
  margin: 0;
  padding: 0 1.6rem;
}
@media only screen and (max-width: 660px) {
  body.page-template-page-certificering .branche-tiles__item--large {
    flex-basis: 100%;
    max-width: 100%;
  }
  body.page-template-page-certificering .branche-tiles__item--large .branche-tiles__content {
    margin-bottom: 2.4rem;
  }
}
body.page-template-page-certificering .branche-tiles__link {
  width: 100%;
}
.single-productlijnen .content-section--bg-white-bottom + .content-section--bg-shade {
  position: relative;
}
.single-productlijnen .content-section--bg-white-bottom + .content-section--bg-shade::before {
  content: "";
  width: 100%;
  height: 200px;
  position: absolute;
  top: 0;
  transform: translateY(-100%);
  background: #f1f1f1;
  z-index: 1;
}
.formulier .gform_wrapper form .gform_body ul li#field_3_8 {
  max-width: 100%;
  flex-basis: 100%;
}
.formulier .gform_wrapper form .gform_body ul li#field_3_8:before {
  display: none;
}
.formulier .gform_wrapper form .gform_body ul li#field_3_8 label {
  display: block;
  margin-bottom: 1.6rem;
  color: #121212;
}
.formulier .gform_wrapper form .gform_body ul li#field_3_8 label .gfield_required {
  margin-left: 8px;
  font-size: 1.6rem;
  color: #e11b3b;
}
.formulier .gform_wrapper form .gform_body ul li#field_3_8 ul li label {
  margin-bottom: 0;
  position: relative;
  width: 100%;
}
.formulier .gform_wrapper form .gform_body ul li#field_3_8 ul li label img {
  display: block;
  height: 500px;
}
@media (max-width: 1200px) {
  .formulier .gform_wrapper form .gform_body ul li#field_3_8 ul li label img {
    height: 240px;
  }
}
@media (max-width: 580px) {
  .formulier .gform_wrapper form .gform_body ul li#field_3_8 ul li label img {
    height: 200px;
  }
}
.formulier .gform_wrapper form .gform_body ul.gfield_checkbox li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 33.3333%;
  flex-basis: 33.3333%;
}
.formulier .gform_wrapper form .gform_body ul.gfield_checkbox li label {
  display: inline-flex;
  position: relative;
  background: #81b5bd;
  cursor: pointer;
  order: 1;
}
.formulier .gform_wrapper form .gform_body ul.gfield_checkbox li label svg {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 50px;
  margin: 0 auto;
  transform: scale(0) translateY(-50%);
  transform-origin: top;
  transition: all 0.2s ease-in-out;
}
.formulier .gform_wrapper form .gform_body ul.gfield_checkbox li label svg path {
  fill: #fff;
}
.formulier .gform_wrapper form .gform_body ul.gfield_checkbox li label img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.1s ease-in-out;
}
.formulier .gform_wrapper form .gform_body ul.gfield_checkbox li label span {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  background: #81b5bd;
  color: white;
  padding: 8px 0;
  font-size: 18px;
  text-align: center;
  order: 3;
  transition: all 0.1s ease-in-out;
}
.formulier .gform_wrapper form .gform_body ul.gfield_checkbox li label:hover img {
  opacity: 0.4;
}
.formulier .gform_wrapper form .gform_body ul.gfield_checkbox li label:hover span {
  opacity: 1;
  visibility: visible;
}
.formulier .gform_wrapper form .gform_body ul.gfield_checkbox li input {
  order: 2;
}
.formulier .gform_wrapper form .gform_body ul.gfield_checkbox li input[type="checkbox"] {
  display: none;
}
.formulier .gform_wrapper form .gform_body ul.gfield_checkbox li input[type="checkbox"]:checked + label img {
  opacity: 0.4;
}
.formulier .gform_wrapper form .gform_body ul.gfield_checkbox li input[type="checkbox"]:checked + label svg {
  transform: scale(1) translateY(-50%);
}
.formulier .gform_wrapper form .gform_body ul.gfield_checkbox li input[type="checkbox"]:checked + label span {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 768px) {
  .formulier .gform_wrapper form .gform_body ul.gfield_checkbox li label span {
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 660px) {
  .formulier .gform_wrapper form .gform_body ul.gfield_checkbox li {
    max-width: 100%;
    flex-basis: 100%;
  }
  .formulier .gform_wrapper form .gform_body ul.gfield_checkbox li label {
    max-height: 300px;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .formulier .gform_wrapper form .gform_body ul.gfield_checkbox li input[type="checkbox"] {
    position: absolute;
    display: block;
    right: 32px;
    bottom: 32px;
    z-index: 9999;
  }
}
@media (max-width: 1023px) {
  .formulier .gform_wrapper form .gform_body ul {
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
    margin-left: 0;
  }
  .formulier .gform_wrapper form .gform_body ul li {
    padding: 0;
    margin-bottom: 16px;
    flex-basis: 100%;
    max-width: 100%;
  }
  .formulier .gform_wrapper form .gform_body ul.gfield_checkbox li {
    padding: 0;
    margin-bottom: 16px;
    max-width: 100%;
    flex-basis: 100%;
  }
}
.accordion {
  width: 100%;
  max-width: 990px;
  margin: 50px 0 125px 0;
}
.accordion .main-title {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-top: 2px solid #e3e3e2;
  cursor: pointer;
  transition: 0.2s ease;
}
@media (max-width: 767px) {
  .accordion .main-title {
    padding-right: 0;
  }
}
.accordion .main-title:hover .accordion__trigger {
  background: #e3e3e2;
}
.accordion .main-title.active .accordion__trigger::after {
  transform: rotateX(90deg);
}
.accordion .main-title h3 {
  font-size: 22px;
  line-height: 28px;
  color: #3d3935;
  font-family: 'Uni-Sans-Regular';
  font-weight: normal !important;
  font-size: normal !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.accordion__icon {
  width: 50px;
  height: 50px;
  margin-right: 20px;
}
@media (max-width: 767px) {
  .accordion__icon {
    width: 50px;
    height: 50px;
    margin-right: 20px;
  }
}
.accordion__trigger {
  width: 40px;
  height: 40px;
  border: 2px solid #e3e3e2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  transition: 0.2s ease;
}
.accordion__trigger::before {
  content: "";
  width: 18px;
  height: 3px;
  background: #81b5bd;
}
.accordion__trigger::after {
  content: "";
  height: 18px;
  width: 3px;
  background: #81b5bd;
  position: absolute;
  transition: 0.2s ease;
}
.accordion__content {
  display: none;
  padding: 0 50px 0 70px;
}
@media (max-width: 767px) {
  .accordion__content {
    padding: 0;
  }
}
.content-section--downloads {
  padding: 0;
}
.content-section--downloads .grid {
  padding-top: 15rem;
  padding-bottom: 15rem;
  position: relative;
}
.content-section--downloads .row {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1100px) {
  .content-section--downloads .row {
    flex-flow: column nowrap;
  }
}
.content-section--downloads .row .content {
  max-width: 43rem;
}
@media (max-width: 1100px) {
  .content-section--downloads .row .content {
    max-width: 100%;
  }
}
.content-section--downloads .row .quick-links {
  max-width: 64rem;
  width: 100%;
  margin-left: 10rem;
}
@media (max-width: 1300px) {
  .content-section--downloads .row .quick-links {
    max-width: 40rem;
  }
}
@media (max-width: 1100px) {
  .content-section--downloads .row .quick-links {
    max-width: 100%;
    margin-left: 0;
  }
}
.content-section--downloads .row .quick-links h3 {
  font-family: 'Uni-Sans-SemiBold';
  font-weight: normal !important;
  font-size: normal !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 2.8rem;
  line-height: 2.6rem;
  margin-bottom: 4rem;
  margin-top: 2rem;
}
.content-section--downloads .row .quick-links ul {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
}
@media (max-width: 1300px) {
  .content-section--downloads .row .quick-links ul {
    flex-flow: column;
  }
}
@media (max-width: 1100px) {
  .content-section--downloads .row .quick-links ul {
    flex-flow: wrap;
  }
}
.content-section--downloads .row .quick-links ul li {
  width: 45%;
}
@media (max-width: 1300px) {
  .content-section--downloads .row .quick-links ul li {
    width: 100%;
  }
}
@media (max-width: 1100px) {
  .content-section--downloads .row .quick-links ul li {
    width: 45%;
  }
}
@media (max-width: 480px) {
  .content-section--downloads .row .quick-links ul li {
    width: 100%;
  }
}
.content-section--downloads .row .quick-links ul li a {
  font-family: 'RobotoCondensed-Regular';
  font-weight: normal !important;
  font-size: normal !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.6rem;
  line-height: 3.4rem;
  color: #858585;
  padding: 1rem 0;
  border-bottom: 1px solid #dfdfdf;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.2s ease;
}
.content-section--downloads .row .quick-links ul li a:hover {
  transform: translateX(10px);
}
.content-section--downloads .layout-introduction__scroller {
  bottom: -2.5rem;
}
.download-section {
  padding: 10.6rem 0;
  background: #efefef;
}
.download-section:nth-of-type(even) {
  background: white;
}
.download-section:nth-of-type(even) .downloads__item {
  background: #efefef !important;
}
.download-section:last-of-type {
  padding-bottom: 20.6rem;
}
.download-section h2 {
  font-size: 3.8rem;
  line-height: 4.6rem;
  text-transform: uppercase;
  margin-bottom: 4rem;
}
.download-section .downloads {
  display: flex;
  flex-flow: wrap;
  margin: -1.2rem;
}
.download-section .downloads__col {
  flex: 0 0 33.3333%;
  padding: 1.2rem;
}
@media (max-width: 1250px) {
  .download-section .downloads__col {
    flex: 0 0 50%;
  }
}
@media (max-width: 767px) {
  .download-section .downloads__col {
    flex: 0 0 100%;
  }
}
.download-section .downloads__item {
  background: white;
  display: flex;
  flex-flow: column;
  padding: 4rem;
  transition: 0.2s ease;
}
@media (max-width: 1650px) {
  .download-section .downloads__item {
    padding: 4rem 2rem;
  }
}
.download-section .downloads__item .title {
  font-family: 'Uni-Sans-SemiBold';
  font-weight: normal !important;
  font-size: normal !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 2.8rem;
  line-height: 2.6rem;
  margin-bottom: 2.6rem;
}
.download-section .downloads__link {
  display: flex;
  border-bottom: 0.1rem solid #dfdfdf;
  padding-bottom: 1.6rem;
  margin-bottom: 1.6rem;
}
.download-section .downloads__link:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.download-section .downloads__link svg {
  min-width: 1.2rem;
  min-height: 1.5rem;
  margin-top: 0.4rem;
}
.download-section .downloads__link .file-name {
  font-size: 1.8rem;
  line-height: 2.4rem;
  color: #858585;
  padding: 0 1.6rem;
}
@media (max-width: 1650px) {
  .download-section .downloads__link .file-name {
    font-size: 1.6rem;
    padding-left: 1rem;
  }
}
.download-section .downloads__link .file-info {
  text-transform: uppercase;
  color: #aeaeae;
  font-size: 1.4rem;
  line-height: 2.4rem;
  margin-left: auto;
  white-space: nowrap;
}
@media (max-width: 1650px) {
  .download-section .downloads__link .file-info {
    padding-left: 1rem;
  }
}
.download-section .downloads__link .file-info .ext {
  text-transform: lowercase;
}
.download-section .downloads__link:hover .file-name {
  text-decoration: underline;
}
.layout-flexible-content__text + .flexible-slider {
  margin-top: 8rem;
}
.flex-slider + .b-products {
  padding-top: 12rem;
}
@media only screen and (max-width: 900px) {
  .flex-slider + .b-products {
    padding-top: 2.5rem;
  }
}
.flexible-slider {
  z-index: 2;
}
.flexible-slider .swiper-slide:before {
  content: "";
  width: 1px;
  margin-left: -1px;
  float: left;
  height: 0;
  padding-top: 300px;
}
.flexible-slider .swiper-slide a,
.flexible-slider .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.flexible-slider .swiper-slide a img {
  object-fit: cover;
}
.flexible-slider--before-after .swiper-slide .swipebox {
  width: 300px;
  height: 300px;
  left: calc(100% - 300px);
  background-color: transparent;
}
.flexible-slider--before-after .swiper-slide .swipebox:before,
.flexible-slider--before-after .swiper-slide .swipebox:after {
  left: calc(100% - 300px);
}
.flexible-slider--before-after .swiper-slide--even .swipebox {
  left: 0;
  background-color: transparent;
}
.flexible-slider--before-after .swiper-slide--even .swipebox:before,
.flexible-slider--before-after .swiper-slide--even .swipebox:after {
  left: 0;
}
.flexible-slider--before-after .swiper-slide__indicator {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.4rem 1.6rem;
  background-color: #81b5bd;
  color: #ffffff;
  text-align: center;
  z-index: 101;
}
@media only screen and (max-width: 660px) {
  .flexible-slider .swiper-slide:before {
    padding-top: 100%;
  }
  .flexible-slider .swiper-slide .swipebox {
    height: 100%;
    width: 100%;
  }
  .flexible-slider--before-after .swiper-slide .swipebox {
    height: 100%;
    width: 100%;
    left: 0;
  }
  .flexible-slider--before-after .swiper-slide .swipebox:before,
  .flexible-slider--before-after .swiper-slide .swipebox:after {
    left: 0;
  }
}
/*===========================================
*			Extra Flexible blocks			*
===========================================*/
.single-projecten .content-section--spacing-medium {
  padding-top: 6rem;
  padding-bottom: 3rem;
}
.single-projecten .editor h1 {
  font-size: 64px;
  line-height: 72px;
}
.single-projecten .editor h2 {
  font-size: 48px;
  line-height: 56px;
}
.single-projecten .editor h3 {
  font-size: 40px;
  line-height: 48px;
}
.single-projecten .editor h4 {
  font-size: 32px;
  line-height: 40px;
}
.single-projecten .editor h5 {
  font-size: 24px;
  line-height: 32px;
}
.single-projecten .editor h6 {
  font-size: 16px;
  line-height: 24px;
}
.single-projecten .editor p {
  font-size: 16px;
  line-height: 32px;
  margin-bottom: 0;
  padding-bottom: 0;
}
.single-projecten .editor ol {
  list-style: decimal;
  margin-top: 2rem;
  padding-left: 3rem;
  font-size: 2rem;
  line-height: 4rem;
  color: #858585;
}
.single-projecten .editor ol li {
  padding-left: 1rem;
  font-size: 16px;
}
.single-projecten .editor ul {
  margin-top: 2rem;
}
.single-projecten .editor ul li {
  font-size: 16px;
}
.two-blocks {
  display: flex;
  flex-direction: row;
}
.two-blocks__field {
  max-width: 50%;
  flex-basis: 50%;
}
.two-blocks__field img {
  max-width: 100%;
  height: auto;
}
.two-blocks__field h1,
.two-blocks__field h2,
.two-blocks__field h3,
.two-blocks__field h4,
.two-blocks__field h5,
.two-blocks__field h6,
.two-blocks__field p,
.two-blocks__field ul,
.two-blocks__field ol,
.two-blocks__field li {
  max-width: 90%;
}
.video-slider {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.video-slider iframe,
.video-slider object,
.video-slider embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.gallery-image-video {
  margin-bottom: 30px;
}
.video-navigation {
  margin: 15px 0 0 0 !important;
  padding-bottom: 15px !important;
}
.video-caroussel {
  padding-top: 30px !important;
}
@media only screen and (max-width: 768px) {
  .single-projecten .editor h1 {
    font-size: 48px;
    line-height: 56px;
  }
  .single-projecten .editor h2 {
    font-size: 40px;
    line-height: 48px;
  }
  .single-projecten .editor h3 {
    font-size: 32px;
    line-height: 40px;
  }
  .single-projecten .editor h4 {
    font-size: 24px;
    line-height: 32px;
  }
  .single-projecten .editor h5 {
    font-size: 20px;
    line-height: 24px;
  }
  .single-projecten .editor h6 {
    font-size: 16px;
    line-height: 24px;
  }
  .two-blocks {
    flex-direction: column;
  }
  .two-blocks__field {
    flex-basis: 100%;
    max-width: 100%;
  }
  .two-blocks__field h1,
  .two-blocks__field h2,
  .two-blocks__field h3,
  .two-blocks__field h4,
  .two-blocks__field h5,
  .two-blocks__field h6,
  .two-blocks__field p,
  .two-blocks__field ul,
  .two-blocks__field ol,
  .two-blocks__field li {
    max-width: 100%;
  }
  .swiper-controls {
    display: none;
  }
  .swiper-controls--mobile {
    display: block;
  }
  .swiper-controls--mobile .grid .swiper-navigation {
    top: auto;
    display: flex;
    justify-content: flex-end;
    margin: 10px 0;
  }
  .swiper-controls--mobile .grid .swiper-navigation .swiper-navigation__button {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 0;
    transform: none;
  }
  .swiper-controls--mobile .grid .swiper-navigation .swiper-navigation__button.swiper-navigation__button--next {
    margin-left: 10px;
  }
  .swiper-controls--mobile .grid .swiper-pagination-wrap {
    display: none;
  }
}
