/*
Theme Name: Meijburg WordPress
Author: Media Artists
Description: Werken bij Meijburg wordpress thema
Version: 0.0.1
Tags: bootstrap
*/
@import "css/bootstrap.min.css";
@import "css/font-awesome.min.css";
@import "css/checkbox-radios.css";
.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.15s linear;
}
.fade-enter,
.fade-leave-to {
  opacity: 0;
}
.mo-openid-app-icons > p {
  display: none;
}
.mo_image_id {
  display: none;
}
.tipsy {
  display: none!important;
}
/* workaround for https://github.com/bootstrap-vue/bootstrap-vue/issues/1560 */
/* source: _input-group.scss */
.input-group > .input-group-prepend > .b-dropdown > .btn,
.input-group > .input-group-append:not(:last-child) > .b-dropdown > .btn,
.input-group > .input-group-append:last-child > .b-dropdown:not(:last-child):not(.dropdown-toggle) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .input-group-append > .b-dropdown > .btn,
.input-group > .input-group-prepend:not(:first-child) > .b-dropdown > .btn,
.input-group > .input-group-prepend:first-child > .b-dropdown:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
/* Special styling for type=range and type=color input */
input.form-control[type="range"],
input.form-control[type="color"] {
  height: 2.25rem;
}
input.form-control.form-control-sm[type="range"],
input.form-control.form-control-sm[type="color"] {
  height: 1.9375rem;
}
input.form-control.form-control-lg[type="range"],
input.form-control.form-control-lg[type="color"] {
  height: 3rem;
}
/* Less padding on type=color */
input.form-control[type="color"] {
  padding: 0.25rem 0.25rem;
}
input.form-control.form-control-sm[type="color"] {
  padding: 0.125rem 0.125rem;
}
/* Add support for fixed layout table */
table.b-table.b-table-fixed {
  table-layout: fixed;
}
/* Busy table styling */
table.b-table[aria-busy='false'] {
  opacity: 1;
}
table.b-table[aria-busy='true'] {
  opacity: 0.6;
}
/* Sort styling */
table.b-table > thead > tr > th,
table.b-table > tfoot > tr > th {
  position: relative;
}
table.b-table > thead > tr > th.sorting,
table.b-table > tfoot > tr > th.sorting {
  padding-right: 1.5em;
  cursor: pointer;
}
table.b-table > thead > tr > th.sorting::before,
table.b-table > thead > tr > th.sorting::after,
table.b-table > tfoot > tr > th.sorting::before,
table.b-table > tfoot > tr > th.sorting::after {
  position: absolute;
  bottom: 0;
  display: block;
  opacity: 0.4;
  padding-bottom: inherit;
  font-size: inherit;
  line-height: 180%;
}
table.b-table > thead > tr > th.sorting::before,
table.b-table > tfoot > tr > th.sorting::before {
  right: 0.75em;
  content: '\2191';
}
table.b-table > thead > tr > th.sorting::after,
table.b-table > tfoot > tr > th.sorting::after {
  right: 0.25em;
  content: '\2193';
}
table.b-table > thead > tr > th.sorting_asc::after,
table.b-table > thead > tr > th.sorting_desc::before,
table.b-table > tfoot > tr > th.sorting_asc::after,
table.b-table > tfoot > tr > th.sorting_desc::before {
  opacity: 1;
}
/* Stacked table layout */
/* Derived from http://blog.adrianroselli.com/2017/11/a-responsive-accessible-table.html */
/* Always stacked */
table.b-table.b-table-stacked {
  width: 100%;
}
table.b-table.b-table-stacked,
table.b-table.b-table-stacked > tbody,
table.b-table.b-table-stacked > tbody > tr,
table.b-table.b-table-stacked > tbody > tr > td,
table.b-table.b-table-stacked > tbody > tr > th,
table.b-table.b-table-stacked > caption {
  display: block;
}
/* Hide stuff we can't deal with, or shouldn't show */
table.b-table.b-table-stacked > thead,
table.b-table.b-table-stacked > tfoot,
table.b-table.b-table-stacked > tbody > tr.b-table-top-row,
table.b-table.b-table-stacked > tbody > tr.b-table-bottom-row {
  display: none;
}
/* inter-row top border */
table.b-table.b-table-stacked > tbody > tr > :first-child {
  border-top-width: 0.4rem;
}
/* convert TD/TH contents to "cells". Caveat: child elements become cells! */
table.b-table.b-table-stacked > tbody > tr > [data-label] {
  display: grid;
  grid-template-columns: 40% auto;
  grid-gap: 0.25rem 1rem;
}
/* generate row cell "heading" */
table.b-table.b-table-stacked > tbody > tr > [data-label]::before {
  content: attr(data-label);
  display: inline;
  text-align: right;
  overflow-wrap: break-word;
  font-weight: bold;
  font-style: normal;
}
@media all and (max-width: 575.99px) {
  /* Under SM */
  table.b-table.b-table-stacked-sm {
    width: 100%;
  }
  table.b-table.b-table-stacked-sm,
  table.b-table.b-table-stacked-sm > tbody,
  table.b-table.b-table-stacked-sm > tbody > tr,
  table.b-table.b-table-stacked-sm > tbody > tr > td,
  table.b-table.b-table-stacked-sm > tbody > tr > th,
  table.b-table.b-table-stacked-sm > caption {
    display: block;
  }
  /* hide stuff we can't deal with, or shouldn't show */
  table.b-table.b-table-stacked-sm > thead,
  table.b-table.b-table-stacked-sm > tfoot,
  table.b-table.b-table-stacked-sm > tbody > tr.b-table-top-row,
  table.b-table.b-table-stacked-sm > tbody > tr.b-table-bottom-row {
    display: none;
  }
  /* inter-row top border */
  table.b-table.b-table-stacked-sm > tbody > tr > :first-child {
    border-top-width: 0.4rem;
  }
  /* convert TD/TH contents to "cells". Caveat: child elements become cells! */
  table.b-table.b-table-stacked-sm > tbody > tr > [data-label] {
    display: grid;
    grid-template-columns: 40% auto;
    grid-gap: 0.25rem 1rem;
  }
  /* generate row cell "heading" */
  table.b-table.b-table-stacked-sm > tbody > tr > [data-label]::before {
    content: attr(data-label);
    display: inline;
    text-align: right;
    overflow-wrap: break-word;
    font-weight: bold;
    font-style: normal;
  }
}
@media all and (max-width: 767.99px) {
  /* under MD  */
  table.b-table.b-table-stacked-md {
    width: 100%;
  }
  table.b-table.b-table-stacked-md,
  table.b-table.b-table-stacked-md > tbody,
  table.b-table.b-table-stacked-md > tbody > tr,
  table.b-table.b-table-stacked-md > tbody > tr > td,
  table.b-table.b-table-stacked-md > tbody > tr > th,
  table.b-table.b-table-stacked-md > caption {
    display: block;
  }
  /* hide stuff we can't deal with, or shouldn't show */
  table.b-table.b-table-stacked-md > thead,
  table.b-table.b-table-stacked-md > tfoot,
  table.b-table.b-table-stacked-md > tbody > tr.b-table-top-row,
  table.b-table.b-table-stacked-md > tbody > tr.b-table-bottom-row {
    display: none;
  }
  /* inter-row top border */
  table.b-table.b-table-stacked-md > tbody > tr > :first-child {
    border-top-width: 0.4rem;
  }
  /* convert TD/TH contents to "cells". Caveat: child elements become cells! */
  table.b-table.b-table-stacked-md > tbody > tr > [data-label] {
    display: grid;
    grid-template-columns: 40% auto;
    grid-gap: 0.25rem 1rem;
  }
  /* generate row cell "heading" */
  table.b-table.b-table-stacked-md > tbody > tr > [data-label]::before {
    content: attr(data-label);
    display: inline;
    text-align: right;
    overflow-wrap: break-word;
    font-weight: bold;
    font-style: normal;
  }
}
@media all and (max-width: 991.99px) {
  /* under LG  */
  table.b-table.b-table-stacked-lg {
    width: 100%;
  }
  table.b-table.b-table-stacked-lg,
  table.b-table.b-table-stacked-lg > tbody,
  table.b-table.b-table-stacked-lg > tbody > tr,
  table.b-table.b-table-stacked-lg > tbody > tr > td,
  table.b-table.b-table-stacked-lg > tbody > tr > th,
  table.b-table.b-table-stacked-lg > caption {
    display: block;
  }
  /* hide stuff we can't deal with, or shouldn't show */
  table.b-table.b-table-stacked-lg > thead,
  table.b-table.b-table-stacked-lg > tfoot,
  table.b-table.b-table-stacked-lg > tbody > tr.b-table-top-row,
  table.b-table.b-table-stacked-lg > tbody > tr.b-table-bottom-row {
    display: none;
  }
  /* inter-row top border */
  table.b-table.b-table-stacked-lg > tbody > tr > :first-child {
    border-top-width: 0.4rem;
  }
  /* convert TD/TH contents to "cells". Caveat: child elements become cells! */
  table.b-table.b-table-stacked-lg > tbody > tr > [data-label] {
    display: grid;
    grid-template-columns: 40% auto;
    grid-gap: 0.25rem 1rem;
  }
  /* generate row cell "heading" */
  table.b-table.b-table-stacked-lg > tbody > tr > [data-label]::before {
    content: attr(data-label);
    display: inline;
    text-align: right;
    overflow-wrap: break-word;
    font-weight: bold;
    font-style: normal;
  }
}
@media all and (max-width: 1199.99px) {
  /* under XL  */
  table.b-table.b-table-stacked-xl {
    width: 100%;
  }
  table.b-table.b-table-stacked-xl,
  table.b-table.b-table-stacked-xl > tbody,
  table.b-table.b-table-stacked-xl > tbody > tr,
  table.b-table.b-table-stacked-xl > tbody > tr > td,
  table.b-table.b-table-stacked-xl > tbody > tr > th,
  table.b-table.b-table-stacked-xl > caption {
    display: block;
  }
  /* hide stuff we can't deal with, or shouldn't show */
  table.b-table.b-table-stacked-xl > thead,
  table.b-table.b-table-stacked-xl > tfoot,
  table.b-table.b-table-stacked-xl > tbody > tr.b-table-top-row,
  table.b-table.b-table-stacked-xl > tbody > tr.b-table-bottom-row {
    display: none;
  }
  /* inter-row top border */
  table.b-table.b-table-stacked-xl > tbody > tr > :first-child {
    border-top-width: 0.4rem;
  }
  /* convert TD/TH contents to "cells". Caveat: child elements become cells! */
  table.b-table.b-table-stacked-xl > tbody > tr > [data-label] {
    display: grid;
    grid-template-columns: 40% auto;
    grid-gap: 0.25rem 1rem;
  }
  /* generate row cell "heading" */
  table.b-table.b-table-stacked-xl > tbody > tr > [data-label]::before {
    content: attr(data-label);
    display: inline;
    text-align: right;
    overflow-wrap: break-word;
    font-weight: bold;
    font-style: normal;
  }
}
/* Details row styling */
table.b-table > tbody > tr.b-table-details > td {
  border-top: none;
}
.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}
a {
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.white-bg {
  background: #fff;
}
.purple-bg {
  background: #702784;
}
.green-bg {
  background: #00AFA8;
}
.why-bg {
  background: #14afa8;
}
.how-bg {
  background: #00388b;
}
.what-bg {
  background: #6f2c83;
}
.lightest-blue {
  background: #F1F2F8;
}
.blue-bg {
  background: #004E98;
}
.darkpurple-bg {
  background: #4B2884;
}
.lightblue-bg {
  background: #009CDC;
}
.turqiouse-bg {
  background: #00AFA8;
}
.color-blue {
  color: #004E98;
}
.color-lightblue {
  color: #009CDC;
}
.color-white {
  color: #fff;
}
.color-green {
  color: #00AFA8;
}
*:focus {
  outline: none;
}
* {
  margin: 0;
  padding: 0;
}
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,
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,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
html {
  /* Adjust font size */
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  /* Font varient */
  font-variant-ligatures: none;
  -webkit-font-variant-ligatures: none;
  /* Smoothing */
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
  font-size: 18px;
}
:root,
html,
body {
  font-family: 'Universe';
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
html,
body {
  background: #F1F2F8;
}
body.noscroll {
  overflow: hidden;
}
h1,
h2,
h3 {
  font-weight: bold;
}
h1 {
  font-size: 50px;
}
h2 {
  font-size: 30px;
}
.btn {
  border-radius: 30px;
  padding: 9.5px 50px;
}
.btn.border-radius-light {
  border-radius: 10px;
  border-width: 2px;
  padding: 12px 40px;
}
.btn.btn-angle-right,
.btn.btn-angle-before-right {
  position: relative;
}
.btn.btn-angle-right:after,
.btn.btn-angle-before-right:after {
  font-family: "FontAwesome";
  content: "\f105";
  position: absolute;
  right: 15px;
  top: 10px;
  -webkit-transition: all 0.3s 0s ease-in-out;
  transition: all 0.3s 0s ease-in-out;
}
.btn.btn-angle-right:hover,
.btn.btn-angle-before-right:hover,
.btn.btn-angle-right:active,
.btn.btn-angle-before-right:active,
.btn.btn-angle-right:focus,
.btn.btn-angle-before-right:focus {
  color: inherit;
}
.btn.btn-angle-right:hover:after,
.btn.btn-angle-before-right:hover:after,
.btn.btn-angle-right:active:after,
.btn.btn-angle-before-right:active:after,
.btn.btn-angle-right:focus:after,
.btn.btn-angle-before-right:focus:after {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}
.btn.btn-angle-before-right:after {
  right: auto;
  left: 15px;
}
.btn.link {
  background: none;
  padding: 0;
  border: 0px;
  position: relative;
  padding-left: 20px;
}
.btn.link:before {
  content: "\f105";
  font-family: "FontAwesome";
  font-style: normal;
  text-decoration: inherit;
  font-size: 20px;
  position: absolute;
  top: -3px;
  left: 0;
  -webkit-transition: all 0.3s 0s ease-in-out;
  transition: all 0.3s 0s ease-in-out;
}
.btn.link:hover,
.btn.link:active,
.btn.link:focus {
  color: inherit;
}
.btn.link:hover:before,
.btn.link:active:before,
.btn.link:focus:before {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}
.btn.btn-circle {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  position: relative;
  padding: 0!important;
}
.btn.btn-circle:after {
  content: "";
  position: absolute;
  right: 15px;
  top: 15px;
  display: inline-block;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transition: transform 0.2s, margin 0.2s;
  transform: rotate(315deg);
  width: 10px;
  height: 10px;
}
.btn.btn-circle:hover:after {
  transform: rotate(675deg);
}
.btn.color-green {
  color: #17A3A1;
}
.btn.color-green:hover,
.btn.color-green:active,
.btn.color-green:focus {
  color: #17A3A1;
}
.btn-outline-light {
  color: #fff;
  border-color: #fff;
  border-width: 3px;
}
.btn-outline-light:hover,
.btn-outline-light:active {
  color: #00AFA8;
  border-color: #00AFA8;
}
.font-normal {
  font-weight: normal;
}
.horizontal-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.vertical-center {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.square:after {
  content: " ";
  display: block;
  padding-bottom: 100%;
}
.remove-margin {
  margin: 0!important;
}
.remove-margin-t {
  margin-top: 0!important;
}
.remove-margin-l {
  margin-left: 0!important;
}
.remove-margin-r {
  margin-right: 0!important;
}
.remove-margin-b {
  margin-bottom: 0!important;
}
.remove-margin-v {
  margin-bottom: 0!important;
  margin-top: 0!important;
}
.remove-margin-h {
  margin-left: 0!important;
  margin-right: 0!important;
}
.push-5 {
  margin: 5px !important;
}
.push-5-t {
  margin-top: 5px !important;
}
.push-5-r {
  margin-right: 5px !important;
}
.push-5-l {
  margin-left: 5px !important;
}
.push-5-b {
  margin-bottom: 5px !important;
}
.push-5-v {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
.push-5-h {
  margin-left: 5px !important;
  margin-right: 5px !important;
}
.push-10 {
  margin: 10px !important;
}
.push-10-t {
  margin-top: 10px !important;
}
.push-10-r {
  margin-right: 10px !important;
}
.push-10-l {
  margin-left: 10px !important;
}
.push-10-b {
  margin-bottom: 10px !important;
}
.push-10-v {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}
.push-10-h {
  margin-left: 10px !important;
  margin-right: 10px !important;
}
.push-15 {
  margin: 15px !important;
}
.push-15-t {
  margin-top: 15px !important;
}
.push-15-r {
  margin-right: 15px !important;
}
.push-15-l {
  margin-left: 15px !important;
}
.push-15-b {
  margin-bottom: 15px !important;
}
.push-15-v {
  margin-top: 15px !important;
  margin-bottom: 15px !important;
}
.push-15-h {
  margin-left: 15px !important;
  margin-right: 15px !important;
}
.push-20 {
  margin: 20px !important;
}
.push-20-t {
  margin-top: 20px !important;
}
.push-20-r {
  margin-right: 20px !important;
}
.push-20-l {
  margin-left: 20px !important;
}
.push-20-b {
  margin-bottom: 20px !important;
}
.push-20-v {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}
.push-20-h {
  margin-left: 20px !important;
  margin-right: 20px !important;
}
.push-25 {
  margin: 25px !important;
}
.push-25-t {
  margin-top: 25px !important;
}
.push-25-r {
  margin-right: 25px !important;
}
.push-25-l {
  margin-left: 25px !important;
}
.push-25-b {
  margin-bottom: 25px !important;
}
.push-25-v {
  margin-top: 25px !important;
  margin-bottom: 25px !important;
}
.push-25-h {
  margin-left: 25px !important;
  margin-right: 25px !important;
}
.push-30 {
  margin: 30px !important;
}
.push-30-t {
  margin-top: 30px !important;
}
.push-30-r {
  margin-right: 30px !important;
}
.push-30-l {
  margin-left: 30px !important;
}
.push-30-b {
  margin-bottom: 30px !important;
}
.push-30-v {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}
.push-30-h {
  margin-left: 30px !important;
  margin-right: 30px !important;
}
.push-35 {
  margin: 35px !important;
}
.push-35-t {
  margin-top: 35px !important;
}
.push-35-r {
  margin-right: 35px !important;
}
.push-35-l {
  margin-left: 35px !important;
}
.push-35-b {
  margin-bottom: 35px !important;
}
.push-35-v {
  margin-top: 35px !important;
  margin-bottom: 35px !important;
}
.push-35-h {
  margin-left: 35px !important;
  margin-right: 35px !important;
}
.push-40 {
  margin: 40px !important;
}
.push-40-t {
  margin-top: 40px !important;
}
.push-40-r {
  margin-right: 40px !important;
}
.push-40-l {
  margin-left: 40px !important;
}
.push-40-b {
  margin-bottom: 40px !important;
}
.push-40-v {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}
.push-40-h {
  margin-left: 40px !important;
  margin-right: 40px !important;
}
.push-45 {
  margin: 45px !important;
}
.push-45-t {
  margin-top: 45px !important;
}
.push-45-r {
  margin-right: 45px !important;
}
.push-45-l {
  margin-left: 45px !important;
}
.push-45-b {
  margin-bottom: 45px !important;
}
.push-45-v {
  margin-top: 45px !important;
  margin-bottom: 45px !important;
}
.push-45-h {
  margin-left: 45px !important;
  margin-right: 45px !important;
}
.push-50 {
  margin: 50px !important;
}
.push-50-t {
  margin-top: 50px !important;
}
.push-50-r {
  margin-right: 50px !important;
}
.push-50-l {
  margin-left: 50px !important;
}
.push-50-b {
  margin-bottom: 50px !important;
}
.push-50-v {
  margin-top: 50px !important;
  margin-bottom: 50px !important;
}
.push-50-h {
  margin-left: 50px !important;
  margin-right: 50px !important;
}
.push-55 {
  margin: 55px !important;
}
.push-55-t {
  margin-top: 55px !important;
}
.push-55-r {
  margin-right: 55px !important;
}
.push-55-l {
  margin-left: 55px !important;
}
.push-55-b {
  margin-bottom: 55px !important;
}
.push-55-v {
  margin-top: 55px !important;
  margin-bottom: 55px !important;
}
.push-55-h {
  margin-left: 55px !important;
  margin-right: 55px !important;
}
.push-60 {
  margin: 60px !important;
}
.push-60-t {
  margin-top: 60px !important;
}
.push-60-r {
  margin-right: 60px !important;
}
.push-60-l {
  margin-left: 60px !important;
}
.push-60-b {
  margin-bottom: 60px !important;
}
.push-60-v {
  margin-top: 60px !important;
  margin-bottom: 60px !important;
}
.push-60-h {
  margin-left: 60px !important;
  margin-right: 60px !important;
}
.push-70 {
  margin: 70px !important;
}
.push-70-t {
  margin-top: 70px !important;
}
.push-70-r {
  margin-right: 70px !important;
}
.push-70-l {
  margin-left: 70px !important;
}
.push-70-b {
  margin-bottom: 70px !important;
}
.push-70-v {
  margin-top: 70px !important;
  margin-bottom: 70px !important;
}
.push-70-h {
  margin-left: 70px !important;
  margin-right: 70px !important;
}
.push-80 {
  margin: 80px !important;
}
.push-80-t {
  margin-top: 80px !important;
}
.push-80-r {
  margin-right: 80px !important;
}
.push-80-l {
  margin-left: 80px !important;
}
.push-80-b {
  margin-bottom: 80px !important;
}
.push-80-v {
  margin-top: 80px !important;
  margin-bottom: 80px !important;
}
.push-80-h {
  margin-left: 80px !important;
  margin-right: 80px !important;
}
.push-90 {
  margin: 90px !important;
}
.push-90-t {
  margin-top: 90px !important;
}
.push-90-r {
  margin-right: 90px !important;
}
.push-90-l {
  margin-left: 90px !important;
}
.push-90-b {
  margin-bottom: 90px !important;
}
.push-90-v {
  margin-top: 90px !important;
  margin-bottom: 90px !important;
}
.push-90-h {
  margin-left: 90px !important;
  margin-right: 90px !important;
}
.push-100 {
  margin: 100px !important;
}
.push-100-t {
  margin-top: 100px !important;
}
.push-100-r {
  margin-right: 100px !important;
}
.push-100-l {
  margin-left: 100px !important;
}
.push-100-b {
  margin-bottom: 100px !important;
}
.push-100-v {
  margin-top: 100px !important;
  margin-bottom: 100px !important;
}
.push-100-h {
  margin-left: 100px !important;
  margin-right: 100px !important;
}
.push-150 {
  margin: 150px !important;
}
.push-150-t {
  margin-top: 150px !important;
}
.push-150-r {
  margin-right: 150px !important;
}
.push-150-l {
  margin-left: 150px !important;
}
.push-150-b {
  margin-bottom: 150px !important;
}
.push-150-v {
  margin-top: 150px !important;
  margin-bottom: 150px !important;
}
.push-150-h {
  margin-left: 150px !important;
  margin-right: 150px !important;
}
.push-180 {
  margin: 180px !important;
}
.push-180-t {
  margin-top: 180px !important;
}
.push-180-r {
  margin-right: 180px !important;
}
.push-180-l {
  margin-left: 180px !important;
}
.push-180-b {
  margin-bottom: 180px !important;
}
.push-180-v {
  margin-top: 180px !important;
  margin-bottom: 180px !important;
}
.push-180-h {
  margin-left: 180px !important;
  margin-right: 180px !important;
}
.push-200 {
  margin: 200px !important;
}
.push-200-t {
  margin-top: 200px !important;
}
.push-200-r {
  margin-right: 200px !important;
}
.push-200-l {
  margin-left: 200px !important;
}
.push-200-b {
  margin-bottom: 200px !important;
}
.push-200-v {
  margin-top: 200px !important;
  margin-bottom: 200px !important;
}
.push-200-h {
  margin-left: 200px !important;
  margin-right: 200px !important;
}
.remove-padding {
  padding: 0!important;
}
.remove-padding-t {
  padding-top: 0!important;
}
.remove-padding-l {
  padding-left: 0!important;
}
.remove-padding-r {
  padding-right: 0!important;
}
.remove-padding-b {
  padding-bottom: 0!important;
}
.remove-padding-v {
  padding-bottom: 0!important;
  padding-top: 0!important;
}
.remove-padding-h {
  padding-left: 0!important;
  padding-right: 0!important;
}
.put-5 {
  padding: 5px !important;
}
.put-5-t {
  padding-top: 5px !important;
}
.put-5-r {
  padding-right: 5px !important;
}
.put-5-l {
  padding-left: 5px !important;
}
.put-5-b {
  padding-bottom: 5px !important;
}
.put-5-v {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}
.put-5-h {
  padding-left: 5px !important;
  padding-right: 5px !important;
}
.put-10 {
  padding: 10px !important;
}
.put-10-t {
  padding-top: 10px !important;
}
.put-10-r {
  padding-right: 10px !important;
}
.put-10-l {
  padding-left: 10px !important;
}
.put-10-b {
  padding-bottom: 10px !important;
}
.put-10-v {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
.put-10-h {
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.put-12 {
  padding: 12px !important;
}
.put-12-t {
  padding-top: 12px !important;
}
.put-12-r {
  padding-right: 12px !important;
}
.put-12-l {
  padding-left: 12px !important;
}
.put-12-b {
  padding-bottom: 12px !important;
}
.put-12-v {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}
.put-12-h {
  padding-left: 12px !important;
  padding-right: 12px !important;
}
.put-15 {
  padding: 15px !important;
}
.put-15-t {
  padding-top: 15px !important;
}
.put-15-r {
  padding-right: 15px !important;
}
.put-15-l {
  padding-left: 15px !important;
}
.put-15-b {
  padding-bottom: 15px !important;
}
.put-15-v {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}
.put-15-h {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.put-20 {
  padding: 20px !important;
}
.put-20-t {
  padding-top: 20px !important;
}
.put-20-r {
  padding-right: 20px !important;
}
.put-20-l {
  padding-left: 20px !important;
}
.put-20-b {
  padding-bottom: 20px !important;
}
.put-20-v {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}
.put-20-h {
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.put-25 {
  padding: 25px !important;
}
.put-25-t {
  padding-top: 25px !important;
}
.put-25-r {
  padding-right: 25px !important;
}
.put-25-l {
  padding-left: 25px !important;
}
.put-25-b {
  padding-bottom: 25px !important;
}
.put-25-v {
  padding-top: 25px !important;
  padding-bottom: 25px !important;
}
.put-25-h {
  padding-left: 25px !important;
  padding-right: 25px !important;
}
.put-30 {
  padding: 30px !important;
}
.put-30-t {
  padding-top: 30px !important;
}
.put-30-r {
  padding-right: 30px !important;
}
.put-30-l {
  padding-left: 30px !important;
}
.put-30-b {
  padding-bottom: 30px !important;
}
.put-30-v {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}
.put-30-h {
  padding-left: 30px !important;
  padding-right: 30px !important;
}
.put-35 {
  padding: 35px !important;
}
.put-35-t {
  padding-top: 35px !important;
}
.put-35-r {
  padding-right: 35px !important;
}
.put-35-l {
  padding-left: 35px !important;
}
.put-35-b {
  padding-bottom: 35px !important;
}
.put-35-v {
  padding-top: 35px !important;
  padding-bottom: 35px !important;
}
.put-35-h {
  padding-left: 35px !important;
  padding-right: 35px !important;
}
.put-40 {
  padding: 40px !important;
}
.put-40-t {
  padding-top: 40px !important;
}
.put-40-r {
  padding-right: 40px !important;
}
.put-40-l {
  padding-left: 40px !important;
}
.put-40-b {
  padding-bottom: 40px !important;
}
.put-40-v {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}
.put-40-h {
  padding-left: 40px !important;
  padding-right: 40px !important;
}
.put-50 {
  padding: 50px !important;
}
.put-50-t {
  padding-top: 50px !important;
}
.put-50-r {
  padding-right: 50px !important;
}
.put-50-l {
  padding-left: 50px !important;
}
.put-50-b {
  padding-bottom: 50px !important;
}
.put-50-v {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}
.put-50-h {
  padding-left: 50px !important;
  padding-right: 50px !important;
}
.put-60 {
  padding: 60px !important;
}
.put-60-t {
  padding-top: 60px !important;
}
.put-60-r {
  padding-right: 60px !important;
}
.put-60-l {
  padding-left: 60px !important;
}
.put-60-b {
  padding-bottom: 60px !important;
}
.put-60-v {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}
.put-60-h {
  padding-left: 60px !important;
  padding-right: 60px !important;
}
.put-70 {
  padding: 70px !important;
}
.put-70-t {
  padding-top: 70px !important;
}
.put-70-r {
  padding-right: 70px !important;
}
.put-70-l {
  padding-left: 70px !important;
}
.put-70-b {
  padding-bottom: 70px !important;
}
.put-70-v {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}
.put-70-h {
  padding-left: 70px !important;
  padding-right: 70px !important;
}
.put-80 {
  padding: 80px !important;
}
.put-80-t {
  padding-top: 80px !important;
}
.put-80-r {
  padding-right: 80px !important;
}
.put-80-l {
  padding-left: 80px !important;
}
.put-80-b {
  padding-bottom: 80px !important;
}
.put-80-v {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}
.put-80-h {
  padding-left: 80px !important;
  padding-right: 80px !important;
}
.put-90 {
  padding: 90px !important;
}
.put-90-t {
  padding-top: 90px !important;
}
.put-90-r {
  padding-right: 90px !important;
}
.put-90-l {
  padding-left: 90px !important;
}
.put-90-b {
  padding-bottom: 90px !important;
}
.put-90-v {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}
.put-90-h {
  padding-left: 90px !important;
  padding-right: 90px !important;
}
.put-100 {
  padding: 100px !important;
}
.put-100-t {
  padding-top: 100px !important;
}
.put-100-r {
  padding-right: 100px !important;
}
.put-100-l {
  padding-left: 100px !important;
}
.put-100-b {
  padding-bottom: 100px !important;
}
.put-100-v {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}
.put-100-h {
  padding-left: 100px !important;
  padding-right: 100px !important;
}
.put-120 {
  padding: 120px !important;
}
.put-120-t {
  padding-top: 120px !important;
}
.put-120-r {
  padding-right: 120px !important;
}
.put-120-l {
  padding-left: 120px !important;
}
.put-120-b {
  padding-bottom: 120px !important;
}
.put-120-v {
  padding-top: 120px !important;
  padding-bottom: 120px !important;
}
.put-120-h {
  padding-left: 120px !important;
  padding-right: 120px !important;
}
.put-150 {
  padding: 150px !important;
}
.put-150-t {
  padding-top: 150px !important;
}
.put-150-r {
  padding-right: 150px !important;
}
.put-150-l {
  padding-left: 150px !important;
}
.put-150-b {
  padding-bottom: 150px !important;
}
.put-150-v {
  padding-top: 150px !important;
  padding-bottom: 150px !important;
}
.put-150-h {
  padding-left: 150px !important;
  padding-right: 150px !important;
}
.put-200 {
  padding: 200px !important;
}
.put-200-t {
  padding-top: 200px !important;
}
.put-200-r {
  padding-right: 200px !important;
}
.put-200-l {
  padding-left: 200px !important;
}
.put-200-b {
  padding-bottom: 200px !important;
}
.put-200-v {
  padding-top: 200px !important;
  padding-bottom: 200px !important;
}
.put-200-h {
  padding-left: 200px !important;
  padding-right: 200px !important;
}
.font-w100 {
  font-weight: 100;
}
.font-w200 {
  font-weight: 200;
}
.font-w300 {
  font-weight: 300;
}
.font-w400 {
  font-weight: 400;
}
.font-w500 {
  font-weight: 500;
}
.font-w600 {
  font-weight: 600;
}
.font-w700 {
  font-weight: 700;
}
.font-w800 {
  font-weight: 800;
}
.font-w900 {
  font-weight: 900;
}
.font-s10 {
  font-size: 10px;
}
.font-s12 {
  font-size: 12px;
}
.font-s14 {
  font-size: 14px;
}
.font-s16 {
  font-size: 16px;
}
.font-s18 {
  font-size: 18px;
}
.font-s20 {
  font-size: 20px;
}
.font-s22 {
  font-size: 22px;
}
.font-s24 {
  font-size: 24px;
}
.font-s26 {
  font-size: 26px;
}
.font-s28 {
  font-size: 28px;
}
.font-s30 {
  font-size: 30px;
}
.font-s32 {
  font-size: 32px;
}
.font-s34 {
  font-size: 34px;
}
.font-s36 {
  font-size: 36px;
}
.font-s40 {
  font-size: 40px;
}
.font-s42 {
  font-size: 42px;
}
.font-s44 {
  font-size: 44px;
}
.font-s50 {
  font-size: 50px;
}
.font-s60 {
  font-size: 60px;
}
.font-s80 {
  font-size: 80px;
}
.font-s90 {
  font-size: 90px;
}
@media only screen and (max-width: 767px) {
  .font-s90 {
    font-size: 50px;
  }
}
.font-s100 {
  font-size: 100px;
}
.font-s150 {
  font-size: 150px;
}
.font-s70 {
  font-size: 70px;
}
.line-height-100 {
  line-height: 1;
}
.line-height-150 {
  line-height: 1.5;
}
.cursor-pointer {
  cursor: pointer;
}
.text-decoration-none {
  text-decoration: none;
}
.text-line-through,
.text-decoration-line-through {
  text-decoration: line-through;
}
.line-h10 {
  line-height: 10px;
}
.line-h30 {
  line-height: 30px;
}
.line-h25 {
  line-height: 25px;
}
.line-h35 {
  line-height: 35px;
}
.line-h40 {
  line-height: 40px;
}
.line-h45 {
  line-height: 45px;
}
.line-h50 {
  line-height: 50px;
}
.line-h55 {
  line-height: 55px;
}
.line-h60 {
  line-height: 60px;
}
.line-h65 {
  line-height: 65px;
}
.line-h70 {
  line-height: 70px;
}
.line-h75 {
  line-height: 75px;
}
.line-h100 {
  line-height: 100px;
}
@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.viewport-hidden {
  opacity: 0;
  transition: opacity 0.5s;
}
.viewport-hidden.in-viewport {
  opacity: 1;
}
.full-height {
  height: 100vh;
}
@media (min-width: 1600px) {
  .container {
    max-width: 1570px;
  }
  .col-xxl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xxl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xxl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xxl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xxl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xxl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xxl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xxl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xxl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xxl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xxl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xxl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xxl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xxl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xxl-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .order-xxl-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }
  .order-xxl-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-xxl-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-xxl-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-xxl-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-xxl-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-xxl-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-xxl-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-xxl-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-xxl-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-xxl-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-xxl-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-xxl-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-xxl-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.666667%;
  }
}
/*
Bootstrap overrides
 */
.border-radius-5 {
  border-radius: 5px;
}
.border-radius-100 {
  border-radius: 100%;
}
/*! jQuery UI - v1.12.1 - 2018-06-04
* http://jqueryui.com
* Includes: core.css, slider.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?scope=&folderName=base&cornerRadiusShadow=8px&offsetLeftShadow=0px&offsetTopShadow=0px&thicknessShadow=5px&opacityShadow=30&bgImgOpacityShadow=0&bgTextureShadow=flat&bgColorShadow=666666&opacityOverlay=30&bgImgOpacityOverlay=0&bgTextureOverlay=flat&bgColorOverlay=aaaaaa&iconColorError=cc0000&fcError=5f3f3f&borderColorError=f1a899&bgTextureError=flat&bgColorError=fddfdf&iconColorHighlight=777620&fcHighlight=777620&borderColorHighlight=dad55e&bgTextureHighlight=flat&bgColorHighlight=fffa90&iconColorActive=ffffff&fcActive=ffffff&borderColorActive=003eff&bgTextureActive=flat&bgColorActive=007fff&iconColorHover=555555&fcHover=2b2b2b&borderColorHover=cccccc&bgTextureHover=flat&bgColorHover=ededed&iconColorDefault=777777&fcDefault=454545&borderColorDefault=c5c5c5&bgTextureDefault=flat&bgColorDefault=f6f6f6&iconColorContent=444444&fcContent=333333&borderColorContent=dddddd&bgTextureContent=flat&bgColorContent=ffffff&iconColorHeader=444444&fcHeader=333333&borderColorHeader=dddddd&bgTextureHeader=flat&bgColorHeader=e9e9e9&cornerRadius=3px&fwDefault=normal&fsDefault=1em&ffDefault=Arial%2CHelvetica%2Csans-serif
* Copyright jQuery Foundation and other contributors; Licensed MIT */
/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
  display: none;
}
.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none;
}
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
  content: "";
  display: table;
  border-collapse: collapse;
}
.ui-helper-clearfix:after {
  clear: both;
}
.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  filter: alpha(opacity=0);
  /* support: IE8 */
}
.ui-front {
  z-index: 100;
}
/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
  cursor: default !important;
  pointer-events: none;
}
/* Icons
----------------------------------*/
.ui-icon {
  display: inline-block;
  vertical-align: middle;
  margin-top: -0.25em;
  position: relative;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
}
.ui-widget-icon-block {
  left: 50%;
  margin-left: -8px;
  display: block;
}
/* Misc visuals
----------------------------------*/
/* Overlays */
.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ui-slider {
  position: relative;
  text-align: left;
}
.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1.2em;
  height: 1.2em;
  cursor: default;
  -ms-touch-action: none;
  touch-action: none;
}
.ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: 0.7em;
  display: block;
  border: 0;
  background-position: 0 0;
}
/* support: IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
  filter: inherit;
}
.ui-slider-horizontal {
  height: 0.8em;
}
.ui-slider-horizontal .ui-slider-handle {
  top: -0.3em;
  margin-left: -0.6em;
}
.ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
}
.ui-slider-horizontal .ui-slider-range-min {
  left: 0;
}
.ui-slider-horizontal .ui-slider-range-max {
  right: 0;
}
.ui-slider-vertical {
  width: 0.8em;
  height: 100px;
}
.ui-slider-vertical .ui-slider-handle {
  left: -0.3em;
  margin-left: 0;
  margin-bottom: -0.6em;
}
.ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 100%;
}
.ui-slider-vertical .ui-slider-range-min {
  bottom: 0;
}
.ui-slider-vertical .ui-slider-range-max {
  top: 0;
}
/* Component containers
----------------------------------*/
.ui-widget {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
}
.ui-widget .ui-widget {
  font-size: 1em;
}
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
}
.ui-widget.ui-widget-content {
  border: 1px solid #c5c5c5;
}
.ui-widget-content {
  border: 1px solid #dddddd;
  background: #ffffff;
  color: #333333;
}
.ui-widget-content a {
  color: #333333;
}
.ui-widget-header {
  border: 1px solid #dddddd;
  background: #e9e9e9;
  color: #333333;
  font-weight: bold;
}
.ui-widget-header a {
  color: #333333;
}
/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: 1px solid #c5c5c5;
  background: #f6f6f6;
  font-weight: normal;
  color: #454545;
}
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a:link.ui-button,
a:visited.ui-button,
.ui-button {
  color: #454545;
  text-decoration: none;
}
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
  border: 1px solid #cccccc;
  background: #ededed;
  font-weight: normal;
  color: #2b2b2b;
}
.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited,
a.ui-button:hover,
a.ui-button:focus {
  color: #2b2b2b;
  text-decoration: none;
}
.ui-visual-focus {
  box-shadow: 0 0 3px 1px #5e9ed6;
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  border: 1px solid #003eff;
  background: #007fff;
  font-weight: normal;
  color: #ffffff;
}
.ui-icon-background,
.ui-state-active .ui-icon-background {
  border: #003eff;
  background-color: #ffffff;
}
.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
  color: #ffffff;
  text-decoration: none;
}
/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #dad55e;
  background: #fffa90;
  color: #777620;
}
.ui-state-checked {
  border: 1px solid #dad55e;
  background: #fffa90;
}
.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
  color: #777620;
}
.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
  border: 1px solid #f1a899;
  background: #fddfdf;
  color: #5f3f3f;
}
.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
  color: #5f3f3f;
}
.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
  color: #5f3f3f;
}
.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
  font-weight: bold;
}
.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
  opacity: 0.7;
  filter: alpha(opacity=70);
  /* support: IE8 */
  font-weight: normal;
}
.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
  opacity: 0.35;
  filter: alpha(opacity=35);
  /* support: IE8 */
  background-image: none;
}
.ui-state-disabled .ui-icon {
  filter: alpha(opacity=35);
  /* support: IE8 - See #6059 */
}
/* Icons
----------------------------------*/
/* states and images */
.ui-icon {
  width: 16px;
  height: 16px;
}
.ui-icon,
.ui-widget-content .ui-icon {
  background-image: url("images/ui-icons_444444_256x240.png");
}
.ui-widget-header .ui-icon {
  background-image: url("images/ui-icons_444444_256x240.png");
}
.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon,
.ui-button:hover .ui-icon,
.ui-button:focus .ui-icon {
  background-image: url("images/ui-icons_555555_256x240.png");
}
.ui-state-active .ui-icon,
.ui-button:active .ui-icon {
  background-image: url("images/ui-icons_ffffff_256x240.png");
}
.ui-state-highlight .ui-icon,
.ui-button .ui-state-highlight.ui-icon {
  background-image: url("images/ui-icons_777620_256x240.png");
}
.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
  background-image: url("images/ui-icons_cc0000_256x240.png");
}
.ui-button .ui-icon {
  background-image: url("images/ui-icons_777777_256x240.png");
}
/* positioning */
.ui-icon-blank {
  background-position: 16px 16px;
}
.ui-icon-caret-1-n {
  background-position: 0 0;
}
.ui-icon-caret-1-ne {
  background-position: -16px 0;
}
.ui-icon-caret-1-e {
  background-position: -32px 0;
}
.ui-icon-caret-1-se {
  background-position: -48px 0;
}
.ui-icon-caret-1-s {
  background-position: -65px 0;
}
.ui-icon-caret-1-sw {
  background-position: -80px 0;
}
.ui-icon-caret-1-w {
  background-position: -96px 0;
}
.ui-icon-caret-1-nw {
  background-position: -112px 0;
}
.ui-icon-caret-2-n-s {
  background-position: -128px 0;
}
.ui-icon-caret-2-e-w {
  background-position: -144px 0;
}
.ui-icon-triangle-1-n {
  background-position: 0 -16px;
}
.ui-icon-triangle-1-ne {
  background-position: -16px -16px;
}
.ui-icon-triangle-1-e {
  background-position: -32px -16px;
}
.ui-icon-triangle-1-se {
  background-position: -48px -16px;
}
.ui-icon-triangle-1-s {
  background-position: -65px -16px;
}
.ui-icon-triangle-1-sw {
  background-position: -80px -16px;
}
.ui-icon-triangle-1-w {
  background-position: -96px -16px;
}
.ui-icon-triangle-1-nw {
  background-position: -112px -16px;
}
.ui-icon-triangle-2-n-s {
  background-position: -128px -16px;
}
.ui-icon-triangle-2-e-w {
  background-position: -144px -16px;
}
.ui-icon-arrow-1-n {
  background-position: 0 -32px;
}
.ui-icon-arrow-1-ne {
  background-position: -16px -32px;
}
.ui-icon-arrow-1-e {
  background-position: -32px -32px;
}
.ui-icon-arrow-1-se {
  background-position: -48px -32px;
}
.ui-icon-arrow-1-s {
  background-position: -65px -32px;
}
.ui-icon-arrow-1-sw {
  background-position: -80px -32px;
}
.ui-icon-arrow-1-w {
  background-position: -96px -32px;
}
.ui-icon-arrow-1-nw {
  background-position: -112px -32px;
}
.ui-icon-arrow-2-n-s {
  background-position: -128px -32px;
}
.ui-icon-arrow-2-ne-sw {
  background-position: -144px -32px;
}
.ui-icon-arrow-2-e-w {
  background-position: -160px -32px;
}
.ui-icon-arrow-2-se-nw {
  background-position: -176px -32px;
}
.ui-icon-arrowstop-1-n {
  background-position: -192px -32px;
}
.ui-icon-arrowstop-1-e {
  background-position: -208px -32px;
}
.ui-icon-arrowstop-1-s {
  background-position: -224px -32px;
}
.ui-icon-arrowstop-1-w {
  background-position: -240px -32px;
}
.ui-icon-arrowthick-1-n {
  background-position: 1px -48px;
}
.ui-icon-arrowthick-1-ne {
  background-position: -16px -48px;
}
.ui-icon-arrowthick-1-e {
  background-position: -32px -48px;
}
.ui-icon-arrowthick-1-se {
  background-position: -48px -48px;
}
.ui-icon-arrowthick-1-s {
  background-position: -64px -48px;
}
.ui-icon-arrowthick-1-sw {
  background-position: -80px -48px;
}
.ui-icon-arrowthick-1-w {
  background-position: -96px -48px;
}
.ui-icon-arrowthick-1-nw {
  background-position: -112px -48px;
}
.ui-icon-arrowthick-2-n-s {
  background-position: -128px -48px;
}
.ui-icon-arrowthick-2-ne-sw {
  background-position: -144px -48px;
}
.ui-icon-arrowthick-2-e-w {
  background-position: -160px -48px;
}
.ui-icon-arrowthick-2-se-nw {
  background-position: -176px -48px;
}
.ui-icon-arrowthickstop-1-n {
  background-position: -192px -48px;
}
.ui-icon-arrowthickstop-1-e {
  background-position: -208px -48px;
}
.ui-icon-arrowthickstop-1-s {
  background-position: -224px -48px;
}
.ui-icon-arrowthickstop-1-w {
  background-position: -240px -48px;
}
.ui-icon-arrowreturnthick-1-w {
  background-position: 0 -64px;
}
.ui-icon-arrowreturnthick-1-n {
  background-position: -16px -64px;
}
.ui-icon-arrowreturnthick-1-e {
  background-position: -32px -64px;
}
.ui-icon-arrowreturnthick-1-s {
  background-position: -48px -64px;
}
.ui-icon-arrowreturn-1-w {
  background-position: -64px -64px;
}
.ui-icon-arrowreturn-1-n {
  background-position: -80px -64px;
}
.ui-icon-arrowreturn-1-e {
  background-position: -96px -64px;
}
.ui-icon-arrowreturn-1-s {
  background-position: -112px -64px;
}
.ui-icon-arrowrefresh-1-w {
  background-position: -128px -64px;
}
.ui-icon-arrowrefresh-1-n {
  background-position: -144px -64px;
}
.ui-icon-arrowrefresh-1-e {
  background-position: -160px -64px;
}
.ui-icon-arrowrefresh-1-s {
  background-position: -176px -64px;
}
.ui-icon-arrow-4 {
  background-position: 0 -80px;
}
.ui-icon-arrow-4-diag {
  background-position: -16px -80px;
}
.ui-icon-extlink {
  background-position: -32px -80px;
}
.ui-icon-newwin {
  background-position: -48px -80px;
}
.ui-icon-refresh {
  background-position: -64px -80px;
}
.ui-icon-shuffle {
  background-position: -80px -80px;
}
.ui-icon-transfer-e-w {
  background-position: -96px -80px;
}
.ui-icon-transferthick-e-w {
  background-position: -112px -80px;
}
.ui-icon-folder-collapsed {
  background-position: 0 -96px;
}
.ui-icon-folder-open {
  background-position: -16px -96px;
}
.ui-icon-document {
  background-position: -32px -96px;
}
.ui-icon-document-b {
  background-position: -48px -96px;
}
.ui-icon-note {
  background-position: -64px -96px;
}
.ui-icon-mail-closed {
  background-position: -80px -96px;
}
.ui-icon-mail-open {
  background-position: -96px -96px;
}
.ui-icon-suitcase {
  background-position: -112px -96px;
}
.ui-icon-comment {
  background-position: -128px -96px;
}
.ui-icon-person {
  background-position: -144px -96px;
}
.ui-icon-print {
  background-position: -160px -96px;
}
.ui-icon-trash {
  background-position: -176px -96px;
}
.ui-icon-locked {
  background-position: -192px -96px;
}
.ui-icon-unlocked {
  background-position: -208px -96px;
}
.ui-icon-bookmark {
  background-position: -224px -96px;
}
.ui-icon-tag {
  background-position: -240px -96px;
}
.ui-icon-home {
  background-position: 0 -112px;
}
.ui-icon-flag {
  background-position: -16px -112px;
}
.ui-icon-calendar {
  background-position: -32px -112px;
}
.ui-icon-cart {
  background-position: -48px -112px;
}
.ui-icon-pencil {
  background-position: -64px -112px;
}
.ui-icon-clock {
  background-position: -80px -112px;
}
.ui-icon-disk {
  background-position: -96px -112px;
}
.ui-icon-calculator {
  background-position: -112px -112px;
}
.ui-icon-zoomin {
  background-position: -128px -112px;
}
.ui-icon-zoomout {
  background-position: -144px -112px;
}
.ui-icon-search {
  background-position: -160px -112px;
}
.ui-icon-wrench {
  background-position: -176px -112px;
}
.ui-icon-gear {
  background-position: -192px -112px;
}
.ui-icon-heart {
  background-position: -208px -112px;
}
.ui-icon-star {
  background-position: -224px -112px;
}
.ui-icon-link {
  background-position: -240px -112px;
}
.ui-icon-cancel {
  background-position: 0 -128px;
}
.ui-icon-plus {
  background-position: -16px -128px;
}
.ui-icon-plusthick {
  background-position: -32px -128px;
}
.ui-icon-minus {
  background-position: -48px -128px;
}
.ui-icon-minusthick {
  background-position: -64px -128px;
}
.ui-icon-close {
  background-position: -80px -128px;
}
.ui-icon-closethick {
  background-position: -96px -128px;
}
.ui-icon-key {
  background-position: -112px -128px;
}
.ui-icon-lightbulb {
  background-position: -128px -128px;
}
.ui-icon-scissors {
  background-position: -144px -128px;
}
.ui-icon-clipboard {
  background-position: -160px -128px;
}
.ui-icon-copy {
  background-position: -176px -128px;
}
.ui-icon-contact {
  background-position: -192px -128px;
}
.ui-icon-image {
  background-position: -208px -128px;
}
.ui-icon-video {
  background-position: -224px -128px;
}
.ui-icon-script {
  background-position: -240px -128px;
}
.ui-icon-alert {
  background-position: 0 -144px;
}
.ui-icon-info {
  background-position: -16px -144px;
}
.ui-icon-notice {
  background-position: -32px -144px;
}
.ui-icon-help {
  background-position: -48px -144px;
}
.ui-icon-check {
  background-position: -64px -144px;
}
.ui-icon-bullet {
  background-position: -80px -144px;
}
.ui-icon-radio-on {
  background-position: -96px -144px;
}
.ui-icon-radio-off {
  background-position: -112px -144px;
}
.ui-icon-pin-w {
  background-position: -128px -144px;
}
.ui-icon-pin-s {
  background-position: -144px -144px;
}
.ui-icon-play {
  background-position: 0 -160px;
}
.ui-icon-pause {
  background-position: -16px -160px;
}
.ui-icon-seek-next {
  background-position: -32px -160px;
}
.ui-icon-seek-prev {
  background-position: -48px -160px;
}
.ui-icon-seek-end {
  background-position: -64px -160px;
}
.ui-icon-seek-start {
  background-position: -80px -160px;
}
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first {
  background-position: -80px -160px;
}
.ui-icon-stop {
  background-position: -96px -160px;
}
.ui-icon-eject {
  background-position: -112px -160px;
}
.ui-icon-volume-off {
  background-position: -128px -160px;
}
.ui-icon-volume-on {
  background-position: -144px -160px;
}
.ui-icon-power {
  background-position: 0 -176px;
}
.ui-icon-signal-diag {
  background-position: -16px -176px;
}
.ui-icon-signal {
  background-position: -32px -176px;
}
.ui-icon-battery-0 {
  background-position: -48px -176px;
}
.ui-icon-battery-1 {
  background-position: -64px -176px;
}
.ui-icon-battery-2 {
  background-position: -80px -176px;
}
.ui-icon-battery-3 {
  background-position: -96px -176px;
}
.ui-icon-circle-plus {
  background-position: 0 -192px;
}
.ui-icon-circle-minus {
  background-position: -16px -192px;
}
.ui-icon-circle-close {
  background-position: -32px -192px;
}
.ui-icon-circle-triangle-e {
  background-position: -48px -192px;
}
.ui-icon-circle-triangle-s {
  background-position: -64px -192px;
}
.ui-icon-circle-triangle-w {
  background-position: -80px -192px;
}
.ui-icon-circle-triangle-n {
  background-position: -96px -192px;
}
.ui-icon-circle-arrow-e {
  background-position: -112px -192px;
}
.ui-icon-circle-arrow-s {
  background-position: -128px -192px;
}
.ui-icon-circle-arrow-w {
  background-position: -144px -192px;
}
.ui-icon-circle-arrow-n {
  background-position: -160px -192px;
}
.ui-icon-circle-zoomin {
  background-position: -176px -192px;
}
.ui-icon-circle-zoomout {
  background-position: -192px -192px;
}
.ui-icon-circle-check {
  background-position: -208px -192px;
}
.ui-icon-circlesmall-plus {
  background-position: 0 -208px;
}
.ui-icon-circlesmall-minus {
  background-position: -16px -208px;
}
.ui-icon-circlesmall-close {
  background-position: -32px -208px;
}
.ui-icon-squaresmall-plus {
  background-position: -48px -208px;
}
.ui-icon-squaresmall-minus {
  background-position: -64px -208px;
}
.ui-icon-squaresmall-close {
  background-position: -80px -208px;
}
.ui-icon-grip-dotted-vertical {
  background-position: 0 -224px;
}
.ui-icon-grip-dotted-horizontal {
  background-position: -16px -224px;
}
.ui-icon-grip-solid-vertical {
  background-position: -32px -224px;
}
.ui-icon-grip-solid-horizontal {
  background-position: -48px -224px;
}
.ui-icon-gripsmall-diagonal-se {
  background-position: -64px -224px;
}
.ui-icon-grip-diagonal-se {
  background-position: -80px -224px;
}
/* Misc visuals
----------------------------------*/
/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
  border-top-left-radius: 3px;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
  border-top-right-radius: 3px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
  border-bottom-left-radius: 3px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
  border-bottom-right-radius: 3px;
}
/* Overlays */
.ui-widget-overlay {
  background: #aaaaaa;
  opacity: 0.3;
  filter: alpha(opacity=30);
  /* support: IE8 */
}
.ui-widget-shadow {
  -webkit-box-shadow: 0px 0px 5px #666666;
  box-shadow: 0px 0px 5px #666666;
}
.loader {
  color: #004E98;
  font-size: 20px;
  margin: 100px auto;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  text-indent: -9999em;
  -webkit-animation: load4 1.3s infinite linear;
  animation: load4 1.3s infinite linear;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
@-webkit-keyframes load4 {
  0%,
  100% {
    box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
  }
  12.5% {
    box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  25% {
    box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  37.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  50% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  62.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
  }
  75% {
    box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
  }
  87.5% {
    box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
  }
}
@keyframes load4 {
  0%,
  100% {
    box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
  }
  12.5% {
    box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  25% {
    box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  37.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  50% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  62.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
  }
  75% {
    box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
  }
  87.5% {
    box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
  }
}
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}
@font-face {
  font-family: 'KPMG Web';
  src: url('css/fonts/KPMG Web-Light.eot');
  src: url('css/fonts/KPMG Web-Light.eot?#iefix') format('embedded-opentype'), url('css/fonts/KPMG Web-Light.woff2') format('woff2'), url('css/fonts/KPMG Web-Light.woff') format('woff'), url('css/fonts/KPMG Web-Light.ttf') format('truetype'), url('css/fonts/KPMG Web-Light.svg#KPMG Web-Light') format('svg');
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
}
@font-face {
  font-family: 'Universe';
  src: url(css/fonts/UniversLTStd.otf) format('opentype'), url(css/fonts/UniversLTStd.eot) format('eot'), url(css/fonts/UniversLTStd.woff) format('woff'), url(css/fonts/UniversLTStd.svg);
  font-weight: 300;
}
@font-face {
  font-family: 'Universe';
  src: url(css/fonts/UniversLTStd-Light.otf) format('opentype'), url(css/fonts/UniversLTStd-Light.eot) format('eot'), url(css/fonts/UniversLTStd-Light.woff) format('woff'), url(css/fonts/UniversLTStd-Light.svg);
  font-weight: 100;
}
@font-face {
  font-family: 'Universe';
  src: url(css/fonts/UniversLTStd-Bold.otf) format('opentype'), url(css/fonts/UniversLTStd-Bold.eot) format('eot'), url(css/fonts/UniversLTStd-Bold.woff) format('woff'), url(css/fonts/UniversLTStd-Bold.svg);
  font-weight: 700;
}
.universe {
  font-family: 'Universe';
}
.bold {
  font-family: 'Universe';
  font-weight: 700;
}
.font-light {
  font-family: 'KPMG Web';
  font-weight: normal;
}
.font-light.font-s70 {
  line-height: 60px;
}
p {
  margin: 0 0 30px 0;
}
a.color-white:hover,
a.color-white:focus,
a.color-white:active {
  color: #fff;
}
body {
  opacity: 1;
  transition: opacity 0.25s ease-in-out;
  -moz-transition: opacity 0.25s ease-in-out;
  -webkit-transition: opacity 0.25s ease-in-out;
}
@media only screen and (min-width: 1200px) {
  .float-xxl-right {
    float: right !important;
  }
}
header {
  position: relative;
  z-index: 999;
}
header nav {
  width: 100%;
  padding-left: 5%;
  padding-right: 5%;
}
header svg {
  width: 100%;
}
.navbar-expand-md .navbar-nav {
  position: absolute;
  right: 30px;
  top: 52px;
}
.navbar .meijburg-nav .navbar-nav .nav-item .nav-link {
  color: #ffffff;
}
.navbar .meijburg-nav .navbar-nav .nav-item .nav-link:hover {
  opacity: 0.7;
}
.account-button {
  color: #ffffff;
}
.account-button img {
  vertical-align: top;
  margin-left: 10px;
  margin-top: 13px;
}
.account-button img.on-scroll {
  display: none;
}
.account-button:hover {
  color: #ffffff;
}
.fab {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.meijburg-nav ul li a {
  font-family: 'Universe';
  font-size: 20px;
  color: #fff;
  margin-right: 22px;
  line-height: 55px;
  padding: 0;
}
.meijburg-nav ul li.social {
  margin-top: 10px;
  width: 35px;
  height: 35px;
  background: #fff;
  border-radius: 50px;
  text-align: center;
  margin-right: 10px;
}
.meijburg-nav ul li.social i {
  color: #000;
  line-height: 35px;
  font-family: "FontAwesome" !important;
}
.meijburg-nav ul li.social:hover {
  cursor: pointer;
  background: #17A3A1;
}
.meijburg-nav ul li.social:hover i {
  color: #fff;
}
.meijburg-nav ul li.inlog-menu {
  width: 25px;
  height: 25px;
}
.meijburg-nav ul li.inlog-menu i {
  font-size: 26px;
}
.meijburg-nav ul li.nav-item .nav-link:hover:after,
.meijburg-nav ul li.nav-item .nav-link.active:after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: width 0.3s;
  width: 100%;
}
.footer-bottom {
  z-index: 10;
}
.footer-bottom ul li {
  display: inline-block;
}
.footer-bottom ul li a {
  color: #fff;
}
@media screen and (max-width: 1599px) {
  .navbar-brand {
    max-width: 200px;
  }
}
@media screen and (max-width: 1199px) {
  header .navbar {
    margin: 15px !important;
  }
  header .navbar .navbar-brand {
    width: 20%;
    max-width: none;
  }
  header .navbar .navbar-brand img {
    width: 70%;
  }
  header .navbar .btn-outline-light {
    padding: 0px;
    border: 0px;
    font-size: 16px;
    line-height: 50px;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .content-after-header {
    margin-top: 0;
  }
  .content-after-header .content-header-container {
    padding-top: 50px !important;
    padding-bottom: 0 !important;
  }
}
@media screen and (min-width: 768px) {
  html,
  body {
    height: 100%;
  }
  body {
    display: flex;
    flex-direction: column;
  }
  .werken-bij-meijburg-wrapper {
    flex: 1 0 auto;
  }
  footer {
    flex-shrink: 0;
  }
}
body.active {
  overflow: hidden;
}
header.active {
  position: relative;
  z-index: auto;
}
header.active .navbar-brand {
  z-index: 11;
  position: relative;
}
.page-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
  z-index: 0;
}
.page-header-login-container {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.5s linear;
}
.page-header-login-container.active {
  visibility: visible;
  opacity: 1;
  z-index: 9999;
}
.page-header-login-container .hide-meijburg-login {
  position: absolute;
  right: 75px;
  top: 55px;
  cursor: pointer;
  color: #fff;
  font-weight: bold;
  z-index: 99999;
}
.meijburg-login {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 10;
  background: rgba(75, 40, 132, 0.8);
}
@media (max-width: 576px) {
  .meijburg-login {
    position: static;
    max-height: 100%;
    overflow-y: scroll;
  }
}
.meijburg-login .green-bg {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.meijburg-login .white-bg {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.meijburg-login .meijburg-login-container {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: 1100px;
}
@media (max-width: 576px) {
  .meijburg-login .meijburg-login-container {
    top: 10%;
    max-height: 100%;
  }
}
.meijburg-login .meijburg-login-container > .row {
  width: 100%;
}
.meijburg-login .meijburg-login-container .social-list li {
  display: inline;
}
.meijburg-login .meijburg-login-container .menu {
  border-bottom: 1px solid #f8f8fb;
  padding-bottom: 0px;
  margin-bottom: 12px;
}
.meijburg-login .meijburg-login-container .menu li {
  margin-bottom: 30px;
}
.meijburg-login .meijburg-login-container .menu li a {
  padding-left: 30px;
  display: block;
  position: relative;
}
.meijburg-login .meijburg-login-container .menu li a:after {
  font-family: "FontAwesome";
  content: "\f105";
  position: absolute;
  left: 0px;
  top: -3px;
  -webkit-transition: all 0.3s 0s ease-in-out;
  transition: all 0.3s 0s ease-in-out;
}
.meijburg-login .meijburg-login-container .menu li a:hover,
.meijburg-login .meijburg-login-container .menu li a:active,
.meijburg-login .meijburg-login-container .menu li a:focus {
  color: inherit;
}
.meijburg-login .meijburg-login-container .menu li a:hover:after,
.meijburg-login .meijburg-login-container .menu li a:active:after,
.meijburg-login .meijburg-login-container .menu li a:focus:after {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}
#meijburgNav {
  transition: top 0.8s ease 0s;
  top: 0;
}
#meijburgNav .navbar-brand {
  max-width: 244px;
  margin-top: 10px;
}
#meijburgNav.scrolling {
  height: 60px;
}
#meijburgNav.scrolling-header {
  top: -200px;
}
#meijburgNav.scrolling-nav {
  top: 0;
  -webkit-box-shadow: 0px 8px 5px -6px rgba(0, 0, 0, 0.24);
  -moz-box-shadow: 0px 8px 5px -6px rgba(0, 0, 0, 0.24);
  box-shadow: 0px 8px 5px -6px rgba(0, 0, 0, 0.24);
  background: #fff;
}
#meijburgNav.scrolling-nav svg {
  width: 125px;
  position: relative;
  top: 4px;
}
#meijburgNav.scrolling-nav .st0 {
  fill: #004E98 !important;
}
#meijburgNav.scrolling-nav .navbar-nav {
  top: 0;
}
#meijburgNav.scrolling-nav .navbar-nav a,
#meijburgNav.scrolling-nav .navbar-nav i {
  font-size: 16px;
  color: #004E98;
}
#meijburgNav.scrolling-nav button.btn {
  width: 50px;
  height: 50px;
  text-indent: -9000px;
  padding: 0 !important;
  margin-top: 5px;
  position: relative;
}
#meijburgNav.scrolling-nav button.btn:after {
  content: "\f039";
  text-indent: 0 !important;
  color: #004E98;
  display: block;
  position: absolute;
  top: 9px;
  left: 12px;
  font-family: 'FontAwesome';
  font-style: normal;
  font-weight: normal;
}
@media (max-width: 1200px) {
  #meijburgNav.scrolling-nav button.btn:after {
    top: 0;
    left: 19px;
  }
}
#meijburgNav.scrolling-nav .account-button img {
  display: none;
}
#meijburgNav.scrolling-nav .account-button img.on-scroll {
  display: inline-block;
}
.section-common-padding {
  padding-top: 150px !important;
  padding-bottom: 150px !important;
}
@media only screen and (max-width: 1200px) {
  .section-common-padding {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
}
.section-common-margin {
  margin-top: 100px !important;
  margin-bottom: 100px !important;
}
@media only screen and (max-width: 1200px) {
  .section-common-margin {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
}
.social-icon-login:hover {
  cursor: pointer;
  background: #712179;
  color: #fff !important;
  border-radius: 50%;
}
.social-icon-login:hover i {
  color: #fff !important;
}
.home-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
.home-header .header-content .title {
  font-size: 120px;
  line-height: 100px;
}
@media only screen and (max-width: 768px) {
  .home-header .header-content .title {
    font-size: 64px;
    line-height: 60px;
  }
}
.home-header .fa-angle-down {
  cursor: pointer;
}
.home-header .vimeo-wrapper {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.home-header .vimeo-wrapper iframe {
  width: 100vw;
  height: 56.25vw;
  /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
  min-height: 100vh;
  min-width: 177.77vh;
  /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.home-header:after {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
.home-header .fa-angle-down {
  position: absolute;
  bottom: 20px;
  width: 50px;
  left: 50%;
  top: auto;
  -webkit-transform: translate(-50%, 0%);
  -moz-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  -o-transform: translate(-50%, 0%);
  color: #fff;
  font-size: 60px;
  z-index: 2;
}
.home-header .header-content-wrapper {
  color: #fff;
  position: absolute;
  z-index: 3;
  top: 55%;
  left: 55px;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
}
@media only screen and (max-width: 576px) {
  .home-header .header-content-wrapper {
    left: 27px;
  }
}
.home-header.page-header {
  height: 560px;
  background-size: cover;
  background-position: top right;
}
.home-header.page-header .header-content-wrapper {
  position: relative;
  left: auto;
}
.home-header.page-header:after {
  content: "";
  background: none;
}
.content-after-header {
  margin-top: 100vh;
}
.content-after-page-header {
  margin-top: 350px;
}
.home-content-block {
  position: relative;
}
.home-content-block .content-bottom {
  position: absolute;
  bottom: 30px;
  left: 55px;
  width: calc(100% - 110px);
}
.home-content-block .content-bottom .btn.btn-outline-light {
  font-size: 15px;
  width: 100%;
}
.home-content-block .content-bottom .btn.btn-angle-right:after,
.home-content-block .content-bottom .btn.btn-angle-before-right:after {
  top: 12px;
}
.home-content-block .content-bottom .second-btn {
  margin-top: 10px;
}
.home-content-block .date {
  width: 57px;
  font-size: 20px;
  margin-top: 14px;
}
.home-content-block .date .day {
  font-size: 25px;
}
.home-content-block .date span {
  font-size: 18px;
}
.purple-bg .border-radius-light,
.green-bg .border-radius-light,
.blue-bg .border-radius-light,
.darkpurple-bg .border-radius-light {
  margin: 0 auto;
}
.purple-bg .border-radius-light:active,
.purple-bg .border-radius-light:hover,
.purple-bg .border-radius-light:focus {
  border-color: #702784;
  color: #702784;
}
.green-bg .border-radius-light:active,
.green-bg .border-radius-light:hover,
.green-bg .border-radius-light:focus {
  border-color: #00AFA8;
  color: #00AFA8;
}
.blue-bg .border-radius-light:active,
.blue-bg .border-radius-light:hover,
.blue-bg .border-radius-light:focus {
  border-color: #004E98;
  color: #004E98;
}
.darkpurple-bg .border-radius-light:active,
.darkpurple-bg .border-radius-light:hover,
.darkpurple-bg .border-radius-light:focus {
  border-color: #4B2884;
  color: #4B2884;
}
.personas .persona-wrapper {
  border-radius: 4px;
}
.personas .persona-wrapper .persona {
  padding: 30px;
  color: #004E98;
}
.personas .persona-wrapper .persona strong {
  display: block;
  font-size: 24px;
}
.personas .persona-wrapper .persona ul {
  margin-top: 30px;
  display: block;
}
.personas .persona-wrapper .persona ul li span {
  padding-left: 25px;
}
.personas .persona-wrapper .persona-inner {
  position: relative;
  z-index: 1;
  color: #fff;
}
.personas .persona-wrapper .persona-img {
  position: relative;
}
.personas .persona-wrapper .persona-img:before {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 120px;
  content: "";
  width: 100%;
  background: #702784;
  z-index: 0;
}
.personas .persona-wrapper .persona-img img {
  position: relative;
  z-index: 1;
}
.personas .persona-wrapper.background-light-blue .persona-img:before {
  background: #009CDC;
  height: 260px;
}
.personas .col-md-6:last-child .persona-wrapper .persona-img:before {
  background: #4B2884;
}
.over-ons-wrapper {
  position: relative;
}
@media (max-width: 1200px) {
  .over-ons-wrapper {
    max-width: 100%;
    margin: 50px 0 50px 0 !important;
  }
}
.over-ons-wrapper .position-absolute-col {
  position: absolute;
  top: calc((100% - 477px) / 2);
  max-width: 364px;
  left: 19px;
}
@media (max-width: 1440px) {
  .over-ons-wrapper .position-absolute-col {
    top: calc((100% - 337px) / 2);
    max-width: 347px;
    left: 19px;
  }
  .over-ons-wrapper .position-absolute-col .font-light {
    font-size: 32px;
  }
  .over-ons-wrapper .position-absolute-col p {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .over-ons-wrapper .position-absolute-col {
    position: static;
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  #homepage .over-ons-wrapper {
    margin-bottom: 400px !important;
  }
}
.home-footer {
  min-height: 890px;
}
@media (min-width: 1200px) and (max-width: 1599px) {
  .home-footer {
    min-height: 750px;
  }
}
@media (min-width: 992px) {
  .home-footer .container {
    position: relative;
  }
}
@media (max-width: 1200px) {
  .home-footer .container {
    position: static;
  }
}
@media (min-width: 992px) {
  .home-footer .position-absolute-col {
    position: absolute;
    right: 0;
    top: -150px;
  }
}
@media (max-width: 1200px) {
  .home-footer .position-absolute-col {
    position: static;
  }
}
.home-footer .footer-block-left {
  top: -350px;
  color: #004E98;
}
@media (max-width: 767px) {
  .home-footer .footer-block-left {
    top: 0;
    color: #ffffff;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .home-footer .footer-block-left {
    top: 0;
    color: #ffffff;
  }
}
.home-footer .footer-block-left strong {
  font-size: 100px;
  line-height: 95px;
}
.home-footer .personas .persona-wrapper {
  height: 100%;
}
.home-footer .personas .persona-wrapper .fa {
  font-family: FontAwesome;
  width: 20px;
  height: 16px;
  font-size: 20px;
  text-align: center;
}
.home-footer .personas .persona-wrapper .fa.fa-mobile-phone {
  font-size: 25px;
}
.home-footer .personas .persona-wrapper .fa.fa-envelope {
  font-size: 16px;
}
@media (min-width: 992px) {
  #contact-recruiter .position-absolute-col {
    position: absolute;
    top: 0;
  }
}
#contact-form-wrap {
  right: 20px;
}
#contact-recruiter-wrap {
  background: #fff;
  border-radius: 4px;
}
#contact-recruiter-wrap .persona-img,
#contact-recruiter-wrap .persona {
  background: #F1F2F8;
}
.personas .persona-wrapper .persona ul li span {
  padding-left: 7px;
}
.personas .persona-wrapper .persona {
  padding: 20px;
}
/* @media only screen and (min-width:320px) and (max-width:991px)
{
  header {
    .navbar-toggler {
      border:2px solid #fff;
      padding:0px 10px;
      height: 30px;
      .navbar-toggler-icon {
        &:before,&:after {
          content:"";
          width:25px;
          height: 2px;
          background: #fff;
          margin:0 auto;
          position: relative;
          display: block;
        }
        position: relative;
        width:25px;
        margin:0 auto;
        display: block;
        height:2px;
        background:#fff;
        &:before {
          top:-6px;
        }
        &:after {
          bottom:-5px;

        }

      }
    }
  }
} */
/* 
@media only screen and (min-width:320px) {
  .home-header .header-content-wrapper .header-content h1 {
    font-size: 50px;
    line-height: 50px;
  }
}
@media only screen and(min-width: 320px) and (max-width:767px) {
  .purple-bg .border-radius-light, .green-bg .border-radius-light, .blue-bg .border-radius-light, .darkpurple-bg .border-radius-light {

    margin-left:0px;
  }
  .btn.border-radius-light {
    padding:8px 20px;
  }
  .btn.btn-angle-right:after, .btn.btn-angle-before-right:after {
    content:"";
  }
  .home-header .header-content-wrapper .header-content h1 {
    font-size: 40px;
    line-height: 40px;
  }
  .home-header .header-content-wrapper {
    left:0;

  }
}

@media only screen and (min-width:320px) and (max-width:991px)
{
  header {
    .navbar-toggler {
      border:2px solid #fff;
      padding:0px 10px;
      height: 30px;
      .navbar-toggler-icon {
        &:before,&:after {
          content:"";
          width:25px;
          height: 2px;
          background: #fff;
          margin:0 auto;
          position: relative;
          display: block;
        }
        position: relative;
        width:25px;
        margin:0 auto;
        display: block;
        height:2px;
        background:#fff;
        &:before {
          top:-6px;
        }
        &:after {
          bottom:-5px;

        }

      }
    }
  }
  .over-ons-wrapper {
    .position-absolute-col { 
      top: 6px;
      max-width: 347px;
      left: 19px;
      .font-light {
        font-size: 32px;
      }
      p {
        font-size: 14px;
      }
    }
  }
}
@media only screen and (min-width:320px) and (max-width:1199px) {
  .over-ons-wrapper {
    position: relative;
    margin-top:  50px !important;  
    margin-bottom: 160px !important; 
    max-width: 100%;
    .position-absolute-col 
    { 
      top: 6px;
      max-width: 347px;
      left: 6px;
      position: absolute;
      .font-light {
        font-size: 32px;
      }
      p {
        font-size: 14px;
      }
    }
  }
}
@media only screen and (max-width:1199px)
{
 
  .position-absolute-col.personas
  {
   position: static;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size:18px;
  }  
}
@media only screen and(min-width: 992px) {
  .home-header .header-content-wrapper .header-content h1 {
    font-size: 70px;
    line-height: 70px;
  }
  .over-ons-wrapper {
    position: relative;
    .font-light {
      line-height: 50px;
    }
    .position-absolute-col {
      position: absolute;
      top: 13%;
      max-width: 350px;
      left: 25px;
    }
    img {
      width:100%;
    }
  }

  .home-footer {
    .container {
      position: relative;
    }
    .position-absolute-col {
      position: absolute;
      right: 0;
      top: -150px;
    }

  }
}


@media only screen and (min-width: 1200px) {
  .home-header .header-content-wrapper .header-content h1 {
    font-size: 100px;
    line-height: 100px;
  }

  .purple-bg .border-radius-light,
  .green-bg .border-radius-light,
  .blue-bg .border-radius-light,
  .darkpurple-bg .border-radius-light {
    font-size: 18px;
    padding-left: 20px;
    display: block;
  }
  .over-ons-wrapper {
    position: relative;
    .position-absolute-col {
      position: absolute;
      top: 13%;
      max-width: 398px;
      left: 29px;
    }
  }
}

@media only screen and (min-width: 1440px) {
  .over-ons-wrapper {
    position: relative;
    .position-absolute-col {
      position: absolute;
      top: 13%;
      max-width: 391px;
      left: 0;
    }
  }
}
@media only screen and (min-width: 1600px) {
  .home-header .header-content-wrapper .header-content h1 {
    font-size: 150px;
    line-height: 150px;
  }
  .page-header .header-content-wrapper {
    left:200px;
    .header-content h1 {
      font-size: 120px;
      line-height: 100px;
    }
  }
  .over-ons-wrapper {
    position: relative;
    .position-absolute-col {     
      max-width: 350px;
      left: 0;
    }
  }
}

 */
@media only screen and (max-width: 768px) {
  .VueCarousel-custom-pagination {
    bottom: 0px!important;
  }
  .carousel-wrapper .tns-nav {
    display: none;
  }
}
.content-after-header .inner-block {
  display: flex;
  flex-direction: column;
}
.content-after-header .inner-block .content-bottom {
  position: absolute;
  bottom: 15px !important;
  width: calc(100% - 60px);
  left: 30px;
}
.content-after-header .inner-block .content-bottom .btn {
  white-space: normal;
}
@media (min-width: 1600px) {
  .home-list-recruiter .persona {
    padding: 25px !important;
  }
  .home-list-recruiter .persona-img:before {
    height: 140px !important;
  }
  .home-list-recruiter .persona-img img {
    margin-top: 20px;
  }
}
@media (min-width: 1200px) and (max-width: 1599px) {
  .home-list-recruiter .persona-img:before {
    height: 120px;
  }
  .home-list-recruiter .persona-img img {
    width: 130px;
    margin-top: 0;
  }
  .home-list-recruiter.persona-wrapper .persona {
    padding: 18px;
  }
  .home-list-recruiter.persona-wrapper .persona strong {
    font-size: 18px;
  }
  .home-list-recruiter.persona-wrapper .persona strong + span {
    font-size: 14px;
  }
  .home-list-recruiter.persona-wrapper .persona ul li {
    font-size: 14px;
  }
  .home-list-recruiter.persona-wrapper .persona ul li .fa {
    font-size: 16px;
    width: 16px;
    height: 16px;
    font-family: FontAwesome;
  }
  .home-list-recruiter.persona-wrapper .persona ul li .fa.fa-mobile-phone {
    font-size: 25px;
  }
  .home-list-recruiter.persona-wrapper .persona ul li .fa.fa-envelope {
    font-size: 14px;
  }
  .home-list-recruiter.persona-wrapper .persona ul li span {
    padding-left: 10px !important;
    font-size: 13px !important;
  }
}
.media-header {
  position: relative;
  height: 550px;
}
.media-header .header-content-wrapper {
  margin-top: 300px;
}
.media-header .header-content-wrapper h1 {
  font-size: 120px;
}
@media only screen and (max-width: 768px) {
  .media-header .header-content-wrapper h1 {
    font-size: 76px;
  }
}
.facebook-album-container .facebook-album-wrapper .fbalbum:hover {
  text-decoration: none;
}
.facebook-album-container .facebook-album-wrapper .fbalbum .size-4 {
  box-shadow: none;
  width: 320px;
  height: 200px;
  margin-bottom: 30px;
  margin-right: 30px;
}
.post-video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.post-video-container iframe,
.post-video-container object,
.post-video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.image-bg-wrapper {
  height: 760px;
  width: 100%;
  background-size: cover;
  background-position: center center;
  position: relative;
}
.image-bg-wrapper:before {
  content: "";
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
.image-bg-wrapper .image-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
}
.image-parallax {
  position: relative;
}
.image-parallax img {
  width: 100%;
  height: auto;
}
.image-parallax .image-parallax-main {
  width: 75%;
  padding-bottom: 15%;
}
.image-parallax .image-parallax-float {
  width: 60%;
  position: absolute;
  bottom: 0;
  right: 0;
}
.over-ons strong {
  font-size: 26px!important;
}
.over-ons-circle {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  position: relative;
}
.over-ons-circle .svg {
  padding: 5px 0;
  width: 150px;
  height: 150px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.toggle-content-block {
  padding: 30px 0;
  font-size: 18px;
}
.content-after-contact-header {
  margin-top: 200px;
  height: 400px;
}
.content-after-contact-header h1 {
  font-size: 120px;
  line-height: 100px;
}
@media (max-width: 575px) {
  .content-after-contact-header h1 {
    font-size: 90px;
    line-height: 90px;
  }
}
.location-list li {
  margin-bottom: 30px;
  width: 49%;
  display: inline-block;
  position: relative;
  padding-left: 30px;
}
.location-list li:before {
  font-family: "FontAwesome";
  content: "\f105";
  position: absolute;
  left: 0px;
  top: -3px;
  -webkit-transition: all 0.3s 0s ease-in-out;
  transition: all 0.3s 0s ease-in-out;
}
.location-list li:hover:before,
.location-list li:active:before,
.location-list li:focus:before {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}
.banner-over-meijburg-chevron:before {
  font-family: "FontAwesome";
  content: "\f105";
  -webkit-transition: all 0.3s 0s ease-in-out;
  transition: all 0.3s 0s ease-in-out;
}
.default-page .default-page-body .default-page-content {
  background-color: #fff;
  border-radius: 10px;
}
.offset-top {
  margin-top: -110px;
  border-radius: 10px;
}
@media (max-width: 576px) {
  .offset-top {
    margin-top: 0;
  }
}
.contact-form-container {
  padding-right: 100px;
  height: 100%;
}
@media only screen and (max-width: 1200px) {
  .contact-form-container {
    padding-right: 50px;
  }
}
#contactPage .header-content {
  margin-bottom: 100px;
}
#contactPage .contact-absolute-block {
  margin-left: -75px;
  margin-top: 60px;
}
@media (max-width: 1200px) {
  #contactPage .contact-absolute-block {
    margin-left: 0;
  }
}
#contactPage .contact-content ul li span {
  padding-left: 25px;
}
#contactPage .contact-content .social-icons li.social {
  margin-top: 10px;
  width: 35px;
  height: 35px;
  background: #fff;
  border-radius: 50px;
  text-align: center;
  margin-right: 10px;
  display: inline-block;
}
#contactPage .contact-content .social-icons li.social i {
  color: #702784;
  line-height: 35px;
}
#contactPage .contact-content .social-icons li.social:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  #contactPage #contact-recruiter-wrap {
    background-color: transparent;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  #contactPage #contact-recruiter-wrap {
    background-color: transparent;
  }
}
@media (max-width: 767px) {
  #contactPage #contact-recruiter-wrap #contact-recruiter {
    background-color: #fff;
    padding: 25px;
    margin-top: 30px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  #contactPage #contact-recruiter-wrap #contact-recruiter {
    background-color: #fff;
    padding: 25px;
    margin-top: 30px;
  }
}
@media (min-width: 992px) {
  #contactPage #contact-recruiter-wrap #contact-recruiter .position-absolute-col {
    position: static;
  }
}
@media (max-width: 767px) {
  #contactPage #contact-recruiter-wrap #contact-recruiter .position-absolute-col > .row div.col-12:nth-child(2) {
    margin-top: 20px;
  }
  #contactPage #contact-recruiter-wrap #contact-recruiter .position-absolute-col > .row div.col-12:nth-child(2) strong {
    text-align: center;
  }
  #contactPage #contact-recruiter-wrap #contact-recruiter .position-absolute-col > .row div.col-12:nth-child(2) span {
    text-align: center;
  }
  #contactPage #contact-recruiter-wrap #contact-recruiter .position-absolute-col > .row div.col-12:nth-child(3) {
    margin-top: 20px;
  }
  #contactPage #contact-recruiter-wrap #contact-recruiter .position-absolute-col > .row div.col-12:nth-child(3) ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  #contactPage #contact-recruiter-wrap #contact-recruiter .position-absolute-col {
    position: static !important;
  }
}
#contactPage #contact-recruiter-wrap #contact-recruiter .position-absolute-col ul li {
  font-size: 15px;
  margin-bottom: 6px;
}
@media (min-width: 1200px) and (max-width: 1599px) {
  #contactPage #contact-recruiter-wrap #contact-recruiter .position-absolute-col ul li {
    font-size: 14px;
  }
}
#contactPage #contact-recruiter-wrap #contact-recruiter .position-absolute-col ul li .fa {
  font-size: 20px;
  width: 22px;
  text-align: center;
  height: 20px;
  font-family: FontAwesome;
}
@media (min-width: 1200px) and (max-width: 1599px) {
  #contactPage #contact-recruiter-wrap #contact-recruiter .position-absolute-col ul li .fa {
    font-size: 16px;
    width: 16px;
    height: 16px;
  }
}
#contactPage #contact-recruiter-wrap #contact-recruiter .position-absolute-col ul li .fa.fa-mobile-phone {
  font-size: 28px;
}
@media (min-width: 1200px) and (max-width: 1599px) {
  #contactPage #contact-recruiter-wrap #contact-recruiter .position-absolute-col ul li .fa.fa-mobile-phone {
    font-size: 25px;
  }
}
#contactPage #contact-recruiter-wrap #contact-recruiter .position-absolute-col ul li .fa.fa-envelope {
  font-size: 16px;
}
@media (min-width: 1200px) and (max-width: 1599px) {
  #contactPage #contact-recruiter-wrap #contact-recruiter .position-absolute-col ul li .fa.fa-envelope {
    font-size: 14px;
  }
}
@media (min-width: 1200px) and (max-width: 1599px) {
  #contactPage #contact-recruiter-wrap #contact-recruiter .position-absolute-col {
    max-width: 100%;
  }
  #contactPage #contact-recruiter-wrap #contact-recruiter .position-absolute-col .persona-img img {
    width: 130px;
  }
  #contactPage #contact-recruiter-wrap #contact-recruiter .position-absolute-col .persona-wrapper .persona {
    padding: 18px;
  }
  #contactPage #contact-recruiter-wrap #contact-recruiter .position-absolute-col .persona-wrapper .persona strong {
    font-size: 18px;
  }
  #contactPage #contact-recruiter-wrap #contact-recruiter .position-absolute-col .persona-wrapper .persona strong + span {
    font-size: 14px;
  }
  #contactPage #contact-recruiter-wrap #contact-recruiter .position-absolute-col .persona-wrapper .persona ul li span {
    padding-left: 10px;
    font-size: 13px;
  }
}
.contact-form span.wpcf7-list-item {
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .float-none {
    position: static;
    transform: unset;
    text-align: center;
    margin-top: 0px;
  }
}
.abc-radio label {
  padding-top: 4px;
}
.abc-radio:not(:first-of-type) {
  margin-left: 20px;
}
#event-detail-form .em-booking-form-details {
  width: 100%;
}
#event-detail-form .em-booking-form-details button[disabled] {
  opacity: 0.5;
}
.meijburg-form input[type=text],
.em-booking-form input[type=text],
.meijburg-form input[type=number],
.em-booking-form input[type=number],
.meijburg-form input[type=date],
.em-booking-form input[type=date],
.meijburg-form input[type=email],
.em-booking-form input[type=email],
.meijburg-form input[type=tel],
.em-booking-form input[type=tel],
.meijburg-form input[type=password],
.em-booking-form input[type=password],
.meijburg-form textarea,
.em-booking-form textarea,
.meijburg-form select,
.em-booking-form select {
  height: 60px;
  border-radius: 5px;
  background: #F1F2F8;
  color: #004E98;
  font-size: 18px;
  border: 0;
  padding: 0 20px;
}
.meijburg-form textarea,
.em-booking-form textarea {
  resize: none;
  overflow: auto;
  height: 100%;
}
.meijburg-form input[type=submit],
.em-booking-form input[type=submit] {
  border-radius: 30px;
  padding: 9.5px 50px;
  padding: 12px 50px!important;
  font-size: 20px;
  color: #fff;
  background-color: #00afa8;
  border-color: #00afa8;
  margin-bottom: 20px;
}
.meijburg-form input[type=submit].border-radius-light,
.em-booking-form input[type=submit].border-radius-light {
  border-radius: 10px;
  border-width: 2px;
  padding: 12px 40px;
}
.meijburg-form input[type=submit].btn-angle-right,
.em-booking-form input[type=submit].btn-angle-right,
.meijburg-form input[type=submit].btn-angle-before-right,
.em-booking-form input[type=submit].btn-angle-before-right {
  position: relative;
}
.meijburg-form input[type=submit].btn-angle-right:after,
.em-booking-form input[type=submit].btn-angle-right:after,
.meijburg-form input[type=submit].btn-angle-before-right:after,
.em-booking-form input[type=submit].btn-angle-before-right:after {
  font-family: "FontAwesome";
  content: "\f105";
  position: absolute;
  right: 15px;
  top: 10px;
  -webkit-transition: all 0.3s 0s ease-in-out;
  transition: all 0.3s 0s ease-in-out;
}
.meijburg-form input[type=submit].btn-angle-right:hover,
.em-booking-form input[type=submit].btn-angle-right:hover,
.meijburg-form input[type=submit].btn-angle-before-right:hover,
.em-booking-form input[type=submit].btn-angle-before-right:hover,
.meijburg-form input[type=submit].btn-angle-right:active,
.em-booking-form input[type=submit].btn-angle-right:active,
.meijburg-form input[type=submit].btn-angle-before-right:active,
.em-booking-form input[type=submit].btn-angle-before-right:active,
.meijburg-form input[type=submit].btn-angle-right:focus,
.em-booking-form input[type=submit].btn-angle-right:focus,
.meijburg-form input[type=submit].btn-angle-before-right:focus,
.em-booking-form input[type=submit].btn-angle-before-right:focus {
  color: inherit;
}
.meijburg-form input[type=submit].btn-angle-right:hover:after,
.em-booking-form input[type=submit].btn-angle-right:hover:after,
.meijburg-form input[type=submit].btn-angle-before-right:hover:after,
.em-booking-form input[type=submit].btn-angle-before-right:hover:after,
.meijburg-form input[type=submit].btn-angle-right:active:after,
.em-booking-form input[type=submit].btn-angle-right:active:after,
.meijburg-form input[type=submit].btn-angle-before-right:active:after,
.em-booking-form input[type=submit].btn-angle-before-right:active:after,
.meijburg-form input[type=submit].btn-angle-right:focus:after,
.em-booking-form input[type=submit].btn-angle-right:focus:after,
.meijburg-form input[type=submit].btn-angle-before-right:focus:after,
.em-booking-form input[type=submit].btn-angle-before-right:focus:after {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}
.meijburg-form input[type=submit].btn-angle-before-right:after,
.em-booking-form input[type=submit].btn-angle-before-right:after {
  right: auto;
  left: 15px;
}
.meijburg-form input[type=submit].link,
.em-booking-form input[type=submit].link {
  background: none;
  padding: 0;
  border: 0px;
  position: relative;
  padding-left: 20px;
}
.meijburg-form input[type=submit].link:before,
.em-booking-form input[type=submit].link:before {
  content: "\f105";
  font-family: "FontAwesome";
  font-style: normal;
  text-decoration: inherit;
  font-size: 20px;
  position: absolute;
  top: -3px;
  left: 0;
  -webkit-transition: all 0.3s 0s ease-in-out;
  transition: all 0.3s 0s ease-in-out;
}
.meijburg-form input[type=submit].link:hover,
.em-booking-form input[type=submit].link:hover,
.meijburg-form input[type=submit].link:active,
.em-booking-form input[type=submit].link:active,
.meijburg-form input[type=submit].link:focus,
.em-booking-form input[type=submit].link:focus {
  color: inherit;
}
.meijburg-form input[type=submit].link:hover:before,
.em-booking-form input[type=submit].link:hover:before,
.meijburg-form input[type=submit].link:active:before,
.em-booking-form input[type=submit].link:active:before,
.meijburg-form input[type=submit].link:focus:before,
.em-booking-form input[type=submit].link:focus:before {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}
.meijburg-form input[type=submit].btn-circle,
.em-booking-form input[type=submit].btn-circle {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  position: relative;
  padding: 0!important;
}
.meijburg-form input[type=submit].btn-circle:after,
.em-booking-form input[type=submit].btn-circle:after {
  content: "";
  position: absolute;
  right: 15px;
  top: 15px;
  display: inline-block;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transition: transform 0.2s, margin 0.2s;
  transform: rotate(315deg);
  width: 10px;
  height: 10px;
}
.meijburg-form input[type=submit].btn-circle:hover:after,
.em-booking-form input[type=submit].btn-circle:hover:after {
  transform: rotate(675deg);
}
.meijburg-form input[type=submit].color-green,
.em-booking-form input[type=submit].color-green {
  color: #17A3A1;
}
.meijburg-form input[type=submit].color-green:hover,
.em-booking-form input[type=submit].color-green:hover,
.meijburg-form input[type=submit].color-green:active,
.em-booking-form input[type=submit].color-green:active,
.meijburg-form input[type=submit].color-green:focus,
.em-booking-form input[type=submit].color-green:focus {
  color: #17A3A1;
}
#vacancy-form {
  color: #fff;
}
#wettenbundel-form label,
#wettenbundel-form span,
#wettenbundel-form input[type=text] {
  width: 100%;
}
#wettenbundel-form input[type=submit] {
  margin-top: 20px;
  float: right;
}
#wettenbundel-form p {
  margin-bottom: 0;
}
/*
facet styling
 */
.simplefavorite-button {
  border: none;
  background: unset;
}
.simplefavorite-button img {
  display: inline;
  height: 1em;
  width: auto;
  margin-right: 15px;
  vertical-align: middle;
}
.simplefavorite-button img:hover {
  background-image: url('images/svg/Heart.svg');
}
.simplefavorite-button span {
  text-transform: uppercase;
  color: #004E98;
  font-size: 16px;
}
.modal-dialog.modal-xl {
  max-width: 1040px;
}
.simplefavorite-button:hover {
  border: none;
}
.simplefavorite-button:hover img {
  display: inline;
  height: 1em;
  width: auto;
  margin-right: 15px;
  vertical-align: middle;
  background-image: url('images/svg/Heart.svg');
}
.vacature-content-wrapper .fa-user:before {
  display: block;
  width: 16px;
  position: absolute;
  left: 12px;
  top: -2px;
  content: url('images/svg/meij-sportschoolregeling.svg')!important;
}
.vacature-content-wrapper .fa-user-sport:before {
  display: block;
  width: 16px;
  position: absolute;
  left: 12px;
  top: -2px;
  content: url('images/svg/meij-sportschoolregeling.svg')!important;
}
.simplefavorite-button:hover span {
  text-transform: uppercase;
  color: #004E98;
  font-size: 16px;
}
.vacature-list-icons .svg-icon {
  height: 16px;
  margin-right: 5px;
  margin-bottom: -1px;
}
.vacature-wrapper {
  position: relative;
  min-height: calc(100vh - 103px);
}
.vacature-wrapper .loader-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 99;
}
.vacature-wrapper .loader-bg .loader {
  top: 20%;
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -20%);
  -moz-transform: translate(-50%, -20%);
  -ms-transform: translate(-50%, -20%);
  -o-transform: translate(-50%, -20%);
}
.vacature-wrapper .vacature-right-content-wrapper .content-white-bg {
  border-radius: 4px;
}
.vacature-wrapper .vacature-content-wrapper header {
  z-index: 9;
}
.vacature-wrapper .vacature-content-wrapper iframe {
  width: 100%;
}
@media (max-width: 575px) {
  .vacature-wrapper .vacature-content-wrapper iframe {
    height: auto;
    min-height: 200px;
  }
}
.vacature-wrapper .vacature-content-wrapper .content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 30px;
}
.vacature-wrapper .vacature-content-wrapper .content ul.fa-ul {
  padding-left: 0;
}
.vacature-wrapper .vacature-content-wrapper .content ul.fa-ul li::marker {
  content: "";
}
@media (max-width: 575px) {
  .vacature-wrapper .history-btn {
    padding-left: 25px;
    margin-bottom: 40px;
  }
  .vacature-wrapper .history-btn:after {
    left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .vacature-wrapper .font-s100 {
    font-size: 80px;
  }
  .vacature-wrapper .sidebar__inner {
    width: 100%;
  }
}
.facetwp-counter,
.search-trash,
.facet-trash {
  float: right;
}
.facetwp-counter.fa,
.search-trash.fa,
.facet-trash.fa {
  cursor: pointer;
}
.facet-blocks {
  color: #004E98;
}
.facet-blocks .facet-label {
  font-size: 20px;
  font-family: 'Universe';
  font-weight: 700;
  text-transform: uppercase;
  line-height: 28px;
  display: block;
  margin-bottom: 10px;
  position: relative;
  cursor: pointer;
}
.facet-blocks .facet-label:after {
  content: "";
  border: solid #004E98;
  border-width: 0 2px 2px 0;
  display: inline-block;
  transition: transform 0.2s, margin 0.2s;
  transform: rotate(315deg);
  position: absolute;
  right: 0;
  top: 5px;
  width: 10px;
  height: 10px;
}
.facet-blocks .facet-label.closed:after {
  transform: rotate(405deg);
}
.facet-blocks .ui-widget.ui-widget-content {
  border: 0px;
  background: #F1F2F8;
  height: 10px;
}
.facet-blocks .ui-slider-horizontal .ui-slider-range {
  background: #17A3A1;
  border: 0;
  height: 10px;
}
.facet-blocks .ui-state-default,
.facet-blocks .ui-widget-content .ui-state-default,
.facet-blocks .ui-widget-header .ui-state-default,
.facet-blocks .ui-button,
.facet-blocks html .ui-button.ui-state-disabled:hover,
.facet-blocks html .ui-button.ui-state-disabled:active {
  border: 0px;
  border-radius: 50px;
  background: #004E98;
  width: 16px;
  height: 16px;
  cursor: pointer;
  top: -2px;
}
.facet-blocks .facetwp-facet .fa-angle-right {
  margin: 10px 15px 0 5px;
}
.facet-blocks .facetwp-facet .fa-angle-right:hover {
  color: #17A3A1;
}
.facet-blocks .facetwp-facet .facetwp-toggle {
  font-size: 15px;
}
.facet-blocks .facetwp-facet .facetwp-toggle:hover {
  color: #17A3A1;
}
.ervaring-slider-wrapper .slider-input-wrapper {
  background: #F1F2F8;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 16px;
}
.ervaring-slider-wrapper .slider-input-wrapper input {
  float: left;
  width: auto;
  background: none;
  border: 0;
  padding-right: 5px;
  font-size: 16px;
  color: #004E98;
}
.sorting-wrapper {
  border-radius: 5px;
}
.sorting-wrapper .facet-label {
  display: none;
}
.sorting-wrapper .facetwp-facet {
  margin: 0;
}
.sorting-wrapper .facetwp-facet-search {
  background: #F1F2F8;
  padding: 0px;
  height: 50px;
  border-radius: 5px;
  position: relative;
}
.sorting-wrapper .facetwp-facet-search input {
  margin-top: 4px;
  font-size: 16px;
  padding: 10px;
  background: transparent;
  border: 0;
  color: #004E98;
}
.sorting-wrapper .facetwp-facet-search:after {
  position: absolute;
  content: "\f002";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  color: #004E98;
  top: 5px;
  font-size: 22px;
  right: 15px;
}
.sorting-wrapper .ss-main .ss-content .ss-search,
.sorting-wrapper .ss-main .ss-content .ss-list .ss-option.ss-disabled {
  display: none;
}
@media screen and (max-width: 1199px) {
  .vacature-wrapper {
    min-height: 100vh;
  }
  .mobile-offset {
    opacity: 1;
    overflow-y: scroll;
    position: fixed;
    bottom: 0;
    left: 0;
    top: -100px;
    right: 0;
    width: 100%;
    z-index: 999;
    padding: 0;
    transition: all 1s ease 0s;
    height: 100px;
  }
  .mobile-offset .green-bg {
    position: relative;
    cursor: pointer;
  }
  .mobile-offset .green-bg:after {
    content: "";
    position: absolute;
    right: 30px;
    top: 30px;
    display: inline-block;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transition: transform 0.2s, margin 0.2s;
    transform: rotate(315deg);
    width: 10px;
    height: 10px;
  }
  .mobile-offset .green-bg.open:after {
    transform: rotate(405deg);
  }
  .mobile-offset.pos-fixed {
    top: 0;
  }
  .mobile-offset .facet-blocks {
    display: none;
  }
  .offcanvas-menu .darkpurple-bg .btn-info.font-s20 {
    font-size: 12px !important;
  }
}
@media screen and (max-width: 1599px) {
  .sidebar__inner {
    width: 100%;
  }
  .sidebar__inner .darkpurple-bg {
    padding: 30px !important;
  }
  .sorting-wrapper {
    padding: 20px 15px !important;
    padding-bottom: 0px !important;
  }
  .content-white-bg {
    padding: 30px !important;
  }
  .offcanvas-menu .darkpurple-bg .btn-info.font-s20 {
    font-size: 15px;
  }
}
/*
Vacature list items
 */
.vacature-list-item {
  padding: 20px 25px;
  border-radius: 5px;
  line-height: 24px;
}
.vacature-list-item:hover {
  cursor: pointer;
  -webkit-box-shadow: 0px 5px 20px 0px rgba(0, 4, 233, 0.1);
  -moz-box-shadow: 0px 5px 20px 0px rgba(0, 4, 233, 0.1);
  box-shadow: 0px 5px 20px 0px rgba(0, 4, 233, 0.1);
}
.vacature-list-item:hover .vacature-titel a strong {
  color: #009CDC;
}
.vacature-list-item .vacature-titel {
  font-size: 20px;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.vacature-list-item .vacature-link {
  position: relative;
  padding-left: 20px;
}
.vacature-list-item .vacature-link:before {
  content: "";
  border: solid #17A3A1;
  border-width: 0 2px 2px 0;
  display: inline-block;
  transition: transform 0.2s, margin 0.2s;
  transform: rotate(315deg);
  position: absolute;
  left: 0;
  top: 3px;
  width: 10px;
  height: 10px;
}
.vacature-list-item .vacature-list-bottom {
  padding-top: 20px;
  border-top: 1px solid #F1F2F8;
}
.vacature-list-item a:hover,
.vacature-list-item a:active,
.vacature-list-item a:focus {
  text-decoration: none;
  color: #004E98;
}
.vacature-list-item a:hover strong,
.vacature-list-item a:active strong,
.vacature-list-item a:focus strong {
  color: #009CDC;
}
.vacature-list-item a:hover .vacature-link:before,
.vacature-list-item a:active .vacature-link:before,
.vacature-list-item a:focus .vacature-link:before {
  transform: rotate(675deg);
}
@media screen and (min-width: 1600px) {
  .vacature-list-item {
    padding: 30px 60px;
    line-height: 24px;
  }
  .vacature-list-item .vacature-titel {
    font-size: 30px;
  }
}
/*
Detail
 */
.vacature-top-wrapper {
  font-size: 16px;
  color: #009CDC;
  padding-bottom: 20px;
  border-bottom: 1px solid #F1F2F8;
}
.vacature-top-wrapper img {
  height: 18px;
}
.vacature-bottom-wrapper {
  border-top: 1px solid #F1F2F8;
  padding-top: 20px;
}
@media screen and (max-width: 991px) {
  .offcanvas-menu {
    position: static;
    margin-bottom: 20px;
    /*   left:0px;
      width:100%;;
      bottom:0;
      z-index: 99;
      padding-left:0;
      padding-right:0; */
  }
  .offcanvas-menu .inner-menu {
    margin: 0 !important;
    border-radius: 0;
    padding: 20px !important;
  }
  .offcanvas-menu .personas {
    display: none;
  }
  .offcanvas-menu p.checkbox-padding {
    padding: 0 20px;
  }
  .offcanvas-menu .inner-menu:after {
    width: 0;
    border: 0 !important;
  }
}
.simplefavorite-notlogged {
  text-transform: uppercase;
  padding-left: 5px;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  margin-top: 4px;
  cursor: pointer;
}
.vacature-simplefavorite {
  position: relative;
  padding-left: 30px;
  background: url('images/svg/heart_outline_blue.svg') no-repeat left center;
  color: #004E98;
}
.event-shadow {
  -webkit-box-shadow: 0px 5px 20px 0px rgba(0, 4, 233, 0.1);
  -moz-box-shadow: 0px 5px 20px 0px rgba(0, 4, 233, 0.1);
  box-shadow: 0px 5px 20px 0px rgba(0, 4, 233, 0.1);
}
.event-shadow-hover:hover {
  -webkit-box-shadow: 0px 5px 20px 0px rgba(0, 4, 233, 0.1);
  -moz-box-shadow: 0px 5px 20px 0px rgba(0, 4, 233, 0.1);
  box-shadow: 0px 5px 20px 0px rgba(0, 4, 233, 0.1);
}
.event-list-item .img-bg {
  background-position: center center;
  background-size: cover;
  height: 425px;
  position: relative;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.event-list-item .img-bg .tags-list {
  position: absolute;
  z-index: 1;
  top: 25px;
  left: 25px;
}
.event-list-item .img-bg .tags-list .btn-sm {
  height: 20px;
}
.event-list-item.col-lg-6 .img-bg {
  background-size: 100%;
}
#profileEvents .event-list-item .img-bg {
  height: 210px;
}
#profileEvents .mijn-event-content {
  position: absolute;
  bottom: 20px;
  width: 100%;
}
#profileEvents .mijn-event-content .btn-circle {
  right: 55px;
  bottom: 0;
  position: absolute;
}
.event-purple-block {
  position: relative;
}
.event-purple-block .purple-bg-bottom {
  position: absolute;
  left: 30px;
  bottom: 50px;
}
@media screen and (max-width: 1199px) {
  .event-purple-block .purple-bg-bottom {
    position: static;
    margin-top: 20px;
  }
}
.event-list-item a {
    text-decoration: none;
}
.external-events-wrapper {
  position: relative;
}
.external-events-wrapper .bg-image {
  width: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center center;
}
.tags-wrap .btn-sm {
  height: 20px;
}
.external-event-list-item .darkpurple-bg {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.external-event-list-item .white-bg {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  position: relative;
}
.external-event-list-item .external-event-bottom {
  position: absolute;
  bottom: 15px;
  left: 30px;
  right: 30px;
  width: calc(100% - 60px);
}
.modal-dialog #opstaplocatie,
.modal-dialog #opleiding {
  height: 60px !important;
}
.modal-dialog #em-booking,
.modal-dialog .em-booking-buttons,
.modal-dialog .em-tickets-spaces {
  display: block;
}
#em-booking,
.em-booking-buttons,
.em-tickets-spaces {
  display: none;
}
#event-detail-form .em-booking-form label {
  width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1599px) {
  .event-list-item .img-bg {
    height: 300px;
  }
  .external-event-list-item .font-s100 {
    font-size: 60px;
  }
  .external-event-list-item .line-h100 {
    line-height: 60px;
  }
  .personas .persona-wrapper .persona ul li span {
    padding-left: 15px;
    font-size: 16px;
  }
}
.account-header {
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.login-form .um .um-form p {
  margin-bottom: 12px;
  display: block;
}
.login-form .um .um-form .login-username label,
.login-form .um .um-form .login-password label,
.login-form .um .um-form .um-field-username label,
.login-form .um .um-form .um-field-password label {
  display: block;
  border: 1px solid #004E98 !important;
}
.login-form .um .um-form .login-username input,
.login-form .um .um-form .login-password input,
.login-form .um .um-form .um-field-username input,
.login-form .um .um-form .um-field-password input {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background: #FFFFFF;
  padding: 20px!important;
  border: 1px solid #fff !important;
  color: #004E98;
  font-size: 16px!important;
  display: block;
  width: 100%;
  height: auto!important;
}
.login-form .um .um-form .login-username input::placeholder,
.login-form .um .um-form .login-password input::placeholder,
.login-form .um .um-form .um-field-username input::placeholder,
.login-form .um .um-form .um-field-password input::placeholder {
  color: #00AFA8;
}
.login-form .um .um-form .login-username input:focus,
.login-form .um .um-form .login-password input:focus,
.login-form .um .um-form .um-field-username input:focus,
.login-form .um .um-form .um-field-password input:focus {
  border: 1px solid #fff !important;
}
.login-form .um .um-form input[type=submit] {
  background: #4B2884;
  color: #fff;
  padding: 10px 15px;
  display: block;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #4B2884;
  width: 100%!important;
  font-size: 20px!important;
}
.login-form-wrapper input {
  border: 1px solid #004E98 !important;
}
.error-message {
  padding-top: 5px;
  padding-bottom: 5px;
}
.error-message:first-letter {
  text-transform: capitalize;
}
#accountModule .meijburg-login {
  position: relative;
  height: 100%;
}
#accountModule .meijburg-login .meijburg-login-container {
  padding-top: 200px;
  padding-bottom: 100px;
}
#accountModule .login-form input:not([type=checkbox]) {
  display: block;
}
#accountModule .choice-block {
  border: 4px solid #00AFA8;
}
#accountModule .choice-block.selected {
  border-color: #004E98;
}
#accountModule .linked-in {
  background: #009CDC;
  border-color: #009CDC;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  padding-left: 30px;
  padding-right: 30px;
  text-align: center;
  height: 60px;
  padding-top: 17px;
}
#accountModule .linked-in i {
  margin-left: 20px;
}
#accountModule .form-group label {
  padding-bottom: 15px;
}
#accountModule .form-group.error input[type=text],
#accountModule .form-group.error input[type=number],
#accountModule .form-group.error input[type=date],
#accountModule .form-group.error input[type=email],
#accountModule .form-group.error input[type=password],
#accountModule .form-group.error textarea,
#accountModule .form-group.error select {
  border: 1px solid red;
}
#accountModule .form-group.error .abc-radio label,
#accountModule .form-group.error .abc-checkbox label {
  color: red;
}
#accountModule .form-group.error .abc-radio label:before,
#accountModule .form-group.error .abc-checkbox label:before {
  border-color: red;
}
#accountModule .form-group .form-check label {
  padding-top: 4px;
}
#accountModule .abc-radio:not(:first-of-type) {
  margin-left: 20px;
}
#accountModule input[type=text],
#accountModule input[type=number],
#accountModule input[type=date],
#accountModule input[type=email],
#accountModule input[type=password],
#accountModule textarea,
#accountModule select {
  height: 60px;
  border-radius: 5px;
  border: 1px solid #F1F2F8;
  background: #F1F2F8;
  color: #004E98;
  font-size: 18px;
  padding: 0 20px;
  max-width: 100%;
}
#accountModule #meijburgNav {
  position: absolute;
}
#accountModule .nav-tabs {
  border: 0px;
}
#accountModule .nav-tabs .nav-item {
  margin-bottom: 0px;
  position: relative;
}
#accountModule .nav-tabs .nav-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 100%;
  height: 0;
  width: 0;
  border: 28px solid transparent;
  border-right-width: 0;
  border-left-width: 21px;
  z-index: 1;
  border-left-color: #F1F2F8;
  margin: 0;
}
#accountModule .nav-tabs .nav-item:last-child::after {
  display: none;
}
#accountModule .nav-tabs .nav-item:last-child .nav-link::after {
  display: none;
}
#accountModule .nav-tabs .nav-item .nav-link {
  border: 0px;
  padding: 15px 60px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background: #F1F2F8;
  color: #004E98;
}
#accountModule .nav-tabs .nav-item .nav-link.active::after {
  z-index: 2;
  border-left-color: #712179 !important;
  content: '';
  position: absolute;
  top: 0;
  left: 100%;
  height: 0;
  width: 0;
  border: 28px solid transparent;
  border-right-width: 0;
  border-left-width: 20px;
}
#accountModule .nav-tabs .nav-item.show .nav-link,
#accountModule .nav-tabs .nav-link.active {
  background: #712179;
  color: #fff;
  border-color: #712179;
}
#accountModule .choice-block svg {
  height: 150px;
}
.checkbox-wrapper {
  padding-left: 1.25rem;
}
@media (max-width: 1360px) {
  .meijburg-nav ul li a {
    font-size: 17px;
    margin-right: 5px;
  }
}
@media (max-width: 1024px) {
  #meijburgNav .navbar-expand-md .navbar-nav {
    position: absolute;
    right: 30px;
    top: 30px;
  }
  .navbar {
    margin: 0 !important;
  }
  .navbar .btn-outline-light {
    line-height: 40px !important;
    background-color: transparent;
  }
  .navbar .navbar-brand {
    max-width: 228px;
    margin-top: 0;
    width: 20% !important;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 5px;
    padding-left: 5px;
    font-size: 14px;
  }
  .meijburg-nav ul li a {
    margin-right: 10px;
    line-height: 40px;
  }
  .meijburg-nav ul li:last-child.push-45-l {
    margin-left: 10px !important;
  }
}
@media (max-width: 768px) {
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0;
  }
}
.profile-header {
  height: 400px;
  background-size: cover;
  background-position: top center;
}
.profile .content-after-header {
  margin-top: 247px;
  height: 153px;
}
.profile .content-after-header h1 {
  font-size: 120px;
  line-height: 100px;
}
.profile-wrapper {
  position: relative;
  min-height: calc(100vh - 103px);
}
.profile-block-link {
  width: 100%;
}
.profile-block {
  text-align: center;
  width: 100%;
  color: #ffffff;
  margin-bottom: 50px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.profile-block:after {
  content: " ";
  display: block;
  padding-bottom: 100%;
}
.profile-block:hover {
  -webkit-box-shadow: 0px 5px 20px 0px rgba(0, 4, 233, 0.4);
  -moz-box-shadow: 0px 5px 20px 0px rgba(0, 4, 233, 0.4);
  box-shadow: 0px 5px 20px 0px rgba(0, 4, 233, 0.4);
}
.profile-block-content {
  right: 0;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.profile-block-content .profile-block-image {
  background: white;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  width: 33.5%;
  margin: auto;
  position: relative;
  padding: 11%;
}
.profile-block-content .profile-block-image:after {
  content: " ";
  display: block;
  padding-bottom: 100%;
}
.profile-block-content .profile-block-image img {
  max-width: 40%;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.profile-block-content h1 {
  margin-bottom: 40px;
  font-size: 70px;
  font-family: 'KPMG Web';
  font-weight: normal;
}
.profile-block-content h1.font-s70 {
  line-height: 60px;
}
.profile-block-content p {
  padding-left: 25px;
  padding-right: 25px;
}
.profile-block-gegevens {
  background: #702784;
}
.profile-block-events {
  background: #004E98;
}
.profile-block-favorieten {
  background: #00AFA8;
}
.profile-block-vacatures {
  background: #00AFA8;
}
.profile-block-wettenbundel {
  background: #009CDC;
}
.profile-block-logout {
  background: #4B2884;
}
.inline-chevron {
  display: inline-block;
  height: 15px;
  width: auto;
  vertical-align: text-top;
  margin-right: 10px;
}
.profile-menu {
  font-size: 20px;
}
.profile-menu .profile-greet {
  font-family: 'KPMG Web';
  font-weight: normal;
  font-size: 80px;
  margin-bottom: 0;
  line-height: 1;
  display: block;
  margin-top: 20px;
}
.profile-menu .profile-greet.font-s70 {
  line-height: 60px;
}
.profile-menu .profile-display-name {
  margin-top: 0;
  margin-bottom: 50px;
}
.profile-menu a {
  color: #ffffff;
}
.profile-menu a.active {
  color: #079EDA;
}
.profile-menu ul {
  margin-bottom: 50px;
}
.profile-menu ul li {
  margin-bottom: 20px;
}
.profile-wrapper .profile-menu {
  font-size: 20px;
}
.profile-wrapper .profile-menu .profile-greet {
  font-size: 40px;
  font-family: 'Universe';
}
.profile-content-wrapper input[type=submit] {
  color: #fff;
  background-color: #00AFA8;
  border-color: #00AFA8;
  border: none;
  border-radius: 30px;
  padding: 9.5px 50px;
}
.profile-content-wrapper input[type=submit].border-radius-light {
  border-radius: 10px;
  border-width: 2px;
  padding: 12px 40px;
}
.profile-content-wrapper input[type=submit].btn-angle-right,
.profile-content-wrapper input[type=submit].btn-angle-before-right {
  position: relative;
}
.profile-content-wrapper input[type=submit].btn-angle-right:after,
.profile-content-wrapper input[type=submit].btn-angle-before-right:after {
  font-family: "FontAwesome";
  content: "\f105";
  position: absolute;
  right: 15px;
  top: 10px;
  -webkit-transition: all 0.3s 0s ease-in-out;
  transition: all 0.3s 0s ease-in-out;
}
.profile-content-wrapper input[type=submit].btn-angle-right:hover,
.profile-content-wrapper input[type=submit].btn-angle-before-right:hover,
.profile-content-wrapper input[type=submit].btn-angle-right:active,
.profile-content-wrapper input[type=submit].btn-angle-before-right:active,
.profile-content-wrapper input[type=submit].btn-angle-right:focus,
.profile-content-wrapper input[type=submit].btn-angle-before-right:focus {
  color: inherit;
}
.profile-content-wrapper input[type=submit].btn-angle-right:hover:after,
.profile-content-wrapper input[type=submit].btn-angle-before-right:hover:after,
.profile-content-wrapper input[type=submit].btn-angle-right:active:after,
.profile-content-wrapper input[type=submit].btn-angle-before-right:active:after,
.profile-content-wrapper input[type=submit].btn-angle-right:focus:after,
.profile-content-wrapper input[type=submit].btn-angle-before-right:focus:after {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}
.profile-content-wrapper input[type=submit].btn-angle-before-right:after {
  right: auto;
  left: 15px;
}
.profile-content-wrapper input[type=submit].link {
  background: none;
  padding: 0;
  border: 0px;
  position: relative;
  padding-left: 20px;
}
.profile-content-wrapper input[type=submit].link:before {
  content: "\f105";
  font-family: "FontAwesome";
  font-style: normal;
  text-decoration: inherit;
  font-size: 20px;
  position: absolute;
  top: -3px;
  left: 0;
  -webkit-transition: all 0.3s 0s ease-in-out;
  transition: all 0.3s 0s ease-in-out;
}
.profile-content-wrapper input[type=submit].link:hover,
.profile-content-wrapper input[type=submit].link:active,
.profile-content-wrapper input[type=submit].link:focus {
  color: inherit;
}
.profile-content-wrapper input[type=submit].link:hover:before,
.profile-content-wrapper input[type=submit].link:active:before,
.profile-content-wrapper input[type=submit].link:focus:before {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}
.profile-content-wrapper input[type=submit].btn-circle {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  position: relative;
  padding: 0!important;
}
.profile-content-wrapper input[type=submit].btn-circle:after {
  content: "";
  position: absolute;
  right: 15px;
  top: 15px;
  display: inline-block;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transition: transform 0.2s, margin 0.2s;
  transform: rotate(315deg);
  width: 10px;
  height: 10px;
}
.profile-content-wrapper input[type=submit].btn-circle:hover:after {
  transform: rotate(675deg);
}
.profile-content-wrapper input[type=submit].color-green {
  color: #17A3A1;
}
.profile-content-wrapper input[type=submit].color-green:hover,
.profile-content-wrapper input[type=submit].color-green:active,
.profile-content-wrapper input[type=submit].color-green:focus {
  color: #17A3A1;
}
@media screen and (max-width: 768px) {
  .profile-block-content h1 {
    font-size: 50px;
  }
}
@media screen and (max-width: 576px) {
  .profile-block-content h1 {
    font-size: 70px;
  }
}
.profile-right-content-wrapper #em-wrapper {
  display: none;
}
@media screen and (max-width: 767px) {
  .meijburg-nav {
    display: none;
  }
  .collapsing {
    -webkit-transition: none;
    transition: none;
    display: none;
  }
  .external-event-list-item .title-event {
    font-size: 17px;
  }
  header .navbar {
    margin: 0px !important;
    padding: 0px  !important;
    width: 100%;
  }
  header .navbar .navbar-brand {
    width: 60%;
    margin: 15px !important;
  }
  header .navbar.scrolling-nav .navbar-toggler {
    width: 23px;
    top: 20px;
  }
  header .navbar.scrolling-nav .navbar-toggler span {
    background: #004E98;
  }
  header .navbar .navbar-toggler {
    right: 15px;
    top: 30px;
    border: 0px;
    width: 30px;
    height: 30px;
    position: absolute;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
    /* Icon 3 */
  }
  header .navbar .navbar-toggler span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
  }
  header .navbar .navbar-toggler span:nth-child(1) {
    top: 0px;
  }
  header .navbar .navbar-toggler span:nth-child(2),
  header .navbar .navbar-toggler span:nth-child(3) {
    top: 8px;
  }
  header .navbar .navbar-toggler span:nth-child(4) {
    top: 16px;
  }
  header .navbar .navbar-toggler.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
  }
  header .navbar .navbar-toggler.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  header .navbar .navbar-toggler.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  header .navbar .navbar-toggler.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
  }
  header .navbar .navbar-toggler.open {
    z-index: 10;
    position: fixed;
  }
  header .meijburg-mobile-nav {
    width: 100%;
    position: fixed;
    height: 100%;
    top: 0;
    left: -1000px;
    bottom: 0;
    right: 0;
    -webkit-transition: left 0.5s ease-out;
    -moz-transition: left 0.5s ease-out;
    -o-transition: left 0.5s ease-out;
    transition: left 0.5s ease-out;
  }
  header .meijburg-mobile-nav div.sidebar {
    max-width: 65px;
    width: 100%;
  }
  header .meijburg-mobile-nav div.menu-items {
    width: 100%;
    max-width: calc(100% - 65px);
    flex: 0;
    padding-left: 30px;
  }
  header .meijburg-mobile-nav div.menu-items .mobile-nav-item {
    margin: 20px 0;
  }
  header .meijburg-mobile-nav div.menu-items .menu-login-menu-container ul li {
    margin: 20px 0;
  }
  header .meijburg-mobile-nav div.menu-items .menu-login-menu-container ul li a {
    font-size: 20px;
  }
  header .meijburg-mobile-nav.active {
    left: 0;
  }
  header .meijburg-mobile-nav .blurred-box {
    background: rgba(0, 0, 0, 0.3);
  }
  header .meijburg-mobile-nav svg .st0 {
    fill: #004E98;
  }
}
@media screen and (min-width: 768px) {
  .meijburg-mobile-nav {
    display: none;
  }
}
.mobile-nav-wrap .navbar-brand {
  display: none;
}
.mobile-nav-wrap.scrolling-nav .navbar-brand {
  display: block;
}
.mobile-menu li {
  display: block;
}
.mobile-menu li.social-icon {
  display: inline-block;
  color: #004E98;
}
.tns-slider .tns-item {
  position: relative;
}
.tns-slider .tns-item .VueCarousel-custom-content {
  position: absolute;
  right: 0;
  width: 50%;
  top: 10%;
  z-index: 99;
  opacity: 1;
  transition: opacity 2s ease-in-out;
  -moz-transition: opacity 2s ease-in-out;
  -webkit-transition: opacity 2s ease-in-out;
}
@media (max-width: 576px) {
  .tns-slider .tns-item .VueCarousel-custom-content {
    position: absolute;
    top: 14px;
  }
}
@media (max-width: 767px) {
  .tns-slider .tns-item .VueCarousel-custom-content {
    position: absolute;
    width: 71%;
  }
}
@media (max-width: 1199px) {
  .tns-slider .tns-item .VueCarousel-custom-content {
    width: 60%;
  }
}
@media (max-width: 640px) {
  .tns-slider .tns-item .VueCarousel-custom-content .carousel-text {
    margin-top: 10px !important;
    font-size: 15px;
  }
  .tns-slider .tns-item .VueCarousel-custom-content .carousel-text div.universe {
    margin-bottom: 9px !important;
  }
  .tns-slider .tns-item .VueCarousel-custom-content .carousel-text div.universe p {
    margin: 0 0 9px 0;
  }
}
@media (max-width: 640px) {
  .tns-slider .tns-item .VueCarousel-custom-content .carousel-text .btn {
    padding: 5.5px 26px !important;
    font-size: 14px;
  }
  .tns-slider .tns-item .VueCarousel-custom-content .carousel-text .btn:after {
    top: 5px;
  }
}
.tns-slider .tns-item .VueCarousel-custom-content strong {
  color: #004E98;
  font-size: 84px;
  line-height: 70px;
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .tns-slider .tns-item .VueCarousel-custom-content strong {
    width: 100%;
    font-size: 27px;
    line-height: 26px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .tns-slider .tns-item .VueCarousel-custom-content strong {
    font-size: 40px;
    line-height: 40px;
    width: 60%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .tns-slider .tns-item .VueCarousel-custom-content strong {
    font-size: 57px;
    width: 64%;
    line-height: 60px;
  }
}
.tns-slider .tns-item .VueCarousel-custom-content .block-quote {
  font-family: Arial;
  font-size: 500px;
  position: absolute;
  right: 20px;
  top: 0;
}
.tns-slider .tns-item .VueCarousel-custom-content .quotes-icon {
  position: relative;
}
.tns-slider .tns-item .VueCarousel-custom-content .quotes-icon::after {
  content: "”";
  position: absolute;
  top: 120px;
  font-size: 450px;
  left: 100%;
  font-family: Arial;
  margin-left: 31px;
}
@media (max-width: 640px) {
  .tns-slider .tns-item .VueCarousel-custom-content .quotes-icon::after {
    display: none !important;
  }
}
@media (min-width: 640px) and (max-width: 767px) {
  .tns-slider .tns-item .VueCarousel-custom-content .quotes-icon::after {
    top: 57px;
    font-size: 190px !important;
    left: 60%;
  }
}
@media (min-width: 768px) and (max-width: 1440px) {
  .tns-slider .tns-item .VueCarousel-custom-content .quotes-icon::after {
    top: 65px;
    font-size: 250px;
  }
}
.tns-slider .tns-item .VueCarousel-custom-content .vue-carousel-date {
  font-weight: normal;
  font-size: 17px;
}
.tns-slider .tns-item .VueCarousel-custom-content .vue-carousel-date .label {
  margin: 0;
  font-weight: bold;
}
.tns-slider .tns-item.VueCarousel-slide-active {
  opacity: 1;
}
.tns-slider .tns-item.VueCarousel-slide-active .VueCarousel-custom-content {
  opacity: 1;
}
.VueCarousel-custom-pagination {
  position: absolute;
  right: 0;
  bottom: -50px !important;
  width: 100%;
  display: flex;
  justify-content: center;
}
@media (max-width: 640px) {
  .VueCarousel-custom-pagination {
    width: 100%;
    background-color: #00AFA8;
    bottom: 19px;
    top: 0;
    position: relative;
  }
}
.VueCarousel-custom-pagination ul.goto-button {
  display: flex;
  align-items: baseline;
}
@media only screen and (max-width: 640px) {
  .VueCarousel-custom-pagination ul.goto-button {
    display: block;
  }
}
.VueCarousel-custom-pagination ul li {
  width: 125px;
  height: 79px;
  border-radius: 79px;
  display: inline-block;
  margin-right: 0;
}
@media (max-width: 640px) {
  .VueCarousel-custom-pagination ul li {
    width: 35px;
    height: 38px;
    padding-top: 8px;
  }
}
.VueCarousel-custom-pagination ul li.active .sub-title,
.VueCarousel-custom-pagination ul li:hover .sub-title,
.VueCarousel-custom-pagination ul li:active .sub-title {
  color: #17A3A1;
}
.VueCarousel-custom-pagination ul li.active div.img,
.VueCarousel-custom-pagination ul li:hover div.img,
.VueCarousel-custom-pagination ul li:active div.img {
  border-color: #00AFA8;
  transform: scale(1.1);
}
.VueCarousel-custom-pagination ul li .sub-title {
  color: #004E98;
  font-size: 15px;
  margin-top: 10px;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  .VueCarousel-custom-pagination ul li .sub-title {
    display: none;
  }
}
.VueCarousel-custom-pagination ul li .img {
  border: 3px solid #004E98;
  margin: 0 auto;
  width: 60px;
  height: 60px;
  border-radius: 79px;
  display: block;
  transition: all 0.2s ease-in-out;
  background-size: cover;
  background-position: left center;
  cursor: pointer;
  object-fit: cover;
}
@media (max-width: 640px) {
  .VueCarousel-custom-pagination ul li .img {
    width: 20px;
    height: 20px;
    margin-top: 0;
  }
}
@media (min-width: 641px) and (max-width: 1440px) {
  .VueCarousel-custom-pagination ul li .img {
    width: 60px;
    height: 60px;
  }
}
.VueCarousel-custom-pagination ul li a {
  cursor: pointer;
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.VueCarousel-custom-pagination ul li a span {
  position: absolute;
  bottom: -50px;
  text-align: center;
  color: #004E98;
  font-size: 15px;
  line-height: 21px;
}
.carousel-wrapper {
  position: relative;
  height: auto;
  width: 100%;
  overflow: visible;
}
@media only screen and (max-width: 640px) {
  .carousel-wrapper {
    width: calc(100% - 30px);
    margin-left: 15px;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
}
@media (min-width: 991px) and (max-width: 1440px) {
}
.carousel-wrapper .carousel-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.carousel-wrapper.carousel-content-left .VueCarousel-custom-content {
  width: 60%;
  left: 10%;
  right: auto;
}
@media (min-width: 576px) and (max-width: 1199px) {
  .carousel-wrapper.carousel-content-left .VueCarousel-custom-content {
    width: 100%;
  }
}
.carousel-wrapper.carousel-content-left .VueCarousel-custom-pagination {
  width: 60%;
  right: auto;
  left: 10%;
}
@media only screen and (max-width: 640px) {
  .carousel-wrapper.carousel-content-left .VueCarousel-custom-pagination {
    width: 100%;
    left: 0%;
  }
}
@media only screen and (max-width: 640px) {
  .carousel-wrapper.carousel-content-left .VueCarousel-custom-pagination {
    width: 100%;
    left: 0%;
  }
}
@media only screen and (max-width: 1199px) {
  .VueCarousel-custom-pagination ul li a span {
    left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .VueCarousel-slide img {
    object-fit: cover;
    object-position: 25% center;
    height: 500px;
  }
  .VueCarousel-slide .VueCarousel-custom-content {
    right: auto;
    left: 15px;
    top: auto;
    bottom: 15px;
    width: 80%;
  }
  .carousel-wrapper.carousel-content-left .VueCarousel-custom-content {
    width: 100%;
    left: 15px;
  }
}
@media only screen and (max-width: 1199px) {
  .over-ons-carousel {
    margin-bottom: 75px !important;
  }
}
.over-ons-carousel .carousel-wrapper {
  height: auto;
}
.over-ons-carousel .VueCarousel-custom-pagination {
  width: 100%;
  left: 0;
  right: 0;
  bottom: -45px !important;
}
.over-ons-carousel .VueCarousel-custom-pagination .goto-button {
  justify-content: center;
}
.over-ons-carousel .VueCarousel-custom-pagination .goto-button li .img {
  width: 79px;
  height: 79px;
}
@media only screen and (max-width: 1200px) {
  .over-ons-carousel .VueCarousel-custom-pagination .goto-button li .img {
    width: 60px;
    height: 60px;
  }
}
@media only screen and (min-width: 768px) {
  .over-ons-carousel .VueCarousel-custom-pagination .goto-button li .img {
    width: 50px;
    height: 50px;
  }
}
@media only screen and (max-width: 640px) {
  .over-ons-carousel .VueCarousel-custom-pagination .goto-button li .img {
    width: 40px;
    height: 40px;
    margin: -5px 5px 5px;
  }
}
.hexagon-wrapper {
  position: relative;
  overflow: hidden;
}
.hexagon-wrapper .front-bg {
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
}
.clr:after {
  content: "";
  display: block;
  clear: both;
}
.hexagon-wrapper li {
  position: relative;
  list-style-type: none;
  width: 24%;
  /* = (100- 3) / 3 */
  padding-bottom: calc(24% / 0.8666);
  /* =  width /0.866 */
  float: left;
  overflow: hidden;
  visibility: hidden;
  margin-left: 0.5%;
  margin-right: 0.5%;
  -webkit-transform: rotate(-60deg) skewY(30deg);
  -ms-transform: rotate(-60deg) skewY(30deg);
  transform: rotate(-60deg) skewY(30deg);
}
.hexagon-wrapper li:nth-child(5),
.hexagon-wrapper li:nth-child(6),
.hexagon-wrapper li:nth-child(7) {
  top: -95px;
}
.hexagon-wrapper li:nth-child(5) {
  margin-left: 200px;
}
@media (max-width: 1600px) {
  .hexagon-wrapper li:nth-child(5),
  .hexagon-wrapper li:nth-child(6),
  .hexagon-wrapper li:nth-child(7) {
    top: -67px;
  }
  .hexagon-wrapper li:nth-child(5) {
    margin-left: 144px;
  }
}
@media (max-width: 1200px) {
  .hexagon-wrapper li:nth-child(5),
  .hexagon-wrapper li:nth-child(6),
  .hexagon-wrapper li:nth-child(7) {
    top: -56px;
  }
  .hexagon-wrapper li:nth-child(5) {
    margin-left: 121px;
  }
  /*.hexagon-wrapper li:nth-child(5n+1){
      margin-left: 0%;
  }
  .hexagon-wrapper li:nth-child(5n+3){
      margin-right: 0%;
  }*/
}
@media (max-width: 767px) {
  .hexagon-wrapper li:nth-child(5),
  .hexagon-wrapper li:nth-child(6),
  .hexagon-wrapper li:nth-child(7) {
    top: -275px;
  }
  .hexagon-wrapper li {
    width: 48.75%;
    /* = (100 -2.5) / 2 */
    padding-bottom: 56.29330254%;
    /* =  width /0.866 */
  }
  .hexagon-wrapper li:nth-child(3n+3) {
    margin-left: 25.5%;
    clear: both;
    margin-top: -12.1875%;
    /* = w / 4 */
    margin-bottom: -12.1875%;
    /* = w / 4 */
  }
  .hexagon-wrapper li:nth-child(3n+2) {
    float: right;
  }
  .hexagon-wrapper li:nth-child(3n+3):last-child {
    margin-bottom: 0%;
  }
  .hexagon-wrapper li:nth-child(3n+4) {
    clear: left;
    transform: translateX(0) rotate(-60deg) skewY(30deg);
  }
}
.hexagon-wrapper li * {
  position: absolute;
  visibility: visible;
  overflow: hidden;
}
.hexagon-wrapper li > div {
  width: 100%;
  height: 100%;
  text-align: center;
  color: #fff;
  overflow: hidden;
  -webkit-transform: skewY(-30deg) rotate(60deg);
  -ms-transform: skewY(-30deg) rotate(60deg);
  transform: skewY(-30deg) rotate(60deg);
  -webkit-backface-visibility: hidden;
}
/* HEX CONTENT */
.hexagon-wrapper li .flip-content {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000;
  text-align: center;
  width: 100%;
  padding: 20px 3px;
}
.hexagon-wrapper li .front .flip-content {
  font-size: 21px;
}
.hexagon-wrapper li .flip-content * {
  position: static;
}
.hexagon-wrapper li .flip-content {
  font-size: 19px;
  line-height: 1.2;
}
.hexagon-wrapper li .front {
  background-repeat: repeat;
  background-position: center;
}
.hexagon-wrapper li .flip-content p {
  color: #666666;
  padding-bottom: 10px;
}
.hexagon-wrapper li .flip-content.lg {
  font-size: 27px;
}
.hexagon-wrapper li .flip-content.title-lg {
  font-size: 85px;
}
.hexagon-wrapper li .flip-content.md {
  font-size: 24px;
}
.hexagon-wrapper li .flip-content.title-md {
  font-size: 80px;
}
.hexagon-wrapper li .flip-content.title-sm {
  font-size: 72px;
}
.hexagon-wrapper li .flip-content.sm {
  font-size: 22px;
}
.hexagon-wrapper li .flip-content.title-xs {
  font-size: 38px;
}
.hexagon-wrapper li .front .flip-content,
.hexagon-wrapper li .front .flip-content p {
  color: #fff;
}
.hexagon-wrapper li .flip-content p:last-child {
  padding-bottom: 0;
}
.hexagon-wrapper li .back .flip-content {
  background: #fff;
  display: inline-block;
  padding: 20px;
  font-size: 14px;
  font-family: sans-serif;
  color: #004E98;
}
.hexagon-wrapper li .front .flip-content p span {
  color: #e96251;
}
.hexagon-wrapper li .front .flip-content p .hash-tag {
  font-weight: bold;
}
.hexagon-wrapper li .back .flip-content p a i {
  font-size: 21px;
  vertical-align: middle;
  padding-left: 3px;
}
@media (max-width: 1024px) {
  #news-month.style2 {
    overflow: hidden;
  }
  #hexagons {
    margin-bottom: 15em;
  }
}
@media (max-width: 991px) {
  .hexagon-wrapper li .front .flip-content.title-xs {
    font-size: 29px;
  }
  .hexagon-wrapper li .front .flip-content.title-lg {
    font-size: 60px;
  }
  .hexagon-wrapper li .front .flip-content.title-md {
    font-size: 50px;
  }
  .hexagon-wrapper li .front .flip-content {
    font-size: 17px;
  }
  .hexagon-wrapper li .flip-content.lg {
    font-size: 22px;
  }
  .hexagon-wrapper li .flip-content.md {
    font-size: 18px;
  }
  .hexagon-wrapper li .flip-content.sm {
    font-size: 16px;
  }
  .hexagon-wrapper li .flip-content {
    font-size: 16px;
  }
  .initiative.style2 .initiative--title {
    font-size: 19px;
  }
  #hexagons {
    overflow: hidden;
    margin: 1em auto 0;
    padding-top: 3em;
    padding-bottom: 3em;
  }
  .hexagon-wrapper {
    width: auto;
    padding: 0 12px;
  }
  #hexagons .el-bg.bg-11 {
    top: 996px;
  }
  #hexagons .el-bg.bg-12 {
    top: 1152px;
  }
  .page-template-our-impact .header {
    max-height: none;
  }
  .banner-description-body {
    padding-top: 10em;
  }
  .banner-description h2 {
    font-size: 2.5em;
    margin-bottom: 25px;
  }
  .banner-description p {
    font-size: 17px;
    line-height: 1.5;
  }
  .hexagon-wrapper li:nth-child(5),
  .hexagon-wrapper li:nth-child(6),
  .hexagon-wrapper li:nth-child(7) {
    top: -40px;
  }
  .hexagon-wrapper li:nth-child(5) {
    margin-left: 85px;
  }
}
@media (max-width: 767px) {
  .hexagon-wrapper li .front .flip-content.title-xs {
    font-size: 32px;
  }
  .hexagon-wrapper li .front .flip-content.title-lg {
    font-size: 48px;
  }
  .hexagon-wrapper li .front .flip-content.title-md {
    font-size: 38px;
  }
  .hexagon-wrapper li .front .flip-content {
    font-size: 23px;
  }
  .hexagon-wrapper li .flip-content.lg {
    font-size: 27px;
  }
  .hexagon-wrapper li .flip-content.md {
    font-size: 26px;
  }
  .hexagon-wrapper li .flip-content.sm {
    font-size: 23px;
  }
  .hexagon-wrapper li .flip-content {
    font-size: 23px;
  }
  .hexagon-wrapper li .back .flip-content {
    background: #fff;
    display: inline-block;
    padding: 20px;
    font-size: 12px;
    font-family: sans-serif;
    color: #004E98;
  }
  #hexagons .el-bg.bg-14 {
    top: 1751px;
  }
  .hexagon-wrapper li img {
    height: 100%;
  }
  .initiative.style2 a {
    padding-bottom: 20px;
    padding-top: 10px;
  }
  #news-month.style2 .news-figure {
    background-position: 0 0;
    padding: 20px 16px 20px;
  }
  .initiative.style2 {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .page-template-our-impact .header {
    background-position: -62px;
  }
  .banner-description div[class*=col] {
    position: static;
  }
  .banner-description-body {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.47);
    padding: 20px 15px 15px;
  }
  .banner-description h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
  }
  .banner-description p {
    font-size: 16px;
    line-height: 1.3;
    text-transform: none;
  }
  .hexagon-wrapper li:nth-child(5),
  .hexagon-wrapper li:nth-child(6),
  .hexagon-wrapper li:nth-child(7) {
    top: -275px;
  }
  .hexagon-wrapper li:nth-child(5) {
    margin-left: 85px;
  }
}
@media (max-width: 576px) {
  .hexagon-common-style {
    float: none;
    margin-left: 6.5%;
    margin-right: 6.5%;
    margin-top: 15%;
    width: 85.75%;
    padding-bottom: 98.293303%;
    margin-bottom: 0;
  }
  .hexagon-wrapper li {
    float: none;
    margin-left: 6.5%;
    margin-right: 6.5%;
    margin-top: 15%;
    width: 85.75%;
    padding-bottom: 98.293303%;
    margin-bottom: 0;
  }
  .hexagon-wrapper li:nth-child(3n+3),
  .hexagon-wrapper li:nth-child(3n+2),
  .hexagon-wrapper li:nth-child(3n+4),
  .hexagon-wrapper li:nth-child(3n+5) {
    float: none;
    margin-left: 6.5%;
    margin-right: 6.5%;
    margin-top: 15%;
    width: 85.75%;
    padding-bottom: 98.293303%;
    margin-bottom: 0;
  }
  .hexagon-wrapper li:nth-child(5),
  .hexagon-wrapper li:nth-child(6),
  .hexagon-wrapper li:nth-child(7) {
    top: -20px;
  }
  .hexagon-wrapper li .back .flip-content {
    background: #fff;
    display: inline-block;
    padding: 7px;
    font-size: 13px;
    font-family: sans-serif;
    color: #004E98;
  }
}
@media (max-width: 560px) {
  .hexagon-wrapper li .front .flip-content.title-xs {
    font-size: 22px;
  }
  .hexagon-wrapper li .front .flip-content.title-lg {
    font-size: 38px;
  }
  .hexagon-wrapper li .front .flip-content.title-md {
    font-size: 28px;
  }
  .hexagon-wrapper li .front .flip-content {
    font-size: 13px;
  }
  .hexagon-wrapper li .flip-content.lg {
    font-size: 17px;
  }
  .hexagon-wrapper li .flip-content.md {
    font-size: 16px;
  }
  .hexagon-wrapper li .flip-content.sm {
    font-size: 13px;
  }
  .hexagon-wrapper li .flip-content {
    font-size: 13px;
  }
  .hexagon-wrapper {
    padding: 0 8px;
  }
  .hexagon-wrapper li .back .flip-content p a {
    font-size: 11px;
    padding: 0px 6px 0px 11px;
  }
  .hexagon-wrapper li .back .flip-content p a i {
    font-size: 15px;
    line-height: 1.5;
  }
}
@media (max-width: 375px) {
  .page-template-our-impact .header {
    background-position: -87px;
  }
  .banner-description h2 {
    font-size: 1.5em;
  }
}
@media (max-width: 320px) {
  .hexagon-wrapper li .front .flip-content.title-xs {
    font-size: 19px;
  }
  .hexagon-wrapper li .front .flip-content.title-lg {
    font-size: 33px;
  }
  .hexagon-wrapper li .front .flip-content.title-md {
    font-size: 24px;
  }
  .hexagon-wrapper li .front .flip-content {
    font-size: 12px;
  }
  .hexagon-wrapper li .flip-content.lg {
    font-size: 13px;
  }
  .hexagon-wrapper li .flip-content.md {
    font-size: 12px;
  }
  .hexagon-wrapper li .flip-content.sm {
    font-size: 12px;
  }
  .hexagon-wrapper li .flip-content {
    font-size: 11px;
  }
  .hexagon-wrapper li .flip-content p {
    padding-bottom: 5px;
  }
  .page-template-our-impact .header {
    background-position: -104px;
  }
  .banner-description h2 {
    font-size: 1.3em;
  }
  .banner-description p {
    font-size: 14px;
  }
}
/* Flip EFFECT  */
.flip-container {
  -webkit-perspective: 1000;
  -moz-perspective: 1000;
  -ms-perspective: 1000;
  perspective: 1000;
  -ms-transform: perspective(1000px);
  -moz-transform: perspective(1000px);
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
}
/*  UPDATED! flip the pane when hovered */
.flip-container:hover .back {
  transform: rotateY(0deg);
}
.flip-container:hover .front {
  transform: rotateY(180deg);
}
.flip-container,
.front,
.back {
  width: 100%;
  height: 100%;
}
/* flip speed goes here */
.flipper {
  width: 100%;
  height: 100%;
  -webkit-transition: 0.6s;
  -webkit-transform-style: preserve-3d;
  -ms-transition: 0.6s;
  -moz-transition: 0.6s;
  -moz-transform: perspective(1000px);
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transition: 0.6s;
  transform-style: preserve-3d;
  position: relative!important;
}
.front,
.back {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: 0.6s;
  -webkit-transform-style: preserve-3d;
  -webkit-transform: rotateY(0deg);
  -moz-transition: 0.6s;
  -moz-transform-style: preserve-3d;
  -moz-transform: rotateY(0deg);
  -o-transition: 0.6s;
  -o-transform-style: preserve-3d;
  -o-transform: rotateY(0deg);
  -ms-transition: 0.6s;
  -ms-transform-style: preserve-3d;
  -ms-transform: rotateY(0deg);
  transition: 0.6s;
  transform-style: preserve-3d;
  transform: rotateY(0deg);
  position: absolute;
  top: 0;
  left: 0;
}
.front {
  -webkit-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  z-index: 2;
}
.back {
  -webkit-transform: rotateY(-180deg);
  -moz-transform: rotateY(-180deg);
  -o-transform: rotateY(-180deg);
  -ms-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  background: #fff;
}
.scrolling-header ul li.nav-item .nav-link:hover:after,
.scrolling-header ul li.nav-item .nav-link.active:after {
  background: #004E98 !important;
}
.scrolling-nav ul li.nav-item .nav-link:hover:after,
.scrolling-nav ul li.nav-item .nav-link.active:after {
  background: #004E98 !important;
}
.btn-info {
  padding: 12px 50px!important;
}
.btn-info:hover {
  color: #fff !important;
}
.sidebar-scroller {
  padding-left: 0px!important;
  padding-right: 30px!important;
}
.account-button {
  cursor: pointer;
}
.external-event-list-date a:hover {
  text-decoration: none;
}
.external-event-list-item a:hover {
  text-decoration: none;
}
.title-event:hover {
  text-decoration: none;
}
.offcanvas-menu .inner-menu {
  position: relative;
}
.offcanvas-menu .inner-menu:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-top: 30px solid transparent;
  border-left: 30px solid #4B2884;
  border-bottom: 30px solid transparent;
  right: -30px;
  top: 40px;
}
body .card-deck .card-body,
body .card-deck .card,
body .card-deck .card-footer {
  cursor: pointer;
  background: #fff;
  border-color: #fff;
  position: relative;
}
body .card-deck .card-title {
  font-family: 'KPMG Web';
  font-weight: normal;
  color: #004E98;
  font-size: 40px;
  line-height: 40px;
}
body .card-deck .card-title.font-s70 {
  line-height: 60px;
}
body .card-deck .card-footer:after {
  content: "";
  background: #F1F2F8;
  width: 90%;
  display: block;
  height: 1px;
  position: absolute;
  left: 5%;
  right: 5%;
  top: 0px;
}
body .card-deck a {
  color: #00AFA8;
}
body .card-deck a:hover,
body .card-deck a:focus,
body .card-deck a:active {
  text-decoration: none;
}
.video-wrapper .card-body {
  position: static!important;
}
.video-wrapper .card {
  position: relative;
}
.video-wrapper .card i.fa-youtube-play {
  position: absolute;
  left: 15px;
  top: 15px;
  font-size: 60px;
}
@media screen and (min-width: 576px) {
  #mediaPage .card-deck .card {
    flex: none;
    width: 23%;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 991px) {
  body .card-deck {
    display: flex;
    flex-direction: column !important;
  }
  body .card-deck .card {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1199px) {
  body .card-deck .card {
    width: 100%;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1600px) {
  body .card-deck .card-title {
    font-size: 60px;
    line-height: 60px;
  }
}
.facetwp-facet {
  margin-bottom: 40px;
}
.facetwp-pager-label {
  display: inline-block;
  margin-right: 12px;
}
.facetwp-page {
  display: inline-block;
  padding: 0px 4px;
  margin-right: 6px;
  cursor: pointer;
}
.facetwp-page.active {
  font-weight: bold;
  cursor: default;
}
.facetwp-loading {
  width: 20px;
  height: 20px;
  background: url(images/loading.png) no-repeat;
  background-size: 20px 20px;
  -webkit-animation: spin 700ms infinite linear;
  -moz-animation: spin 700ms infinite linear;
  animation: spin 700ms infinite linear;
}
.facetwp-overlay {
  position: absolute;
  background-color: #fff;
  opacity: 0.6;
}
/* Checkboxes */
.facetwp-type-checkboxes .facetwp-depth {
  display: none;
}
.facetwp-type-checkboxes .facetwp-depth.visible {
  display: inherit;
}
.facetwp-checkbox {
  background: url(images/check-off.png?rev=10) 0 50% no-repeat !important;
  background-size: 14px 14px!important;
  margin-bottom: 4px!important;
  padding-left: 26px!important;
  cursor: pointer!important;
  font-size: 16px!important;
}
.facetwp-checkbox.checked {
  background-image: url(images/check-on.png?rev=210120) !important;
}
.facetwp-checkbox.disabled,
.facetwp-radio.disabled {
  opacity: 0.4 !important;
  cursor: default!important;
}
.facetwp-checkbox .facetwp-expand {
  float: right;
}
/* Radio */
.facetwp-radio {
  background: url(images/radio.png) 0 50% no-repeat;
  background-size: 14px 14px;
  margin-bottom: 4px;
  padding-left: 20px;
  cursor: pointer;
}
.facetwp-radio.checked {
  background-image: url(images/radio-on.png);
}
/* Date range */
.flatpickr-clear {
  text-align: center;
  padding: 5px 0;
  cursor: pointer;
}
/* fSelect */
.facetwp-type-fselect .fs-wrap,
.facetwp-type-fselect .fs-dropdown {
  width: 220px;
}
.facetwp-type-fselect .fs-wrap.fs-disabled .fs-option {
  opacity: 0.4;
  cursor: default;
}
/* Hierarchy */
.facetwp-depth {
  margin-left: 12px;
}
.facetwp-link {
  cursor: pointer;
}
.facetwp-link.checked {
  font-weight: bold;
  cursor: default;
}
.facetwp-toggle {
  cursor: pointer;
}
.facetwp-seo,
.facetwp-hidden {
  display: none;
}
/* Slider */
.facetwp-slider-wrap {
  padding-bottom: 15px;
}
.facetwp-slider-reset {
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  background: #fff;
  box-shadow: inset 0 0 1px #fff, inset 0 1px 7px #ebebeb, 0 3px 6px -3px #bbb;
  padding: 4px 8px;
  cursor: pointer;
}
.noUi-target {
  padding: 0 15px;
}
/* Search */
.facetwp-search-wrap {
  position: relative;
}
.facetwp-search {
  padding-right: 28px;
}
.facetwp-btn {
  top: 0;
  right: 5px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.5;
}
.facetwp-btn:before {
  display: inline-block;
  content: '';
  width: 20px;
  height: 20px;
  background: url(images/icon-search.png) no-repeat;
  background-size: 20px 20px;
}
/* Proximity */
.facetwp-location {
  padding-right: 28px;
}
.location-wrap {
  position: relative;
}
.locate-me {
  top: 0;
  right: 5px;
  line-height: 1;
  position: absolute;
  cursor: pointer;
  opacity: 0.5;
}
.locate-me:before {
  display: inline-block;
  content: '';
  width: 20px;
  height: 20px;
  background: url(images/icon-locate.png) no-repeat;
  background-size: 20px 20px;
}
.locate-me.f-loading:before {
  background: url(images/loading.png) no-repeat;
  background-size: 20px 20px;
  -webkit-animation: spin 700ms infinite linear;
  -moz-animation: spin 700ms infinite linear;
  animation: spin 700ms infinite linear;
}
.locate-me.f-reset:before {
  background: url(images/icon-close.png) no-repeat;
  background-size: 20px 20px;
}
/* Rating */
.facetwp-stars {
  float: left;
  line-height: 1;
  padding-right: 4px;
  user-select: none;
}
.facetwp-star {
  float: right;
  cursor: pointer;
  font-size: 20px;
  color: #ccc;
}
.facetwp-star:hover,
.facetwp-star:hover ~ .facetwp-star,
.facetwp-star.selected,
.facetwp-star.selected ~ .facetwp-star {
  color: #000;
}
.facetwp-star.selected:hover,
.facetwp-star.selected:hover ~ .facetwp-star {
  color: red;
}
/* CSS animations */
@-o-keyframes spin {
  from {
    -o-transform: rotate(0deg);
  }
  to {
    -o-transform: rotate(360deg);
  }
}
@-moz-keyframes spin {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(360deg);
  }
}
@-ms-keyframes spin {
  from {
    -ms-transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@-keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* Selections shortcode */
.facetwp-selections li {
  display: inline-block;
  line-height: 1;
}
.facetwp-selections .facetwp-selection-value {
  display: inline-block;
  margin-right: 10px;
  cursor: pointer;
  padding-right: 16px;
  background-image: url(images/icon-close.png);
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: right center;
}
.ss-main {
  position: relative;
  display: inline-block;
  user-select: none;
  color: #004E98;
  width: 100%;
}
.ss-main .ss-single-selected {
  display: flex;
  cursor: pointer;
  width: 100%;
  height: 50px;
  padding: 10px 10px;
  border: 0px solid #dcdee2;
  border-radius: 5px;
  background: #F1F2F8;
  outline: 0;
  box-sizing: border-box;
  transition: background-color 0.3s;
}
.ss-main .ss-single-selected.ss-disabled {
  background-color: #dcdee2;
  cursor: not-allowed;
}
.ss-main .ss-single-selected.ss-open-above {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
.ss-main .ss-single-selected.ss-open-below {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.ss-main .ss-single-selected .placeholder {
  display: flex;
  flex: 1 1 100%;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
  width: calc(100% - 30px);
  line-height: 1em;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 16px;
}
.ss-main .ss-single-selected .placeholder * {
  display: flex;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: auto;
}
.ss-main .ss-single-selected .placeholder .ss-disabled {
  cursor: pointer;
  color: #dcdee2;
}
.ss-main .ss-single-selected .ss-deselect {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 1 auto;
  margin: 0 5px 0 5px;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
}
.ss-main .ss-single-selected .ss-deselect.ss-hide {
  display: none;
}
.ss-main .ss-single-selected .ss-arrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 1 auto;
  margin: 0 5px 0 5px;
}
.ss-main .ss-single-selected .ss-arrow span {
  border: solid #004E98;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transition: transform 0.2s, margin 0.2s;
}
.ss-main .ss-single-selected .ss-arrow span.arrow-up {
  transform: rotate(-135deg);
  margin: 3px 0 0 0;
}
.ss-main .ss-single-selected .ss-arrow span.arrow-down {
  transform: rotate(45deg);
  margin: -3px 0 0 0;
}
.ss-main .ss-multi-selected {
  display: flex;
  flex-direction: row;
  cursor: pointer;
  min-height: 30px;
  width: 100%;
  padding: 0 0 0 3px;
  border: 1px solid #dcdee2;
  border-radius: 4px;
  background: #F1F2F8;
  outline: 0;
  box-sizing: border-box;
  transition: background-color 0.3s;
}
.ss-main .ss-multi-selected.ss-disabled {
  background-color: #dcdee2;
  cursor: not-allowed;
}
.ss-main .ss-multi-selected.ss-disabled .ss-values .ss-disabled {
  color: #666666;
}
.ss-main .ss-multi-selected.ss-disabled .ss-values .ss-value .ss-value-delete {
  cursor: not-allowed;
}
.ss-main .ss-multi-selected.ss-open-above {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
.ss-main .ss-multi-selected.ss-open-below {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.ss-main .ss-multi-selected .ss-values {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  flex: 1 1 100%;
  width: calc(100% - 30px);
}
.ss-main .ss-multi-selected .ss-values .ss-disabled {
  display: flex;
  padding: 4px 5px;
  margin: 2px 0px;
  line-height: 1em;
  align-items: center;
  width: 100%;
  color: #dcdee2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@keyframes scaleIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes scaleOut {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}
.ss-main .ss-multi-selected .ss-values .ss-value {
  display: flex;
  user-select: none;
  align-items: center;
  font-size: 12px;
  padding: 3px 5px;
  margin: 3px 5px 3px 0px;
  color: #ffffff;
  background-color: #5897fb;
  border-radius: 4px;
  animation-name: scaleIn;
  animation-duration: 0.2s;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
}
.ss-main .ss-multi-selected .ss-values .ss-value.ss-out {
  animation-name: scaleOut;
  animation-duration: 0.2s;
  animation-timing-function: ease-out;
}
.ss-main .ss-multi-selected .ss-values .ss-value .ss-value-delete {
  margin: 0 0 0 5px;
  cursor: pointer;
}
.ss-main .ss-multi-selected .ss-add {
  display: flex;
  flex: 0 1 3px;
  margin: 9px 12px 0 5px;
}
.ss-main .ss-multi-selected .ss-add .ss-plus {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #666666;
  position: relative;
  height: 10px;
  width: 2px;
  transition: transform 0.2s;
}
.ss-main .ss-multi-selected .ss-add .ss-plus:after {
  background: #666666;
  content: "";
  position: absolute;
  height: 2px;
  width: 10px;
  left: -4px;
  top: 4px;
}
.ss-main .ss-multi-selected .ss-add .ss-plus.ss-cross {
  transform: rotate(45deg);
}
.ss-main .ss-content {
  position: absolute;
  width: 100%;
  margin: -1px 0 0 0;
  box-sizing: border-box;
  border: solid 0px #dcdee2;
  z-index: 1010;
  background: #F1F2F8;
  transform-origin: center top;
  transition: transform 0.2s, opacity 0.2s;
  opacity: 0;
  transform: scaleY(0);
  -webkit-box-shadow: 0px 3px 5px -2px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 3px 5px -2px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 3px 5px -2px rgba(0, 0, 0, 0.16);
}
.ss-main .ss-content.ss-open {
  display: block;
  opacity: 1;
  transform: scaleY(1);
}
.ss-main .ss-content .ss-search {
  display: flex;
  flex-direction: row;
  padding: 8px 10px 8px 10px;
}
.ss-main .ss-content .ss-search.ss-hide {
  height: 0px;
  opacity: 0;
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 0px 0px;
}
.ss-main .ss-content .ss-search.ss-hide input {
  height: 0px;
  opacity: 0;
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 0px 0px;
}
.ss-main .ss-content .ss-search input {
  display: inline-flex;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  flex: 1 1 auto;
  width: 100%;
  min-width: 0px;
  height: 30px;
  padding: 5px 10px;
  margin: 0;
  border: 1px solid #dcdee2;
  border-radius: 4px;
  background: #F1F2F8;
  outline: 0;
  text-align: left;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-appearance: textfield;
}
.ss-main .ss-content .ss-search input::placeholder {
  color: #b3b3b3;
}
.ss-main .ss-content .ss-search input:focus {
  box-shadow: 0 0 5px #5897fb;
}
.ss-main .ss-content .ss-search .ss-addable {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 22px;
  font-weight: bold;
  flex: 0 0 30px;
  height: 30px;
  margin: 0 0 0 8px;
  border: 1px solid #dcdee2;
  border-radius: 4px;
  box-sizing: border-box;
}
.ss-main .ss-content .ss-addable {
  padding-top: 0px;
}
.ss-main .ss-content .ss-list {
  max-height: 200px;
  overflow-x: hidden;
  overflow-y: auto;
  text-align: left;
}
.ss-main .ss-content .ss-list .ss-optgroup .ss-optgroup-label {
  padding: 6px 10px 6px 10px;
  font-weight: bold;
}
.ss-main .ss-content .ss-list .ss-optgroup .ss-option {
  padding: 6px 6px 6px 25px;
}
.ss-main .ss-content .ss-list .ss-option {
  padding: 6px 10px 6px 10px;
  cursor: pointer;
  user-select: none;
}
.ss-main .ss-content .ss-list .ss-option * {
  display: inline-block;
}
.ss-main .ss-content .ss-list .ss-option:hover,
.ss-main .ss-content .ss-list .ss-option.ss-highlighted {
  color: #ffffff;
  background-color: #004E98;
}
.ss-main .ss-content .ss-list .ss-option.ss-disabled {
  cursor: default;
  color: #dcdee2;
  background-color: #ffffff;
}
.ss-main .ss-content .ss-list .ss-option.ss-hide {
  display: none;
}
.ss-main .ss-content .ss-list .ss-option .ss-search-highlight {
  background-color: #fff70062;
}
/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInNyYy9zbGltLXNlbGVjdC9zbGltc2VsZWN0LnNjc3MiXSwic291cmNlc0NvbnRlbnQiOlsiJGhlaWdodDogMzBweCAhZGVmYXVsdDtcbiR3aGl0ZTogI2ZmZmZmZiAhZGVmYXVsdDtcbiRmb250LWNvbG9yOiAjNjY2NjY2ICFkZWZhdWx0O1xuJHByaW1hcnktY29sb3I6ICM1ODk3ZmIgIWRlZmF1bHQ7XG4kYm9yZGVyLWNvbG9yOiAjZGNkZWUyICFkZWZhdWx0O1xuJHNlYXJjaC1oaWdobGlnaHQtY29sb3I6ICNmZmY3MDA2MiAhZGVmYXVsdDtcbiRib3JkZXItcmFkaXVzOiA0cHggIWRlZmF1bHQ7XG5cbi5zcy1tYWluIHtcbiAgcG9zaXRpb246IHJlbGF0aXZlO1xuICBkaXNwbGF5OiBpbmxpbmUtYmxvY2s7XG4gIHVzZXItc2VsZWN0OiBub25lO1xuICBjb2xvcjogJGZvbnQtY29sb3I7XG4gIHdpZHRoOiAxMDAlO1xuXG4gIC5zcy1zaW5nbGUtc2VsZWN0ZWQge1xuICAgIGRpc3BsYXk6IGZsZXg7XG4gICAgY3Vyc29yOiBwb2ludGVyO1xuICAgIHdpZHRoOiAxMDAlO1xuICAgIGhlaWdodDogJGhlaWdodDtcbiAgICBwYWRkaW5nOiA2cHg7XG4gICAgYm9yZGVyOiAxcHggc29saWQgJGJvcmRlci1jb2xvcjtcbiAgICBib3JkZXItcmFkaXVzOiAkYm9yZGVyLXJhZGl1cztcbiAgICBiYWNrZ3JvdW5kLWNvbG9yOiAkd2hpdGU7XG4gICAgb3V0bGluZTogMDtcbiAgICBib3gtc2l6aW5nOiBib3JkZXItYm94O1xuICAgIHRyYW5zaXRpb246IGJhY2tncm91bmQtY29sb3IgLjNzO1xuXG4gICAgJi5zcy1kaXNhYmxlZCB7XG4gICAgICBiYWNrZ3JvdW5kLWNvbG9yOiAkYm9yZGVyLWNvbG9yO1xuICAgICAgY3Vyc29yOiBub3QtYWxsb3dlZDtcbiAgICB9XG5cbiAgICAmLnNzLW9wZW4tYWJvdmUge1xuICAgICAgYm9yZGVyLXRvcC1sZWZ0LXJhZGl1czogMHB4O1xuICAgICAgYm9yZGVyLXRvcC1yaWdodC1yYWRpdXM6IDBweDtcbiAgICB9XG4gICAgJi5zcy1vcGVuLWJlbG93IHtcbiAgICAgIGJvcmRlci1ib3R0b20tbGVmdC1yYWRpdXM6IDBweDtcbiAgICAgIGJvcmRlci1ib3R0b20tcmlnaHQtcmFkaXVzOiAwcHg7XG4gICAgfVxuXG4gICAgLnBsYWNlaG9sZGVyIHtcbiAgICAgIGRpc3BsYXk6IGZsZXg7XG4gICAgICBmbGV4OiAxIDEgMTAwJTtcbiAgICAgIGFsaWduLWl0ZW1zOiBjZW50ZXI7XG4gICAgICBvdmVyZmxvdzogaGlkZGVuO1xuICAgICAgdGV4dC1vdmVyZmxvdzogZWxsaXBzaXM7XG4gICAgICB3aGl0ZS1zcGFjZTogbm93cmFwO1xuICAgICAgdGV4dC1hbGlnbjogbGVmdDtcbiAgICAgIHdpZHRoOiBjYWxjKDEwMCUgLSAzMHB4KTtcbiAgICAgIGxpbmUtaGVpZ2h0OiAxZW07XG4gICAgICAtd2Via2l0LXVzZXItc2VsZWN0OiBub25lOyAgXG4gICAgICAtbW96LXVzZXItc2VsZWN0OiBub25lOyAgICBcbiAgICAgIC1tcy11c2VyLXNlbGVjdDogbm9uZTsgICAgICBcbiAgICAgIHVzZXItc2VsZWN0OiBub25lO1xuXG4gICAgICAqIHtcbiAgICAgICAgZGlzcGxheTogZmxleDtcbiAgICAgICAgYWxpZ24taXRlbXM6IGNlbnRlcjtcbiAgICAgICAgb3ZlcmZsb3c6IGhpZGRlbjtcbiAgICAgICAgdGV4dC1vdmVyZmxvdzogZWxsaXBzaXM7XG4gICAgICAgIHdoaXRlLXNwYWNlOiBub3dyYXA7XG4gICAgICAgIHdpZHRoOiBhdXRvO1xuICAgICAgfVxuXG4gICAgICAuc3MtZGlzYWJsZWQge1xuICAgICAgICBjdXJzb3I6IHBvaW50ZXI7XG4gICAgICAgIGNvbG9yOiAkYm9yZGVyLWNvbG9yO1xuICAgICAgfVxuICAgIH1cblxuICAgIC5zcy1kZXNlbGVjdCB7XG4gICAgICBkaXNwbGF5OiBmbGV4O1xuICAgICAgYWxpZ24taXRlbXM6IGNlbnRlcjtcbiAgICAgIGp1c3RpZnktY29udGVudDogZmxleC1lbmQ7XG4gICAgICBmbGV4OiAwIDEgYXV0bztcbiAgICAgIG1hcmdpbjogMCA1cHggMCA1cHg7XG4gICAgICBmb250LXdlaWdodDogYm9sZDtcbiAgICAgIGZvbnQtZmFtaWx5OiBBcmlhbCwgSGVsdmV0aWNhLCBzYW5zLXNlcmlmO1xuXG4gICAgICAmLnNzLWhpZGUge1xuICAgICAgICBkaXNwbGF5OiBub25lO1xuICAgICAgfVxuICAgIH1cblxuICAgIC5zcy1hcnJvdyB7XG4gICAgICBkaXNwbGF5OiBmbGV4O1xuICAgICAgYWxpZ24taXRlbXM6IGNlbnRlcjtcbiAgICAgIGp1c3RpZnktY29udGVudDogZmxleC1lbmQ7XG4gICAgICBmbGV4OiAwIDEgYXV0bztcbiAgICAgIG1hcmdpbjogMCA1cHggMCA1cHg7XG5cbiAgICAgIHNwYW4ge1xuICAgICAgICBib3JkZXI6IHNvbGlkICRmb250LWNvbG9yO1xuICAgICAgICBib3JkZXItd2lkdGg6IDAgMnB4IDJweCAwO1xuICAgICAgICBkaXNwbGF5OiBpbmxpbmUtYmxvY2s7XG4gICAgICAgIHBhZGRpbmc6IDNweDtcbiAgICAgICAgdHJhbnNpdGlvbjogdHJhbnNmb3JtIC4ycywgbWFyZ2luIC4ycztcblxuICAgICAgICAmLmFycm93LXVwIHtcbiAgICAgICAgICB0cmFuc2Zvcm06IHJvdGF0ZSgtMTM1ZGVnKTtcbiAgICAgICAgICBtYXJnaW46IDNweCAwIDAgMDtcbiAgICAgICAgfVxuICAgICAgICAmLmFycm93LWRvd24ge1xuICAgICAgICAgIHRyYW5zZm9ybTogcm90YXRlKDQ1ZGVnKTtcbiAgICAgICAgICBtYXJnaW46IC0zcHggMCAwIDA7XG4gICAgICAgIH1cbiAgICAgIH1cbiAgICB9XG4gIH1cblxuICAuc3MtbXVsdGktc2VsZWN0ZWQge1xuICAgIGRpc3BsYXk6IGZsZXg7XG4gICAgZmxleC1kaXJlY3Rpb246IHJvdztcbiAgICBjdXJzb3I6IHBvaW50ZXI7XG4gICAgbWluLWhlaWdodDogJGhlaWdodDtcbiAgICB3aWR0aDogMTAwJTtcbiAgICBwYWRkaW5nOiAwIDAgMCAzcHg7XG4gICAgYm9yZGVyOiAxcHggc29saWQgJGJvcmRlci1jb2xvcjtcbiAgICBib3JkZXItcmFkaXVzOiAkYm9yZGVyLXJhZGl1cztcbiAgICBiYWNrZ3JvdW5kLWNvbG9yOiAkd2hpdGU7XG4gICAgb3V0bGluZTogMDtcbiAgICBib3gtc2l6aW5nOiBib3JkZXItYm94O1xuICAgIHRyYW5zaXRpb246IGJhY2tncm91bmQtY29sb3IgLjNzO1xuXG4gICAgJi5zcy1kaXNhYmxlZCB7XG4gICAgICBiYWNrZ3JvdW5kLWNvbG9yOiAkYm9yZGVyLWNvbG9yO1xuICAgICAgY3Vyc29yOiBub3QtYWxsb3dlZDtcblxuICAgICAgLnNzLXZhbHVlcyB7XG4gICAgICAgIC5zcy1kaXNhYmxlZCB7XG4gICAgICAgICAgY29sb3I6ICRmb250LWNvbG9yO1xuICAgICAgICB9XG5cbiAgICAgICAgLnNzLXZhbHVlIHtcbiAgICAgICAgICAuc3MtdmFsdWUtZGVsZXRlIHtcbiAgICAgICAgICAgIGN1cnNvcjogbm90LWFsbG93ZWQ7XG4gICAgICAgICAgfVxuICAgICAgICB9XG4gICAgICB9XG4gICAgfVxuXG4gICAgJi5zcy1vcGVuLWFib3ZlIHtcbiAgICAgIGJvcmRlci10b3AtbGVmdC1yYWRpdXM6IDBweDtcbiAgICAgIGJvcmRlci10b3AtcmlnaHQtcmFkaXVzOiAwcHg7XG4gICAgfVxuICAgICYuc3Mtb3Blbi1iZWxvdyB7XG4gICAgICBib3JkZXItYm90dG9tLWxlZnQtcmFkaXVzOiAwcHg7XG4gICAgICBib3JkZXItYm90dG9tLXJpZ2h0LXJhZGl1czogMHB4O1xuICAgIH1cblxuICAgIC5zcy12YWx1ZXMge1xuICAgICAgZGlzcGxheTogZmxleDtcbiAgICAgIGZsZXgtd3JhcDogd3JhcDtcbiAgICAgIGp1c3RpZnktY29udGVudDogZmxleC1zdGFydDtcbiAgICAgIGZsZXg6IDEgMSAxMDAlO1xuICAgICAgd2lkdGg6IGNhbGMoMTAwJSAtIDMwcHgpO1xuXG4gICAgICAuc3MtZGlzYWJsZWQge1xuICAgICAgICBkaXNwbGF5OiBmbGV4O1xuICAgICAgICBwYWRkaW5nOiA0cHggNXB4O1xuICAgICAgICBtYXJnaW46IDJweCAwcHg7XG4gICAgICAgIGxpbmUtaGVpZ2h0OiAxZW07XG4gICAgICAgIGFsaWduLWl0ZW1zOiBjZW50ZXI7XG4gICAgICAgIHdpZHRoOiAxMDAlO1xuICAgICAgICBjb2xvcjogJGJvcmRlci1jb2xvcjtcbiAgICAgICAgb3ZlcmZsb3c6IGhpZGRlbjtcbiAgICAgICAgdGV4dC1vdmVyZmxvdzogZWxsaXBzaXM7XG4gICAgICAgIHdoaXRlLXNwYWNlOiBub3dyYXA7XG4gICAgICB9XG5cbiAgICAgIEBrZXlmcmFtZXMgc2NhbGVJbiB7XG4gICAgICAgIDAlIHt0cmFuc2Zvcm06IHNjYWxlKDApOyBvcGFjaXR5OiAwO31cbiAgICAgICAgMTAwJSB7dHJhbnNmb3JtOiBzY2FsZSgxKTsgb3BhY2l0eTogMTt9XG4gICAgICB9XG4gICAgICBAa2V5ZnJhbWVzIHNjYWxlT3V0IHtcbiAgICAgICAgMCUge3RyYW5zZm9ybTogc2NhbGUoMSk7IG9wYWNpdHk6IDE7fVxuICAgICAgICAxMDAlIHt0cmFuc2Zvcm06IHNjYWxlKDApOyBvcGFjaXR5OiAwO31cbiAgICAgIH1cblxuICAgICAgLnNzLXZhbHVlIHtcbiAgICAgICAgZGlzcGxheTogZmxleDtcbiAgICAgICAgdXNlci1zZWxlY3Q6IG5vbmU7XG4gICAgICAgIGFsaWduLWl0ZW1zOiBjZW50ZXI7XG4gICAgICAgIGZvbnQtc2l6ZTogMTJweDtcbiAgICAgICAgcGFkZGluZzogM3B4IDVweDtcbiAgICAgICAgbWFyZ2luOiAzcHggNXB4IDNweCAwcHg7XG4gICAgICAgIGNvbG9yOiAkd2hpdGU7XG4gICAgICAgIGJhY2tncm91bmQtY29sb3I6ICRwcmltYXJ5LWNvbG9yO1xuICAgICAgICBib3JkZXItcmFkaXVzOiAkYm9yZGVyLXJhZGl1cztcbiAgICAgICAgYW5pbWF0aW9uLW5hbWU6IHNjYWxlSW47XG4gICAgICAgIGFuaW1hdGlvbi1kdXJhdGlvbjogLjJzO1xuICAgICAgICBhbmltYXRpb24tdGltaW5nLWZ1bmN0aW9uOiBlYXNlLW91dDtcbiAgICAgICAgYW5pbWF0aW9uLWZpbGwtbW9kZTogYm90aDtcblxuICAgICAgICAmLnNzLW91dCB7XG4gICAgICAgICAgYW5pbWF0aW9uLW5hbWU6IHNjYWxlT3V0O1xuICAgICAgICAgIGFuaW1hdGlvbi1kdXJhdGlvbjogLjJzO1xuICAgICAgICAgIGFuaW1hdGlvbi10aW1pbmctZnVuY3Rpb246IGVhc2Utb3V0O1xuICAgICAgICB9XG5cbiAgICAgICAgLnNzLXZhbHVlLWRlbGV0ZSB7XG4gICAgICAgICAgbWFyZ2luOiAwIDAgMCA1cHg7XG4gICAgICAgICAgY3Vyc29yOiBwb2ludGVyO1xuICAgICAgICB9XG4gICAgICB9XG4gICAgfVxuXG4gICAgLnNzLWFkZCB7XG4gICAgICBkaXNwbGF5OiBmbGV4O1xuICAgICAgZmxleDogMCAxIDNweDtcbiAgICAgIG1hcmdpbjogOXB4IDEycHggMCA1cHg7XG5cbiAgICAgIC5zcy1wbHVzIHtcbiAgICAgICAgZGlzcGxheTogZmxleDtcbiAgICAgICAganVzdGlmeS1jb250ZW50OiBjZW50ZXI7XG4gICAgICAgIGFsaWduLWl0ZW1zOiBjZW50ZXI7XG4gICAgICAgIGJhY2tncm91bmQ6ICRmb250LWNvbG9yO1xuICAgICAgICBwb3NpdGlvbjogcmVsYXRpdmU7XG4gICAgICAgIGhlaWdodDogMTBweDtcbiAgICAgICAgd2lkdGg6IDJweDtcbiAgICAgICAgdHJhbnNpdGlvbjogdHJhbnNmb3JtIC4ycztcblxuICAgICAgICAmOmFmdGVyIHtcbiAgICAgICAgICBiYWNrZ3JvdW5kOiAkZm9udC1jb2xvcjtcbiAgICAgICAgICBjb250ZW50OiBcIlwiO1xuICAgICAgICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgICAgICAgICBoZWlnaHQ6IDJweDtcbiAgICAgICAgICB3aWR0aDogMTBweDtcbiAgICAgICAgICBsZWZ0OiAtNHB4O1xuICAgICAgICAgIHRvcDogNHB4O1xuICAgICAgICB9XG5cbiAgICAgICAgJi5zcy1jcm9zcyB7XG4gICAgICAgICAgdHJhbnNmb3JtOiByb3RhdGUoNDVkZWcpO1xuICAgICAgICB9XG4gICAgICB9XG4gICAgfVxuXG4gIH1cblxuICAuc3MtY29udGVudCB7XG4gICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgIHdpZHRoOiAxMDAlO1xuICAgIG1hcmdpbjogLTFweCAwIDAgMDtcbiAgICBib3gtc2l6aW5nOiBib3JkZXItYm94O1xuICAgIGJvcmRlcjogc29saWQgMXB4ICRib3JkZXItY29sb3I7XG4gICAgei1pbmRleDogMTAxMDtcbiAgICBiYWNrZ3JvdW5kLWNvbG9yOiAkd2hpdGU7XG4gICAgdHJhbnNmb3JtLW9yaWdpbjogY2VudGVyIHRvcDtcbiAgICB0cmFuc2l0aW9uOiB0cmFuc2Zvcm0gLjJzLCBvcGFjaXR5IC4ycztcbiAgICBvcGFjaXR5OiAwO1xuICAgIHRyYW5zZm9ybTogc2NhbGVZKDApO1xuXG4gICAgJi5zcy1vcGVuIHtcbiAgICAgIGRpc3BsYXk6IGJsb2NrO1xuICAgICAgb3BhY2l0eTogMTtcbiAgICAgIHRyYW5zZm9ybTogc2NhbGVZKDEpO1xuICAgIH1cblxuICAgIC5zcy1zZWFyY2gge1xuICAgICAgZGlzcGxheTogZmxleDtcbiAgICAgIGZsZXgtZGlyZWN0aW9uOiByb3c7XG4gICAgICBwYWRkaW5nOiA4cHggMTBweCA4cHggMTBweDtcblxuICAgICAgJi5zcy1oaWRlIHtcbiAgICAgICAgaGVpZ2h0OiAwcHg7XG4gICAgICAgIG9wYWNpdHk6IDA7XG4gICAgICAgIHBhZGRpbmc6IDBweCAwcHggMHB4IDBweDtcbiAgICAgICAgbWFyZ2luOiAwcHggMHB4IDBweCAwcHg7XG5cbiAgICAgICAgaW5wdXQge1xuICAgICAgICAgIGhlaWdodDogMHB4O1xuICAgICAgICAgIG9wYWNpdHk6IDA7XG4gICAgICAgICAgcGFkZGluZzogMHB4IDBweCAwcHggMHB4O1xuICAgICAgICAgIG1hcmdpbjogMHB4IDBweCAwcHggMHB4O1xuICAgICAgICB9XG4gICAgICB9XG5cbiAgICAgIGlucHV0IHtcbiAgICAgICAgZGlzcGxheTogaW5saW5lLWZsZXg7XG4gICAgICAgIGZvbnQtc2l6ZTogaW5oZXJpdDtcbiAgICAgICAgZm9udC1mYW1pbHk6IGluaGVyaXQ7XG4gICAgICAgIGxpbmUtaGVpZ2h0OiBpbmhlcml0O1xuICAgICAgICBmbGV4OiAxIDEgYXV0bztcbiAgICAgICAgd2lkdGg6IDEwMCU7XG4gICAgICAgIG1pbi13aWR0aDogMHB4O1xuICAgICAgICBoZWlnaHQ6IDMwcHg7XG4gICAgICAgIHBhZGRpbmc6IDVweCAxMHB4O1xuICAgICAgICBtYXJnaW46IDA7XG4gICAgICAgIGJvcmRlcjogMXB4IHNvbGlkICRib3JkZXItY29sb3I7XG4gICAgICAgIGJvcmRlci1yYWRpdXM6ICRib3JkZXItcmFkaXVzO1xuICAgICAgICBiYWNrZ3JvdW5kLWNvbG9yOiAkd2hpdGU7XG4gICAgICAgIG91dGxpbmU6IDA7XG4gICAgICAgIHRleHQtYWxpZ246IGxlZnQ7XG4gICAgICAgIGJveC1zaXppbmc6IGJvcmRlci1ib3g7XG4gICAgICAgIC13ZWJraXQtYm94LXNpemluZzogYm9yZGVyLWJveDtcbiAgICAgICAgLXdlYmtpdC1hcHBlYXJhbmNlOiB0ZXh0ZmllbGQ7XG5cbiAgICAgICAgJjo6cGxhY2Vob2xkZXIge1xuICAgICAgICAgIGNvbG9yOiBsaWdodGVuKCRmb250LWNvbG9yLCAzMCk7XG4gICAgICAgIH1cblxuICAgICAgICAmOmZvY3VzIHtcbiAgICAgICAgICBib3gtc2hhZG93OiAwIDAgNXB4ICRwcmltYXJ5LWNvbG9yO1xuICAgICAgICB9XG4gICAgICB9XG5cbiAgICAgIC5zcy1hZGRhYmxlIHtcbiAgICAgICAgZGlzcGxheTogaW5saW5lLWZsZXg7XG4gICAgICAgIGp1c3RpZnktY29udGVudDogY2VudGVyO1xuICAgICAgICBhbGlnbi1pdGVtczogY2VudGVyO1xuICAgICAgICBjdXJzb3I6IHBvaW50ZXI7XG4gICAgICAgIGZvbnQtc2l6ZTogMjJweDtcbiAgICAgICAgZm9udC13ZWlnaHQ6IGJvbGQ7XG4gICAgICAgIGZsZXg6IDAgMCAzMHB4O1xuICAgICAgICBoZWlnaHQ6IDMwcHg7XG4gICAgICAgIG1hcmdpbjogMCAwIDAgOHB4O1xuICAgICAgICBib3JkZXI6IDFweCBzb2xpZCAkYm9yZGVyLWNvbG9yO1xuICAgICAgICBib3JkZXItcmFkaXVzOiAkYm9yZGVyLXJhZGl1cztcbiAgICAgICAgYm94LXNpemluZzogYm9yZGVyLWJveDtcbiAgICAgIH1cbiAgICB9XG5cbiAgICAuc3MtYWRkYWJsZSB7XG4gICAgICBwYWRkaW5nLXRvcDogMHB4O1xuICAgIH1cblxuICAgIC5zcy1saXN0IHtcbiAgICAgIG1heC1oZWlnaHQ6IDIwMHB4O1xuICAgICAgb3ZlcmZsb3cteDogaGlkZGVuO1xuICAgICAgb3ZlcmZsb3cteTogYXV0bztcbiAgICAgIHRleHQtYWxpZ246IGxlZnQ7XG5cbiAgICAgIC5zcy1vcHRncm91cCB7XG4gICAgICAgIC5zcy1vcHRncm91cC1sYWJlbCB7XG4gICAgICAgICAgcGFkZGluZzogNnB4IDEwcHggNnB4IDEwcHg7XG4gICAgICAgICAgZm9udC13ZWlnaHQ6IGJvbGQ7XG4gICAgICAgIH1cbiAgICAgICAgLnNzLW9wdGlvbiB7XG4gICAgICAgICAgcGFkZGluZzogNnB4IDZweCA2cHggMjVweDtcbiAgICAgICAgfVxuICAgICAgfVxuXG4gICAgICAuc3Mtb3B0aW9uIHtcbiAgICAgICAgcGFkZGluZzogNnB4IDEwcHggNnB4IDEwcHg7XG4gICAgICAgIGN1cnNvcjogcG9pbnRlcjtcbiAgICAgICAgdXNlci1zZWxlY3Q6IG5vbmU7XG5cbiAgICAgICAgKiB7XG4gICAgICAgICAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xuICAgICAgICB9XG5cbiAgICAgICAgJjpob3ZlciwgJi5zcy1oaWdobGlnaHRlZCB7XG4gICAgICAgICAgY29sb3I6ICR3aGl0ZTtcbiAgICAgICAgICBiYWNrZ3JvdW5kLWNvbG9yOiAkcHJpbWFyeS1jb2xvcjtcbiAgICAgICAgfVxuXG4gICAgICAgICYuc3MtZGlzYWJsZWQge1xuICAgICAgICAgIGN1cnNvcjogZGVmYXVsdDtcbiAgICAgICAgICBjb2xvcjogJGJvcmRlci1jb2xvcjtcbiAgICAgICAgICBiYWNrZ3JvdW5kLWNvbG9yOiAkd2hpdGU7XG4gICAgICAgIH1cblxuICAgICAgICAmLnNzLWhpZGUgeyBkaXNwbGF5OiBub25lOyB9XG5cbiAgICAgICAgLnNzLXNlYXJjaC1oaWdobGlnaHQge1xuICAgICAgICAgIGJhY2tncm91bmQtY29sb3I6ICRzZWFyY2gtaGlnaGxpZ2h0LWNvbG9yO1xuICAgICAgICB9XG4gICAgICB9XG4gICAgfVxuICB9XG59XG4iXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBUUEsQUFBQSxRQUFRLENBQUM7RUFDUCxRQUFRLEVBQUUsUUFBUTtFQUNsQixPQUFPLEVBQUUsWUFBWTtFQUNyQixXQUFXLEVBQUUsSUFBSTtFQUNqQixLQUFLLEVBVk0sT0FBTztFQVdsQixLQUFLLEVBQUUsSUFBSSxHQXdXWjtFQTdXRCxBQU9FLFFBUE0sQ0FPTixtQkFBbUIsQ0FBQztJQUNsQixPQUFPLEVBQUUsSUFBSTtJQUNiLE1BQU0sRUFBRSxPQUFPO0lBQ2YsS0FBSyxFQUFFLElBQUk7SUFDWCxNQUFNLEVBbkJELElBQUk7SUFvQlQsT0FBTyxFQUFFLEdBQUc7SUFDWixNQUFNLEVBQUUsR0FBRyxDQUFDLEtBQUssQ0FqQk4sT0FBTztJQWtCbEIsYUFBYSxFQWhCRCxHQUFHO0lBaUJmLGdCQUFnQixFQXRCWixPQUFPO0lBdUJYLE9BQU8sRUFBRSxDQUFDO0lBQ1YsVUFBVSxFQUFFLFVBQVU7SUFDdEIsVUFBVSxFQUFFLG9CQUFvQixHQW9GakM7SUF0R0gsQUFPRSxRQVBN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 */
.home-content-block .ss-single-selected {
  color: #fff;
  background: transparent;
  border-bottom: 1px solid #fff;
  border-radius: 0px;
  padding-left: 0;
}
.home-content-block .ss-main .ss-single-selected .ss-arrow span {
  border-color: #fff;
}
.tns-outer {
  padding: 0 !important;
}
.tns-outer [hidden] {
  display: none !important;
}
.tns-outer [aria-controls],
.tns-outer [data-action] {
  cursor: pointer;
}
.tns-outer.ms-touch {
  overflow-x: scroll;
  overflow-y: hidden;
  -ms-overflow-style: none;
  -ms-scroll-chaining: none;
  -ms-scroll-snap-type: mandatory;
  -ms-scroll-snap-points-x: snapInterval(0%, 100%);
}
.tns-slider {
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  transition: all 0s;
}
.tns-slider > .tns-item {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.tns-horizontal.tns-subpixel {
  white-space: nowrap;
}
.tns-horizontal.tns-subpixel > .tns-item {
  display: inline-block;
  vertical-align: top;
  white-space: normal;
}
.tns-horizontal.tns-no-subpixel:after {
  content: '';
  display: table;
  clear: both;
}
.tns-horizontal.tns-no-subpixel > .tns-item {
  float: left;
  margin-right: -100%;
}
.tns-no-calc {
  position: relative;
  left: 0;
}
.tns-gallery {
  position: relative;
  left: 0;
  min-height: 1px;
}
.tns-gallery > .tns-item {
  position: absolute;
  left: -100%;
  -webkit-transition: transform 0s, opacity 0s;
  -moz-transition: transform 0s, opacity 0s;
  transition: transform 0s, opacity 0s;
}
.tns-gallery > .tns-moving {
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  transition: all 0.25s;
}
.tns-lazy-img {
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  transition: opacity 0.6s;
  opacity: 0.6;
}
.tns-lazy-img.loaded {
  opacity: 1;
}
.tns-ah {
  -webkit-transition: height 0s;
  -moz-transition: height 0s;
  transition: height 0s;
}
.tns-ovh {
  overflow: hidden;
}
.tns-hdx {
  overflow-x: hidden;
}
.tns-hdy {
  overflow-y: hidden;
}
.tns-visually-hidden {
  position: absolute;
  left: -10000em;
}
.tns-transparent {
  opacity: 0;
  visibility: hidden;
}
.tns-fadeIn {
  opacity: 1;
  filter: alpha(opacity=100);
  z-index: 0;
}
.tns-normal,
.tns-fadeOut {
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: -1;
}
/*# sourceMappingURL=sourcemaps/tiny-slider.css.map */
/*
Meijburg sliders
 */
.vertical-slider-wrapper {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
}
.vertical-slider-wrapper .tns-outer .tns-controls button {
  position: absolute;
  width: 55px;
  height: 55px;
  color: #004E98;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  border-radius: 55px;
  background: #fff;
  border: 0;
}
.vertical-slider-wrapper .tns-outer .tns-controls button:after {
  content: "";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  position: relative;
  font-size: 30px;
}
.vertical-slider-wrapper .tns-outer .tns-controls button[data-controls='prev'] {
  top: 0px;
}
.vertical-slider-wrapper .tns-outer .tns-controls button[data-controls='prev']:after {
  content: "\f106";
}
.vertical-slider-wrapper .tns-outer .tns-controls button[data-controls='next'] {
  bottom: 0px;
}
.vertical-slider-wrapper .tns-outer .tns-controls button[data-controls='next']:after {
  content: "\f107";
}
.vertical-slider-wrapper .tns-outer .tns-controls button[disabled] {
  color: #98cdff;
  cursor: not-allowed;
}
#breadcrumbs {
  color: #004E98;
}
#breadcrumbs span > span > span i {
  margin: 0 15px;
}
.history-btn {
  padding-top: 0;
  padding-bottom: 0;
}
.history-btn.btn.btn-angle-before-right:after {
  top: -1px;
}
.social-sharing.ss-social-sharing a {
  display: inline-block;
  text-indent: -9999px;
  width: 25px;
  height: 25px;
  border-radius: 30px;
  background: #004E98;
  margin: 0px 10px;
  cursor: pointer;
  text-align: center;
}
.social-sharing.ss-social-sharing a:before {
  color: #fff;
  content: "";
  float: left;
  /* or display:block */
  text-indent: 0;
  content: "\f000";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  position: relative;
  font-size: 16px;
}
.social-sharing.ss-social-sharing a.ss-button-facebook:before {
  content: "\f09a";
  left: 8px;
}
.social-sharing.ss-social-sharing a.ss-button-twitter:before {
  content: "\f099";
  left: 6px;
}
.social-sharing.ss-social-sharing a.ss-button-linkedin:before {
  left: 6px;
  content: "\f0e1";
}
.social-sharing.ss-social-sharing a:hover,
.social-sharing.ss-social-sharing a:active,
.social-sharing.ss-social-sharing a:focus {
  text-decoration: none;
  color: #004E98;
}
.modal-backdrop {
  background: #fff;
}
.vacancy-modal .modal-dialog {
  height: 900px;
}
.vacancy-modal .modal-content {
  border: 0;
  width: 100%;
  height:  900px; /* Increase height to accommodate the shift */
  overflow: hidden; /* This will clip the content that overflows the container */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vacancy-modal .modal-header {
  height: 900px;
  width: 90%;
  padding: 0;
  border: 0;
}
.vacancy-modal .modal-header .modal-iframe {
  height: 900px;
}

.vacancy-modal .modal-header .modal-iframe iframe {
  width: 100%;
  height: 110%;
  margin-top: -200px; /* Adjust this value to hide the header */
}

.modal-header .darkpurple-bg {
  padding: 30px 30px;
}
.social-wall .ff-filter-holder .ff-filter {
  background: #004E98 !important;
}
.social-wall .ff-filter-holder .ff-filter.ff-filter--active {
  background: #17A3A1 !important;
}
.social-wall .ff-filter-holder .ff-search:after {
  color: #004E98 !important;
}
.social-wall .ff-filter-holder .ff-search input {
  color: #b6bce8;
  border-color: #004E98 !important;
}
.social-wall .ff-filter-holder .ff-search input::placeholder {
  color: #b6bce8;
}
.social-wall .ff-stream {
  min-height: unset!important;
}
.social-wall .ff-stream .ff-item .ff-content:first-child {
  margin-top: 30px;
}
.social-wall .ff-stream .ff-item .ff-item-bar {
  display: none;
}
.social-wall .ff-stream .ff-item .picture-item__inner {
  box-shadow: none!important;
}
.social-wall .ff-stream .ff-item.ff-instagram .ff-content {
  display: none;
}
.social-wall .ff-stream .ff-item.ff-instagram .ff-item-cont .ff-img-holder {
  height: 100%!important;
}
.social-wall .ff-stream .ff-item.ff-instagram .ff-item-cont .ff-label-wrapper {
  top: 15px;
  right: 15px;
}
.social-wall .ff-stream .ff-item.ff-instagram .ff-item-cont .ff-label-wrapper .ff-icon {
  width: 20px;
  height: 20px;
}
.social-wall .ff-stream .ff-item.ff-instagram .ff-item-cont .ff-label-wrapper .ff-icon:before {
  border-color: unset;
  border-width: 0;
  border-radius: 5px;
}
.social-wall .ff-stream .ff-item.ff-instagram .ff-item-cont .ff-label-wrapper .ff-icon .ff-icon-inner {
  right: 2px;
  line-height: 22px;
  font-size: 22px;
}
.social-wall .ff-stream .ff-item.ff-facebook .ff-content {
  color: #004E98;
  font-family: 'Universe';
}
.social-wall .ff-stream .ff-item.ff-facebook .ff-item-cont h4 {
  height: auto!important;
}
.social-wall .ff-stream .ff-item.ff-facebook .ff-item-cont h4:first-child {
  margin-top: 30px;
}
.social-wall .ff-stream .ff-item.ff-facebook .ff-item-cont h4 a {
  font-family: 'KPMG Web';
  font-weight: normal;
  font-size: 54px;
  line-height: 40px;
  color: #004E98 !important;
}
.social-wall .ff-stream .ff-item.ff-facebook .ff-item-cont .ff-img-holder {
  display: none;
}
.social-wall .ff-stream .ff-item.ff-facebook .ff-item-cont .ff-label-wrapper {
  top: unset;
  bottom: 15px;
  left: 30px;
}
.social-wall .ff-stream .ff-item.ff-facebook .ff-item-cont .ff-label-wrapper .ff-icon {
  width: 20px;
  height: 20px;
}
.social-wall .ff-stream .ff-item.ff-facebook .ff-item-cont .ff-label-wrapper .ff-icon:before {
  border-color: #004E98;
  border-width: 0 24px 24px 0;
  border-radius: 5px;
}
.social-wall .ff-stream .ff-item.ff-facebook .ff-item-cont .ff-label-wrapper .ff-icon .ff-icon-inner {
  right: -2px;
  line-height: 22px;
}
.ff-loadmore-wrapper .ff-btn {
  border-radius: 30px!important;
  padding: 9.5px 50px !important;
  text-transform: unset!important;
  position: relative;
  color: white;
  background-color: #00AFA8 !important;
  border-color: #00AFA8;
}
.ff-loadmore-wrapper .ff-btn:after {
  font-family: "FontAwesome";
  content: "\f105";
  position: absolute;
  right: 15px;
  top: 7px;
  -webkit-transition: all 0.3s 0s ease-in-out;
  transition: all 0.3s 0s ease-in-out;
}
.ff-loadmore-wrapper .ff-btn:hover,
.ff-loadmore-wrapper .ff-btn:active,
.ff-loadmore-wrapper .ff-btn:focus {
  color: inherit;
}
.ff-loadmore-wrapper .ff-btn:hover:after,
.ff-loadmore-wrapper .ff-btn:active:after,
.ff-loadmore-wrapper .ff-btn:focus:after {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}
.ff-loadmore-wrapper .ff-btn:hover,
.ff-loadmore-wrapper .ff-btn:active,
.ff-loadmore-wrapper .ff-btn:focus {
  color: white!important;
  background-color: #008983 !important;
}
#homepage .ff-loadmore-wrapper {
  display: none;
}
@media (min-width: 576px) and (max-width: 1199px) {
  .footer-bottom .legal-menu li {
    display: block;
    text-align: left;
  }
}
.footer-bottom .legal-menu li .footer-nav-link {
  padding: 0 21px;
  position: relative;
}
@media (min-width: 576px) and (max-width: 1199px) {
  .footer-bottom .legal-menu li .footer-nav-link {
    padding: 0;
  }
}
.footer-bottom .legal-menu li .footer-nav-link::after {
  content: '\f111';
  position: absolute;
  display: inline-block;
  right: 0;
  font-family: FontAwesome;
  font-size: 6px;
  line-height: 20px;
}
@media (min-width: 576px) and (max-width: 1199px) {
  .footer-bottom .legal-menu li .footer-nav-link::after {
    display: none;
  }
}
.footer-bottom .legal-menu li:last-child .footer-nav-link::after {
  display: none;
}
#event-detail-form .em-booking-form .em-booking-section-title {
  display: none;
}
@media (min-width: 576px) {
  #eventDetail #myModal .modal-dialog {
    max-width: 600px;
  }
}
@media (min-width: 1200px) {
  #eventDetail #myModal .modal-dialog {
    max-width: 700px;
  }
}
/*# sourceMappingURL=style.css.map */