/*-------------- Imports -------------*/
@import "import/bootstrap/bootstrap.css";
/*COLOR SCHEME*/
/*==============================
 =            mixins            =
 ==============================*/
@import "import/icomoon_standard/style.css";
@import "import/icomoon/style.css";
@charset "UTF-8";
.flexible-inner-section.has-padding.white-theme
  + .flexible-inner-section.has-padding.white-theme {
  padding-top: 0px;
}
.flexible-inner-section.has-padding.gray-theme
  + .flexible-inner-section.has-padding.gray-theme {
  padding-top: 0px;
}
.flexible-inner-section.has-padding.lightgrey-theme
  + .flexible-inner-section.has-padding.lightgrey-theme {
  padding-top: 0px;
}
.flexible-inner-section.has-padding.black-theme
  + .flexible-inner-section.has-padding.black-theme {
  padding-top: 0px;
}
.flexible-inner-section.has-padding.lightblue-theme
  + .flexible-inner-section.has-padding.lightblue-theme {
  padding-top: 0px;
}
.flexible-inner-section.has-padding.darkblue-theme
  + .flexible-inner-section.has-padding.darkblue-theme {
  padding-top: 0px;
}
/*----------- Cross -----------*/
/*----------- Arrows for links -----------*/
/*----------- Img filter -----------*/
/*----------- Button style -----------*/
/*----------  Theme colors  ----------*/
/*----------  content color  ----------*/
/*----------  clearfix  ----------*/
/*----------  Background cover  ----------*/
/*----------  Col classes  ----------*/
/*----------  animation duration and delay  ----------*/
/*----------  Easy media query  ----------*/
/*----------- Woocommerce archive grid -----------*/
/*----------  input placeholders  ----------*/
/*----------- Selection pseudo selector -----------*/
/*----------  Center absolute  ----------*/
/*----------  text truncate / ellipses after text  ----------*/
/*===================================
 =            Burger sass            =
 ===================================*/
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 1;
}
.hamburger-box {
  width: 18px;
  height: 13px;
  display: inline-block;
  position: relative;
}
.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -0.5px;
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 18px;
  height: 1px;
  background-color: currentColor;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -6px;
}
.hamburger-inner::after {
  bottom: -6px;
}
/*
 * 3DX
 */
.hamburger--3dx .hamburger-box {
  perspective: 36px;
}
.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
    background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx .hamburger-inner::before,
.hamburger--3dx .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
html.slide-opened .hamburger--3dx .hamburger-inner {
  background-color: transparent;
  transform: rotateY(180deg);
}
html.slide-opened .hamburger--3dx .hamburger-inner::before {
  transform: translate3d(0, 6px, 0) rotate(45deg);
}
html.slide-opened .hamburger--3dx .hamburger-inner::after {
  transform: translate3d(0, -6px, 0) rotate(-45deg);
}
/*
 * Spring
 */
.hamburger--spring .hamburger-inner {
  top: 0.5px;
  transition: background-color 0s 0.13s linear;
}
.hamburger--spring .hamburger-inner::before {
  top: 6px;
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring .hamburger-inner::after {
  top: 12px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
html.slide-opened .hamburger--spring .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent;
}
html.slide-opened .hamburger--spring .hamburger-inner::before {
  top: 0;
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 6px, 0) rotate(45deg);
}
html.slide-opened .hamburger--spring .hamburger-inner::after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 6px, 0) rotate(-45deg);
}
/*-Tablet (Orientation: portrait) 768px-*/
@media screen and (max-width: 768px) {
  .main-navigation .menu-toggle {
    display: block !important;
  }
  .menu-toggle {
    line-height: 0;
  }
  .menu-toggle:before {
    content: none !important;
  }
  [class*="nav-float-"] .site-header .inside-header > * {
    float: none;
    clear: both;
  }
}
.animated {
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
/*----------- Fade in -----------*/
[data-animation="fadeIn"] {
  opacity: 0;
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*----------- Fade in down -----------*/
[data-animation="fadeInDown"] {
  opacity: 0;
  -webkit-transform: translate3d(0, -30px, 0);
  transform: translate3d(0, 30px, 0);
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/*----------- Fade in up -----------*/
[data-animation="fadeInUp"] {
  opacity: 0;
  -webkit-transform: translate3d(0, 30px, 0);
  transform: translate3d(0, 30px, 0);
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/*----------- Fade in right -----------*/
[data-animation="fadeInRight"] {
  opacity: 0;
  -webkit-transform: translate3d(-30px, 0, 0);
  transform: translate3d(-30px, 0, 0);
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-30px, 0, 0);
    transform: translate3d(-30px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-30px, 0, 0);
    transform: translate3d(-30px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/*----------- Fade in left -----------*/
[data-animation="fadeInLeft"] {
  opacity: 0;
  -webkit-transform: translate3d(30px, 0, 0);
  transform: translate3d(30px, 0, 0);
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(30px, 0, 0);
    transform: translate3d(30px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(30px, 0, 0);
    transform: translate3d(30px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bbh-loader {
  text-align: center;
  display: block;
  margin: 40px auto;
  display: none;
}
.bbh-loader .spinner {
  width: 60px;
  height: 60px;
  display: inline-block;
  box-sizing: border-box;
  position: relative;
}
.bbh-loader .spinner.round::before {
  border-radius: 50%;
  content: " ";
  width: 60px;
  height: 60px;
  display: inline-block;
  box-sizing: border-box;
  border-top: solid 7.5px #f7f7f7;
  border-right: solid 7.5px #f7f7f7;
  border-bottom: solid 7.5px #f7f7f7;
  border-left: solid 7.5px #f7f7f7;
  position: absolute;
  top: 0;
  left: 0;
}
.bbh-loader .spinner.round::after {
  border-radius: 50%;
  content: " ";
  width: 60px;
  height: 60px;
  display: inline-block;
  box-sizing: border-box;
  border-top: solid 7.5px #0067b6;
  border-right: solid 7.5px transparent;
  border-bottom: solid 7.5px transparent;
  border-left: solid 7.5px transparent;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: round-animate 1s ease-in-out infinite;
  animation: round-animate 1s ease-in-out infinite;
}
@-webkit-keyframes round-animate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes round-animate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*=============================================
 = Flex rows =
 ===============================================*/
.flex-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flex-row.ai-top {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.flex-row.ai-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.flex-row.ai-bottom {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.flex-row.ai-stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.flex-row.jc-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.flex-row.jc-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.flex-row.jc-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.flex-row.jc-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.flex-row.jc-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-row.jc-stretch {
  -webkit-box-pack: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
}
.flex-row.jc-stretch > * {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.flex-row.wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
/*=============================================
 = Buttons =
 ===============================================*/
.btn {
  display: inline-block;
  border: 1px solid;
  font-weight: bold;
  font-size: 14px;
  padding: 15px 25px;
  opacity: 1;
  border-radius: 10px;
  background-color: #0067b6;
  color: #fefefe;
  border-color: #0067b6;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  text-align: center;
  min-width: 100px;
  box-sizing: border-box;
}
.btn:hover {
  background-color: transparent;
  color: #0067b6;
}
.btn.blue {
  background-color: #0067b6;
  color: #fefefe;
  border-color: #0067b6;
}
.btn.blue:hover,
.btn.blue:focus,
.btn.blue:active {
  background-color: transparent;
  color: #0067b6;
}
.btn.white {
  background-color: #fefefe;
  color: #0067b6;
  border-color: #0067b6;
}
.btn.white:hover,
.btn.white:focus,
.btn.white:active {
  background-color: #0067b6;
  color: #fefefe;
}
.btn.transparent {
  background-color: transparent;
  color: #0067b6;
  border-color: #0067b6;
}
.btn.transparent:hover,
.btn.transparent:focus,
.btn.transparent:active {
  background-color: #0067b6;
  color: #fefefe;
}
.arrow-after::after {
  content: "\e904";
  font-family: "icomoon";
  display: inline-block;
  margin-left: 0.5em;
  font-size: 0.7em;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
  font-weight: normal;
  vertical-align: baseline;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.arrow-after:hover::after {
  -webkit-transform: translateX(3px);
  transform: translateX(3px);
}
.arrow-before::before {
  content: "\e904";
  font-family: "icomoon";
  display: inline-block;
  margin-right: 0.5em;
  font-size: 0.7em;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
  font-weight: normal;
  vertical-align: baseline;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.arrow-before:hover::before {
  -webkit-transform: translateX(3px);
  transform: translateX(3px);
}
/*========================================
 =                404 page                =
 ========================================*/
/*-------------- 404 -------------*/
.error404 #primary {
  padding-top: 150px;
  padding-bottom: 150px;
  text-align: center;
}
/*-------------- 404 btn -------------*/
body .btn-404 {
  display: inline-block;
  border: 1px solid;
  font-weight: bold;
  font-size: 14px;
  padding: 15px 25px;
  opacity: 1;
  border-radius: 10px;
  background-color: #0067b6;
  color: #fefefe;
  border-color: #0067b6;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  text-align: center;
  min-width: 100px;
  box-sizing: border-box;
  color: #fefefe !important;
  margin-top: 50px;
}
body .btn-404:hover {
  background-color: transparent;
  color: #0067b6;
}
body .btn-404:hover {
  color: #0067b6 !important;
}
body.page-template-default.page #page {
  max-width: 100%;
  width: 100%;
}
body.page-template-default.page #page #content {
  padding: 0px !important;
}
body.single-post #page,
body.single-projects #page {
  background-color: #f7f7f7;
  width: 100%;
  max-width: 100%;
}
body.single-post #content,
body.single-projects #content {
  padding: 0px;
}
/*=============================================
 = cookie modal =
 ===============================================*/
body .bbh_gdpr_cookie_modal_open {
  z-index: 9999999;
}
body
  .bbh_gdpr_cookie_modal_open
  #bbh_gdpr_cookie_modal
  .bbh-gdpr-modal-content
  .bbh-gdpr-modal-left-content
  #bbh-gdpr-menu
  li
  button,
body
  .bbh_gdpr_cookie_modal_open
  #bbh_gdpr_cookie_modal
  .bbh-gdpr-modal-content
  .bbh-gdpr-modal-left-content
  #bbh-gdpr-menu
  li
  button
  i {
  color: #8cacbf !important;
  background-color: #fefefe !important;
  transition: 300ms ease;
}
body
  .bbh_gdpr_cookie_modal_open
  #bbh_gdpr_cookie_modal
  .bbh-gdpr-modal-content
  .bbh-gdpr-modal-left-content
  #bbh-gdpr-menu
  li.menu-item-selected
  a,
body
  .bbh_gdpr_cookie_modal_open
  #bbh_gdpr_cookie_modal
  .bbh-gdpr-modal-content
  .bbh-gdpr-modal-left-content
  #bbh-gdpr-menu
  li.menu-item-selected
  button,
body
  .bbh_gdpr_cookie_modal_open
  #bbh_gdpr_cookie_modal
  .bbh-gdpr-modal-content
  .bbh-gdpr-modal-left-content
  #bbh-gdpr-menu
  li.menu-item-selected
  a
  i,
body
  .bbh_gdpr_cookie_modal_open
  #bbh_gdpr_cookie_modal
  .bbh-gdpr-modal-content
  .bbh-gdpr-modal-left-content
  #bbh-gdpr-menu
  li.menu-item-selected
  button
  i {
  color: #0067b6 !important;
  background-color: #f1f1f1 !important;
}
body #bbh_gdpr_cookie_info_bar {
  font-family: inherit !important;
}
body
  #bbh_gdpr_cookie_info_bar
  .bbh-gdpr-info-bar-container
  .bbh-gdpr-cookie-notice
  p {
  font-size: 13px !important;
  font-weight: normal !important;
}
body
  #bbh_gdpr_cookie_info_bar
  .bbh-gdpr-info-bar-container
  .bbh-gdpr-cookie-notice
  p
  a,
body
  #bbh_gdpr_cookie_info_bar
  .bbh-gdpr-info-bar-container
  .bbh-gdpr-cookie-notice
  p
  .change-settings-button {
  font-weight: bold !important;
}
body
  #bbh_gdpr_cookie_info_bar
  .bbh-gdpr-info-bar-container
  .bbh-gdpr-info-bar-content
  button.mgbutton {
  display: inline-block;
  border: 1px solid;
  font-weight: bold;
  font-size: 14px;
  padding: 15px 25px;
  opacity: 1;
  border-radius: 10px;
  background-color: #0067b6;
  color: #fefefe;
  border-color: #0067b6;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  text-align: center;
  min-width: 100px;
  box-sizing: border-box;
  background-repeat: 5px !important;
  border: 1px solid #0067b6 !important;
  background-color: #0067b6 !important;
  color: #fefefe !important;
  padding: 10px 25px !important;
  border-radius: 10px !important;
}
body
  #bbh_gdpr_cookie_info_bar
  .bbh-gdpr-info-bar-container
  .bbh-gdpr-info-bar-content
  button.mgbutton:hover {
  background-color: transparent;
  color: #0067b6;
}
body
  #bbh_gdpr_cookie_info_bar
  .bbh-gdpr-info-bar-container
  .bbh-gdpr-info-bar-content
  button.mgbutton:hover {
  background-color: #fefefe !important;
  color: #0067b6 !important;
}
.content > a {
  font-weight: bold;
}
.gform_wrapper ul {
  list-style: none;
  margin: 0 0 1.5em 0;
}
.gform_wrapper .gform_fields {
  margin-left: -7px;
  margin-right: -7px;
}
.gform_wrapper .gfield {
  margin-bottom: 15px;
  padding-left: 7px;
  padding-right: 7px;
}
.gform_wrapper .gfield.hidden_label .gfield_label {
  display: none;
}
.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="url"],
.gform_wrapper input[type="password"],
.gform_wrapper input[type="search"],
.gform_wrapper input[type="tel"],
.gform_wrapper input[type="number"],
.gform_wrapper textarea,
.gform_wrapper select {
  border: 1px solid #000000;
  width: 100%;
}
.gform_wrapper input[type="text"]:focus,
.gform_wrapper input[type="email"]:focus,
.gform_wrapper input[type="url"]:focus,
.gform_wrapper input[type="password"]:focus,
.gform_wrapper input[type="search"]:focus,
.gform_wrapper input[type="tel"]:focus,
.gform_wrapper input[type="number"]:focus,
.gform_wrapper textarea:focus,
.gform_wrapper select:focus {
  border-color: #000000;
}
.gform_wrapper input[type="text"].placeholder,
.gform_wrapper input[type="email"].placeholder,
.gform_wrapper input[type="url"].placeholder,
.gform_wrapper input[type="password"].placeholder,
.gform_wrapper input[type="search"].placeholder,
.gform_wrapper input[type="tel"].placeholder,
.gform_wrapper input[type="number"].placeholder,
.gform_wrapper textarea.placeholder,
.gform_wrapper select.placeholder {
  color: rgba(0, 0, 0, 0.8);
}
.gform_wrapper input[type="text"]:-moz-placeholder,
.gform_wrapper input[type="email"]:-moz-placeholder,
.gform_wrapper input[type="url"]:-moz-placeholder,
.gform_wrapper input[type="password"]:-moz-placeholder,
.gform_wrapper input[type="search"]:-moz-placeholder,
.gform_wrapper input[type="tel"]:-moz-placeholder,
.gform_wrapper input[type="number"]:-moz-placeholder,
.gform_wrapper textarea:-moz-placeholder,
.gform_wrapper select:-moz-placeholder {
  color: rgba(0, 0, 0, 0.8);
}
.gform_wrapper input[type="text"]::-moz-placeholder,
.gform_wrapper input[type="email"]::-moz-placeholder,
.gform_wrapper input[type="url"]::-moz-placeholder,
.gform_wrapper input[type="password"]::-moz-placeholder,
.gform_wrapper input[type="search"]::-moz-placeholder,
.gform_wrapper input[type="tel"]::-moz-placeholder,
.gform_wrapper input[type="number"]::-moz-placeholder,
.gform_wrapper textarea::-moz-placeholder,
.gform_wrapper select::-moz-placeholder {
  color: rgba(0, 0, 0, 0.8);
}
.gform_wrapper input[type="text"]:-ms-input-placeholder,
.gform_wrapper input[type="email"]:-ms-input-placeholder,
.gform_wrapper input[type="url"]:-ms-input-placeholder,
.gform_wrapper input[type="password"]:-ms-input-placeholder,
.gform_wrapper input[type="search"]:-ms-input-placeholder,
.gform_wrapper input[type="tel"]:-ms-input-placeholder,
.gform_wrapper input[type="number"]:-ms-input-placeholder,
.gform_wrapper textarea:-ms-input-placeholder,
.gform_wrapper select:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.8);
}
.gform_wrapper input[type="text"]::-ms-input-placeholder,
.gform_wrapper input[type="email"]::-ms-input-placeholder,
.gform_wrapper input[type="url"]::-ms-input-placeholder,
.gform_wrapper input[type="password"]::-ms-input-placeholder,
.gform_wrapper input[type="search"]::-ms-input-placeholder,
.gform_wrapper input[type="tel"]::-ms-input-placeholder,
.gform_wrapper input[type="number"]::-ms-input-placeholder,
.gform_wrapper textarea::-ms-input-placeholder,
.gform_wrapper select::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.8);
}
.gform_wrapper input[type="text"]::-webkit-input-placeholder,
.gform_wrapper input[type="email"]::-webkit-input-placeholder,
.gform_wrapper input[type="url"]::-webkit-input-placeholder,
.gform_wrapper input[type="password"]::-webkit-input-placeholder,
.gform_wrapper input[type="search"]::-webkit-input-placeholder,
.gform_wrapper input[type="tel"]::-webkit-input-placeholder,
.gform_wrapper input[type="number"]::-webkit-input-placeholder,
.gform_wrapper textarea::-webkit-input-placeholder,
.gform_wrapper select::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.8);
}
.gform_wrapper textarea {
  height: 100px;
}
.gform_wrapper .gform_validation_container,
.gform_wrapper .gform_wrapper .gform_validation_container,
.gform_wrapper
  body
  .gform_wrapper
  .gform_body
  ul.gform_fields
  li.gfield.gform_validation_container,
.gform_wrapper body .gform_wrapper li.gform_validation_container,
.gform_wrapper
  body
  .gform_wrapper
  ul.gform_fields
  li.gfield.gform_validation_container {
  display: none !important;
  position: absolute !important;
  left: -9000px;
}
.gform_wrapper .gfield_error .validation_message {
  font-size: 90%;
  color: #841e1e;
}
.gform_wrapper .validation_error {
  margin-bottom: 0.5em;
}
/*----------- Checkbox -----------*/
.ginput_container_consent input {
  position: absolute;
  left: -9999999px;
  opacity: 0;
  visibility: hidden;
}
.ginput_container_consent input:checked + label::before {
  content: "\e804";
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #0067b6;
  border-color: #0067b6;
}
.ginput_container_consent label::before {
  content: "";
  width: 2em;
  height: 2em;
  margin-right: 0.5em;
  border: 1px solid #000000;
  color: #fefefe;
  border-radius: 3px;
  display: inline-block;
  vertical-align: middle;
  font-size: 0.5em;
  text-align: center;
  line-height: 2em !important;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.risk-assessment .assessment-form {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-right: 40px;
  box-sizing: border-box;
  width: 60%;
}
.risk-assessment .assessment-form .question {
  display: block;
  margin-bottom: 2em;
}
.risk-assessment .assessment-form .question-label {
  font-weight: bold;
  display: block;
}
.risk-assessment .assessment-form .question-choice {
  display: inline-block;
  min-width: 80px;
}
.risk-assessment .assessment-form .question-choice:not(:last-child) {
  margin-right: 2em;
}
.risk-assessment .assessment-form .question-choice input[type="checkbox"] {
  position: absolute;
  left: -9999999px;
  opacity: 0;
  visibility: hidden;
}
.risk-assessment
  .assessment-form
  .question-choice
  input[type="checkbox"]:checked
  + .label-wrap::before {
  content: "\e804";
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #000000;
  border-color: #000000;
}
.risk-assessment .assessment-form .question-choice .label-wrap::before {
  content: "";
  width: 2em;
  height: 2em;
  margin-right: 0.5em;
  border: 1px solid #000000;
  color: #fefefe;
  border-radius: 3px;
  display: inline-block;
  vertical-align: middle;
  font-size: 0.5em;
  text-align: center;
  line-height: 2em !important;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.risk-assessment .assessment-form .question-choice input[type="radio"] {
  position: absolute;
  left: -9999999px;
  opacity: 0;
  visibility: hidden;
}
.risk-assessment
  .assessment-form
  .question-choice
  input[type="radio"]:checked
  + .label-wrap::before {
  content: "";
  background-color: #000000;
  border-color: #000000;
}
.risk-assessment .assessment-form .question-choice .label-wrap::before {
  content: "";
  width: 0.9em;
  height: 0.9em;
  margin-right: 1em;
  border: 1px solid #000000;
  color: #fefefe;
  border-radius: 100%;
  display: inline-block;
  vertical-align: middle;
  font-size: 0.5em;
  text-align: center;
  line-height: 2em !important;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.risk-assessment .assessment-form button[type="submit"] {
  display: inline-block;
  border: 1px solid;
  font-weight: bold;
  font-size: 14px;
  padding: 15px 25px;
  opacity: 1;
  border-radius: 10px;
  background-color: #0067b6;
  color: #fefefe;
  border-color: #0067b6;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  text-align: center;
  min-width: 100px;
  box-sizing: border-box;
}
.risk-assessment .assessment-form button[type="submit"]:hover {
  background-color: transparent;
  color: #0067b6;
}
.risk-assessment .assessment-form button[type="submit"].blue {
  background-color: #0067b6;
  color: #fefefe;
  border-color: #0067b6;
}
.risk-assessment .assessment-form button[type="submit"].blue:hover,
.risk-assessment .assessment-form button[type="submit"].blue:focus,
.risk-assessment .assessment-form button[type="submit"].blue:active {
  background-color: transparent;
  color: #0067b6;
}
.risk-assessment .assessment-form button[type="submit"].white {
  background-color: #fefefe;
  color: #0067b6;
  border-color: #0067b6;
}
.risk-assessment .assessment-form button[type="submit"].white:hover,
.risk-assessment .assessment-form button[type="submit"].white:focus,
.risk-assessment .assessment-form button[type="submit"].white:active {
  background-color: #0067b6;
  color: #fefefe;
}
.risk-assessment .assessment-form button[type="submit"].transparent {
  background-color: transparent;
  color: #0067b6;
  border-color: #0067b6;
}
.risk-assessment .assessment-form button[type="submit"].transparent:hover,
.risk-assessment .assessment-form button[type="submit"].transparent:focus,
.risk-assessment .assessment-form button[type="submit"].transparent:active {
  background-color: #0067b6;
  color: #fefefe;
}
.risk-assessment .assessment-form .label-wrap {
  display: inline-block;
}
.risk-assessment .visualizer {
  margin-bottom: 80px;
}
.risk-assessment .answer-messages .answer {
  padding: 60px;
  position: relative;
}
.risk-assessment .answer-messages .answer.default {
  background-color: #d0e1eb;
}
.risk-assessment .answer-messages .answer.default::before {
  border-bottom-color: #d0e1eb;
}
.risk-assessment .answer-messages .answer.low {
  background-color: #247f61;
  color: #fefefe;
}
.risk-assessment .answer-messages .answer.low::before {
  border-bottom-color: #247f61;
}
.risk-assessment .answer-messages .answer.med {
  background-color: #efc65e;
}
.risk-assessment .answer-messages .answer.med::before {
  border-bottom-color: #efc65e;
}
.risk-assessment .answer-messages .answer.high {
  background-color: #841e1e;
  color: #fefefe;
}
.risk-assessment .answer-messages .answer.high::before {
  border-bottom-color: #841e1e;
}
.risk-assessment .answer-messages .answer::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  display: block;
  width: 0px;
  height: 0px;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 25px solid;
  -webkit-transform: translate(-50%, 1px);
  transform: translate(-50%, 1px);
}
.risk-assessment .answer-messages .answer :last-child {
  margin-bottom: 0px;
}
.risk-assessment .assessment-answer {
  width: 40%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}
.risk-assessment .assessment-answer .visualizer {
  position: relative;
}
.risk-assessment .assessment-answer .scale-box {
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding-bottom: 56.25%;
  background-position: center bottom;
}
.risk-assessment .assessment-answer .scale-pin {
  position: absolute;
  left: 50%;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  height: 70%;
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  transition: -webkit-transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1),
    -webkit-transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}
.search-container .search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 60px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.search-container .selectbox {
  margin: 0px 10px 10px 0px;
  min-width: 200px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  position: relative;
  z-index: 4;
}
.search-container .selectbox.open .select-children {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
}
.search-container .selectbox label {
  vertical-align: middle;
  width: 100%;
  display: block;
  padding: 5px 10px;
  box-sizing: border-box;
  cursor: pointer;
}
.search-container .selectbox label::-moz-selection {
  background-color: transparent !important;
}
.search-container .selectbox label::selection {
  background-color: transparent !important;
}
.search-container .selectbox label::-moz-selection {
  background-color: transparent !important;
}
.search-container .selectbox input[type="checkbox"] {
  position: absolute;
  left: -9999999%;
  opacity: 0;
  visibility: hidden;
}
.search-container .selectbox input[type="checkbox"] + label::before {
  content: "";
  width: 2em;
  height: 2em;
  margin-right: 0.5em;
  border: 1px solid #0067b6;
  color: #fefefe;
  border-radius: 3px;
  display: inline-block;
  vertical-align: middle;
  font-size: 0.5em;
  text-align: center;
  line-height: 2em !important;
  -webkit-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: background, border-color;
}
.search-container .selectbox input[type="checkbox"]:checked + label::before {
  content: "\e804";
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #0067b6;
  border-color: #0067b6;
}
.search-container .selectbox .selected {
  padding: 12px 28px 12px 19px;
  border-radius: 10px;
  display: inline-block;
  border: 1px solid #0067b6;
  background-color: #fefefe;
  position: relative;
  z-index: 5;
  box-sizing: border-box;
  width: 100%;
}
.search-container .selectbox .selected::-moz-selection {
  background-color: transparent !important;
}
.search-container .selectbox .selected::selection {
  background-color: transparent !important;
}
.search-container .selectbox .selected::-moz-selection {
  background-color: transparent !important;
}
.search-container .selectbox .select-children {
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0;
  background-color: #fefefe;
  pointer-events: none;
  opacity: 0;
  z-index: 3;
  -webkit-transform: translateY(-40px);
  transform: translateY(-40px);
  padding-top: 20px;
  padding-bottom: 10px;
  border: 1px solid #0067b6;
  border-radius: 0px 0px 10px 10px;
  box-sizing: border-box;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.search-container .selectbox .dropdown-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  z-index: 7;
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
  display: inline-block;
  font-size: 10px;
}
.search-container .submitbox {
  margin: 0px 10px;
}
.search-container .submitbox .send {
  padding: 12px 20px;
}
.search-container .results {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -2px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.search-container .results .not-found {
  text-align: center;
  font-size: 22px;
}
.employee-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
  width: 20%;
  border-left: 2px solid transparent;
  border-bottom: 2px solid transparent;
  box-sizing: border-box;
}
.employee-card .base-card {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-color: #fefefe;
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  width: 100%;
}
.employee-card .base-card.lazyloaded {
  opacity: 1;
}
.employee-card .base-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: transparent -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(rgba(254, 254, 254, 0)),
      to(#d0e1eb)
    ) 0% 0% no-repeat padding-box;
  background: transparent -webkit-linear-gradient(
      top,
      rgba(254, 254, 254, 0) 0%,
      #d0e1eb 100%
    ) 0% 0% no-repeat padding-box;
  background: transparent
    linear-gradient(180deg, rgba(254, 254, 254, 0) 0%, #d0e1eb 100%) 0% 0%
    no-repeat padding-box;
}
.open.employee-card .base-card .content-wrap {
  opacity: 0;
}
.employee-card .base-card .content-wrap {
  position: relative;
  z-index: 2;
  padding: 20px;
  padding-top: 160%;
  box-sizing: border-box;
  width: 100%;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.employee-card .base-card .card-trigger {
  display: inline-block;
  cursor: pointer;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 30px;
  height: 30px;
  margin-bottom: 15px;
}
.employee-card .base-card .card-trigger {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  opacity: 1;
}
.employee-card .base-card .card-trigger:before,
.employee-card .base-card .card-trigger:after {
  position: absolute;
  left: 14px;
  content: " ";
  height: 31px;
  width: 2px;
  background-color: currentColor;
  border-radius: 10px;
}
.employee-card .base-card .card-trigger:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.employee-card .base-card .card-trigger:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.employee-card .base-card .name {
  margin-bottom: 0px;
  font-size: 14px;
  font-weight: bold;
}
.employee-card .base-card .desc {
  font-size: 14px;
  margin-bottom: 0px;
}
.employee-card .hover-card {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  background-color: rgba(208, 225, 235, 0.9);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  z-index: 3;
  padding: 30px;
  box-sizing: border-box;
}
.open.employee-card .hover-card {
  opacity: 1;
  pointer-events: auto;
}
.employee-card .hover-card .content-wrap {
  text-align: left;
}
.employee-card .hover-card .name {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 0.5em;
}
.employee-card .hover-card .desc {
  font-size: 16px;
}
.employee-card .hover-card .phone,
.employee-card .hover-card .email {
  margin-bottom: 10px;
}
.employee-card .hover-card .phone a,
.employee-card .hover-card .email a {
  font-weight: 600;
}
.employee-card .hover-card .phone .icon,
.employee-card .hover-card .email .icon {
  vertical-align: middle;
  margin-right: 10px;
}
.employee-card .hover-card .close-trigger {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 30px;
  padding: 20px;
}
.employee-card .hover-card .close-trigger .cross {
  cursor: pointer;
}
.employee-card .hover-card .close-trigger .cross {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  opacity: 1;
}
.employee-card .hover-card .close-trigger .cross:before,
.employee-card .hover-card .close-trigger .cross:after {
  position: absolute;
  left: 14px;
  content: " ";
  height: 31px;
  width: 2px;
  background-color: currentColor;
  border-radius: 10px;
}
.employee-card .hover-card .close-trigger .cross:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.employee-card .hover-card .close-trigger .cross:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/*=============================================
 = employee popup =
 ===============================================*/
.employee-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(254, 254, 254, 0.9);
  width: 100%;
  height: 100%;
  display: block;
  z-index: 99998;
  cursor: pointer;
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: opacity 400ms ease-out 0ms,
    -webkit-transform 0ms linear 400ms;
  transition: opacity 400ms ease-out 0ms, -webkit-transform 0ms linear 400ms;
  transition: opacity 400ms ease-out 0ms, transform 0ms linear 400ms;
  transition: opacity 400ms ease-out 0ms, transform 0ms linear 400ms,
    -webkit-transform 0ms linear 400ms;
}
.employee-popup-overlay.open {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 0.4s ease-out;
  transition: opacity 0.4s ease-out;
}
.employee-popup-card {
  background-color: #d0e1eb;
  position: relative;
  width: 500px;
  position: fixed;
  z-index: 99999;
  top: 50%;
  left: 50%;
  cursor: auto;
  opacity: 0;
  -webkit-transform: scale(0) translate(-50%, -50%);
  transform: scale(0) translate(-50%, -50%);
  -webkit-transition: opacity 400ms ease-out 0ms,
    -webkit-transform 0ms linear 400ms;
  transition: opacity 400ms ease-out 0ms, -webkit-transform 0ms linear 400ms;
  transition: opacity 400ms ease-out 0ms, transform 0ms linear 400ms;
  transition: opacity 400ms ease-out 0ms, transform 0ms linear 400ms,
    -webkit-transform 0ms linear 400ms;
}
.employee-popup-card.open {
  opacity: 1;
  -webkit-transform: scale(1) translate(-50%, -50%);
  transform: scale(1) translate(-50%, -50%);
  -webkit-transition: opacity 0.4s ease-out;
  transition: opacity 0.4s ease-out;
}
.employee-popup-card .post-thumbnail {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  width: 50%;
  padding-bottom: 100%;
}
.employee-popup-card .card-content {
  padding: 45px;
  box-sizing: border-box;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.employee-popup-card .card-content .name {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 0.5em;
}
.employee-popup-card .card-content .desc {
  font-size: 16px;
}
.employee-popup-card .card-content .phone,
.employee-popup-card .card-content .email {
  margin-bottom: 10px;
}
.employee-popup-card .card-content .phone a,
.employee-popup-card .card-content .email a {
  font-weight: 600;
}
.employee-popup-card .card-content .phone .icon,
.employee-popup-card .card-content .email .icon {
  vertical-align: middle;
  margin-right: 10px;
}
.employee-popup-card .close-trigger {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  padding: 20px;
}
.employee-popup-card .close-trigger .cross {
  cursor: pointer;
}
.employee-popup-card .close-trigger .cross {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  opacity: 1;
}
.employee-popup-card .close-trigger .cross:before,
.employee-popup-card .close-trigger .cross:after {
  position: absolute;
  left: 14px;
  content: " ";
  height: 31px;
  width: 2px;
  background-color: currentColor;
  border-radius: 10px;
}
.employee-popup-card .close-trigger .cross:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.employee-popup-card .close-trigger .cross:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/*=============================================
 = Single event =
 ===============================================*/
body.single-events #page {
  max-width: 100%;
}
body.single-events #content {
  padding: 0px;
}
.events-single-content {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #e4edf2;
}
.events-single-content .title-area {
  margin-bottom: 40px;
}
.events-single-content .content {
  padding-right: 40px;
}
.events-single-content .content .post-content {
  max-width: 750px;
  width: 100%;
}
.events-single-content .content .event-date {
  margin-bottom: 0px;
}
.events-single-content .content .buttons {
  margin-top: 2.5em;
}
.events-single-content .meta {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  max-width: 100%;
  width: 280px;
  border-left: 3px solid #a5c3d5;
}
.events-single-content .meta .inside-meta {
  padding: 0px 30px;
}
.events-single-content .meta .stand,
.events-single-content .meta .address {
  margin-bottom: 0px;
}
.events-single-content .related-employees {
  margin-top: 0.5em;
}
.employee-reference-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.employee-reference-card:not(:last-child) {
  margin-bottom: 15px;
}
.employee-reference-card .employee-thumbnail {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 8px;
}
.employee-reference-card .employee-thumbnail .profile-image-wrap {
  overflow: hidden;
  position: relative;
  height: 55px;
  width: 55px;
  border-radius: 100%;
}
.employee-reference-card .employee-thumbnail .profile-image-wrap img {
  position: absolute;
  left: 50%;
  top: -5px;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
}
.employee-reference-card
  .employee-thumbnail
  .profile-image-wrap
  img.placeholder {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.employee-reference-card .info {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.employee-reference-card .info .name {
  margin-bottom: 0px;
  font-size: 14px;
  font-weight: bold;
}
.employee-reference-card .info .position {
  font-size: 14px;
}
.related-events {
  background-color: #fefefe;
  padding-top: 140px;
  padding-bottom: 140px;
}
.related-events .heading {
  margin-bottom: 60px;
}
/*=============================================
 = Event list =
 ===============================================*/
.events {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-left: -2px;
  margin-right: -2px;
}
.event-card {
  width: 33.333%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.event-card:nth-child(2n + 1) .inside-card {
  background-color: #d0e1eb;
}
.event-card:nth-child(2n + 2) .inside-card {
  background-color: #a5c3d5;
}
.event-card .inside-card {
  padding: 60px;
  margin: 0px 2px 4px 2px;
  box-sizing: border-box;
  max-width: 100%;
}
.event-card .event-dates {
  margin-bottom: 1em;
}
.event-card .event-dates .date {
  font-size: 28px;
  font-weight: bold;
  color: #0067b6;
  text-transform: capitalize;
  margin-bottom: 0px;
}
.event-card .event-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #000000;
}
.event-card .meta * {
  margin-bottom: 0px;
}
.event-card .meta + .excerpt {
  margin-top: 1em;
}
.event-card .more {
  color: #0067b6;
  font-weight: bold;
  font-size: 14px;
}
.event-card .more::after {
  vertical-align: middle;
}
.faq-list-box {
  background-color: #f7f7f7;
  padding: 50px;
  box-sizing: border-box;
}
.faq-list-item {
  background-color: #fefefe;
  margin-bottom: 20px;
}
.faq-list-item__icon {
  position: absolute;
  right: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
  width: 50px;
  text-align: center;
  font-size: 18px;
}
.faq-list-item__icon::before {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e832";
  display: inline-block;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.open .faq-list-item__icon::before {
  content: "\e835";
  -webkit-transform: rotate(0deg) scale(1.3, 1);
  transform: rotate(0deg) scale(1.3, 1);
}
.faq-list-item__trigger {
  position: relative;
  cursor: pointer;
}
.faq-list-item__question {
  margin-bottom: 0px;
  padding: 15px 80px 20px 15px;
}
.faq-list-item__question::-moz-selection {
  background-color: transparent;
}
.faq-list-item__question::selection {
  background-color: transparent;
}
.faq-list-item__question::-moz-selection {
  background-color: transparent;
}
.faq-list-item__inside-answer {
  padding: 0px 20px 20px 20px;
}
.blog-archive-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.blog-archive-list .news-card {
  width: calc(33.333% - 30px);
  margin-bottom: 30px;
  box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.05),
    0px 0px 4px 2px rgba(0, 0, 0, 0.05), 0px 0px 8px 4px rgba(0, 0, 0, 0.05);
}
.nav-links .page-numbers {
  margin-top: 16px;
}
.nav-links .icon {
  font-size: 0.8em;
  font-weight: normal;
}
.nav-links .prev .icon {
  display: inline-block;
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
body.blog .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
body.blog .nav-links .page-numbers {
  cursor: pointer;
  font-size: 14px;
  line-height: 50px;
  width: 50px;
  text-align: center;
  height: 50px;
  border-radius: 10px;
  color: #000000;
  font-weight: 700;
  display: inline-block;
  margin-left: 8px;
  margin-right: 8px;
  -webkit-transition: 300ms ease-out;
  transition: 300ms ease-out;
  background-color: #fefefe;
}
body.blog .nav-links .current {
  background-color: #0067b6;
  color: #fefefe;
}
.news-card {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0px 15px;
  position: relative;
  z-index: 2;
}
.news-card .post-date {
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.news-card .post-thumb {
  padding-bottom: 80%;
  margin-bottom: 10px;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: relative;
}
.news-card .post-thumb::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(140, 172, 191, 0.2);
}
.news-card .post-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}
.news-card .post-excerpt {
  margin-bottom: 15px;
}
.news-card .post-excerpt p {
  margin-bottom: 10px;
}
.news-card .more {
  font-weight: bold;
  font-size: 14px;
}
.news-card .inside-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 20px;
  background-color: #fefefe;
  box-sizing: border-box;
  width: 100%;
}
.news-card .employee-reference-card {
  margin-top: auto;
}
/*=============================================
 = Top bar =
 ===============================================*/
.top-bar {
  border-bottom: 1px solid #d0e1eb;
}
.top-bar .inside-top-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 40px;
  padding-right: 40px;
}
.top-bar .inside-top-bar::before,
.top-bar .inside-top-bar::after {
  display: none;
}
.top-bar .links .link {
  margin-right: 1.5em;
}
.top-bar .phone {
  margin-left: auto;
}
.top-bar .phone .icon {
  vertical-align: middle;
  margin-right: 0.5em;
}
.languages .lang {
  margin-left: 1.5em;
}
.languages .lang img {
  height: 1em;
  width: auto;
  margin-right: 0.5em;
  vertical-align: sub;
  line-height: 1.5em;
  display: inline-block;
}
/*=============================================
 = Sticky header =
 ===============================================*/
#header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  max-width: 100vw;
  width: 100%;
  z-index: 99999;
  -webkit-transition: box-shadow 0.2s ease-out;
  transition: box-shadow 0.2s ease-out;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
#header-wrapper.scrolled {
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.04), 0 4px 4px rgba(0, 0, 0, 0.08);
}
body.admin-bar #header-wrapper {
  margin-top: 32px;
}
#header-wrapper .main-navigation,
#header-wrapper .main-navigation ul ul {
  background-color: transparent;
}
/*=============================================
 = Navigation =
 ===============================================*/
#masthead {
  background-color: rgba(254, 254, 254, 0.85);
}
html.no-backdropfilter #masthead {
  background-color: #fefefe;
}
#masthead .inside-header {
  padding-bottom: 20px;
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#masthead .inside-header > * {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#masthead .inside-header .site-logo,
#masthead .inside-header .site-branding {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#masthead .inside-header #site-navigation {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}
#masthead .inside-header #site-navigation ul.menu li.current-page-ancestor > a {
  color: #0067b6;
}
#masthead .site-logo img {
  height: 60px;
}
#masthead .header-btn {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
#masthead .header-btn .btn.blue {
  background-color: #0067b6;
  color: #fefefe;
  border-color: #0067b6;
}
#masthead .header-btn .btn.blue:hover,
#masthead .header-btn .btn.blue:focus,
#masthead .header-btn .btn.blue:active {
  background-color: transparent;
  color: #0067b6;
}
#masthead .header-btn .btn.white {
  background-color: #fefefe;
  color: #0067b6;
  border-color: #0067b6;
}
#masthead .header-btn .btn.white:hover,
#masthead .header-btn .btn.white:focus,
#masthead .header-btn .btn.white:active {
  background-color: #0067b6;
  color: #fefefe;
}
#masthead .header-btn .btn.transparent {
  background-color: transparent;
  color: #0067b6;
  border-color: #0067b6;
}
#masthead .header-btn .btn.transparent:hover,
#masthead .header-btn .btn.transparent:focus,
#masthead .header-btn .btn.transparent:active {
  background-color: #0067b6;
  color: #fefefe;
}
/*=============================================
 = Page banner =
 ===============================================*/
.page-header-banner
  + .bbh-outer-wrapper
  .flexible-inner-section.has-padding.gray-theme:first-child {
  padding-top: 0px;
}
.page-header-banner .image-wrap img {
  float: left;
  width: 100%;
}
.page-header-banner {
  padding-top: 120px;
  padding-bottom: 120px;
}
.page-header-banner .background-skew {
  position: relative;
}
.page-header-banner .background-skew::before {
  content: "";
  top: -40px;
  bottom: 0;
  left: 0;
  width: 90%;
  height: 100%;
  display: block;
  position: absolute;
  z-index: 1;
  background-color: #fefefe;
  padding-top: 40px;
  padding-bottom: 40px;
  -webkit-transform: translateX(-100px);
  transform: translateX(-100px);
}
.page-header-banner .post-heading {
  position: relative;
  z-index: 2;
  width: 50%;
  box-sizing: border-box;
  padding-right: 40px;
}
.page-header-banner .post-heading .date {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 10px;
}
.page-header-banner .post-heading .employees {
  margin-top: 1em;
}
.page-header-banner .post-thumbnail {
  position: relative;
  z-index: 2;
  width: 50%;
}
.page-header-banner .post-thumbnail .image {
  padding-bottom: 56.25%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.page-header-banner .post-title.long-text {
  font-size: 30px;
}
#sticky-placeholder {
  display: none !important;
}
.mobile-header-navigation.is_stuck,
.mobile-header-navigation.stuckElement {
  box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.2);
}
#mobile-header {
  max-width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
#mobile-header #mobile-menu {
  display: none !important;
}
#mobile-header .inside-navigation {
  padding: 10px 20px;
}
#mobile-header .site-logo {
  margin-left: 0px;
}
#mobile-header .mobile-header-links {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  font-size: 13px;
  margin-right: 2em;
  text-align: right;
}
#mobile-header .mobile-header-links a {
  font-weight: 600;
  font-size: 13px;
}
#mobile-header .mobile-header-links a .icon {
  margin-right: 0.5em;
  vertical-align: middle;
}
#mobile-header .menu-toggle {
  float: right;
  line-height: 0;
  padding-left: 0px;
  padding-right: 0px;
}
#mobile-header .menu-toggle,
#mobile-header .menu-toggle * {
  -webkit-tap-highlight-color: transparent !important;
  /* for removing the highlight */
}
#mobile-header .menu-toggle::-moz-selection,
#mobile-header .menu-toggle *::-moz-selection {
  background-color: transparent !important;
}
#mobile-header .menu-toggle::selection,
#mobile-header .menu-toggle *::selection {
  background-color: transparent !important;
}
#mobile-header .menu-toggle::-moz-selection,
#mobile-header .menu-toggle *::-moz-selection {
  background-color: transparent !important;
}
#mobile-header .menu-toggle .hamburger {
  padding: 0px;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #d0e1eb;
  border-radius: 100%;
  -webkit-transition: background 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: background 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
html.slide-opened #mobile-header .menu-toggle .hamburger {
  background-color: #d0e1eb;
}
#generate-slideout-menu {
  padding-top: 80px;
  box-sizing: border-box;
  pointer-events: none;
  background-color: transparent;
}
#generate-slideout-menu .main-nav {
  width: 100%;
  margin-bottom: 0px;
}
#generate-slideout-menu .main-nav ul li {
  margin-bottom: 0px;
  border-bottom: 1px solid #d0e1eb;
}
#generate-slideout-menu .main-nav ul li a {
  display: block;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding: 0px 20px;
  line-height: 60px;
}
#generate-slideout-menu .inside-navigation {
  max-width: 100%;
  padding: 0px 0px 40px 0px;
  border-top: 1px solid #d0e1eb;
  background-color: #fefefe;
  box-shadow: 0px 12px 8px -10px rgba(41, 41, 41, 0.25);
}
html.slide-opened #generate-slideout-menu .inside-navigation {
  pointer-events: all;
}
#generate-slideout-menu .slideout-exit {
  display: none;
}
#generate-slideout-menu .header-btn {
  margin-top: 40px;
}
#generate-slideout-menu .header-btn .btn {
  width: auto;
  display: inline-block;
}
#generate-slideout-menu .mobile-language-wrap {
  margin-top: 20px;
}
#generate-slideout-menu .mobile-language-wrap .languages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#generate-slideout-menu .mobile-language-wrap .lang {
  margin-left: 1em;
  margin-right: 1em;
}
#generate-slideout-menu .main-nav .dropdown-menu-toggle {
  border-left: none;
  margin-left: 0px;
}
#generate-slideout-menu .main-nav .menu-item-has-children > a {
  padding-right: 10px;
}
#generate-slideout-menu .main-nav .sub-menu {
  display: block !important;
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
  opacity: 0;
  overflow: hidden;
  -webkit-transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 0px;
}
#generate-slideout-menu .main-nav .sub-menu.toggled-on {
  height: auto !important;
  overflow: visible;
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
#generate-slideout-menu .main-nav .sub-menu li a {
  font-size: 16px;
  line-height: 50px;
}
/*=============================================
 = Footer widgets =
 ===============================================*/
#footer-widgets {
  padding-left: 0px;
  padding-right: 0px;
}
#footer-widgets .inside-footer-widgets {
  padding-left: 40px;
  padding-right: 40px;
}
/*=============================================
 = Custom footer =
 ===============================================*/
#bhh-footer .grid-container {
  max-width: 1560px;
}
#bhh-footer .footer-section-top {
  background-color: #f7f7f7;
  padding-top: 60px;
  padding-bottom: 60px;
}
#bhh-footer .footer-section-top .footer-logo img {
  max-height: 80px;
  max-width: 180px;
  width: auto;
  height: auto;
  margin-right: 60px;
}
#bhh-footer .footer-section-top .footer-text {
  margin-right: auto;
  max-width: 100%;
  width: 340px;
}
#bhh-footer .footer-section-top .footer-text h3,
#bhh-footer .footer-section-top .footer-text h4 {
  margin-bottom: 0.5em;
}
#bhh-footer .footer-section-top .footer-link a {
  color: #0067b6;
  font-weight: bold;
}
#bhh-footer .footer-section-top .footer-link a::after {
  content: "\e904";
  font-family: "icomoon";
  display: inline-block;
  margin-left: 0.5em;
  font-size: 0.7em;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
  font-weight: normal;
  vertical-align: baseline;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
#bhh-footer .footer-section-top .footer-link a:hover::after {
  -webkit-transform: translateX(3px);
  transform: translateX(3px);
}
#bhh-footer .footer-section-top .social-media {
  -ms-flex-item-align: stretch;
  align-self: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#bhh-footer .footer-section-top .social-icons a {
  font-size: 2em;
  color: #8cacbf;
  margin-left: 0.3em;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
#bhh-footer .footer-section-top .social-icons a:hover {
  color: #5b88a4;
}
#bhh-footer .footer-section-top .cta-links a {
  display: inline-block;
  margin-left: 1.5em;
  font-weight: bold;
}
#bhh-footer .footer-section-top .cta-links a::before {
  content: "\e904";
  font-family: "icomoon";
  display: inline-block;
  margin-right: 0.5em;
  font-size: 0.7em;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
  font-weight: normal;
  vertical-align: baseline;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
#bhh-footer .footer-section-top .cta-links a:hover::before {
  -webkit-transform: translateX(3px);
  transform: translateX(3px);
}
#bhh-footer .footer-section-bottom {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #8cacbf;
  color: #fefefe;
}
#bhh-footer .footer-section-bottom .heading-col {
  padding-right: 40px;
}
#bhh-footer .footer-section-bottom .heading-col .heading {
  font-weight: 600;
}
#bhh-footer .footer-section-bottom .newsletter {
  width: 600px;
  max-width: 100%;
}
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  input[type="text"],
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  input[type="email"],
#bhh-footer .footer-section-bottom .newsletter .gform_wrapper input[type="url"],
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  input[type="password"],
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  input[type="search"],
#bhh-footer .footer-section-bottom .newsletter .gform_wrapper input[type="tel"],
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  input[type="number"],
#bhh-footer .footer-section-bottom .newsletter .gform_wrapper textarea,
#bhh-footer .footer-section-bottom .newsletter .gform_wrapper select {
  background-color: transparent;
  border-color: #fefefe;
  width: 210px;
  height: 46px;
  color: #fefefe;
  font-size: 12px;
}
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  input[type="text"].placeholder,
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  input[type="email"].placeholder,
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  input[type="url"].placeholder,
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  input[type="password"].placeholder,
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  input[type="search"].placeholder,
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  input[type="tel"].placeholder,
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  input[type="number"].placeholder,
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  textarea.placeholder,
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  select.placeholder {
  color: #fefefe;
  opacity: 0.8;
}
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  input[type="text"]:-moz-placeholder,
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  input[type="email"]:-moz-placeholder,
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  input[type="url"]:-moz-placeholder,
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  input[type="password"]:-moz-placeholder,
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  input[type="search"]:-moz-placeholder,
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  input[type="tel"]:-moz-placeholder,
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  input[type="number"]:-moz-placeholder,
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  textarea:-moz-placeholder,
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  select:-moz-placeholder {
  color: #fefefe;
  opacity: 0.8;
}
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  input[type="text"]::-moz-placeholder,
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  input[type="email"]::-moz-placeholder,
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  input[type="url"]::-moz-placeholder,
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  input[type="password"]::-moz-placeholder,
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  input[type="search"]::-moz-placeholder,
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  input[type="tel"]::-moz-placeholder,
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  input[type="number"]::-moz-placeholder,
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  textarea::-moz-placeholder,
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  select::-moz-placeholder {
  color: #fefefe;
  opacity: 0.8;
}
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  input[type="text"]:-ms-input-placeholder,
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  input[type="email"]:-ms-input-placeholder,
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  input[type="url"]:-ms-input-placeholder,
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  input[type="password"]:-ms-input-placeholder,
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  input[type="search"]:-ms-input-placeholder,
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  input[type="tel"]:-ms-input-placeholder,
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  input[type="number"]:-ms-input-placeholder,
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  textarea:-ms-input-placeholder,
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  select:-ms-input-placeholder {
  color: #fefefe;
  opacity: 0.8;
}
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  input[type="text"]::-ms-input-placeholder,
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  input[type="email"]::-ms-input-placeholder,
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  input[type="url"]::-ms-input-placeholder,
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  input[type="password"]::-ms-input-placeholder,
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  input[type="search"]::-ms-input-placeholder,
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  input[type="tel"]::-ms-input-placeholder,
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  input[type="number"]::-ms-input-placeholder,
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  textarea::-ms-input-placeholder,
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  select::-ms-input-placeholder {
  color: #fefefe;
  opacity: 0.8;
}
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  input[type="text"]::-webkit-input-placeholder,
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  input[type="email"]::-webkit-input-placeholder,
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  input[type="url"]::-webkit-input-placeholder,
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  input[type="password"]::-webkit-input-placeholder,
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  input[type="search"]::-webkit-input-placeholder,
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  input[type="tel"]::-webkit-input-placeholder,
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  input[type="number"]::-webkit-input-placeholder,
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  textarea::-webkit-input-placeholder,
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  select::-webkit-input-placeholder {
  color: #fefefe;
  opacity: 0.8;
}
#bhh-footer .footer-section-bottom .newsletter .gform_wrapper form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#bhh-footer .footer-section-bottom .newsletter .gform_wrapper .gform_heading {
  width: 100%;
}
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  .validation_error {
  width: 100%;
  font-size: 13px;
}
#bhh-footer .footer-section-bottom .newsletter .gform_wrapper .gform_body {
  width: 66.66%;
  box-sizing: border-box;
  padding-right: 14px;
}
#bhh-footer .footer-section-bottom .newsletter .gform_wrapper .gform_footer {
  width: 33.333%;
}
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  input[type="submit"] {
  display: inline-block;
  border: 1px solid;
  font-weight: bold;
  font-size: 14px;
  padding: 15px 25px;
  opacity: 1;
  border-radius: 10px;
  background-color: #0067b6;
  color: #fefefe;
  border-color: #0067b6;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  text-align: center;
  min-width: 100px;
  box-sizing: border-box;
  padding: 5px 25px;
  font-size: 13px;
  height: 46px;
  background-color: #fefefe;
  color: #8cacbf;
  border-color: #fefefe;
  width: 100%;
}
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  input[type="submit"]:hover {
  background-color: transparent;
  color: #0067b6;
}
#bhh-footer
  .footer-section-bottom
  .newsletter
  .gform_wrapper
  input[type="submit"]:hover {
  color: #fefefe;
}
#bhh-footer .copyright-section {
  font-size: 14px;
  padding-top: 15px;
  padding-bottom: 15px;
}
#bhh-footer .copyright-section .flex-row {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
#bhh-footer .copyright-section .copyright-text *:last-child {
  margin-bottom: 0px;
}
#bhh-footer
  .copyright-section
  .copyright-text
  + .copyright-links
  a:first-child {
  margin-left: 0.8em;
  padding-left: 0.8em;
  border-left: 1px solid #091e3f;
}
#bhh-footer .copyright-section .copyright-links a {
  line-height: 1em;
  display: inline-block;
}
#bhh-footer .copyright-section .copyright-links a:not(:first-child) {
  padding-left: 0.8em;
  margin-left: 0.8em;
  border-left: 1px solid #091e3f;
}
/*===============================
 =            General            =
 ===============================*/
/*----------- content margin -----------*/
.flexible-inner-section.has-padding.no-padding-top {
  padding-top: 0;
}
.flexible-inner-section .content > :last-child {
  margin-bottom: 0;
}
.bbh-inner-section .content h1:first-child + h1,
.flexible-inner-section .content h1:first-child + h1,
.bbh-inner-section .content h2:first-child + h1,
.flexible-inner-section .content h2:first-child + h1,
.bbh-inner-section .content h1:first-child + h2,
.flexible-inner-section .content h1:first-child + h2,
.bbh-inner-section .content h2:first-child + h2,
.flexible-inner-section .content h2:first-child + h2 {
  margin-top: -20px;
}
.bbh-inner-section .content h1:first-child + h4,
.flexible-inner-section .content h1:first-child + h4,
.bbh-inner-section .content h2:first-child + h4,
.flexible-inner-section .content h2:first-child + h4 {
  margin-top: 20px;
}
.bbh-inner-section .content ul li a::after,
.flexible-inner-section .content ul li a::after {
  display: none !important;
}
.bbh-inner-section .content a,
.flexible-inner-section .content a {
  font-weight: 600;
}
.bbh-inner-section .content a::after,
.flexible-inner-section .content a::after {
  content: "\e904";
  font-family: "icomoon";
  display: inline-block;
  margin-left: 0.5em;
  font-size: 0.7em;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
  font-weight: normal;
  vertical-align: baseline;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.bbh-inner-section .content a:hover::after,
.flexible-inner-section .content a:hover::after {
  -webkit-transform: translateX(3px);
  transform: translateX(3px);
}
.bbh-inner-section .content > ul,
.flexible-inner-section .content > ul {
  margin-left: 1.5em;
  list-style-type: none;
}
.bbh-inner-section .content > ul li,
.flexible-inner-section .content > ul li {
  margin-bottom: 1.2em;
  text-indent: -0.8em;
}
.bbh-inner-section .content > ul li:hover::before,
.flexible-inner-section .content > ul li:hover::before {
  transform: translateX(3px);
}
.bbh-inner-section .content > ul li::before,
.flexible-inner-section .content > ul li::before {
  font-size: 12px;
  margin-right: 1em;
  display: inline-block;
  content: "\e904";
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  transform: translateX(0px);
}
body.narrow-container .flexible-field-wrapper .grid-container {
  max-width: 850px;
}
.retina-container {
  padding-left: 40px;
  padding-right: 40px;
  max-width: 2560px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
.editor-image-wrap {
  position: relative;
}
.editor-image-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(140, 172, 191, 0.2);
}
.editor-image-wrap > * {
  position: relative;
  z-index: 2;
}
/*=============================================
 = Buttons =
 ===============================================*/
.events-single-content .buttons,
.flexible-inner-section .buttons {
  margin-left: -5px;
  margin-right: -5px;
}
.events-single-content .buttons::after,
.flexible-inner-section .buttons::after {
  content: "";
  display: table;
  clear: both;
}
.events-single-content .buttons.left,
.flexible-inner-section .buttons.left {
  text-align: left;
}
.events-single-content .buttons.center,
.flexible-inner-section .buttons.center {
  text-align: center;
}
.events-single-content .buttons.right,
.flexible-inner-section .buttons.right {
  text-align: right;
}
.events-single-content .buttons .link,
.flexible-inner-section .buttons .link {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}
.events-single-content .buttons .link::after,
.flexible-inner-section .buttons .link::after {
  content: "";
  display: table;
  clear: both;
}
.events-single-content .buttons .link:not(:first-child),
.flexible-inner-section .buttons .link:not(:first-child) {
  margin-top: 10px;
}
/*=============================================
 = Video lightbox =
 ===============================================*/
#video-lightbox {
  position: fixed;
  z-index: 999999;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: calc(100% - 80px);
  width: 1240px;
  display: none;
}
#video-lightbox .close-btn {
  position: absolute;
  right: 0;
  top: 0;
  color: #fefefe;
  background-color: #0067b6;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  display: inline-block;
  border-radius: 10px;
  width: 24px;
  height: 24px;
  padding: 10px;
}
#video-lightbox .close-btn .cross {
  -webkit-transition: 0.1s linear;
  transition: 0.1s linear;
}
#video-lightbox .close-btn .cross {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
  opacity: 1;
}
#video-lightbox .close-btn .cross:before,
#video-lightbox .close-btn .cross:after {
  position: absolute;
  left: 11px;
  content: " ";
  height: 25px;
  width: 2px;
  background-color: #fefefe;
  border-radius: 10px;
}
#video-lightbox .close-btn .cross:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#video-lightbox .close-btn .cross:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#video-lightbox .close-btn:hover .cross {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
#video-lightbox.content .iframe-wrap::before {
  padding-top: 0;
  height: 80vh;
}
#video-lightbox-overlay {
  position: fixed;
  z-index: 999998;
  top: -10%;
  left: -10%;
  right: -10%;
  bottom: -10%;
  height: 120%;
  width: 120%;
  display: none;
  background-color: rgba(0, 0, 0, 0.6);
}
/*=============================================
 = 2 col text and image + video =
 ===============================================*/
.flexible-inner-section.c2-text-image {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.flexible-inner-section.c2-text-image.white-theme {
  background-color: #fefefe;
}
.flexible-inner-section.c2-text-image.lightgrey-theme {
  background-color: #dddddd;
}
.flexible-inner-section.c2-text-image.gray-theme {
  background-color: #f7f7f7;
}
.flexible-inner-section.c2-text-image.black-theme {
  background-color: #000000;
}
.flexible-inner-section.c2-text-image.blue-theme {
  background-color: #0067b6;
}
.flexible-inner-section.c2-text-image.pastelblue-theme {
  background-color: #8cacbf;
}
.flexible-inner-section.c2-text-image.pastelblue2-theme {
  background-color: #a5c3d5;
}
.flexible-inner-section.c2-text-image.lightblue-theme {
  background-color: #d0e1eb;
}
.flexible-inner-section.c2-text-image.lightblue2-theme {
  background-color: #e4edf2;
}
.flexible-inner-section.c2-text-image.lightblue3-theme {
  background-color: #e8eef2;
}
.flexible-inner-section.c2-text-image.lightblue4-theme {
  background-color: #f1f6f9;
}
.flexible-inner-section.c2-text-image.darkblue-theme {
  background-color: #091e3f;
}
@media only screen and (768px-width: "min") {
  .flexible-inner-section.c2-text-image.white-theme
    + .flexible-inner-section.has-padding.white-theme {
    padding-top: 0px;
  }
  .flexible-inner-section.has-padding.white-theme
    + .flexible-inner-section.c2-text-image.white-theme {
    padding-top: 0px;
  }
  .flexible-inner-section.c2-text-image.white-theme
    + .flexible-inner-section.c2-text-image.white-theme {
    padding-top: 0px;
  }
  .flexible-inner-section.c2-text-image.gray-theme
    + .flexible-inner-section.has-padding.gray-theme {
    padding-top: 0px;
  }
  .flexible-inner-section.has-padding.gray-theme
    + .flexible-inner-section.c2-text-image.gray-theme {
    padding-top: 0px;
  }
  .flexible-inner-section.c2-text-image.gray-theme
    + .flexible-inner-section.c2-text-image.gray-theme {
    padding-top: 0px;
  }
  .flexible-inner-section.c2-text-image.lightgrey-theme
    + .flexible-inner-section.has-padding.lightgrey-theme {
    padding-top: 0px;
  }
  .flexible-inner-section.has-padding.lightgrey-theme
    + .flexible-inner-section.c2-text-image.lightgrey-theme {
    padding-top: 0px;
  }
  .flexible-inner-section.c2-text-image.lightgrey-theme
    + .flexible-inner-section.c2-text-image.lightgrey-theme {
    padding-top: 0px;
  }
  .flexible-inner-section.c2-text-image.black-theme
    + .flexible-inner-section.has-padding.black-theme {
    padding-top: 0px;
  }
  .flexible-inner-section.has-padding.black-theme
    + .flexible-inner-section.c2-text-image.black-theme {
    padding-top: 0px;
  }
  .flexible-inner-section.c2-text-image.black-theme
    + .flexible-inner-section.c2-text-image.black-theme {
    padding-top: 0px;
  }
  .flexible-inner-section.c2-text-image.lightblue-theme
    + .flexible-inner-section.has-padding.lightblue-theme {
    padding-top: 0px;
  }
  .flexible-inner-section.has-padding.lightblue-theme
    + .flexible-inner-section.c2-text-image.lightblue-theme {
    padding-top: 0px;
  }
  .flexible-inner-section.c2-text-image.lightblue-theme
    + .flexible-inner-section.c2-text-image.lightblue-theme {
    padding-top: 0px;
  }
  .flexible-inner-section.c2-text-image.darkblue-theme
    + .flexible-inner-section.has-padding.darkblue-theme {
    padding-top: 0px;
  }
  .flexible-inner-section.has-padding.darkblue-theme
    + .flexible-inner-section.c2-text-image.darkblue-theme {
    padding-top: 0px;
  }
  .flexible-inner-section.c2-text-image.darkblue-theme
    + .flexible-inner-section.c2-text-image.darkblue-theme {
    padding-top: 0px;
  }
}
body.narrow-container .flexible-inner-section.c2-text-image {
  padding-top: 50px;
  padding-bottom: 50px;
}
.flexible-inner-section.c2-text-image.reverse .content-col {
  left: 50%;
}
.flexible-inner-section.c2-text-image.reverse .content-col .content {
  float: right;
}
.flexible-inner-section.c2-text-image.reverse .content-col .half-grid {
  padding-left: 80px;
  padding-right: 40px;
  float: left;
}
.flexible-inner-section.c2-text-image.reverse .image-col {
  left: -50%;
  padding-left: 0;
}
.flexible-inner-section.c2-text-image.reverse .image-col .half-grid {
  padding-left: 40px;
  padding-right: 0;
  float: right;
}
.flexible-inner-section.c2-text-image.reverse .image-col .image-wrap {
  margin-left: 0;
  margin-right: 100px;
}
.flexible-inner-section.c2-text-image.has-grad::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: transparent -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(rgba(254, 254, 254, 0)),
      to(#fefefe)
    ) 0 0 no-repeat padding-box;
  background: transparent -webkit-linear-gradient(
      top,
      rgba(254, 254, 254, 0) 0%,
      #fefefe 100%
    ) 0 0 no-repeat padding-box;
  background: transparent
    linear-gradient(180deg, rgba(254, 254, 254, 0) 0%, #fefefe 100%) 0 0
    no-repeat padding-box;
}
.flexible-inner-section.c2-text-image .flex-row {
  position: relative;
  z-index: 2;
}
.flexible-inner-section.c2-text-image .content-col,
.flexible-inner-section.c2-text-image .image-col {
  position: relative;
  width: 50%;
}
.flexible-inner-section.c2-text-image .content-col .content {
  max-width: 100%;
  width: 480px;
}
.flexible-inner-section.c2-text-image .content-col .half-grid {
  float: right;
  box-sizing: border-box;
  padding-left: 40px;
  padding-right: 80px;
}
.flexible-inner-section.c2-text-image .image-col img {
  float: right;
}
.flexible-inner-section.c2-text-image .image-col .half-grid {
  padding-right: 40px;
  box-sizing: border-box;
}
.flexible-inner-section.c2-text-image .image-col .image-wrap {
  margin-left: 100px;
}
.image-wrap {
  width: 100%;
  position: relative;
  display: inline-block;
}
.image-wrap::before {
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: rgba(140, 172, 191, 0.2);
}
.image-wrap .video-trigger {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: rgba(0, 0, 0, 0);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.image-wrap .video-trigger .play {
  font-size: 5em;
  color: #fefefe;
  cursor: pointer;
  margin-left: auto !important;
  margin-right: auto !important;
  height: auto;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.15s ease-out;
  transition: 0.15s ease-out;
}
.image-wrap .video-trigger:hover {
  background-color: rgba(0, 0, 0, 0.4);
}
.image-wrap .video-trigger:hover .play {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
/*=============================================
 = 2 col text image slider =
 ===============================================*/
@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.flexible-inner-section.c2-text-image-slider {
  overflow: hidden;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.flexible-inner-section.c2-text-image-slider.white-theme {
  background-color: #fefefe;
}
.flexible-inner-section.c2-text-image-slider.lightgrey-theme {
  background-color: #dddddd;
}
.flexible-inner-section.c2-text-image-slider.gray-theme {
  background-color: #f7f7f7;
}
.flexible-inner-section.c2-text-image-slider.black-theme {
  background-color: #000000;
}
.flexible-inner-section.c2-text-image-slider.blue-theme {
  background-color: #0067b6;
}
.flexible-inner-section.c2-text-image-slider.pastelblue-theme {
  background-color: #8cacbf;
}
.flexible-inner-section.c2-text-image-slider.pastelblue2-theme {
  background-color: #a5c3d5;
}
.flexible-inner-section.c2-text-image-slider.lightblue-theme {
  background-color: #d0e1eb;
}
.flexible-inner-section.c2-text-image-slider.lightblue2-theme {
  background-color: #e4edf2;
}
.flexible-inner-section.c2-text-image-slider.lightblue3-theme {
  background-color: #e8eef2;
}
.flexible-inner-section.c2-text-image-slider.lightblue4-theme {
  background-color: #f1f6f9;
}
.flexible-inner-section.c2-text-image-slider.darkblue-theme {
  background-color: #091e3f;
}
.flexible-inner-section.c2-text-image-slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.flexible-inner-section.c2-text-image-slider .slide {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  height: auto;
}
.flexible-inner-section.c2-text-image-slider .slide .image-col {
  opacity: 0;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
}
.flexible-inner-section.c2-text-image-slider
  .slide
  .content-col
  .flex-slider-grid {
  opacity: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.flexible-inner-section.c2-text-image-slider
  .slide.slick-current
  .content-col
  .flex-slider-grid {
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
  -webkit-animation-duration: 600ms;
  animation-duration: 600ms;
  -webkit-animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.flexible-inner-section.c2-text-image-slider .slide.slick-current .image-col {
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
  -webkit-animation-duration: 600ms;
  animation-duration: 600ms;
  -webkit-animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-animation-delay: 200ms;
  animation-delay: 200ms;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.flexible-inner-section.c2-text-image-slider .content-col {
  position: relative;
  width: 58.3333333333%;
  padding-bottom: 90px;
  padding-top: 90px;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.flexible-inner-section.c2-text-image-slider .content-col .content {
  max-width: 100%;
}
.flexible-inner-section.c2-text-image-slider
  .content-col
  .content
  h1:first-child,
.flexible-inner-section.c2-text-image-slider
  .content-col
  .content
  h2:first-child {
  font-weight: bold;
  font-size: 46px;
  margin-bottom: 10px;
}
.flexible-inner-section.c2-text-image-slider .content-col .content p {
  max-width: 500px;
}
.flexible-inner-section.c2-text-image-slider .content-col .flex-slider-grid {
  width: 100%;
  float: right;
  padding-right: 40px;
  padding-left: 40px;
  box-sizing: border-box;
}
.flexible-inner-section.c2-text-image-slider .content-col .dateline .date {
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 12px;
}
.flexible-inner-section.c2-text-image-slider .image-col {
  width: 41.6666666667%;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flexible-inner-section.c2-text-image-slider .image-col .image-wrap {
  padding-bottom: 70%;
  width: 100%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: relative;
}
.flexible-inner-section.c2-text-image-slider .image-col .image-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(140, 172, 191, 0.2);
}
.flexible-inner-section.c2-text-image-slider .slider-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  bottom: 30px;
  right: 40px;
}
.flexible-inner-section.c2-text-image-slider .slider-nav * {
  line-height: 15px;
}
.flexible-inner-section.c2-text-image-slider .slider-nav .slide-dot {
  display: inline-block;
}
.flexible-inner-section.c2-text-image-slider
  .slider-nav
  .slide-dot.active
  .bullet {
  background-color: #8cacbf;
}
.flexible-inner-section.c2-text-image-slider .slider-nav .bullet {
  cursor: pointer;
  background-color: transparent;
  border: 1px solid #8cacbf;
  width: 10px;
  height: 10px;
  display: inline-block;
  box-sizing: border-box;
  border-radius: 100%;
  margin-left: 4px;
  margin-right: 4px;
}
.flexible-inner-section.c2-text-image-slider .slider-nav .end,
.flexible-inner-section.c2-text-image-slider .slider-nav .start {
  font-weight: bold;
  margin-left: 4px;
  margin-right: 4px;
  color: #8cacbf;
}
.flexible-inner-section.c2-text-image-slider .slider-nav .start {
  margin-right: 8px;
}
.flexible-inner-section.c2-text-image-slider .slider-nav .end {
  margin-left: 8px;
}
.flexible-inner-section.c2-text-image-slider .slider-nav .next,
.flexible-inner-section.c2-text-image-slider .slider-nav .prev {
  color: #8cacbf;
  cursor: pointer;
}
.flexible-inner-section.c2-text-image-slider .slider-nav .next .icon,
.flexible-inner-section.c2-text-image-slider .slider-nav .prev .icon {
  display: inline-block;
  font-size: 14px;
  vertical-align: bottom;
}
.flexible-inner-section.c2-text-image-slider .slider-nav .prev {
  margin-right: 8px;
}
.flexible-inner-section.c2-text-image-slider .slider-nav .prev .icon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.flexible-inner-section.c2-text-image-slider .slider-nav .next {
  margin-left: 8px;
}
/*=============================================
 = section - 1 column contactform =
 ===============================================*/
.flexible-inner-section.c1-contact {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: relative;
  padding: 100px 0;
}
.flexible-inner-section.c1-contact.white-theme {
  background-color: #fefefe;
}
.flexible-inner-section.c1-contact.lightgrey-theme {
  background-color: #dddddd;
}
.flexible-inner-section.c1-contact.gray-theme {
  background-color: #f7f7f7;
}
.flexible-inner-section.c1-contact.black-theme {
  background-color: #000000;
}
.flexible-inner-section.c1-contact.blue-theme {
  background-color: #0067b6;
}
.flexible-inner-section.c1-contact.pastelblue-theme {
  background-color: #8cacbf;
}
.flexible-inner-section.c1-contact.pastelblue2-theme {
  background-color: #a5c3d5;
}
.flexible-inner-section.c1-contact.lightblue-theme {
  background-color: #d0e1eb;
}
.flexible-inner-section.c1-contact.lightblue2-theme {
  background-color: #e4edf2;
}
.flexible-inner-section.c1-contact.lightblue3-theme {
  background-color: #e8eef2;
}
.flexible-inner-section.c1-contact.lightblue4-theme {
  background-color: #f1f6f9;
}
.flexible-inner-section.c1-contact.darkblue-theme {
  background-color: #091e3f;
}
body.narrow-container .flexible-inner-section.c1-contact {
  padding-top: 50px;
  padding-bottom: 50px;
}
.flexible-inner-section.c1-contact.has-grad::before {
  pointer-events: none;
  opacity: 0.95;
  content: "";
  background: transparent -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(#f7f7f7),
      color-stop(100%, rgba(246, 246, 246, 0.5)),
      to(rgba(0, 0, 0, 0))
    ) 0 0 no-repeat padding-box;
  background: transparent -webkit-linear-gradient(
      top,
      #f7f7f7 0%,
      rgba(246, 246, 246, 0.5) 100%,
      rgba(0, 0, 0, 0) 100%
    ) 0 0 no-repeat padding-box;
  background: transparent
    linear-gradient(
      180deg,
      #f7f7f7 0%,
      rgba(246, 246, 246, 0.5) 100%,
      rgba(0, 0, 0, 0) 100%
    )
    0 0 no-repeat padding-box;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  display: block;
}
.flexible-inner-section.c1-contact.fw-col .content-col {
  width: 100%;
}
.flexible-inner-section.c1-contact .grid-container {
  position: relative;
  z-index: 2;
}
.flexible-inner-section.c1-contact input[type="text"],
.flexible-inner-section.c1-contact input[type="email"],
.flexible-inner-section.c1-contact input[type="url"],
.flexible-inner-section.c1-contact input[type="password"],
.flexible-inner-section.c1-contact input[type="search"],
.flexible-inner-section.c1-contact input[type="tel"],
.flexible-inner-section.c1-contact input[type="number"],
.flexible-inner-section.c1-contact textarea,
.flexible-inner-section.c1-contact select {
  background-color: transparent;
}
.flexible-inner-section.c1-contact .gform_button[type="submit"] {
  display: inline-block;
  border: 1px solid;
  font-weight: bold;
  font-size: 14px;
  padding: 15px 25px;
  opacity: 1;
  border-radius: 10px;
  background-color: #0067b6;
  color: #fefefe;
  border-color: #0067b6;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  text-align: center;
  min-width: 100px;
  box-sizing: border-box;
  float: right;
}
.flexible-inner-section.c1-contact .gform_button[type="submit"]:hover {
  background-color: transparent;
  color: #0067b6;
}
/*=============================================
 = section - text icon blocks =
 ===============================================*/
.flexible-inner-section.text-icon-blocks
  + .flexible-inner-section.text-icon-blocks {
  margin-top: -5px;
}
.flexible-inner-section.text-icon-blocks .flex-row {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  border-bottom: 4px solid #fefefe;
}
.flexible-inner-section.text-icon-blocks.count-3 .single-block .inside-block {
  max-width: 500px;
}
.flexible-inner-section.text-icon-blocks .single-block {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  padding-left: 0;
  padding-right: 0;
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  width: 25%;
  box-sizing: border-box;
  border-top: 4px solid #fefefe;
}
.flexible-inner-section.text-icon-blocks .single-block.white-theme {
  background-color: #fefefe;
}
.flexible-inner-section.text-icon-blocks .single-block.lightgrey-theme {
  background-color: #dddddd;
}
.flexible-inner-section.text-icon-blocks .single-block.gray-theme {
  background-color: #f7f7f7;
}
.flexible-inner-section.text-icon-blocks .single-block.black-theme {
  background-color: #000000;
}
.flexible-inner-section.text-icon-blocks .single-block.blue-theme {
  background-color: #0067b6;
}
.flexible-inner-section.text-icon-blocks .single-block.pastelblue-theme {
  background-color: #8cacbf;
}
.flexible-inner-section.text-icon-blocks .single-block.pastelblue2-theme {
  background-color: #a5c3d5;
}
.flexible-inner-section.text-icon-blocks .single-block.lightblue-theme {
  background-color: #d0e1eb;
}
.flexible-inner-section.text-icon-blocks .single-block.lightblue2-theme {
  background-color: #e4edf2;
}
.flexible-inner-section.text-icon-blocks .single-block.lightblue3-theme {
  background-color: #e8eef2;
}
.flexible-inner-section.text-icon-blocks .single-block.lightblue4-theme {
  background-color: #f1f6f9;
}
.flexible-inner-section.text-icon-blocks .single-block.darkblue-theme {
  background-color: #091e3f;
}
.flexible-inner-section.text-icon-blocks .single-block:not(:last-child) {
  border-right: 4px solid #fefefe;
}
.flexible-inner-section.text-icon-blocks .single-block.has-bg-img::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(140, 172, 191, 0.2);
}
.flexible-inner-section.text-icon-blocks .single-block.has-grad::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(#f1f6f9),
      color-stop(28%, #eff3f3),
      to(rgba(255, 255, 255, 0))
    ) 0 0 no-repeat padding-box;
  background: transparent -webkit-linear-gradient(
      top,
      #f1f6f9 0%,
      #eff3f3 28%,
      rgba(255, 255, 255, 0) 100%
    ) 0 0 no-repeat padding-box;
  background: transparent
    linear-gradient(
      180deg,
      #f1f6f9 0%,
      #eff3f3 28%,
      rgba(255, 255, 255, 0) 100%
    )
    0 0 no-repeat padding-box;
}
.flexible-inner-section.text-icon-blocks .single-block .inside-block {
  position: relative;
  z-index: 3;
  margin: auto;
  padding: 60px 40px;
  box-sizing: border-box;
  width: 100%;
  max-width: 440px;
}
.flexible-inner-section.text-icon-blocks .single-block .content {
  color: #000000;
  font-weight: normal;
}
.flexible-inner-section.text-icon-blocks .single-block .content > :last-child {
  margin-bottom: 0;
}
.flexible-inner-section.text-icon-blocks .single-block .content .icon {
  display: block;
  font-size: 3em;
  margin-bottom: 12px;
}
.flexible-inner-section.text-icon-blocks .single-block .link-title {
  color: #0067b6;
  font-weight: 700;
  font-size: 14px;
}
.flexible-inner-section.text-icon-blocks .single-block .link-title::after {
  content: "\e904";
  font-family: "icomoon";
  display: inline-block;
  margin-left: 0.5em;
  font-size: 0.7em;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
  font-weight: normal;
  vertical-align: baseline;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.flexible-inner-section.text-icon-blocks
  .single-block
  .link-title:hover::after {
  -webkit-transform: translateX(3px);
  transform: translateX(3px);
}
/*=============================================
 = flexible section - find employee =
 ===============================================*/
.flexible-inner-section.c1-contact-person-search {
  padding-top: 100px;
  padding-bottom: 100px;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.flexible-inner-section.c1-contact-person-search.white-theme {
  background-color: #fefefe;
}
.flexible-inner-section.c1-contact-person-search.lightgrey-theme {
  background-color: #dddddd;
}
.flexible-inner-section.c1-contact-person-search.gray-theme {
  background-color: #f7f7f7;
}
.flexible-inner-section.c1-contact-person-search.black-theme {
  background-color: #000000;
}
.flexible-inner-section.c1-contact-person-search.blue-theme {
  background-color: #0067b6;
}
.flexible-inner-section.c1-contact-person-search.pastelblue-theme {
  background-color: #8cacbf;
}
.flexible-inner-section.c1-contact-person-search.pastelblue2-theme {
  background-color: #a5c3d5;
}
.flexible-inner-section.c1-contact-person-search.lightblue-theme {
  background-color: #d0e1eb;
}
.flexible-inner-section.c1-contact-person-search.lightblue2-theme {
  background-color: #e4edf2;
}
.flexible-inner-section.c1-contact-person-search.lightblue3-theme {
  background-color: #e8eef2;
}
.flexible-inner-section.c1-contact-person-search.lightblue4-theme {
  background-color: #f1f6f9;
}
.flexible-inner-section.c1-contact-person-search.darkblue-theme {
  background-color: #091e3f;
}
body.narrow-container .flexible-inner-section.c1-contact-person-search {
  padding-top: 50px;
  padding-bottom: 50px;
}
.flexible-inner-section.c1-contact-person-search .content {
  margin-bottom: 40px;
}
#find-contact {
  scroll-margin-top: 300px;
  scroll-behavior: smooth;
}
/*=============================================
 = flexible section - 2 col text and icons =
 ===============================================*/
.flexible-inner-section.c2-text-icons {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 100px;
}
.flexible-inner-section.c2-text-icons.white-theme {
  background-color: #fefefe;
}
.flexible-inner-section.c2-text-icons.lightgrey-theme {
  background-color: #dddddd;
}
.flexible-inner-section.c2-text-icons.gray-theme {
  background-color: #f7f7f7;
}
.flexible-inner-section.c2-text-icons.black-theme {
  background-color: #000000;
}
.flexible-inner-section.c2-text-icons.blue-theme {
  background-color: #0067b6;
}
.flexible-inner-section.c2-text-icons.pastelblue-theme {
  background-color: #8cacbf;
}
.flexible-inner-section.c2-text-icons.pastelblue2-theme {
  background-color: #a5c3d5;
}
.flexible-inner-section.c2-text-icons.lightblue-theme {
  background-color: #d0e1eb;
}
.flexible-inner-section.c2-text-icons.lightblue2-theme {
  background-color: #e4edf2;
}
.flexible-inner-section.c2-text-icons.lightblue3-theme {
  background-color: #e8eef2;
}
.flexible-inner-section.c2-text-icons.lightblue4-theme {
  background-color: #f1f6f9;
}
.flexible-inner-section.c2-text-icons.darkblue-theme {
  background-color: #091e3f;
}
body.narrow-container .flexible-inner-section.c2-text-icons {
  padding-top: 50px;
  padding-bottom: 50px;
}
.flexible-inner-section.c2-text-icons.reverse .flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.flexible-inner-section.c2-text-icons.rows .flex-row {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.flexible-inner-section.c2-text-icons.rows .icons-col {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}
.flexible-inner-section.c2-text-icons.rows .icons-col .icons-wrap {
  width: 16.6666666667%;
  margin-top: 50px;
}
.flexible-inner-section.c2-text-icons.rows .content-col {
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
}
.flexible-inner-section.c2-text-icons .content-col {
  width: 41.6666666667%;
  padding-top: 40px;
  padding-bottom: 40px;
}
.flexible-inner-section.c2-text-icons .icons-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 58.3333333333%;
}
.normal .flexible-inner-section.c2-text-icons .icons-col {
  padding-left: 40px;
}
.normal .flexible-inner-section.c2-text-icons .icons-col .icons-wrap {
  text-align: right;
}
.reverse .flexible-inner-section.c2-text-icons .icons-col {
  padding-right: 40px;
}
.flexible-inner-section.c2-text-icons .icons-wrap {
  width: 33.333%;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
}
.flexible-inner-section.c2-text-icons .icons-wrap.current a {
  color: #0067b6;
}
.flexible-inner-section.c2-text-icons .icons-wrap:nth-child(1n + 4) {
  margin-top: 50px;
}
.flexible-inner-section.c2-text-icons .centered {
  text-align: center;
}
.flexible-inner-section.c2-text-icons span.text {
  font-weight: bold;
  display: block;
  font-size: 14px;
  margin-top: 1em;
}
.flexible-inner-section.c2-text-icons span.text::before {
  content: "\e904";
  font-family: "icomoon";
  display: inline-block;
  margin-right: 0.5em;
  font-size: 0.7em;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
  font-weight: normal;
  vertical-align: baseline;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.flexible-inner-section.c2-text-icons span.text:hover::before {
  -webkit-transform: translateX(3px);
  transform: translateX(3px);
}
.flexible-inner-section.c2-text-icons span.text::before {
  margin-right: 0.1em;
}
.flexible-inner-section.c2-text-icons .type-icon .icon {
  display: inline-block;
  font-size: 130px;
}
.flexible-inner-section.c2-text-icons .type-icon .icon::before {
  display: block;
}
.flexible-inner-section.c2-text-icons .type-image img {
  max-height: 130px;
  max-width: 100%;
  width: auto;
  height: auto;
}
/*=============================================
 = flexible-section - 3 columns events =
 ===============================================*/
.flexible-inner-section.c3-events {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  padding-top: 100px;
  padding-bottom: 100px;
}
.flexible-inner-section.c3-events.white-theme {
  background-color: #fefefe;
}
.flexible-inner-section.c3-events.lightgrey-theme {
  background-color: #dddddd;
}
.flexible-inner-section.c3-events.gray-theme {
  background-color: #f7f7f7;
}
.flexible-inner-section.c3-events.black-theme {
  background-color: #000000;
}
.flexible-inner-section.c3-events.blue-theme {
  background-color: #0067b6;
}
.flexible-inner-section.c3-events.pastelblue-theme {
  background-color: #8cacbf;
}
.flexible-inner-section.c3-events.pastelblue2-theme {
  background-color: #a5c3d5;
}
.flexible-inner-section.c3-events.lightblue-theme {
  background-color: #d0e1eb;
}
.flexible-inner-section.c3-events.lightblue2-theme {
  background-color: #e4edf2;
}
.flexible-inner-section.c3-events.lightblue3-theme {
  background-color: #e8eef2;
}
.flexible-inner-section.c3-events.lightblue4-theme {
  background-color: #f1f6f9;
}
.flexible-inner-section.c3-events.darkblue-theme {
  background-color: #091e3f;
}
body.narrow-container .flexible-inner-section.c3-events {
  padding-top: 50px;
  padding-bottom: 50px;
}
.flexible-inner-section.c3-events .section-heading {
  margin-bottom: 40px;
}
/*=============================================
 = Flexible section - 1 column image slider =
 ===============================================*/
.flexible-inner-section.c1-image-slider {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  padding-top: 100px;
  padding-bottom: 100px;
}
.flexible-inner-section.c1-image-slider.white-theme {
  background-color: #fefefe;
}
.flexible-inner-section.c1-image-slider.lightgrey-theme {
  background-color: #dddddd;
}
.flexible-inner-section.c1-image-slider.gray-theme {
  background-color: #f7f7f7;
}
.flexible-inner-section.c1-image-slider.black-theme {
  background-color: #000000;
}
.flexible-inner-section.c1-image-slider.blue-theme {
  background-color: #0067b6;
}
.flexible-inner-section.c1-image-slider.pastelblue-theme {
  background-color: #8cacbf;
}
.flexible-inner-section.c1-image-slider.pastelblue2-theme {
  background-color: #a5c3d5;
}
.flexible-inner-section.c1-image-slider.lightblue-theme {
  background-color: #d0e1eb;
}
.flexible-inner-section.c1-image-slider.lightblue2-theme {
  background-color: #e4edf2;
}
.flexible-inner-section.c1-image-slider.lightblue3-theme {
  background-color: #e8eef2;
}
.flexible-inner-section.c1-image-slider.lightblue4-theme {
  background-color: #f1f6f9;
}
.flexible-inner-section.c1-image-slider.darkblue-theme {
  background-color: #091e3f;
}
body.narrow-container .flexible-inner-section.c1-image-slider {
  padding-top: 50px;
  padding-bottom: 50px;
}
.flexible-inner-section.c1-image-slider .slider-element {
  margin: auto;
  width: 100%;
  max-width: 770px;
}
.flexible-inner-section.c1-image-slider .image-slide {
  float: left;
  width: 100%;
}
.flexible-inner-section.c1-image-slider .slider-nav-wrapper {
  margin-top: 20px;
}
.flexible-inner-section.c1-image-slider .slider-nav-wrapper .end,
.flexible-inner-section.c1-image-slider .slider-nav-wrapper .start {
  height: 1em;
  line-height: 1em;
  font-weight: bold;
}
.flexible-inner-section.c1-image-slider .slider-nav-wrapper .start {
  margin-right: 8px;
}
.flexible-inner-section.c1-image-slider .slider-nav-wrapper .end {
  margin-left: 8px;
}
.flexible-inner-section.c1-image-slider .slick-dots {
  list-style: none;
  margin: 0;
  text-align: center;
  height: 1em;
  line-height: 1em;
}
.flexible-inner-section.c1-image-slider .slick-dots li {
  height: 1em;
  line-height: 1em;
  vertical-align: super;
  cursor: pointer;
  display: inline-block;
}
.flexible-inner-section.c1-image-slider .slick-dots li:hover button {
  background-color: rgba(0, 0, 0, 0.6);
}
.flexible-inner-section.c1-image-slider .slick-dots li.slick-active button {
  background-color: #000000;
}
.flexible-inner-section.c1-image-slider .slick-dots li button {
  height: 1em;
  line-height: 1em;
  vertical-align: super;
  padding: 0;
  font-size: 0;
  margin: 0 4px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background-color: transparent;
  border: 1px solid #000000;
  border-radius: 100%;
  width: 10px;
  height: 10px;
}
/*=============================================
 = Flexible section - 1 column text =
 ===============================================*/
.flexible-inner-section.c1-text {
  padding-top: 100px;
  padding-bottom: 100px;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.flexible-inner-section.c1-text.white-theme {
  background-color: #fefefe;
}
.flexible-inner-section.c1-text.lightgrey-theme {
  background-color: #dddddd;
}
.flexible-inner-section.c1-text.gray-theme {
  background-color: #f7f7f7;
}
.flexible-inner-section.c1-text.black-theme {
  background-color: #000000;
}
.flexible-inner-section.c1-text.blue-theme {
  background-color: #0067b6;
}
.flexible-inner-section.c1-text.pastelblue-theme {
  background-color: #8cacbf;
}
.flexible-inner-section.c1-text.pastelblue2-theme {
  background-color: #a5c3d5;
}
.flexible-inner-section.c1-text.lightblue-theme {
  background-color: #d0e1eb;
}
.flexible-inner-section.c1-text.lightblue2-theme {
  background-color: #e4edf2;
}
.flexible-inner-section.c1-text.lightblue3-theme {
  background-color: #e8eef2;
}
.flexible-inner-section.c1-text.lightblue4-theme {
  background-color: #f1f6f9;
}
.flexible-inner-section.c1-text.darkblue-theme {
  background-color: #091e3f;
}
body.narrow-container .flexible-inner-section.c1-text {
  padding-top: 50px;
  padding-bottom: 50px;
}
.flexible-inner-section.c1-text.center-col .content-col {
  width: 770px;
  max-width: 100%;
}
.flexible-inner-section.c1-text.center-col .flex-row {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.flexible-inner-section.c1-text .content-col {
  width: 100%;
}
/*=============================================
 = Flexible section - risk assessment =
 ===============================================*/
.flexible-inner-section.c1-risk-assessment {
  padding-top: 100px;
  padding-bottom: 100px;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.flexible-inner-section.c1-risk-assessment.white-theme {
  background-color: #fefefe;
}
.flexible-inner-section.c1-risk-assessment.lightgrey-theme {
  background-color: #dddddd;
}
.flexible-inner-section.c1-risk-assessment.gray-theme {
  background-color: #f7f7f7;
}
.flexible-inner-section.c1-risk-assessment.black-theme {
  background-color: #000000;
}
.flexible-inner-section.c1-risk-assessment.blue-theme {
  background-color: #0067b6;
}
.flexible-inner-section.c1-risk-assessment.pastelblue-theme {
  background-color: #8cacbf;
}
.flexible-inner-section.c1-risk-assessment.pastelblue2-theme {
  background-color: #a5c3d5;
}
.flexible-inner-section.c1-risk-assessment.lightblue-theme {
  background-color: #d0e1eb;
}
.flexible-inner-section.c1-risk-assessment.lightblue2-theme {
  background-color: #e4edf2;
}
.flexible-inner-section.c1-risk-assessment.lightblue3-theme {
  background-color: #e8eef2;
}
.flexible-inner-section.c1-risk-assessment.lightblue4-theme {
  background-color: #f1f6f9;
}
.flexible-inner-section.c1-risk-assessment.darkblue-theme {
  background-color: #091e3f;
}
/*=============================================
 = flexible section - banner with textbox =
 ===============================================*/
.flexible-inner-section.c1-textbox {
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.flexible-inner-section.c1-textbox.white-theme {
  background-color: #fefefe;
}
.flexible-inner-section.c1-textbox.lightgrey-theme {
  background-color: #dddddd;
}
.flexible-inner-section.c1-textbox.gray-theme {
  background-color: #f7f7f7;
}
.flexible-inner-section.c1-textbox.black-theme {
  background-color: #000000;
}
.flexible-inner-section.c1-textbox.blue-theme {
  background-color: #0067b6;
}
.flexible-inner-section.c1-textbox.pastelblue-theme {
  background-color: #8cacbf;
}
.flexible-inner-section.c1-textbox.pastelblue2-theme {
  background-color: #a5c3d5;
}
.flexible-inner-section.c1-textbox.lightblue-theme {
  background-color: #d0e1eb;
}
.flexible-inner-section.c1-textbox.lightblue2-theme {
  background-color: #e4edf2;
}
.flexible-inner-section.c1-textbox.lightblue3-theme {
  background-color: #e8eef2;
}
.flexible-inner-section.c1-textbox.lightblue4-theme {
  background-color: #f1f6f9;
}
.flexible-inner-section.c1-textbox.darkblue-theme {
  background-color: #091e3f;
}
.flexible-inner-section.c1-textbox.has-bg-img::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(140, 172, 191, 0.2);
}
.flexible-inner-section.c1-textbox.align-right .flex-row {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.flexible-inner-section.c1-textbox.align-center .flex-row {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.flexible-inner-section.c1-textbox.align-left .flex-row {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.flexible-inner-section.c1-textbox .grid-container {
  position: relative;
  z-index: 2;
}
.flexible-inner-section.c1-textbox .content-col {
  width: 45%;
  box-sizing: border-box;
  padding: 40px;
  background-color: rgba(165, 195, 213, 0.9);
  color: #fefefe;
}
.flexible-inner-section.c1-textbox .content > a,
.flexible-inner-section.c1-textbox .content > p > a,
.flexible-inner-section.c1-textbox .content > ul a {
  color: #fefefe;
}
/*=============================================
 = flexible section - 3 column post slider =
 ===============================================*/
.flexible-inner-section.c3-posts-slider {
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.flexible-inner-section.c3-posts-slider.white-theme {
  background-color: #fefefe;
}
.flexible-inner-section.c3-posts-slider.lightgrey-theme {
  background-color: #dddddd;
}
.flexible-inner-section.c3-posts-slider.gray-theme {
  background-color: #f7f7f7;
}
.flexible-inner-section.c3-posts-slider.black-theme {
  background-color: #000000;
}
.flexible-inner-section.c3-posts-slider.blue-theme {
  background-color: #0067b6;
}
.flexible-inner-section.c3-posts-slider.pastelblue-theme {
  background-color: #8cacbf;
}
.flexible-inner-section.c3-posts-slider.pastelblue2-theme {
  background-color: #a5c3d5;
}
.flexible-inner-section.c3-posts-slider.lightblue-theme {
  background-color: #d0e1eb;
}
.flexible-inner-section.c3-posts-slider.lightblue2-theme {
  background-color: #e4edf2;
}
.flexible-inner-section.c3-posts-slider.lightblue3-theme {
  background-color: #e8eef2;
}
.flexible-inner-section.c3-posts-slider.lightblue4-theme {
  background-color: #f1f6f9;
}
.flexible-inner-section.c3-posts-slider.darkblue-theme {
  background-color: #091e3f;
}
.flexible-inner-section.c3-posts-slider.white-theme .single-slide {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.07),
    0 4px 8px rgba(0, 0, 0, 0.07), 0 8px 16px rgba(0, 0, 0, 0.07),
    0 16px 32px rgba(0, 0, 0, 0.07);
  border-radius: 3px;
}
.flexible-inner-section.c3-posts-slider .content-col {
  padding-right: 20px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  box-sizing: border-box;
}
.flexible-inner-section.c3-posts-slider .section-heading + .slider-element {
  margin-top: 40px;
}
.flexible-inner-section.c3-posts-slider .slider-container {
  overflow: hidden;
  padding-bottom: 40px;
  padding-top: 40px;
  max-width: 100%;
}
.flexible-inner-section.c3-posts-slider .slider-element {
  margin-left: -15px;
  margin-right: -15px;
  -webkit-transition: opacity 200ms ease-out;
  transition: opacity 200ms ease-out;
}
.flexible-inner-section.c3-posts-slider
  .slider-element:not(.slick-initialized) {
  max-height: 500px;
  opacity: 0;
}
.flexible-inner-section.c3-posts-slider .slider-element.slick-initialized {
  opacity: 1;
}
.flexible-inner-section.c3-posts-slider .slider-element .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.flexible-inner-section.c3-posts-slider .slider-element .slick-list {
  overflow: visible;
}
.flexible-inner-section.c3-posts-slider .slider-element .news-card {
  height: auto;
  background-color: #fefefe;
}
.flexible-inner-section.c3-posts-slider .slider-element .news-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(254, 254, 254, 0.8);
  opacity: 1;
  z-index: 3;
  pointer-events: none;
  -webkit-transition: opacity 500ms 0s ease-out, height 0 0;
  transition: opacity 500ms 0s ease-out, height 0 0;
}
.flexible-inner-section.c3-posts-slider
  .slider-element
  .news-card.slick-active::after,
.flexible-inner-section.c3-posts-slider
  .slider-element
  .news-card.slick-current::after {
  opacity: 0;
  height: 0;
  -webkit-transition: opacity 500ms 0s ease-out, height 0s 500s;
  transition: opacity 500ms 0s ease-out, height 0s 500s;
}
/*=============================================
 = flexible - testimonials slider =
 ===============================================*/
.flexible-inner-section.c1-testimonial-slider {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  padding-top: 100px;
  padding-bottom: 100px;
}
.flexible-inner-section.c1-testimonial-slider.white-theme {
  background-color: #fefefe;
}
.flexible-inner-section.c1-testimonial-slider.lightgrey-theme {
  background-color: #dddddd;
}
.flexible-inner-section.c1-testimonial-slider.gray-theme {
  background-color: #f7f7f7;
}
.flexible-inner-section.c1-testimonial-slider.black-theme {
  background-color: #000000;
}
.flexible-inner-section.c1-testimonial-slider.blue-theme {
  background-color: #0067b6;
}
.flexible-inner-section.c1-testimonial-slider.pastelblue-theme {
  background-color: #8cacbf;
}
.flexible-inner-section.c1-testimonial-slider.pastelblue2-theme {
  background-color: #a5c3d5;
}
.flexible-inner-section.c1-testimonial-slider.lightblue-theme {
  background-color: #d0e1eb;
}
.flexible-inner-section.c1-testimonial-slider.lightblue2-theme {
  background-color: #e4edf2;
}
.flexible-inner-section.c1-testimonial-slider.lightblue3-theme {
  background-color: #e8eef2;
}
.flexible-inner-section.c1-testimonial-slider.lightblue4-theme {
  background-color: #f1f6f9;
}
.flexible-inner-section.c1-testimonial-slider.darkblue-theme {
  background-color: #091e3f;
}
.flexible-inner-section.c1-testimonial-slider .heading-col {
  width: 640px;
  max-width: 100%;
  margin-bottom: 15px;
}
.flexible-inner-section.c1-testimonial-slider .testimonials-slider-element {
  width: 100%;
}
.flexible-inner-section.c1-testimonial-slider
  .testimonials-slider-element
  .inside-testimonial {
  width: 640px;
  max-width: 100%;
  margin: auto;
  text-align: center;
}
.flexible-inner-section.c1-testimonial-slider
  .testimonials-slider-element
  .testimonial-content
  p {
  margin-bottom: 1em;
}
.flexible-inner-section.c1-testimonial-slider
  .testimonials-slider-element
  .testimonial-content
  p
  > br:last-child {
  display: none;
}
.flexible-inner-section.c1-testimonial-slider
  .testimonials-slider-element
  .byline {
  margin-top: 2em;
  font-size: 14px;
  display: block;
}
.flexible-inner-section.c1-testimonial-slider .slider-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flexible-inner-section.c1-testimonial-slider .slider-nav-wrapper {
  margin-top: 30px;
}
.flexible-inner-section.c1-testimonial-slider .slider-nav-wrapper .end,
.flexible-inner-section.c1-testimonial-slider .slider-nav-wrapper .start {
  height: 1em;
  line-height: 1em;
  font-weight: bold;
  color: #a5c3d5;
}
.flexible-inner-section.c1-testimonial-slider .slider-nav-wrapper .start {
  margin-right: 8px;
}
.flexible-inner-section.c1-testimonial-slider .slider-nav-wrapper .end {
  margin-left: 8px;
}
.flexible-inner-section.c1-testimonial-slider .slick-dots {
  list-style: none;
  margin: 0;
  text-align: center;
  height: 1em;
  line-height: 1em;
}
.flexible-inner-section.c1-testimonial-slider .slick-dots li {
  height: 1em;
  line-height: 1em;
  vertical-align: super;
  cursor: pointer;
  display: inline-block;
}
.flexible-inner-section.c1-testimonial-slider .slick-dots li:hover button {
  background-color: rgba(165, 195, 213, 0.6);
}
.flexible-inner-section.c1-testimonial-slider
  .slick-dots
  li.slick-active
  button {
  background-color: #a5c3d5;
}
.flexible-inner-section.c1-testimonial-slider .slick-dots li button {
  height: 1em;
  line-height: 1em;
  vertical-align: super;
  padding: 0;
  font-size: 0;
  margin: 0 4px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background-color: transparent;
  border: 1px solid #a5c3d5;
  border-radius: 100%;
  width: 10px;
  height: 10px;
}
/*=============================================
 = Flexible section - 1-3 column textboxes =
 ===============================================*/
.flexible-inner-section.c3-textboxes {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
}
.flexible-inner-section.c3-textboxes.white-theme {
  background-color: #fefefe;
}
.flexible-inner-section.c3-textboxes.lightgrey-theme {
  background-color: #dddddd;
}
.flexible-inner-section.c3-textboxes.gray-theme {
  background-color: #f7f7f7;
}
.flexible-inner-section.c3-textboxes.black-theme {
  background-color: #000000;
}
.flexible-inner-section.c3-textboxes.blue-theme {
  background-color: #0067b6;
}
.flexible-inner-section.c3-textboxes.pastelblue-theme {
  background-color: #8cacbf;
}
.flexible-inner-section.c3-textboxes.pastelblue2-theme {
  background-color: #a5c3d5;
}
.flexible-inner-section.c3-textboxes.lightblue-theme {
  background-color: #d0e1eb;
}
.flexible-inner-section.c3-textboxes.lightblue2-theme {
  background-color: #e4edf2;
}
.flexible-inner-section.c3-textboxes.lightblue3-theme {
  background-color: #e8eef2;
}
.flexible-inner-section.c3-textboxes.lightblue4-theme {
  background-color: #f1f6f9;
}
.flexible-inner-section.c3-textboxes.darkblue-theme {
  background-color: #091e3f;
}
.flexible-inner-section.c3-textboxes.has-bg-img {
  padding-top: 180px;
  padding-bottom: 180px;
}
.flexible-inner-section.c3-textboxes .heading-row {
  margin-bottom: 80px;
}
.flexible-inner-section.c3-textboxes .content-col {
  width: 100%;
}
.flexible-inner-section.c3-textboxes .textboxes {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flexible-inner-section.c3-textboxes.cols-2 .textbox,
.flexible-inner-section.c3-textboxes.cols-4 .textbox {
  max-width: 45%;
}
.flexible-inner-section.c3-textboxes.cols-2 .textbox .content,
.flexible-inner-section.c3-textboxes.cols-4 .textbox .content {
  width: 500px;
}
.flexible-inner-section.c3-textboxes.cols-2 .textbox:nth-child(1n + 3),
.flexible-inner-section.c3-textboxes.cols-4 .textbox:nth-child(1n + 3) {
  margin-top: 60px;
}
.flexible-inner-section.c3-textboxes .textboxes {
  margin-right: -30px;
}
.flexible-inner-section.c3-textboxes .textbox {
  position: relative;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  max-width: 33.3333%;
  width: 100%;
}
.flexible-inner-section.c3-textboxes .textbox::before {
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  position: absolute;
  width: 3px;
  background-color: #a5c3d5;
}
.flexible-inner-section.c3-textboxes .textbox .inside-textbox {
  padding-left: 30px;
  padding-right: 30px;
}
.flexible-inner-section.c3-textboxes .textbox .content {
  width: 300px;
  min-width: 100%;
  max-width: 100%;
}
.flexible-inner-section.c3-textboxes .textbox .content p:nth-child(1) {
  margin-bottom: 5px;
}
.flexible-inner-section.c3-textboxes .textbox .content p:nth-child(1) > strong {
  color: #0067b6;
}
.flexible-inner-section.c3-textboxes .textbox .icon {
  display: block;
  font-size: 4em;
  margin-bottom: 12px;
}
/*=============================================
 = flexible section - 1 column split bg =
 ===============================================*/
.flexible-inner-section.c1-text-split-bg {
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#e4edf2),
    color-stop(60%, #e4edf2),
    color-stop(60%, #fefefe),
    to(#fefefe)
  );
  background: -webkit-linear-gradient(
    top,
    #e4edf2 0%,
    #e4edf2 60%,
    #fefefe 60%,
    #fefefe 100%
  );
  background: linear-gradient(
    to bottom,
    #e4edf2 0%,
    #e4edf2 60%,
    #fefefe 60%,
    #fefefe 100%
  );
}
.flexible-inner-section.c1-text-split-bg:first-child {
  padding-top: 80px;
}
.flexible-inner-section.c1-text-split-bg
  + .flexible-inner-section.has-padding.white-theme {
  padding-top: 0;
}
.flexible-inner-section.lightblue2-theme.has-padding
  + .flexible-inner-section.c1-text-split-bg {
  padding-top: 0;
}
.flexible-inner-section.c1-text-split-bg .buttons-col {
  padding-left: 12%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-item-align: center;
  align-self: center;
}
.flexible-inner-section.c1-text-split-bg .filter-image {
  margin-top: 40px;
  position: relative;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-height: 400px;
  overflow: hidden;
}
.flexible-inner-section.c1-text-split-bg .filter-image::after {
  content: "";
  display: table;
  clear: both;
}
.flexible-inner-section.c1-text-split-bg .filter-image::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(140, 172, 191, 0.2);
  display: block;
  z-index: 2;
}
.flexible-inner-section.c1-text-split-bg .filter-image img {
  position: relative;
  opacity: 0;
  z-index: 1;
  float: left;
  width: 100%;
}
/*=============================================
 = Flexible section - 2 column text =
 ===============================================*/
.flexible-inner-section.c2-text {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 120px;
}
.flexible-inner-section.c2-text.white-theme {
  background-color: #fefefe;
}
.flexible-inner-section.c2-text.lightgrey-theme {
  background-color: #dddddd;
}
.flexible-inner-section.c2-text.gray-theme {
  background-color: #f7f7f7;
}
.flexible-inner-section.c2-text.black-theme {
  background-color: #000000;
}
.flexible-inner-section.c2-text.blue-theme {
  background-color: #0067b6;
}
.flexible-inner-section.c2-text.pastelblue-theme {
  background-color: #8cacbf;
}
.flexible-inner-section.c2-text.pastelblue2-theme {
  background-color: #a5c3d5;
}
.flexible-inner-section.c2-text.lightblue-theme {
  background-color: #d0e1eb;
}
.flexible-inner-section.c2-text.lightblue2-theme {
  background-color: #e4edf2;
}
.flexible-inner-section.c2-text.lightblue3-theme {
  background-color: #e8eef2;
}
.flexible-inner-section.c2-text.lightblue4-theme {
  background-color: #f1f6f9;
}
.flexible-inner-section.c2-text.darkblue-theme {
  background-color: #091e3f;
}
.flexible-inner-section.c2-text .content-col {
  width: 50%;
}
.flexible-inner-section.c2-text .right {
  padding-left: 40px;
}
.flexible-inner-section.c2-text .left {
  padding-right: 40px;
}
/*=============================================
 = flexible section - full width - 3 column text =
 ===============================================*/
.flexible-inner-section.fw-text-cols {
  padding-top: 80px;
  padding-bottom: 80px;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.flexible-inner-section.fw-text-cols.white-theme {
  background-color: #fefefe;
}
.flexible-inner-section.fw-text-cols.lightgrey-theme {
  background-color: #dddddd;
}
.flexible-inner-section.fw-text-cols.gray-theme {
  background-color: #f7f7f7;
}
.flexible-inner-section.fw-text-cols.black-theme {
  background-color: #000000;
}
.flexible-inner-section.fw-text-cols.blue-theme {
  background-color: #0067b6;
}
.flexible-inner-section.fw-text-cols.pastelblue-theme {
  background-color: #8cacbf;
}
.flexible-inner-section.fw-text-cols.pastelblue2-theme {
  background-color: #a5c3d5;
}
.flexible-inner-section.fw-text-cols.lightblue-theme {
  background-color: #d0e1eb;
}
.flexible-inner-section.fw-text-cols.lightblue2-theme {
  background-color: #e4edf2;
}
.flexible-inner-section.fw-text-cols.lightblue3-theme {
  background-color: #e8eef2;
}
.flexible-inner-section.fw-text-cols.lightblue4-theme {
  background-color: #f1f6f9;
}
.flexible-inner-section.fw-text-cols.darkblue-theme {
  background-color: #091e3f;
}
.flexible-inner-section.fw-text-cols .column {
  padding-left: 40px;
  padding-right: 40px;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  max-width: 620px;
  box-sizing: border-box;
  width: 33.333%;
}
/*=============================================
 = Flexible section - 2 column cta =
 ===============================================*/
.flexible-inner-section.c2-cta {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  padding-top: 70px;
  padding-bottom: 70px;
}
.flexible-inner-section.c2-cta.white-theme {
  background-color: #fefefe;
}
.flexible-inner-section.c2-cta.lightgrey-theme {
  background-color: #dddddd;
}
.flexible-inner-section.c2-cta.gray-theme {
  background-color: #f7f7f7;
}
.flexible-inner-section.c2-cta.black-theme {
  background-color: #000000;
}
.flexible-inner-section.c2-cta.blue-theme {
  background-color: #0067b6;
}
.flexible-inner-section.c2-cta.pastelblue-theme {
  background-color: #8cacbf;
}
.flexible-inner-section.c2-cta.pastelblue2-theme {
  background-color: #a5c3d5;
}
.flexible-inner-section.c2-cta.lightblue-theme {
  background-color: #d0e1eb;
}
.flexible-inner-section.c2-cta.lightblue2-theme {
  background-color: #e4edf2;
}
.flexible-inner-section.c2-cta.lightblue3-theme {
  background-color: #e8eef2;
}
.flexible-inner-section.c2-cta.lightblue4-theme {
  background-color: #f1f6f9;
}
.flexible-inner-section.c2-cta.darkblue-theme {
  background-color: #091e3f;
}
.flexible-inner-section.c2-cta .content-col {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-right: 80px;
}
.flexible-inner-section.c2-cta .cta-col {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.flexible-inner-section.c2-cta .cta-col.has-content {
  max-width: 50%;
  padding-left: 80px;
}
/*=============================================
 = 1 column - video search =
 ===============================================*/
.flexible-inner-section.c1-video-search {
  padding-top: 120px;
  padding-bottom: 80px;
  background: -webkit-linear-gradient(
    top,
    #e4edf2 0px,
    #e4edf2 720px,
    #fefefe 720px,
    #fefefe 100%
  );
  background: linear-gradient(
    to bottom,
    #e4edf2 0px,
    #e4edf2 720px,
    #fefefe 720px,
    #fefefe 100%
  );
}
.flexible-inner-section.c1-video-search .buttons-col {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-item-align: center;
  align-self: center;
  padding-left: 80px;
}
.flexible-inner-section.c1-video-search .rest-search-wrapper {
  margin-top: 40px;
}
.rest-search-wrapper {
  padding: 50px 40px 70px;
  background-color: #f7f7f7;
}
.rest-search-wrapper .post-filters {
  margin-bottom: 60px;
}
.rest-search-wrapper .post-filters .taxonomy-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.rest-search-wrapper .post-filters .taxonomy-wrap input[type="checkbox"] {
  position: absolute;
  left: -9999999%;
  opacity: 0;
  visibility: hidden;
}
.rest-search-wrapper .post-filters .taxonomy-wrap label {
  display: inline-block;
  border: 1px solid;
  font-weight: bold;
  font-size: 14px;
  padding: 15px 25px;
  opacity: 1;
  border-radius: 10px;
  background-color: #0067b6;
  color: #fefefe;
  border-color: #0067b6;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  text-align: center;
  min-width: 100px;
  box-sizing: border-box;
  background-color: transparent;
  font-weight: 700;
  color: #000000;
  min-width: 100px;
  text-align: center;
  margin-left: 10px;
  margin-right: 10px;
  cursor: pointer;
}
.rest-search-wrapper .post-filters .taxonomy-wrap label:hover {
  background-color: transparent;
  color: #0067b6;
}
.rest-search-wrapper .post-filters .taxonomy-wrap label::-moz-selection {
  background-color: transparent;
}
.rest-search-wrapper .post-filters .taxonomy-wrap label::selection {
  background-color: transparent;
}
.rest-search-wrapper .post-filters .taxonomy-wrap label::-moz-selection {
  background-color: transparent;
}
.rest-search-wrapper .post-filters .taxonomy-wrap input:checked + label {
  background-color: #0067b6;
  color: #fefefe;
}
.rest-search-wrapper .post-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-transition: opacity 100ms ease-out;
  transition: opacity 100ms ease-out;
  opacity: 1;
}
.rest-search-wrapper .post-list.loading {
  opacity: 0;
}
.rest-search-wrapper .post-list .video-card {
  padding-left: 40px;
  padding-right: 40px;
  box-sizing: border-box;
  width: 50%;
  margin-bottom: 30px;
}
.rest-search-wrapper .post-list .video-card .image-wrap {
  width: 100%;
  padding-bottom: 56.25%;
  margin-bottom: 20px;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.rest-search-wrapper .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.rest-search-wrapper .pagination .page-numbers {
  cursor: pointer;
  font-size: 14px;
  line-height: 50px;
  width: 50px;
  text-align: center;
  height: 50px;
  border-radius: 10px;
  color: #000000;
  font-weight: 700;
  display: inline-block;
  margin-left: 8px;
  margin-right: 8px;
  -webkit-transition: 300ms ease-out;
  transition: 300ms ease-out;
}
.rest-search-wrapper .pagination .current {
  background-color: #0067b6;
  color: #fefefe;
}
/*=============================================
 = Brochure search =
 ===============================================*/
.flexible-inner-section.c1-brochure-search {
  padding-top: 120px;
  padding-bottom: 80px;
  background: -webkit-linear-gradient(
    top,
    #e4edf2 0px,
    #e4edf2 720px,
    #fefefe 720px,
    #fefefe 100%
  );
  background: linear-gradient(
    to bottom,
    #e4edf2 0px,
    #e4edf2 720px,
    #fefefe 720px,
    #fefefe 100%
  );
}
.flexible-inner-section.c1-brochure-search .buttons-col {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-item-align: center;
  align-self: center;
  padding-left: 80px;
}
.flexible-inner-section.c1-brochure-search .rest-search-wrapper {
  margin-top: 40px;
}
.flexible-inner-section.c1-brochure-search .link-icon {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  font-style: normal;
  color: currentColor;
  text-align: left;
  text-indent: -9999px;
  direction: ltr;
  width: 16px;
  height: 2px;
  box-shadow: inset 0 0 0 32px;
  -webkit-transform: rotate(-45deg) scale(1);
  transform: rotate(-45deg) scale(1);
  margin: 16px 9px;
  -webkit-transition: 0.15s ease-out;
  transition: 0.15s ease-out;
}
.flexible-inner-section.c1-brochure-search .link-icon::after,
.flexible-inner-section.c1-brochure-search .link-icon::before {
  content: "";
  pointer-events: none;
  border: 2px solid;
  width: 12px;
  height: 8px;
  border-radius: 4px;
}
.flexible-inner-section.c1-brochure-search .link-icon::before {
  right: -10px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.flexible-inner-section.c1-brochure-search .link-icon::after {
  left: -10px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.flexible-inner-section.c1-brochure-search .brochure-card {
  padding-left: 40px;
  padding-right: 40px;
  box-sizing: border-box;
  width: 50%;
  margin-bottom: 30px;
}
.flexible-inner-section.c1-brochure-search .brochure-card .image-wrap {
  width: 100%;
  padding-bottom: 56.25%;
  margin-bottom: 20px;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.flexible-inner-section.c1-brochure-search
  .brochure-card
  .image-wrap:hover
  .brochure-link {
  background-color: rgba(0, 0, 0, 0.4);
}
.flexible-inner-section.c1-brochure-search
  .brochure-card
  .image-wrap:hover
  .brochure-link
  .icon-wrap {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.flexible-inner-section.c1-brochure-search
  .brochure-card
  .image-wrap:hover
  .brochure-link
  .link-icon {
  -webkit-transform: rotate(-45deg) scale(1.1);
  transform: rotate(-45deg) scale(1.1);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.flexible-inner-section.c1-brochure-search
  .brochure-card
  .image-wrap
  .icon-wrap {
  padding: 20px;
  border-radius: 100%;
  background-color: #fefefe;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.15s ease-out;
  transition: 0.15s ease-out;
}
.flexible-inner-section.c1-brochure-search
  .brochure-card
  .image-wrap
  .brochure-link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 3;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
/*=============================================
 = Project grid =
 ===============================================*/
.flexible-inner-section.fw-project-grid {
  overflow: hidden;
}
.flexible-inner-section.fw-project-grid .single-project {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.flexible-inner-section.fw-project-grid .single-project:hover .hoverblock {
  opacity: 1;
}
.flexible-inner-section.fw-project-grid .single-project .inside-project {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.flexible-inner-section.fw-project-grid .single-project .mobile-image {
  display: none;
}
.flexible-inner-section.fw-project-grid .single-project .inside-block {
  padding: 50px;
  width: 100%;
  box-sizing: border-box;
  max-width: 480px;
}
.flexible-inner-section.fw-project-grid .single-project .customer {
  font-size: 46px;
  font-weight: bold;
}
.flexible-inner-section.fw-project-grid .single-project .title {
  font-size: 34px;
  font-weight: 600;
}
.flexible-inner-section.fw-project-grid .single-project .hoverblock {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(208, 225, 235, 0.9);
  opacity: 0;
  -webkit-transition: opacity 300ms ease-out;
  transition: opacity 300ms ease-out;
}
html.no-cssgrid .flexible-inner-section.fw-project-grid .project-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -2.5px;
  margin-right: -2.5px;
}
html.no-cssgrid
  .flexible-inner-section.fw-project-grid
  .project-grid
  .grid-col {
  border: 2.5px solid #fefefe;
}
html.no-cssgrid
  .flexible-inner-section.fw-project-grid
  .project-grid
  .grid-col:nth-child(4n + 1),
html.no-cssgrid
  .flexible-inner-section.fw-project-grid
  .project-grid
  .grid-col:nth-child(4n + 4) {
  width: 33.33333%;
}
html.no-cssgrid
  .flexible-inner-section.fw-project-grid
  .project-grid
  .grid-col:nth-child(4n + 2),
html.no-cssgrid
  .flexible-inner-section.fw-project-grid
  .project-grid
  .grid-col:nth-child(4n + 3) {
  width: 66.66666%;
}
html.no-cssgrid
  .flexible-inner-section.fw-project-grid
  .project-grid
  .grid-col.grid-block-1:nth-child(1n + 1) {
  width: 500px;
  max-width: 100%;
}
html.cssgrid .flexible-inner-section.fw-project-grid .project-grid {
  display: grid;
  grid-gap: 5px 5px;
  grid-template-columns: [col] 16.666% [col] 16.666% [col] 16.666% [col] 16.666% [col] 16.666% [col] 16.666%;
  grid-template-rows: [row] auto [row] auto [row];
}
html.cssgrid
  .flexible-inner-section.fw-project-grid
  .project-grid
  .grid-col.grid-block-3.even.grid-block-count-1 {
  grid-column: col 1 / span 2;
  grid-row: span 1;
}
html.cssgrid
  .flexible-inner-section.fw-project-grid
  .project-grid
  .grid-col.grid-block-3.even.grid-block-count-3 {
  grid-column: col 1 / span 2;
  grid-row: span 1;
}
html.cssgrid
  .flexible-inner-section.fw-project-grid
  .project-grid
  .grid-col.grid-block-3.even.grid-block-count-2 {
  grid-column: col 3 / span 4;
  grid-row: span 2;
}
html.cssgrid
  .flexible-inner-section.fw-project-grid
  .project-grid
  .grid-col.grid-block-3.odd.grid-block-count-1 {
  grid-column: col 1 / span 4;
  grid-row: span 2;
}
html.cssgrid
  .flexible-inner-section.fw-project-grid
  .project-grid
  .grid-col.grid-block-3.odd.grid-block-count-2 {
  grid-column: col 5 / span 2;
  grid-row: span 1;
}
html.cssgrid
  .flexible-inner-section.fw-project-grid
  .project-grid
  .grid-col.grid-block-3.odd.grid-block-count-3 {
  grid-column: col 5 / span 2;
  grid-row: span 1;
}
html.cssgrid
  .flexible-inner-section.fw-project-grid
  .project-grid
  .grid-col.grid-block-2.odd.grid-block-count-1 {
  grid-column: col 1 / span 2;
  grid-row: span 1;
}
html.cssgrid
  .flexible-inner-section.fw-project-grid
  .project-grid
  .grid-col.grid-block-2.odd.grid-block-count-2 {
  grid-column: col 3 / span 4;
  grid-row: span 1;
}
html.cssgrid
  .flexible-inner-section.fw-project-grid
  .project-grid
  .grid-col.grid-block-2.even.grid-block-count-1 {
  grid-column: col 1 / span 4;
  grid-row: span 1;
}
html.cssgrid
  .flexible-inner-section.fw-project-grid
  .project-grid
  .grid-col.grid-block-2.even.grid-block-count-2 {
  grid-column: col 5 / span 2;
  grid-row: span 1;
}
html.cssgrid
  .flexible-inner-section.fw-project-grid
  .project-grid
  .grid-col.grid-block-1 {
  grid-column: col 3 / span 2;
  grid-row: span 1;
}
/*=============================================
 = flexible section - 3 column partners =
 ===============================================*/
.flexible-inner-section.c3-partners {
  padding-top: 100px;
  padding-bottom: 100px;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.flexible-inner-section.c3-partners.white-theme {
  background-color: #fefefe;
}
.flexible-inner-section.c3-partners.lightgrey-theme {
  background-color: #dddddd;
}
.flexible-inner-section.c3-partners.gray-theme {
  background-color: #f7f7f7;
}
.flexible-inner-section.c3-partners.black-theme {
  background-color: #000000;
}
.flexible-inner-section.c3-partners.blue-theme {
  background-color: #0067b6;
}
.flexible-inner-section.c3-partners.pastelblue-theme {
  background-color: #8cacbf;
}
.flexible-inner-section.c3-partners.pastelblue2-theme {
  background-color: #a5c3d5;
}
.flexible-inner-section.c3-partners.lightblue-theme {
  background-color: #d0e1eb;
}
.flexible-inner-section.c3-partners.lightblue2-theme {
  background-color: #e4edf2;
}
.flexible-inner-section.c3-partners.lightblue3-theme {
  background-color: #e8eef2;
}
.flexible-inner-section.c3-partners.lightblue4-theme {
  background-color: #f1f6f9;
}
.flexible-inner-section.c3-partners.darkblue-theme {
  background-color: #091e3f;
}
.flexible-inner-section.c3-partners .section-heading {
  margin-bottom: 80px;
}
@media only screen and (min-width: 1366px) {
  .flexible-inner-section.c3-partners .retina-container {
    padding-left: 80px;
    padding-right: 80px;
  }
}
.flexible-inner-section.c3-partners .pull {
  margin-left: -40px;
  margin-right: -40px;
}
.flexible-inner-section.c3-partners .partner-card {
  width: 33.33%;
  box-sizing: border-box;
  padding-left: 40px;
  padding-right: 40px;
  margin-bottom: 50px;
}
.flexible-inner-section.c3-partners .partner-card .image {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  padding-bottom: 56.25%;
  background-color: #f7f7f7;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1.5em;
}
.flexible-inner-section.c3-partners .partner-card .image::before {
  -webkit-transition: 300ms ease-out;
  transition: 300ms ease-out;
  content: "";
  position: absolute;
  display: block;
  pointer-events: none;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(208, 225, 235, 0.8);
  opacity: 0;
}
.flexible-inner-section.c3-partners .partner-card .image:hover::before {
  opacity: 1;
}
.flexible-inner-section.c3-partners .partner-card .image:hover .btn {
  opacity: 1;
}
.flexible-inner-section.c3-partners .partner-card .image .btn {
  position: absolute;
  opacity: 0;
  -webkit-transition: 300ms ease-out;
  transition: 300ms ease-out;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  box-sizing: border-box;
  max-width: 90%;
  margin: auto;
}
.flexible-inner-section.c3-partners .partner-card .post-title {
  font-size: 25px;
}
.flexible-inner-section.c3-partners .partner-card .content a::after {
  display: none !important;
}
.flexible-inner-section.c3-partners .partner-card .mobile-cta {
  display: none;
}
/*=============================================
 = flexible section - 1 column faq =
 ===============================================*/
.flexible-inner-section.c1-faq {
  padding-top: 120px;
  padding-bottom: 120px;
  background: -webkit-linear-gradient(
    top,
    #e4edf2 0%,
    #e4edf2 500px,
    #fefefe 500px,
    #fefefe 100%
  );
  background: linear-gradient(
    to bottom,
    #e4edf2 0%,
    #e4edf2 500px,
    #fefefe 500px,
    #fefefe 100%
  );
}
.flexible-inner-section.c1-faq
  + .flexible-inner-section.has-padding.white-theme {
  padding-top: 0;
}
.flexible-inner-section.lightblue2-theme.has-padding
  + .flexible-inner-section.c1-faq {
  padding-top: 0;
}
.flexible-inner-section.c1-faq .buttons-col {
  padding-left: 10%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.flexible-inner-section.c1-faq .faq-list-box {
  margin-top: 40px;
}
/*=============================================
 = section - full width separator =
 ===============================================*/
.flexible-inner-section.fw-separator {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  width: 100%;
  display: block;
  height: 1px;
}
.flexible-inner-section.fw-separator.white-theme {
  background-color: #fefefe;
}
.flexible-inner-section.fw-separator.lightgrey-theme {
  background-color: #dddddd;
}
.flexible-inner-section.fw-separator.gray-theme {
  background-color: #f7f7f7;
}
.flexible-inner-section.fw-separator.black-theme {
  background-color: #000000;
}
.flexible-inner-section.fw-separator.blue-theme {
  background-color: #0067b6;
}
.flexible-inner-section.fw-separator.pastelblue-theme {
  background-color: #8cacbf;
}
.flexible-inner-section.fw-separator.pastelblue2-theme {
  background-color: #a5c3d5;
}
.flexible-inner-section.fw-separator.lightblue-theme {
  background-color: #d0e1eb;
}
.flexible-inner-section.fw-separator.lightblue2-theme {
  background-color: #e4edf2;
}
.flexible-inner-section.fw-separator.lightblue3-theme {
  background-color: #e8eef2;
}
.flexible-inner-section.fw-separator.lightblue4-theme {
  background-color: #f1f6f9;
}
.flexible-inner-section.fw-separator.darkblue-theme {
  background-color: #091e3f;
}
/*=============================================
 = section - 2 column steps =
 ===============================================*/
.flexible-inner-section.c2-steps {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  padding-top: 80px;
  padding-bottom: 80px;
}
.flexible-inner-section.c2-steps.white-theme {
  background-color: #fefefe;
}
.flexible-inner-section.c2-steps.lightgrey-theme {
  background-color: #dddddd;
}
.flexible-inner-section.c2-steps.gray-theme {
  background-color: #f7f7f7;
}
.flexible-inner-section.c2-steps.black-theme {
  background-color: #000000;
}
.flexible-inner-section.c2-steps.blue-theme {
  background-color: #0067b6;
}
.flexible-inner-section.c2-steps.pastelblue-theme {
  background-color: #8cacbf;
}
.flexible-inner-section.c2-steps.pastelblue2-theme {
  background-color: #a5c3d5;
}
.flexible-inner-section.c2-steps.lightblue-theme {
  background-color: #d0e1eb;
}
.flexible-inner-section.c2-steps.lightblue2-theme {
  background-color: #e4edf2;
}
.flexible-inner-section.c2-steps.lightblue3-theme {
  background-color: #e8eef2;
}
.flexible-inner-section.c2-steps.lightblue4-theme {
  background-color: #f1f6f9;
}
.flexible-inner-section.c2-steps.darkblue-theme {
  background-color: #091e3f;
}
.flexible-inner-section.c2-steps .pull {
  margin-left: -40px;
  margin-right: -40px;
}
.flexible-inner-section.c2-steps .single-step {
  width: 50%;
  box-sizing: border-box;
  padding-left: 40px;
  padding-right: 40px;
}
.flexible-inner-section.c2-steps .single-step:nth-child(1n + 3) {
  margin-top: 50px;
}
.flexible-inner-section.c2-steps .image-wrap {
  margin-bottom: 30px;
}
.flexible-inner-section.c2-steps .image-wrap::after {
  content: "";
  display: table;
  clear: both;
}
.flexible-inner-section.c2-steps .image-wrap.no-image {
  margin-top: 50px;
}
.flexible-inner-section.c2-steps .image-wrap img {
  width: 100%;
  float: left;
}
.flexible-inner-section.c2-steps .step-title {
  min-width: 150px;
  box-sizing: border-box;
  max-width: 100%;
  background-color: #8cacbf;
  position: absolute;
  bottom: 0;
  right: 0;
  line-height: 50px;
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
  color: #fefefe;
  font-weight: bold;
  font-size: 14px;
  z-index: 5;
}
/*=============================================
 = imageblocks =
 ===============================================*/
.imageblocks .grid-container {
  max-width: 1560px;
}
.imageblocks .images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.imageblocks .images a {
  width: calc(100% / 6 - 10px);
  margin: 5px;
  min-width: 190px;
}
.imageblocks .images a.no {
  pointer-events: none;
  cursor: default;
}
.imageblocks .images .image {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 250px;
  padding: 10px;
  max-height: 270px;
}
.imageblocks .images .image.fullpic {
  padding: 0;
  height: 100%;
}
.imageblocks .images .image.fullpic img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.imageblocks .images .image.white {
  background-color: #fefefe;
}
.imageblocks .images .image.gray {
  background-color: #f7f7f7;
}
.imageblocks .images .image.pastelblue2 {
  background-color: #a5c3d5;
}
.imageblocks .images .image.lightblue {
  background-color: #d0e1eb;
}
.imageblocks .images .image.lightblue4 {
  background-color: #f1f6f9;
}
/*------------ RESPONSIVE ------------*/
/*-Desktop (iMac) 1450px-*/
/* Small laptops  1366px-*/
@media screen and (max-width: 1366px) {
  /*----------- flexible  -----------*/
  .flexible-inner-section.fw-project-grid .single-project .customer {
    font-size: 32px;
  }
  .flexible-inner-section.fw-project-grid .single-project .title {
    font-size: 26px;
  }
  html.no-cssgrid
    .flexible-inner-section.fw-project-grid
    .project-grid
    .grid-col:nth-child(4n + 1),
  html.no-cssgrid
    .flexible-inner-section.fw-project-grid
    .project-grid
    .grid-col:nth-child(4n + 4) {
    width: 40%;
  }
  html.no-cssgrid
    .flexible-inner-section.fw-project-grid
    .project-grid
    .grid-col:nth-child(4n + 2),
  html.no-cssgrid
    .flexible-inner-section.fw-project-grid
    .project-grid
    .grid-col:nth-child(4n + 3) {
    width: 60%;
  }
  html.cssgrid
    .flexible-inner-section.fw-project-grid
    .project-grid
    .grid-col.grid-block-3.even.grid-block-count-1 {
    grid-column: col 1 / span 3;
    grid-row: span 1;
  }
  html.cssgrid
    .flexible-inner-section.fw-project-grid
    .project-grid
    .grid-col.grid-block-3.even.grid-block-count-3 {
    grid-column: col 1 / span 3;
    grid-row: span 1;
  }
  html.cssgrid
    .flexible-inner-section.fw-project-grid
    .project-grid
    .grid-col.grid-block-3.even.grid-block-count-2 {
    grid-column: col 4 / span 3;
    grid-row: span 2;
  }
  html.cssgrid
    .flexible-inner-section.fw-project-grid
    .project-grid
    .grid-col.grid-block-3.odd.grid-block-count-1 {
    grid-column: col 1 / span 3;
    grid-row: span 2;
  }
  html.cssgrid
    .flexible-inner-section.fw-project-grid
    .project-grid
    .grid-col.grid-block-3.odd.grid-block-count-2 {
    grid-column: col 4 / span 3;
    grid-row: span 1;
  }
  html.cssgrid
    .flexible-inner-section.fw-project-grid
    .project-grid
    .grid-col.grid-block-3.odd.grid-block-count-3 {
    grid-column: col 4 / span 3;
    grid-row: span 1;
  }
  html.cssgrid
    .flexible-inner-section.fw-project-grid
    .project-grid
    .grid-col.grid-block-2.odd.grid-block-count-1 {
    grid-column: col 1 / span 3;
    grid-row: span 1;
  }
  html.cssgrid
    .flexible-inner-section.fw-project-grid
    .project-grid
    .grid-col.grid-block-2.odd.grid-block-count-2 {
    grid-column: col 4 / span 3;
    grid-row: span 1;
  }
  html.cssgrid
    .flexible-inner-section.fw-project-grid
    .project-grid
    .grid-col.grid-block-2.even.grid-block-count-1 {
    grid-column: col 1 / span 3;
    grid-row: span 1;
  }
  html.cssgrid
    .flexible-inner-section.fw-project-grid
    .project-grid
    .grid-col.grid-block-2.even.grid-block-count-2 {
    grid-column: col 4 / span 3;
    grid-row: span 1;
  }
  .flexible-inner-section.text-icon-blocks .single-block .inside-block {
    padding: 50px 30px;
  }
  .flexible-inner-section.c2-text-image.reverse .image-col .image-wrap {
    margin-right: 0px;
  }
  .flexible-inner-section.c2-text-image .image-col .image-wrap {
    margin-left: 0px;
  }
}
/*-Desktop (Macbook) 1200px-*/
@media screen and (max-width: 1200px) {
  /*----------- flexible -----------*/
  .flexible-inner-section.c3-partners .pull {
    margin-left: -20px;
    margin-right: -20px;
  }
  .flexible-inner-section.c3-partners .partner-card {
    padding-left: 20px;
    padding-right: 20px;
  }
  .flexible-inner-section.text-icon-blocks .flex-row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flexible-inner-section.text-icon-blocks.count-4 .single-block {
    width: 50%;
  }
  .flexible-inner-section.text-icon-blocks.count-4
    .single-block:nth-child(2n + 1) {
    border-right: 4px solid #fefefe;
  }
  .flexible-inner-section.text-icon-blocks.count-4
    .single-block:nth-child(2n + 2) {
    border-right: none;
  }
  .flexible-inner-section.c2-text-icons .icons-wrap .text {
    font-size: 13px;
  }
  .flexible-inner-section.c2-text-icons .type-icon .icon {
    font-size: 100px;
  }
  .event-card .inside-card {
    padding: 50px 40px;
  }
  .flexible-inner-section.c1-textbox {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .flexible-inner-section.c1-textbox .content-col {
    width: 60%;
  }
}
/*-Desktop (Macbook) 1050px-*/
@media screen and (max-width: 1050px) {
  /*----------- flexible -----------*/
  .employee-card {
    width: 25%;
  }
  .employee-card .hover-card {
    padding: 30px 20px;
    /*----------- blog -----------*/
  }
  .blog-archive-list .news-card {
    width: calc(50% - 30px);
    /*----------- footer -----------*/
  }
  #bhh-footer .footer-section-top .cta-links {
    text-align: right;
  }
  #bhh-footer .footer-section-top .cta-links a {
    display: block;
    margin-bottom: 1em;
  }
  #bhh-footer .footer-section-top .footer-text {
    width: 230px;
  }
  #bhh-footer .footer-section-top .footer-logo img {
    margin-right: 40px;
    max-height: 60px;
  }
  #bhh-footer .footer-section-bottom .flex-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
/*-Tablet (Orientation: landscape) 1024px-*/
@media screen and (max-width: 1024px) {
  /*----------- Header -----------*/
  #masthead .inside-header {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  #masthead .inside-header .site-logo,
  #masthead .inside-header .site-branding {
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    margin-right: auto;
  }
  #masthead .inside-header .site-logo img,
  #masthead .inside-header .site-branding img {
    height: 50px;
  }
  #masthead .header-btn {
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
  }
  #masthead .header-btn a {
    padding: 14px 10px;
    font-size: 13px;
    min-width: 120px;
    margin-left: 10px;
  }
  #masthead .main-navigation a {
    font-size: 13px;
    padding-left: 13px;
    padding-right: 13px;
  }
  #masthead .main-navigation a .dropdown-menu-toggle {
    padding-right: 0px;
    /*----------- events -----------*/
  }
  .events-single-content .post-title {
    font-size: 34px;
  }
  .events-single-content .event-date {
    font-size: 28px;
    /*----------- Flexible -----------*/
  }
  .flexible-inner-section.c3-partners .partner-card .image .partner-link {
    display: none !important;
  }
  .flexible-inner-section.c3-partners .partner-card .mobile-cta {
    display: block;
  }
  .flexible-inner-section.fw-project-grid {
    padding-top: 90px;
    padding-bottom: 70px;
  }
  html.no-cssgrid .flexible-inner-section.fw-project-grid .project-grid,
  html.cssgrid .flexible-inner-section.fw-project-grid .project-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    grid-gap: 0px;
    margin-left: -10px;
    margin-right: -10px;
    padding-left: 40px;
    padding-right: 40px;
  }
  html.no-cssgrid .flexible-inner-section.fw-project-grid .single-project,
  html.cssgrid .flexible-inner-section.fw-project-grid .single-project {
    background-image: none !important;
    background-color: transparent;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 33.33%;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  html.no-cssgrid
    .flexible-inner-section.fw-project-grid
    .single-project
    .customer,
  html.cssgrid
    .flexible-inner-section.fw-project-grid
    .single-project
    .customer {
    font-size: 24px;
  }
  html.no-cssgrid
    .flexible-inner-section.fw-project-grid
    .single-project
    .title,
  html.cssgrid .flexible-inner-section.fw-project-grid .single-project .title {
    font-size: 18px;
  }
  html.no-cssgrid .flexible-inner-section.fw-project-grid .single-project .btn,
  html.cssgrid .flexible-inner-section.fw-project-grid .single-project .btn {
    font-size: 13px;
  }
  html.no-cssgrid
    .flexible-inner-section.fw-project-grid
    .single-project
    .inside-project,
  html.cssgrid
    .flexible-inner-section.fw-project-grid
    .single-project
    .inside-project {
    height: 100%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.07),
      0 4px 8px rgba(0, 0, 0, 0.07), 0 8px 16px rgba(0, 0, 0, 0.07);
    border-radius: 3px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  html.no-cssgrid
    .flexible-inner-section.fw-project-grid
    .single-project
    .inside-block,
  html.cssgrid
    .flexible-inner-section.fw-project-grid
    .single-project
    .inside-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    padding: 20px;
    max-width: 100%;
    background-color: #fefefe;
  }
  html.no-cssgrid
    .flexible-inner-section.fw-project-grid
    .single-project
    .read-more,
  html.cssgrid
    .flexible-inner-section.fw-project-grid
    .single-project
    .read-more {
    margin-top: auto;
  }
  html.no-cssgrid
    .flexible-inner-section.fw-project-grid
    .single-project
    .read-more
    .btn,
  html.cssgrid
    .flexible-inner-section.fw-project-grid
    .single-project
    .read-more
    .btn {
    max-width: 100%;
  }
  html.no-cssgrid
    .flexible-inner-section.fw-project-grid
    .single-project
    .mobile-image,
  html.cssgrid
    .flexible-inner-section.fw-project-grid
    .single-project
    .mobile-image {
    display: block;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    width: 100%;
    padding-bottom: 65%;
  }
  html.no-cssgrid
    .flexible-inner-section.fw-project-grid
    .single-project
    .hoverblock,
  html.cssgrid
    .flexible-inner-section.fw-project-grid
    .single-project
    .hoverblock {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    opacity: 1;
    background-color: transparent;
  }
  .flexible-inner-section.c3-partners .partner-card {
    width: 50%;
  }
  .rest-search-wrapper .post-filters {
    margin-bottom: 40px;
  }
  .rest-search-wrapper .post-filters .input-wrap {
    margin-bottom: 1em;
  }
  .rest-search-wrapper .post-filters .input-wrap label {
    min-width: 0px;
    font-size: 13px;
  }
  .flexible-inner-section.c1-brochure-search .rest-search-wrapper,
  .flexible-inner-section.c1-video-search .rest-search-wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }
  .flexible-inner-section.c1-brochure-search .post-list,
  .flexible-inner-section.c1-video-search .post-list {
    margin-left: -20px;
    margin-right: -20px;
  }
  .flexible-inner-section.c1-brochure-search .brochure-card,
  .flexible-inner-section.c1-video-search .brochure-card,
  .flexible-inner-section.c1-brochure-search .video-card,
  .flexible-inner-section.c1-video-search .video-card {
    padding-left: 20px;
    padding-right: 20px;
  }
  .flexible-inner-section.c1-brochure-search .brochure-card .post-title,
  .flexible-inner-section.c1-video-search .brochure-card .post-title,
  .flexible-inner-section.c1-brochure-search .video-card .post-title,
  .flexible-inner-section.c1-video-search .video-card .post-title {
    font-size: 28px;
  }
  .flexible-inner-section.c2-cta .content-col {
    padding-right: 40px;
  }
  .flexible-inner-section.c2-cta .cta-col.has-content {
    padding-left: 40px;
  }
  .flexible-inner-section.fw-text-cols .column {
    padding-left: 10px;
    padding-right: 10px;
  }
  .flexible-inner-section.c2-text .left {
    padding-right: 20px;
  }
  .flexible-inner-section.c2-text .right {
    padding-left: 20px;
  }
  .flexible-inner-section.c3-textboxes.has-bg-img {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .flexible-inner-section.c3-textboxes.cols-3 .textboxes {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .flexible-inner-section.c3-textboxes.cols-3 .textbox {
    width: 100%;
    max-width: 100%;
    margin-bottom: 40px;
  }
  .flexible-inner-section.c3-textboxes.cols-3 .textbox:last-child {
    margin-bottom: 0px;
  }
  .flexible-inner-section.c1-contact .content-col {
    width: 70%;
  }
  .flexible-inner-section.c2-text-icons.rows .icons-col .icons-wrap {
    width: 33.3333%;
  }
  .flexible-inner-section.c2-text-image-slider .slide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .flexible-inner-section.c2-text-image-slider .slide .content-col {
    padding-bottom: 80px;
    padding-top: 40px;
    z-index: 2;
    position: relative;
    background-color: rgba(208, 225, 235, 0.9);
    margin: 40px;
    overflow: hidden;
    width: 560px;
    max-width: calc(100% - 80px);
  }
  .flexible-inner-section.c2-text-image-slider .slide .content-col .content {
    width: 100%;
  }
  .flexible-inner-section.c2-text-image-slider
    .slide
    .content-col
    .flex-slider-grid {
    -webkit-transform: translateX(-40px);
    transform: translateX(-40px);
  }
  .flexible-inner-section.c2-text-image-slider .image-col {
    width: 100%;
    height: 100%;
    position: absolute;
  }
  .flexible-inner-section.c2-text-image-slider .image-col .image-wrap {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .event-card .inside-card {
    padding: 50px 30px;
  }
  .event-card .event-dates .date {
    font-size: 20px;
  }
  .event-card .event-title {
    font-size: 24px;
    /*----------- footer -----------*/
  }
  #bhh-footer .footer-section-bottom .newsletter .grid-50 {
    width: 50%;
    display: inline-block;
  }
}
/*-Tablet (Orientation: landscape) 860px-*/
@media screen and (max-width: 860px) {
  /*----------- Header -----------*/
  #masthead .inside-header {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  #masthead .inside-header .site-logo,
  #masthead .inside-header .site-branding {
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    margin-right: auto;
  }
  #masthead .inside-header .site-logo img,
  #masthead .inside-header .site-branding img {
    height: 50px;
  }
  #masthead .header-btn {
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
  }
  #masthead .header-btn a {
    padding: 12px 8px;
    font-size: 12px;
    min-width: 0px;
  }
  #masthead .main-navigation a {
    font-size: 12px;
    padding-left: 10px;
    padding-right: 10px;
    /*----------- events -----------*/
  }
  .events-single-content .meta {
    width: 240px;
    /*----------- flexible -----------*/
  }
  html.cssgrid .flexible-inner-section.fw-project-grid .single-project,
  html.no-cssgrid .flexible-inner-section.fw-project-grid .single-project {
    width: 50%;
  }
  .risk-assessment .flex-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .risk-assessment .assessment-form {
    width: 100%;
    padding-right: 0px;
  }
  .risk-assessment .assessment-answer {
    width: 100%;
    margin-top: 40px;
  }
  .risk-assessment .visualizer {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 500px;
  }
  .flexible-inner-section.text-icon-blocks.count-3 .single-block {
    width: 100%;
  }
  .flexible-inner-section.c1-text-split-bg .flex-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .flexible-inner-section.c1-text-split-bg .buttons-col {
    margin-top: 1.5em;
    width: 100%;
    padding-left: 0px;
  }
  .employee-card .hover-card {
    padding: 30px 15px;
  }
  .employee-card .hover-card .content-wrap {
    font-size: 14px;
  }
  .flexible-inner-section.c2-text-icons .flex-row {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flexible-inner-section.c2-text-icons .flex-row .content-col {
    width: auto;
    padding-bottom: 20px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
  }
  .flexible-inner-section.c2-text-icons .flex-row .icons-wrap {
    margin-top: 50px;
  }
  .flexible-inner-section.c2-text-icons .flex-row .icons-col {
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
  }
}
/*-Tablet (Orientation: portrait) 768px-*/
@media screen and (max-width: 768px) {
  /*----------- spacing / grid containers -----------*/
  .bbh-outer-section .grid-container,
  .bbh-inner-section .grid-container,
  .flexible-inner-section .grid-container,
  .bbh-outer-section .container-fluid,
  .bbh-inner-section .container-fluid,
  .flexible-inner-section .container-fluid,
  .retina-container {
    padding-left: 30px;
    padding-right: 30px;
  }
  #video-lightbox {
    max-width: calc(100% - 60px);
    /*----------- header -----------*/
  }
  #header-wrapper {
    display: none;
  }
  #page {
    margin-top: 80px;
  }
  .page-header-banner {
    padding-top: 0px;
    padding-bottom: 60px;
  }
  .page-header-banner .background-skew {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .page-header-banner .background-skew::before {
    display: none;
  }
  .page-header-banner .post-thumbnail {
    width: 100%;
  }
  .page-header-banner .post-heading {
    max-width: 90%;
    width: 100%;
    background: #fefefe;
    padding: 40px;
    margin-top: -100px;
    z-index: 3;
    margin-left: 5%;
    margin-right: 5%;
  }
  .page-header-banner .post-heading .date {
    font-size: 24px;
  }
  .page-header-banner .content > :last-child {
    margin-bottom: 0px;
  }
  .page-header-banner .grid-container {
    padding-left: 0px !important;
    padding-right: 0px !important;
    /*----------- events -----------*/
  }
  .events-single-content .flex-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .events-single-content .content {
    padding-right: 0px;
    width: 100%;
  }
  .events-single-content .meta {
    margin-top: 60px;
    width: 100%;
    /*----------- flexible -----------*/
  }
  .flexible-inner-section.c1-text,
  .flexible-inner-section.c1-brochure-search,
  .flexible-inner-section.c1-video-search,
  .flexible-inner-section.c1-faq,
  .flexible-inner-section.c1-text-split-bg,
  .flexible-inner-section.c1-testimonial-slider,
  .flexible-inner-section.c1-risk-assessment,
  .flexible-inner-section.c1-image-slider,
  .flexible-inner-section.c1-contact-person-search,
  .flexible-inner-section.c2-text-icons,
  .flexible-inner-section.c2-steps,
  .flexible-inner-section.c2-text,
  .flexible-inner-section.c3-events,
  .flexible-inner-section.c3-textboxes,
  .flexible-inner-section.c3-posts-slider,
  .flexible-inner-section.c3-partners,
  .flexible-inner-section.fw-project-grid {
    padding-bottom: 90px;
    padding-top: 90px;
  }
  html.cssgrid .flexible-inner-section.fw-project-grid .project-grid,
  html.no-cssgrid .flexible-inner-section.fw-project-grid .project-grid {
    padding-left: 30px;
    padding-right: 30px;
  }
  .flexible-inner-section.c3-partners .pull {
    margin-left: -10px;
    margin-right: -10px;
  }
  .flexible-inner-section.c3-partners .partner-card {
    padding-left: 10px;
    padding-right: 10px;
  }
  .flexible-inner-section.c3-partners .partner-card .post-title {
    font-size: 20px;
  }
  .flexible-inner-section.c3-partners .partner-card .image .btn {
    font-size: 13px;
  }
  .flexible-inner-section.c1-faq .flex-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .flexible-inner-section.c1-faq .content-col {
    width: 100%;
  }
  .flexible-inner-section.c1-faq .buttons-col {
    padding-left: 0px;
    width: 100%;
    margin-top: 40px;
  }
  .flexible-inner-section.c1-faq .faq-list-item__question {
    font-size: 20px;
  }
  .flexible-inner-section.c2-cta .flex-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .flexible-inner-section.c2-cta .content-col {
    width: 100%;
    padding-right: 0px;
  }
  .flexible-inner-section.c2-cta .cta-col {
    margin-top: 1.5em;
  }
  .flexible-inner-section.c2-cta .cta-col.has-content {
    max-width: 100%;
    width: 100%;
    padding-left: 0px;
  }
  .flexible-inner-section.c2-steps .pull {
    margin-left: -30px;
    margin-right: -30px;
  }
  .flexible-inner-section.c2-steps .single-step {
    padding-left: 30px;
    padding-right: 30px;
  }
  .flexible-inner-section.fw-text-cols .flex-row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flexible-inner-section.fw-text-cols .column {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }
  .flexible-inner-section.fw-text-cols .column:not(:last-child) {
    margin-bottom: 60px;
  }
  .flexible-inner-section.fw-project-grid .single-project .customer {
    font-size: 24px;
  }
  .flexible-inner-section.fw-project-grid .single-project .title {
    font-size: 18px;
  }
  .flexible-inner-section.fw-project-grid .single-project .read-more .btn {
    font-size: 13px;
  }
  .employee-card {
    width: 33.333%;
  }
  .flexible-inner-section.c3-posts-slider
    .slider-element
    .single-slide
    .post-title {
    font-size: 20px;
  }
  .flexible-inner-section.text-icon-blocks .single-block .inside-block {
    padding: 50px 20px;
  }
  .flexible-inner-section.c2-text-image,
  .flexible-inner-section.c2-text-image.reverse {
    padding-bottom: 0px;
    padding-top: 0px;
  }
  .flexible-inner-section.c2-text-image .flex-row,
  .flexible-inner-section.c2-text-image.reverse .flex-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .flexible-inner-section.c2-text-image .image-col,
  .flexible-inner-section.c2-text-image.reverse .image-col {
    left: 0 !important;
    width: 100%;
  }
  .flexible-inner-section.c2-text-image .image-wrap,
  .flexible-inner-section.c2-text-image.reverse .image-wrap {
    float: left;
    width: 100%;
  }
  .flexible-inner-section.c2-text-image .content-col,
  .flexible-inner-section.c2-text-image.reverse .content-col {
    left: 0 !important;
    width: 100%;
  }
  .flexible-inner-section.c2-text-image .content-col .content,
  .flexible-inner-section.c2-text-image.reverse .content-col .content {
    width: 100%;
  }
  .flexible-inner-section.c2-text-image .content-col .half-grid,
  .flexible-inner-section.c2-text-image.reverse .content-col .half-grid {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 50px;
    padding-bottom: 50px;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
  }
  .flexible-inner-section.c1-contact {
    padding: 60px 0px;
  }
  .flexible-inner-section.c1-contact .content-col {
    width: 100%;
  }
  .flexible-inner-section.c3-events .flex-row.events {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .event-card {
    width: 100%;
  }
  .event-card .inside-card {
    padding: 30px 30px;
    /*----------- footer -----------*/
  }
  #bhh-footer .footer-section-top .cta-links {
    text-align: right;
  }
  #bhh-footer .footer-section-top .cta-links a {
    display: block;
    margin-bottom: 1em;
  }
  #bhh-footer .footer-section-top .footer-text {
    display: none;
  }
  #bhh-footer .footer-section-top .footer-logo img {
    margin-right: 40px;
    max-height: 60px;
  }
  #bhh-footer .footer-section-top .cta-links a {
    display: inline-block;
  }
}
/*- below tablet 767px-*/
@media screen and (max-width: 767px) {
  /*----------- flexible -----------*/
  .flexible-inner-section.c3-textboxes .heading-row {
    margin-bottom: 60px;
  }
  .flexible-inner-section.c3-textboxes.cols-2 .textboxes,
  .flexible-inner-section.c3-textboxes.cols-4 .textboxes {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .flexible-inner-section.c3-textboxes.cols-2 .textbox,
  .flexible-inner-section.c3-textboxes.cols-4 .textbox {
    width: 100%;
    max-width: 100%;
    margin-top: 0px !important;
  }
  .flexible-inner-section.c3-textboxes.cols-2 .textbox:not(:last-child),
  .flexible-inner-section.c3-textboxes.cols-4 .textbox:not(:last-child) {
    margin-bottom: 40px;
  }
  .flexible-inner-section.c2-steps .pull {
    margin-left: 0px;
    margin-right: 0px;
  }
  .flexible-inner-section.c2-steps .single-step {
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
    margin-top: 0px !important;
  }
  .flexible-inner-section.c2-steps .single-step:not(:last-child) {
    margin-bottom: 60px;
  }
  .flexible-inner-section.c2-text .flex-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .flexible-inner-section.c2-text .left {
    padding-right: 0px;
  }
  .flexible-inner-section.c2-text .right {
    padding-left: 0px;
    margin-top: 60px;
  }
  .flexible-inner-section.c2-text .content-col {
    width: 100%;
  }
}
/*-Smartphone (Samsung S6: landscape) 640px-*/
@media screen and (max-width: 640px) {
  .imageblocks .images a {
    min-width: 140px;
  }
  .imageblocks .images .image {
    max-height: 160px;
  }
  .imageblocks .images .image.fullpic {
    max-height: 180px;
    /*----------- spacing / grid containers -----------*/
  }
  .bbh-outer-section .grid-container,
  .bbh-inner-section .grid-container,
  .flexible-inner-section .grid-container,
  .bbh-outer-section .container-fluid,
  .bbh-inner-section .container-fluid,
  .flexible-inner-section .container-fluid,
  .retina-container {
    padding-left: 20px;
    padding-right: 20px;
  }
  #video-lightbox {
    max-width: calc(100% - 40px);
  }
  #video-lightbox .close-btn {
    -webkit-transform: translate(0%, -120%);
    transform: translate(0%, -120%);
    /*----------- typography -----------*/
  }
  body h3 {
    font-size: 20px;
  }
  body h4 {
    font-size: 15px;
    /*----------- Flexible  -----------*/
  }
  .flexible-inner-section.c3-partners .partner-card .mobile-cta .btn {
    width: 100%;
  }
  html.cssgrid .flexible-inner-section.fw-project-grid .project-grid,
  html.no-cssgrid .flexible-inner-section.fw-project-grid .project-grid {
    padding-left: 20px;
    padding-right: 20px;
  }
  html.cssgrid .flexible-inner-section.fw-project-grid .single-project .btn,
  html.no-cssgrid .flexible-inner-section.fw-project-grid .single-project .btn {
    width: 100%;
  }
  .rest-search-wrapper .post-filters .input-wrap {
    width: 100%;
  }
  .rest-search-wrapper .post-filters .input-wrap label {
    width: 100%;
    box-sizing: border-box;
    margin: 0px;
  }
  .flexible-inner-section.c1-brochure-search .flex-row,
  .flexible-inner-section.c1-video-search .flex-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .flexible-inner-section.c1-brochure-search .content-col,
  .flexible-inner-section.c1-video-search .content-col {
    width: 100%;
  }
  .flexible-inner-section.c1-brochure-search .buttons-col,
  .flexible-inner-section.c1-video-search .buttons-col {
    padding-left: 0px;
    width: 100%;
    margin-top: 40px;
  }
  .flexible-inner-section.c1-brochure-search .brochure-card,
  .flexible-inner-section.c1-video-search .brochure-card,
  .flexible-inner-section.c1-brochure-search .video-card,
  .flexible-inner-section.c1-video-search .video-card {
    width: 100%;
  }
  .flexible-inner-section.fw-text-cols .column {
    padding-left: 20px;
    padding-right: 20px;
  }
  .flexible-inner-section.c2-cta .flex-row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flexible-inner-section.c2-cta .content-col {
    padding-right: 0px;
  }
  .flexible-inner-section.c2-cta .cta-col {
    margin-top: 40px;
  }
  .flexible-inner-section.c1-textbox {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .flexible-inner-section.c1-textbox .content-col {
    width: 100%;
  }
  .flexible-inner-section.c3-posts-slider .section-heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 1.5em;
  }
  .flexible-inner-section.c3-posts-slider
    .section-heading
    .buttons-col
    .buttons {
    text-align: left;
  }
  .flexible-inner-section.c3-posts-slider .slider-element {
    margin-left: -10px;
    margin-right: -10px;
  }
  .flexible-inner-section.c3-posts-slider .slider-element .single-slide {
    margin-left: 10px;
    margin-right: 10px;
  }
  .flexible-inner-section.c3-posts-slider
    .slider-element
    .single-slide
    .inside-card {
    padding: 15px;
  }
  .flexible-inner-section.c3-posts-slider
    .slider-element
    .single-slide
    .post-excerpt {
    font-size: 14px;
  }
  .flexible-inner-section.c2-text-image-slider .slide {
    height: 100%;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .flexible-inner-section.c2-text-image-slider .slide .image-col {
    position: static;
    display: block;
    height: auto;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-transform: translateX(0px) !important;
    transform: translateX(0px) !important;
  }
  .flexible-inner-section.c2-text-image-slider .slide .image-col .image-wrap {
    float: left;
    position: static;
    height: 0px;
    padding-bottom: 56.25%;
  }
  .flexible-inner-section.c2-text-image-slider .slide .content-col {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    width: 100%;
    margin: 0px;
    background-color: transparent;
  }
  .flexible-inner-section.text-icon-blocks .single-block {
    width: 100% !important;
    border-top: none !important;
    border-right: none !important;
  }
  .flexible-inner-section.text-icon-blocks .single-block .inside-block {
    padding: 40px 20px 40px 20px;
    max-width: 100%;
  }
  .flexible-inner-section.text-icon-blocks .single-block .link-title {
    height: 0px;
    opacity: 0;
    visibility: hidden;
    margin-bottom: -12px !important;
  }
  .flexible-inner-section.text-icon-blocks
    .single-block
    .content
    h1:first-child::after,
  .flexible-inner-section.text-icon-blocks
    .single-block
    .content
    h2:first-child::after,
  .flexible-inner-section.text-icon-blocks
    .single-block
    .content
    h3:first-child::after {
    content: "\e904";
    font-family: "icomoon";
    display: inline-block;
    margin-left: 0.5em;
    font-size: 0.7em;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    font-weight: normal;
    vertical-align: baseline;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .flexible-inner-section.text-icon-blocks
    .single-block
    .content
    h1:first-child:hover::after,
  .flexible-inner-section.text-icon-blocks
    .single-block
    .content
    h2:first-child:hover::after,
  .flexible-inner-section.text-icon-blocks
    .single-block
    .content
    h3:first-child:hover::after {
    -webkit-transform: translateX(3px);
    transform: translateX(3px);
    /*----------- footer -----------*/
  }
  #bhh-footer .footer-section-top .flex-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  #bhh-footer .footer-section-top .footer-logo {
    width: 100%;
    text-align: center;
  }
  #bhh-footer .footer-section-top .footer-logo img {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1em;
  }
  #bhh-footer .footer-section-top .social-media {
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  #bhh-footer .footer-section-top .social-media .social-icons {
    margin-bottom: 1em;
  }
  #bhh-footer .footer-section-top .social-media .social-icons a {
    margin-left: 0.3em;
    margin-right: 0.3em;
  }
  #bhh-footer .footer-section-top .social-media .cta-links a {
    margin-left: 0.5em;
    margin-right: 0.5em;
  }
  #bhh-footer .copyright-section {
    font-size: 11px;
  }
  #bhh-footer .copyright-section .flex-row {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  #bhh-footer .footer-section-bottom .newsletter .gform_wrapper form {
    display: block;
  }
  #bhh-footer .footer-section-bottom .newsletter .gform_wrapper .gform_body {
    padding-right: 0px;
    width: 100%;
  }
  #bhh-footer
    .footer-section-bottom
    .newsletter
    .gform_wrapper
    .gform_body
    .gform_fields {
    margin-bottom: 0px;
  }
  #bhh-footer
    .footer-section-bottom
    .newsletter
    .gform_wrapper
    .gform_body
    input[type="text"],
  #bhh-footer
    .footer-section-bottom
    .newsletter
    .gform_wrapper
    .gform_body
    input[type="email"],
  #bhh-footer
    .footer-section-bottom
    .newsletter
    .gform_wrapper
    .gform_body
    input[type="url"],
  #bhh-footer
    .footer-section-bottom
    .newsletter
    .gform_wrapper
    .gform_body
    input[type="password"],
  #bhh-footer
    .footer-section-bottom
    .newsletter
    .gform_wrapper
    .gform_body
    input[type="search"],
  #bhh-footer
    .footer-section-bottom
    .newsletter
    .gform_wrapper
    .gform_body
    input[type="tel"],
  #bhh-footer
    .footer-section-bottom
    .newsletter
    .gform_wrapper
    .gform_body
    input[type="number"],
  #bhh-footer
    .footer-section-bottom
    .newsletter
    .gform_wrapper
    .gform_body
    textarea,
  #bhh-footer
    .footer-section-bottom
    .newsletter
    .gform_wrapper
    .gform_body
    select {
    width: 100%;
  }
  #bhh-footer .footer-section-bottom .newsletter .gform_wrapper .gform_footer {
    width: 100%;
  }
  #bhh-footer
    .footer-section-bottom
    .newsletter
    .gform_wrapper
    .gform_footer
    input[type="submit"] {
    width: 100%;
  }
}
/*-Smartphone  540px-*/
@media screen and (max-width: 550px) {
  /*----------- blog -----------*/
  .blog-archive-list {
    margin-left: 0px;
    margin-right: 0px;
  }
  .blog-archive-list .news-card {
    width: 100%;
    margin-left: 0px;
    margin-right: 0px;
    /*----------- flexible  -----------*/
  }
  .employee-card {
    width: 50%;
  }
}
/*-Smartphone (iPhone 4: landscape) 480px-*/
@media screen and (max-width: 480px) {
  /*----------- header -----------*/
  .page-header-banner .post-heading {
    margin-top: -50px;
    padding: 30px;
    /*----------- flexible  -----------*/
  }
  html.no-cssgrid .flexible-inner-section.fw-project-grid .single-project,
  html.cssgrid .flexible-inner-section.fw-project-grid .single-project {
    width: 100%;
  }
  html.no-cssgrid
    .flexible-inner-section.fw-project-grid
    .single-project
    .read-more
    .btn,
  html.cssgrid
    .flexible-inner-section.fw-project-grid
    .single-project
    .read-more
    .btn {
    width: 100%;
  }
  .flexible-inner-section.c3-partners .partner-card {
    width: 100%;
  }
  .flexible-inner-section.c1-faq {
    background: #fefefe;
    overflow: hidden;
  }
  .flexible-inner-section.c1-faq .flex-row {
    margin-left: -20px;
    margin-right: -20px;
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: #e4edf2;
    position: relative;
  }
  .flexible-inner-section.c1-faq .flex-row::before {
    content: "";
    background-color: #e4edf2;
    width: 100%;
    height: 90px;
    top: 0;
    left: 0;
    position: absolute;
    display: block;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  .flexible-inner-section.c1-faq .faq-list-box {
    padding: 0px;
    background-color: #fefefe;
  }
  .flexible-inner-section.c1-faq .faq-list-item {
    background-color: #dddddd;
  }
  .flexible-inner-section.c1-faq .faq-list-item__icon {
    font-size: 16px;
  }
  .flexible-inner-section.c1-faq .faq-list-item__question {
    font-size: 16px;
    padding-right: 45px;
  }
  .risk-assessment .answer-messages .answer {
    padding: 50px 40px;
  }
  .flexible-inner-section.c2-text-image-slider
    .content-col
    .content
    h1:first-child {
    font-size: 30px;
  }
  .flexible-inner-section.c2-text-image-slider .slider-nav .bullet {
    width: 15px;
    height: 15px;
  }
  .flexible-inner-section.c2-text-image-slider .slider-nav .start,
  .flexible-inner-section.c2-text-image-slider .slider-nav .end {
    line-height: 15px;
  }
  .flexible-inner-section.c2-text-image-slider .slider-nav .next .icon,
  .flexible-inner-section.c2-text-image-slider .slider-nav .prev .icon {
    font-size: 15px;
  }
  .flexible-inner-section .buttons .link,
  .events-single-content .buttons .link {
    width: 100%;
    box-sizing: border-box;
  }
  .flexible-inner-section .buttons .link:not(:first-child),
  .events-single-content .buttons .link:not(:first-child) {
    margin-top: 15px;
  }
  .flexible-inner-section .buttons .link .btn,
  .events-single-content .buttons .link .btn {
    width: 100%;
    box-sizing: border-box;
  }
  .flexible-inner-section.text-icon-blocks .single-block .content > * {
    position: relative;
    z-index: 3;
  }
  .flexible-inner-section.text-icon-blocks .single-block .content .icon {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    font-size: 100px;
    color: #fefefe;
    pointer-events: none;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0.5;
  }
  .flexible-inner-section.c2-text-icons .icons-col .icons-wrap,
  .flexible-inner-section.c2-text-icons.rows .icons-col .icons-wrap {
    width: 50%;
  }
  .flexible-inner-section.c2-text-icons
    .icons-col
    .icons-wrap:nth-child(1n + 3),
  .flexible-inner-section.c2-text-icons.rows
    .icons-col
    .icons-wrap:nth-child(1n + 3) {
    margin-top: 50px;
    /*----------- Footer -----------*/
  }
  #bhh-footer .footer-section-bottom .heading-col .heading {
    font-size: 20px;
  }
}
/*-Smartphone (Big/newer smartphones) 425px-*/
@media screen and (max-width: 425px) {
  /*----------- events -----------*/
  .events-single-content .meta .inside-meta {
    padding: 0px 20px;
    /*----------- flexible -----------*/
  }
  .flexible-inner-section.c1-brochure-search .rest-search-wrapper,
  .flexible-inner-section.c1-video-search .rest-search-wrapper {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 0px;
    margin-left: -20px;
    margin-right: -20px;
    background-color: #fefefe;
  }
  .flexible-inner-section.text-icon-blocks.count-4 .single-block {
    width: 100%;
  }
  .search-container .selectbox {
    width: 100%;
    margin-left: 0px;
    margin-right: 0px;
  }
  .search-container .selectbox:nth-child(10) {
    z-index: 5;
  }
  .search-container .selectbox:nth-child(9) {
    z-index: 6;
  }
  .search-container .selectbox:nth-child(8) {
    z-index: 7;
  }
  .search-container .selectbox:nth-child(7) {
    z-index: 8;
  }
  .search-container .selectbox:nth-child(6) {
    z-index: 9;
  }
  .search-container .selectbox:nth-child(5) {
    z-index: 10;
  }
  .search-container .selectbox:nth-child(4) {
    z-index: 11;
  }
  .search-container .selectbox:nth-child(3) {
    z-index: 12;
  }
  .search-container .selectbox:nth-child(2) {
    z-index: 13;
  }
  .search-container .selectbox:nth-child(1) {
    z-index: 14;
  }
  .search-container .submitbox {
    width: 100%;
    margin-left: 0px;
    margin-right: 0px;
  }
  .search-container .submitbox input {
    width: 100%;
  }
  .flexible-inner-section.c1-text,
  .flexible-inner-section.c1-brochure-search,
  .flexible-inner-section.c1-video-search,
  .flexible-inner-section.c1-faq,
  .flexible-inner-section.c1-text-split-bg,
  .flexible-inner-section.c1-testimonial-slider,
  .flexible-inner-section.c1-risk-assessment,
  .flexible-inner-section.c1-image-slider,
  .flexible-inner-section.c1-contact-person-search,
  .flexible-inner-section.c2-text-icons,
  .flexible-inner-section.c2-steps,
  .flexible-inner-section.c2-text,
  .flexible-inner-section.c3-events,
  .flexible-inner-section.c3-textboxes,
  .flexible-inner-section.c3-posts-slider,
  .flexible-inner-section.c3-partners,
  .flexible-inner-section.fw-project-grid {
    padding-bottom: 70px;
    padding-top: 70px;
    /*----------- footer -----------*/
  }
  #bhh-footer .footer-section-bottom .newsletter .grid-50 {
    width: 100%;
  }
  #bhh-footer .copyright-section .flex-row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #bhh-footer .copyright-section .flex-row .copyright-text {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
  #bhh-footer .copyright-section .flex-row .copyright-links a:first-child {
    margin-left: 0px;
    padding-left: 0px;
    border-left: none !important;
  }
}
/*-Smartphone (Samsung S6: portrait) 360px-*/
@media screen and (max-width: 360px) {
  /*----------- Subsection comment block -----------*/
  #mobile-header .mobile-header-links {
    margin-right: 1em;
    /*----------- flexible -----------*/
  }
  .employee-card {
    width: 100%;
  }
  .flexible-inner-section.c1-textbox .content-col {
    padding: 30px;
  }
}
/*-Smartphone (iphone 5: portrait) 320px-*/

.post-title-forside {
  font-size: 20px;
}

.post-thumb-forside {
  padding-bottom: 60%;
  margin-bottom: 10px;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: relative;
}

.post-thumb-forside::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.inside-card-forside {
  padding-bottom: 0px !important;
}

.flexible-inner-section-forside.c3-posts-slider {
  padding-bottom: 0px !important;
}
