h1 {
  font-size: 24px;
  margin-bottom: 2rem;
  color: #b3b3b3;
  font-family: "proxima-nova", sans-serif; }
  @media (min-width: 576px) {
    h1 {
      font-size: 36px; } }

h2 {
  margin-bottom: 1.8px;
  font-family: "proxima-nova", sans-serif;
  font-size: 22px;
  font-weight: bold;
  color: #ED2939; }
  @media (min-width: 576px) {
    h2 {
      font-size: 28px; } }

h3 {
  font-size: 20px;
  font-family: "proxima-nova", sans-serif;
  margin-bottom: 15px; }
  @media (min-width: 576px) {
    h3 {
      font-size: 24px; } }

h4 {
  font-weight: bold;
  font-family: "proxima-nova", sans-serif;
  font-size: 14px;
  text-transform: uppercase; }

.header {
  background-color: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  /* MAIN MENU */
  /*LEVEL TWO*/ }
  .header .logo {
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    max-width: 100px;
    padding: 10px 0; }
  .header .menu-toggle {
    font-size: 20px;
    cursor: pointer; }
  .header nav.nav > ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
    text-align: center; }
    .header nav.nav > ul .sub-menu {
      list-style: none;
      padding-left: 0;
      margin-bottom: 0;
      text-align: left;
      background-color: #ededed;
      -webkit-box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.3607843137);
      -moz-box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.3607843137);
      box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.3607843137); }
    .header nav.nav > ul li a {
      display: block; }
    .header nav.nav > ul li:hover > a, .header nav.nav > ul li.current-menu-item > a, .header nav.nav > ul li.current-page-ancestor > a {
      color: #ED2939; }
    .header nav.nav > ul li.menu-item-has-children > a {
      font-weight: 400; }
      .header nav.nav > ul li.menu-item-has-children > a::after {
        content: "\f107";
        font-family: "Font Awesome 5 Pro";
        margin-left: 5px;
        display: inline-block; }
    .header nav.nav > ul li.menu-item-has-children ul li.menu-item-has-children > a::after {
      content: "\f105";
      position: absolute;
      right: 15px; }
    .header nav.nav > ul > li {
      display: inline-block;
      position: relative;
      vertical-align: middle;
      font-family: inherit;
      font-weight: inherit;
      color: inherit;
      padding: 5px;
      margin-right: 15px; }
      .header nav.nav > ul > li > a {
        font-size: 18px;
        color: #6f6f6f; }
      .header nav.nav > ul > li:last-child {
        margin-right: 0; }
      .header nav.nav > ul > li.menu-item-has-children {
        overflow: hidden; }
        .header nav.nav > ul > li.menu-item-has-children:hover {
          overflow: visible; }
          .header nav.nav > ul > li.menu-item-has-children:hover > ul.sub-menu {
            max-height: 500px;
            padding: 20px 0;
            opacity: 1;
            overflow: visible; }
        .header nav.nav > ul > li.menu-item-has-children > ul.sub-menu {
          width: 230px;
          position: absolute;
          left: -15px;
          opacity: 0;
          top: 32px;
          z-index: 10;
          overflow: hidden;
          padding: 0 0;
          -moz-transition: all 0.2s ease-in-out;
          -o-transition: all 0.2s ease-in-out;
          -webkit-transition: all 0.2s ease-in-out;
          transition: all 0.2s ease-in-out; }
          .header nav.nav > ul > li.menu-item-has-children > ul.sub-menu li {
            padding: 0 20px;
            margin-bottom: 20px; }
            .header nav.nav > ul > li.menu-item-has-children > ul.sub-menu li:last-child {
              margin-bottom: 0; }
  .header nav.nav ul li .sub-menu li.menu-item-has-children .sub-menu {
    width: 210px;
    position: absolute;
    left: 100%;
    opacity: 0;
    top: 37px;
    overflow: hidden;
    padding: 0 20px;
    background-color: #ededed;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; }
  .header nav.nav ul li .sub-menu li.menu-item-has-children:hover .sub-menu {
    padding: 15px 0;
    opacity: 1;
    top: 0;
    border-left: 1px solid #e2f5ff; }
  .header nav.nav li.menu-cta a {
    border-radius: 3px;
    color: white !important; }
  .header.scrolled {
    -webkit-box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.3607843137);
    -moz-box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.3607843137);
    box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.3607843137); }
    .header.scrolled .logo {
      padding: 5px 0;
      max-width: 70px; }

.mobile-menu {
  height: 100vh;
  position: fixed;
  right: -350px;
  width: 350px;
  background-color: white;
  border-left: 5px solid #f8404f;
  top: 0;
  overflow: scroll;
  color: white;
  z-index: 15;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }
  .mobile-menu .logo img {
    max-width: 100px; }
  .mobile-menu .inner {
    position: relative;
    padding: 30px; }
    .mobile-menu .inner .menu-toggle {
      position: absolute;
      right: 20px;
      top: 20px;
      cursor: pointer;
      color: #f8404f; }
    .mobile-menu .inner ul {
      padding-left: 0;
      margin-bottom: 0;
      list-style: none; }
      .mobile-menu .inner ul li {
        margin-bottom: 15px;
        position: relative; }
        .mobile-menu .inner ul li.menu-cta a {
          display: inline-block;
          margin-top: 5px;
          border-radius: 3px;
          color: white !important; }
      .mobile-menu .inner ul > li a {
        color: #292929;
        font-weight: 400; }
      .mobile-menu .inner ul > li.menu-item-has-children ul.sub-menu {
        height: 0;
        padding-left: 15px;
        margin-bottom: 0;
        list-style: none;
        overflow: hidden; }
      .mobile-menu .inner ul > li.menu-item-has-children.active > .subarrow {
        background: #f8404f url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMTZweCIgdmVyc2lvbj0iMS4xIiBoZWlnaHQ9IjE2cHgiIHZpZXdCb3g9IjAgMCA2NCA2NCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgNjQgNjQiPgogIDxnPgogICAgPHBhdGggZmlsbD0iI0ZGRkZGRiIgZD0iTTMuMzUyLDQ4LjI5NmwyOC41Ni0yOC4zMjhsMjguNTgsMjguMzQ3YzAuMzk3LDAuMzk0LDAuOTE3LDAuNTksMS40MzYsMC41OWMwLjUyLDAsMS4wNC0wLjE5NiwxLjQzNi0wLjU5ICAgYzAuNzkzLTAuNzg3LDAuNzkzLTIuMDYyLDAtMi44NDlsLTI5Ljk4LTI5LjczNWMtMC4yLTAuMi0wLjQ5NC0wLjM3NS0wLjc1Ny0wLjQ3NWMtMC43NS0wLjI4Mi0xLjU5Ny0wLjEwNy0yLjE2NiwwLjQ1NiAgIEwwLjQ3OSw0NS40NDdjLTAuNzkzLDAuNzg3LTAuNzkzLDIuMDYyLDAsMi44NDlDMS4yNzMsNDkuMDgyLDIuNTU4LDQ5LjA4MiwzLjM1Miw0OC4yOTZ6Ii8+CiAgPC9nPgo8L3N2Zz4K) no-repeat; }
      .mobile-menu .inner ul > li.menu-item-has-children.active > ul.sub-menu {
        height: 100%;
        overflow: hidden;
        margin-top: 20px;
        border-left: 1px solid #ee7226; }
        .mobile-menu .inner ul > li.menu-item-has-children.active > ul.sub-menu li a {
          text-transform: initial; }
    .mobile-menu .inner .subarrow {
      border-radius: 2px;
      width: 24px;
      height: 25px;
      top: 0;
      background: #999 url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMTZweCIgdmVyc2lvbj0iMS4xIiBoZWlnaHQ9IjE2cHgiIHZpZXdCb3g9IjAgMCA2NCA2NCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgNjQgNjQiPgogIDxnPgogICAgPHBhdGggZmlsbD0iI0ZGRkZGRiIgZD0ibTYwLjUzMywxNS43MzNsLTI4LjU2LDI4LjMyOC0yOC41NzktMjguMzQ4Yy0wLjM5Ny0wLjM5NC0wLjkxNy0wLjU5LTEuNDM3LTAuNTlzLTEuMDM5LDAuMTk2LTEuNDM2LDAuNTljLTAuNzkzLDAuNzg3LTAuNzkzLDIuMDYyIDAsMi44NDlsMjkuOTgsMjkuNzM1YzAuMiwwLjIgMC40OTQsMC4zNzUgMC43NTcsMC40NzYgMC43NSwwLjI4MiAxLjU5NywwLjEwNyAyLjE2Ni0wLjQ1NmwyOS45ODEtMjkuNzM1YzAuNzkzLTAuNzg3IDAuNzkzLTIuMDYyIDAtMi44NDktMC43OTQtMC43ODYtMi4wNzgtMC43ODYtMi44NzIsNy4xMDU0M2UtMTV6Ii8+CiAgPC9nPgo8L3N2Zz4K) no-repeat;
      background-position: center !important;
      background-size: 50% !important;
      position: absolute;
      text-align: center;
      overflow: hidden;
      right: 0;
      line-height: 40px;
      color: #fff;
      cursor: pointer; }
  .mobile-menu.active {
    right: 0; }

.site-notification {
  padding: 5px 0;
  background-color: #ED2939;
  color: white; }

.footer .main-bar {
  background-color: #333333;
  padding-top: 40px;
  padding-bottom: 40px;
  color: white; }
  .footer .main-bar .title {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 20px; }
  .footer .main-bar .content ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0; }
    .footer .main-bar .content ul li {
      display: block;
      margin-bottom: 8px; }
      .footer .main-bar .content ul li:last-child {
        margin-bottom: 0; }
      .footer .main-bar .content ul li ul.sub-menu {
        font-size: 12px;
        margin-bottom: 15px !important;
        display: block;
        margin-top: 5px; }
  .footer .main-bar .content .social-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    margin-top: 30px; }
    .footer .main-bar .content .social-list li {
      display: inline-block;
      margin-right: 10px;
      font-size: 18px; }
      .footer .main-bar .content .social-list li:last-child {
        margin-right: 0; }
      .footer .main-bar .content .social-list li a {
        color: #ED2939; }
  .footer .main-bar .sponsor-list {
    display: flex;
    align-items: center;
    justify-content: center; }
    .footer .main-bar .sponsor-list a img {
      max-width: 100px;
      margin-right: 30px; }
    .footer .main-bar .sponsor-list a:last-child img {
      margin-right: 0; }
.footer .bottom-bar {
  background-color: #4c4c4c;
  padding: 8px 0;
  font-size: 14px;
  color: #707070; }
  .footer .bottom-bar a {
    color: #707070; }

.btn, .header nav.nav li.menu-cta a, .mobile-menu .inner ul li.menu-cta a, .gform_wrapper .gform_button {
  background-color: #f8404f;
  padding: 8px 15px !important;
  color: #fff;
  font-size: 14px !important;
  font-weight: bold;
  white-space: normal !important;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }
  .btn:hover, .header nav.nav li.menu-cta a:hover, .mobile-menu .inner ul li.menu-cta a:hover, .gform_wrapper .gform_button:hover {
    background-color: #df3a47;
    color: #fff; }
  .btn.btn-dark, .header nav.nav li.menu-cta a.btn-dark, .mobile-menu .inner ul li.menu-cta a.btn-dark, .gform_wrapper .btn-dark.gform_button {
    background-color: #f8404f;
    border: none; }
    .btn.btn-dark:hover, .header nav.nav li.menu-cta a.btn-dark:hover, .mobile-menu .inner ul li.menu-cta a.btn-dark:hover, .gform_wrapper .btn-dark.gform_button:hover {
      background-color: #df3a47; }
  .btn.btn-alt, .header nav.nav li.menu-cta a.btn-alt, .mobile-menu .inner ul li.menu-cta a.btn-alt, .gform_wrapper .btn-alt.gform_button {
    background-color: #ED2939; }
    .btn.btn-alt:hover, .header nav.nav li.menu-cta a.btn-alt:hover, .mobile-menu .inner ul li.menu-cta a.btn-alt:hover, .gform_wrapper .btn-alt.gform_button:hover {
      background-color: #d52533; }
  .btn.btn-second, .header nav.nav li.menu-cta a.btn-second, .mobile-menu .inner ul li.menu-cta a.btn-second, .gform_wrapper .btn-second.gform_button {
    background-color: #ED2939; }
    .btn.btn-second:hover, .header nav.nav li.menu-cta a.btn-second:hover, .mobile-menu .inner ul li.menu-cta a.btn-second:hover, .gform_wrapper .btn-second.gform_button:hover {
      background-color: #d52533; }
  .btn.btn-small, .header nav.nav li.menu-cta a.btn-small, .mobile-menu .inner ul li.menu-cta a.btn-small, .gform_wrapper .btn-small.gform_button {
    padding: 5px 10px !important;
    font-size: 12px !important; }

#page {
  -webkit-transition: -webkit-transform .28s, opacity .28s;
  -ms-transition: -o-transform .28s, opacity .28s;
  -o-transition: -o-transform .28s, opacity .28s;
  transition: transform .28s, opacity .28s; }

.slide-out #page {
  -webkit-transform: translate3d(0, 100px, 0);
  -ms-transform: translate3d(0, 100px, 0);
  -o-transform: translate3d(0, 100px, 0);
  transform: translate3d(0, 100px, 0);
  opacity: 0; }

html {
  font-size: 16px; }

body {
  font-size: 1rem;
  font-family: "Open Sans", sans-serif;
  color: #6f6f6f;
  font-weight: 400; }

img {
  height: auto; }

a {
  color: #f8404f; }
  a:hover {
    color: #f8404f;
    text-decoration: none; }

p {
  line-height: 24px; }

@media screen and (min-width: 1200px) {
  .container.container-wide {
    max-width: 1366px !important; } }

.noscroll {
  overflow: hidden; }

.homepage-slider {
  position: relative;
  height: 300px; }
  @media screen and (min-width: 768px) {
    .homepage-slider {
      height: 600px; } }
  .homepage-slider .background-slider .item {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 300px; }
    @media screen and (min-width: 768px) {
      .homepage-slider .background-slider .item {
        height: 600px; } }
  .homepage-slider .home-overlay {
    background: black;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0.3; }
  .homepage-slider .content-box {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%); }
    .homepage-slider .content-box h1 {
      color: white;
      max-width: 650px; }

.text-and-img {
  padding-top: 40px;
  padding-bottom: 40px; }
  @media screen and (min-width: 768px) {
    .text-and-img {
      padding-top: 80px;
      padding-bottom: 80px; } }

.text-news {
  background-color: #ededed;
  padding-top: 40px;
  padding-bottom: 40px; }
  @media screen and (min-width: 768px) {
    .text-news {
      padding-top: 80px;
      padding-bottom: 80px; } }
  .text-news .news-item .inner {
    background-color: white;
    padding: 20px; }
    .text-news .news-item .inner .title {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 5px; }
  .text-news .news-item .line .label {
    font-weight: bold; }
  .text-news .news-item .text-link {
    color: #6f6f6f; }

.cta-contact {
  background-color: #ededed;
  padding-top: 40px;
  padding-bottom: 40px; }
  @media screen and (min-width: 768px) {
    .cta-contact {
      padding-top: 80px;
      padding-bottom: 80px; } }

.usp-block {
  background-color: #4c4c4c;
  padding: 60px 0; }
  .usp-block .col-12 {
    display: flex;
    align-items: center;
    justify-content: center; }
  .usp-block .icon {
    color: white;
    font-size: 3rem; }
  .usp-block .title {
    color: white;
    font-size: 22px;
    font-weight: bold; }
  .usp-block .content {
    color: white;
    font-size: 14px; }

.cta-block {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: white; }
  .cta-block .title {
    color: #ED2939; }

.home-banner {
  height: 200px;
  background-size: cover;
  background-position: center center; }
  @media screen and (min-width: 992px) {
    .home-banner {
      height: 500px; } }

.notfound-page h1 {
  font-size: 60px;
  font-weight: bold;
  color: #ED2939; }
.notfound-page h2 {
  color: #6f6f6f; }

.participants {
  margin-bottom: 40px; }
  .participants:last-child {
    margin-bottom: 0; }
  .participants .item .inner {
    padding: 20px 10px;
    font-size: 14px;
    border-bottom: 1px solid #ededed; }
  .participants .item .klasse {
    color: #f8404f;
    display: block;
    margin-bottom: 10px; }
  .participants .item .number {
    font-weight: bold;
    margin-right: 5px; }
  .participants .item .car-details {
    font-size: 14px; }
  .participants .item:nth-child(odd) {
    background-color: #ededed; }

.gform_wrapper {
  margin: 0 !important; }
  .gform_wrapper img.gform_ajax_spinner {
    display: none !important; }
  .gform_wrapper .top_label div.ginput_container {
    margin-top: 0 !important; }
  .gform_wrapper .hidden_label .gfield_label {
    display: none !important; }
  .gform_wrapper .gform-payment-hidden {
    display: none !important; }
  .gform_wrapper ul.gform_fields li {
    padding-left: 0; }
    .gform_wrapper ul.gform_fields li:first-child {
      margin-top: 0 !important; }
    .gform_wrapper ul.gform_fields li.hidden_label input {
      margin-top: 0 !important; }
    .gform_wrapper ul.gform_fields li .ginput_container input, .gform_wrapper ul.gform_fields li .ginput_container textarea {
      width: 100%;
      border: 1px solid #a2a2a2;
      border-radius: 3px;
      outline: none;
      padding: 10px 15px !important;
      -moz-transition: all 0.2s ease-in-out;
      -o-transition: all 0.2s ease-in-out;
      -webkit-transition: all 0.2s ease-in-out;
      transition: all 0.2s ease-in-out; }
      .gform_wrapper ul.gform_fields li .ginput_container input:focus, .gform_wrapper ul.gform_fields li .ginput_container textarea:focus {
        border-color: #ED2939; }
  .gform_wrapper .gform_footer.top_label {
    text-align: right;
    padding-bottom: 0;
    margin-bottom: 0; }
  .gform_wrapper .gform_button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    border-radius: 3px;
    cursor: pointer; }

body .gform_wrapper.gf_browser_chrome .gfield_checkbox li input[type=checkbox], body .gform_wrapper.gf_browser_chrome .gfield_radio li input[type=radio], body .gform_wrapper.gf_browser_chrome .gfield_checkbox li input {
  margin-top: 0; }

.slick-lightbox .slick-prev, .slick-lightbox .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent; }
  .slick-lightbox .slick-prev:before, .slick-lightbox .slick-next:before {
    font-family: "Font Awesome 5 Pro";
    font-size: 20px;
    line-height: 1;
    opacity: .75;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
.slick-lightbox .slick-prev:before {
  content: '\f137'; }
.slick-lightbox .slick-next:before {
  content: '\f138'; }

.page-header {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative; }
  .page-header .page-header-overlay {
    background: black;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0.3; }
  .page-header h1 {
    color: white; }

.page-content h2, .page-content h3, .page-content h4 {
  margin-bottom: 15px; }
.page-content ul {
  padding-left: 10px;
  list-style: none; }
  .page-content ul li {
    position: relative;
    padding-left: 25px; }
    .page-content ul li:before {
      content: '\f111';
      font-family: "Font Awesome 5 Pro";
      font-weight: bold;
      font-size: 10px;
      position: absolute;
      color: #f8404f;
      top: 5px;
      left: 0; }
.page-content .form-side .inner {
  padding: 20px;
  background-color: #ededed; }

.blog-single .blog-title {
  color: #ED2939;
  font-weight: bold; }

.woning-page .woning-intro {
  background-color: #ededed; }
  .woning-page .woning-intro .title {
    color: #ED2939;
    font-weight: bold; }
  .woning-page .woning-intro p:last-child {
    margin-bottom: 0; }
.woning-page .woning-slider-block {
  overflow: hidden; }
  .woning-page .woning-slider-block img {
    padding: 10px; }
  .woning-page .woning-slider-block .impression-slider-wrapper {
    position: relative;
    padding-left: 30px;
    padding-right: 30px; }
    .woning-page .woning-slider-block .impression-slider-wrapper .impr-left, .woning-page .woning-slider-block .impression-slider-wrapper .impr-right {
      position: absolute;
      top: 50%;
      z-index: 4;
      cursor: pointer;
      transform: translateY(-50%);
      color: #ED2939;
      -moz-transition: all 0.2s ease-in-out;
      -o-transition: all 0.2s ease-in-out;
      -webkit-transition: all 0.2s ease-in-out;
      transition: all 0.2s ease-in-out; }
      .woning-page .woning-slider-block .impression-slider-wrapper .impr-left:hover, .woning-page .woning-slider-block .impression-slider-wrapper .impr-right:hover {
        color: #ededed; }
    .woning-page .woning-slider-block .impression-slider-wrapper .impr-left {
      left: 15px; }
    .woning-page .woning-slider-block .impression-slider-wrapper .impr-right {
      right: 15px; }
.woning-page .woning-content-blocks {
  padding-top: 60px;
  padding-bottom: 60px; }
  @media screen and (min-width: 992px) {
    .woning-page .woning-content-blocks {
      padding-top: 100px;
      padding-bottom: 100px; } }
  .woning-page .woning-content-blocks .row {
    margin-bottom: 60px; }
    @media screen and (min-width: 992px) {
      .woning-page .woning-content-blocks .row {
        margin-bottom: 120px; } }
    .woning-page .woning-content-blocks .row:last-child {
      margin-bottom: 0; }
    @media screen and (min-width: 992px) {
      .woning-page .woning-content-blocks .row:nth-child(odd) img {
        padding-right: 15px; } }
    .woning-page .woning-content-blocks .row:nth-child(even) {
      flex-direction: row-reverse; }
      @media screen and (min-width: 992px) {
        .woning-page .woning-content-blocks .row:nth-child(even) img {
          padding-left: 15px; } }

.woning-usp-wrap {
  background-color: #ededed;
  position: relative; }
  .woning-usp-wrap .grid-shape {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/serious.png");
    background-repeat: repeat;
    opacity: 0.5; }
  .woning-usp-wrap .usp-item {
    color: #ED2939; }
    .woning-usp-wrap .usp-item .icon {
      font-size: 40px;
      margin-bottom: 5px;
      color: #f8404f; }

/*# sourceMappingURL=style.css.map */
