/* MEDIA QUERIES */
/* Standard colors elements */
/* Font weight en style */
.basic-font {
  font-family: 'Merriweather', serif;
  font-weight: 300;
}
.titel-font {
  font-family: 'Merriweather', serif;
  font-weight: 600;
}
.custom-font {
  font-family: 'Allura', cursive;
}
.light {
  font-weight: 300;
}
.regular {
  font-weight: 400;
}
.medium {
  font-weight: 500;
}
.bold {
  font-weight: 600;
}
.bolder {
  font-weight: 700;
}
.italic {
  font-style: italic;
}
/* Set all font styles */
html,
body {
  font-family: 'Merriweather', serif;
  font-weight: 300;
  color: #212121;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}
body.hideHeader header {
  transform: translateY(-150%);
}
h1,
.look-h1 {
  font-family: 'Merriweather', serif;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 3.5rem;
  color: #1c1c1c;
}
@media only screen and (max-width: 991px) {
  h1,
  .look-h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
h2,
.look-h2 {
  font-family: 'Merriweather', serif;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #1c1c1c;
}
@media only screen and (max-width: 991px) {
  h2,
  .look-h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
h3,
.look-h3 {
  font-family: 'Merriweather', serif;
  font-weight: 300;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: #1c1c1c;
}
@media only screen and (max-width: 991px) {
  h3,
  .look-h3 {
    font-size: 1.6rem;
  }
}
h4,
.look-h4 {
  font-family: 'Merriweather', serif;
  font-weight: 300;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: #1c1c1c;
}
@media only screen and (max-width: 991px) {
  h4,
  .look-h4 {
    font-size: 1.1rem;
  }
}
.top-titel {
  font-family: 'Allura', cursive;
  font-size: 2rem;
  color: #137f57;
  margin-bottom: 0;
}
p,
span,
a,
li,
.look-p {
  color: #1c1c1c;
  line-height: 1.8em;
}
p {
  margin-bottom: 2em;
}
p b,
p strong {
  font-weight: 600;
}
p i,
p em {
  font-style: italic;
}
p a {
  color: #137f57;
  color: #1c1c1c;
  cursor: pointer;
  position: relative;
}
p a::after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #bd9225;
  position: absolute;
  top: calc(100% + .1rem);
  right: 0;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  transition: 0.3s ease;
}
p a:hover {
  color: #bd9225;
}
p a:hover::after {
  width: 0%;
}
p a.white {
  color: #ffffff;
}
p a.white::after {
  background-color: #ffffff;
}
p a.white:hover {
  color: #ffffff;
}
p a.reverse::after {
  width: 0%;
}
p a.reverse:hover::after {
  width: 100%;
}
a {
  color: #137f57;
  text-decoration: none;
}
a:hover,
a:active,
a:focus {
  color: #0c5339;
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a {
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  transition: 0.3s ease;
}
.link-underline {
  color: #1c1c1c;
  cursor: pointer;
  position: relative;
}
.link-underline::after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #bd9225;
  position: absolute;
  top: calc(100% + .1rem);
  right: 0;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  transition: 0.3s ease;
}
.link-underline:hover {
  color: #bd9225;
}
.link-underline:hover::after {
  width: 0%;
}
.link-underline.white {
  color: #ffffff;
}
.link-underline.white::after {
  background-color: #ffffff;
}
.link-underline.white:hover {
  color: #ffffff;
}
.link-underline.reverse::after {
  width: 0%;
}
.link-underline.reverse:hover::after {
  width: 100%;
}
/* Standaard classes */
.rel {
  position: relative;
}
.abs {
  position: absolute;
}
.fixed {
  position: fixed;
}
.fill {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.none {
  display: none;
}
.flex {
  display: flex;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.standaard-margin {
  margin-bottom: 5rem;
}
@media only screen and (max-width: 991px) {
  .standaard-margin {
    margin-bottom: 3rem;
  }
}
.background-cover {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.container {
  max-width: 1140px;
  box-sizing: border-box;
  padding-right: 20px;
  padding-left: 20px;
}
.container.container-wide {
  max-width: 1340px;
}
.container.container-wider {
  max-width: 1440px;
}
.website-content {
  display: inline-block;
  width: 100%;
  padding-top: 100px;
}
@media only screen and (max-width: 767px) {
  .website-content {
    padding-top: 110px;
  }
}
.website-content ul:not(.no-list-style):not(.voordelen):not(.menu):not(.social-media) {
  padding: 0;
  list-style: none;
  margin-bottom: 2em;
}
.website-content ul:not(.no-list-style):not(.voordelen):not(.menu):not(.social-media) li {
  line-height: 1.8em;
  font-size: 1rem;
  color: #1c1c1c;
  padding-left: 1em;
}
.website-content ul:not(.no-list-style):not(.voordelen):not(.menu):not(.social-media) li::before {
  content: "\2022";
  color: #137f57;
  font-weight: 600;
  display: inline-block;
  font-size: 1.1rem;
  width: 1em;
  margin-left: -1em;
}
/* Styling basis elementen */
.box-shadow {
  -webkit-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.23);
  -moz-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.23);
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.23);
}
.box-shadow-input {
  -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.23);
  -moz-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.23);
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.23);
}
.box-shadow-input-focus {
  -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.43);
  -moz-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.43);
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.43);
}
.inputstyle {
  border: 1px solid white;
  border-radius: 10px;
  padding: 1.5rem 1rem;
  outline: none;
  box-shadow: none;
  -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.23);
  -moz-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.23);
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.23);
  font-size: 12px;
}
.inputstyle:focus {
  outline: none;
  -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.43);
  -moz-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.43);
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.43);
}
.button {
  position: relative;
  font-family: 'Merriweather', serif;
  font-weight: 300;
  font-weight: 600;
  background-color: #bd9225;
  color: #ffffff;
  font-size: 15px;
  padding: .75rem 4rem .75rem 1.25rem;
  display: inline-block;
  border-radius: 20px;
  border: none;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  transition: 0.3s ease;
  background-image: url('https://www.heidehof-someren.nl/wp-content/themes/heidehof/css/../images/icon-arrow-right-black.svg');
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  background-size: 1.1rem;
  min-width: 11rem;
  max-width: 100%;
}
.button:hover {
  background-color: #a88221;
  text-decoration: none;
  color: #ffffff;
  background-position: right .75rem center;
  cursor: pointer;
}
.button:focus,
.button:active {
  outline: none;
  color: #ffffff;
}
.button.icon {
  padding-left: 4rem;
  padding-right: 1.25rem;
  background-position: left 1rem center;
  background-size: 1.5rem;
  background-image: url('https://www.heidehof-someren.nl/wp-content/themes/heidehof/css/../images/icon-reserveren-wit.svg');
}
.button.icon:hover {
  background-position: left 1rem center;
}
.button.white {
  background-color: #ffffff;
  color: #bd9225;
}
.button.white:hover {
  background-color: rgba(255, 255, 255, 0.85);
}
@media only screen and (max-width: 767px) {
  .button {
    padding: 10px 60px 10px 30px;
    max-width: 100%;
  }
}
#swipebox-container #swipebox-bottom-bar {
  background: transparent;
  bottom: 50%;
}
#swipebox-container #swipebox-bottom-bar.visible-bars {
  transform: none;
}
#swipebox-container #swipebox-arrows {
  width: 100% !important;
  max-width: 100% !important;
}
#swipebox-container #swipebox-arrows #swipebox-next {
  margin-right: 30px;
}
@media only screen and (max-width: 767px) {
  #swipebox-container #swipebox-slider .slide img {
    min-width: 100%;
  }
}
header {
  position: fixed;
  top: 0;
  z-index: 5000;
  width: 100%;
  background: #ffffff;
  -webkit-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  transition: 0.5s ease;
}
header .header-inner {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  background: #ffffff;
  z-index: 1500;
}
header .header-inner .logolink {
  display: block;
  height: 60px;
}
header .header-inner .logolink img {
  height: calc(100% + 75px);
  width: auto;
  display: block;
  transform: translateY(-1rem);
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  transition: 0.3s ease;
}
header .header-inner .logolink:hover img {
  transform: translateY(-0.5rem);
}
header .header-inner .header-right {
  width: 100%;
  display: flex;
  align-items: center;
}
header .header-inner .header-right nav.navbar {
  width: 100%;
  padding: 0 1rem 0 0;
}
header .header-inner .header-right ul.navbar-nav {
  margin: 0 auto;
}
header .header-inner .header-right ul.navbar-nav li {
  list-style: none;
}
header .header-inner .header-right ul.navbar-nav li a {
  display: inline-block;
  font-size: 1rem;
  font-weight: 400;
  color: #3b3939;
}
@media only screen and (min-width: 1600px) {
  header .header-inner .header-right ul.navbar-nav li a {
    font-size: 1.2rem;
  }
}
header .header-inner .header-right ul.navbar-nav li a.dropdown-item {
  position: relative;
  font-size: 1rem;
  font-weight: 700;
  padding: .75rem 1.5rem;
  margin-bottom: .5rem;
  color: #000;
  border-top-left-radius: 60px;
  border-bottom-left-radius: 60px;
}
header .header-inner .header-right ul.navbar-nav li a.dropdown-item:focus,
header .header-inner .header-right ul.navbar-nav li a.dropdown-item :hover {
  background: #f6f6f6;
}
header .header-inner .header-right ul.navbar-nav li.active > a,
header .header-inner .header-right ul.navbar-nav li:hover > a,
header .header-inner .header-right ul.navbar-nav li.current-menu-ancestor > a {
  color: #137f57;
}
header .header-inner .header-right ul.navbar-nav .dropdown-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
}
header .header-inner .header-right ul.navbar-nav .dropdown-menu.show {
  visibility: visible;
  opacity: 1;
}
header .header-inner .header-right ul.navbar-nav .dropdown-menu > li a {
  max-width: 225px;
  padding: 1.25rem 1.5rem;
  font-weight: 400;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
}
header .header-inner .header-right ul.navbar-nav .dropdown-menu > li:hover a {
  background: #ffffff;
}
header .header-inner .header-right ul.navbar-nav .dropdown-menu > li .dropdown-menu {
  z-index: 100;
  top: 1.5rem;
  padding: 0rem 2rem 2rem 2rem;
  -webkit-transition: 0s ease;
  -moz-transition: 0s ease;
  -o-transition: 0s ease;
  -ms-transition: 0s ease;
  transition: 0s ease;
}
header .header-inner .header-right ul.navbar-nav .dropdown-menu > li .dropdown-menu > li {
  display: flex;
  flex-direction: column-reverse;
  z-index: 100;
  border-bottom: 1px solid #efefef;
  padding-left: 1rem;
}
header .header-inner .header-right ul.navbar-nav .dropdown-menu > li .dropdown-menu > li a {
  width: 100%;
  position: relative;
  padding: 0;
}
header .header-inner .header-right ul.navbar-nav .dropdown-menu > li .dropdown-menu > li a.dropdown-item {
  font-size: 1.1rem;
  color: #137f57;
  padding-top: 1rem;
  margin: 0;
  font-weight: 600;
}
header .header-inner .header-right ul.navbar-nav .dropdown-menu > li .dropdown-menu > li a.onderregel {
  font-size: .9rem;
  color: #1c1c1c;
  max-width: 100%;
  padding-bottom: 1rem;
  min-height: 64px;
}
header .header-inner .header-right ul.navbar-nav .dropdown-menu > li .dropdown-menu > li:hover a.onderregel {
  color: #137f57;
}
header .header-inner .header-right ul.navbar-nav .dropdown-menu > li .dropdown-menu > li:last-child {
  border: none;
}
header .header-inner .header-right ul.navbar-nav .dropdown-menu > li .dropdown-menu > li:last-child a.onderregel {
  padding-bottom: 0;
}
header .header-inner .header-right ul.navbar-nav .dropdown-menu .dropdown-menu {
  top: 0;
  left: auto;
  right: -2rem;
  width: calc((100% - 225px) - 1.5rem);
  margin-left: -1px;
  background: #ffffff;
  border: none;
  border-radius: 1rem;
  border-top-left-radius: 0px;
  margin-top: 0;
  min-height: calc(542px - 3rem);
  max-height: calc(542px - 3rem);
  padding: 2rem 0 2rem 2rem;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  transition: 0.3s ease;
}
header .header-inner .header-right ul.navbar-nav .dropdown-menu .dropdown-menu .dropdown-item {
  font-weight: 400;
}
header .header-inner .header-right ul.navbar-nav .dropdown-menu .menu-item-has-children:hover:hover > .dropdown-menu {
  display: block;
  left: auto;
  right: 1.5rem;
  opacity: 1;
  visibility: visible;
  max-height: calc(100% - 2.5rem);
  overflow-x: auto;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  transition: 0.3s ease;
}
header .header-inner .header-right ul.navbar-nav > li {
  margin-right: 1.75rem;
}
@media only screen and (min-width: 1600px) {
  header .header-inner .header-right ul.navbar-nav > li {
    margin-right: 2.25rem;
  }
}
header .header-inner .header-right ul.navbar-nav > li:last-child {
  margin-right: 0rem;
}
header .header-inner .header-right ul.navbar-nav > li > .dropdown-menu {
  left: 0px;
  border: none;
  top: 55px;
  background: #efefef;
  border-radius: 1rem;
  padding: 1.5rem;
  min-width: 375px;
  width: 100%;
  min-height: 542px;
}
header .header-inner .header-right ul.navbar-nav ul.menu > li > .dropdown-menu {
  transform: translateY(-100%);
}
header .header-inner .header-right ul.navbar-nav ul.menu > li > .dropdown-menu.show {
  transform: translateY(0);
}
header .header-inner .navbar-toggle {
  padding: 0;
  position: relative;
  display: inline-block;
  margin: 0 0 0 2rem;
  -webkit-appearance: none;
  border: none;
  outline: none;
  background: none;
}
header .header-inner .navbar-toggle .hamburger-menu {
  float: left;
}
header .header-inner .navbar-toggle .icon-bar {
  background: #212121;
  position: relative;
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  transition: 0.3s ease;
}
header .header-inner .navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}
header .header-inner .navbar-toggle .menu {
  float: left;
  position: relative;
  color: #137f57;
  font-size: 20px;
  font-family: 'Merriweather', serif;
  font-weight: 600;
  margin: -5px 0 -5px 8px;
  line-height: 1.2;
}
header .header-inner .navbar-toggle.responsive-nav-close .hamburger-menu .icon-bar-2 {
  opacity: 0;
}
header .header-inner .navbar-toggle.responsive-nav-close .hamburger-menu .icon-bar-1 {
  transform: rotate(45deg);
  top: 6px;
}
header .header-inner .navbar-toggle.responsive-nav-close .hamburger-menu .icon-bar-3 {
  transform: rotate(-45deg);
  bottom: 6px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  header .header-inner .logolink {
    margin-left: -3rem;
    height: 50px;
  }
  header .header-inner .logolink img {
    height: calc(100% + 65px);
  }
  header .header-inner .header-right ul.navbar-nav li a {
    font-size: .95rem;
    padding: 0 .25rem;
  }
  header .header-inner .header-right ul.navbar-nav .dropdown-menu > li a {
    padding: 1rem;
    max-width: 150px;
  }
  header .header-inner .header-right ul.navbar-nav .dropdown-menu > li .dropdown-menu {
    padding: 0rem 1rem 1rem 1rem;
  }
  header .header-inner .header-right ul.navbar-nav .dropdown-menu > li .dropdown-menu > li {
    padding-left: .5rem;
  }
  header .header-inner .header-right ul.navbar-nav .dropdown-menu > li .dropdown-menu > li a {
    width: 100%;
    position: relative;
    padding: 0;
  }
  header .header-inner .header-right ul.navbar-nav .dropdown-menu > li .dropdown-menu > li a.dropdown-item {
    font-size: 1rem;
  }
  header .header-inner .header-right ul.navbar-nav .dropdown-menu > li .dropdown-menu > li a.onderregel {
    font-size: .8rem;
    min-height: 45px;
  }
  header .header-inner .header-right ul.navbar-nav .dropdown-menu > li .dropdown-menu > li:last-child {
    border: none;
  }
  header .header-inner .header-right ul.navbar-nav .dropdown-menu > li .dropdown-menu > li:last-child a.onderregel {
    padding-bottom: 0;
  }
  header .header-inner .header-right ul.navbar-nav .dropdown-menu .dropdown-menu {
    right: -2rem;
    width: calc(100% - 150px);
    padding: 1rem 0 1rem 1rem;
  }
  header .header-inner .header-right ul.navbar-nav > li {
    margin-right: 1rem;
  }
  header .header-inner .header-right ul.navbar-nav > li:last-child {
    margin-right: 0rem;
  }
  header .header-inner .header-right ul.navbar-nav > li > .dropdown-menu {
    left: 0px;
    border: none;
    top: 55px;
    background: #efefef;
    border-radius: 1rem;
    padding: 1.5rem;
    min-width: 375px;
    width: 100%;
    min-height: 542px;
  }
}
@media only screen and (max-width: 991px) {
  header .header-inner .logolink {
    margin-left: -2rem;
  }
  header .header-inner .logolink img {
    height: calc(100% + 65px);
  }
  header .header-inner .header-right {
    justify-content: flex-end;
  }
  header .header-inner .header-right nav.navbar {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  header {
    border-bottom-left-radius: 25px;
  }
  header .header-inner {
    padding: .5rem 0;
  }
  header .header-inner .logolink {
    height: 70px;
    margin-left: 0;
    margin-bottom: .5rem;
  }
  header .header-inner .logolink img {
    height: 100%;
    transform: translateY(0rem);
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  header .header-inner .logolink:hover img {
    transform: translateY(0rem);
  }
  header .cta-button-container {
    width: calc(100% + 40px);
    margin-left: -20px;
  }
  header .cta-button-container a.button {
    width: 100%;
    font-size: .8rem;
    padding: .5rem 0;
    text-align: center;
    border-radius: 0;
    background-position: center left calc(50% - 3.5rem);
    background-size: 1.2rem auto;
  }
}
.responsive-nav-container {
  display: none;
  position: fixed;
  left: 0;
  top: 0px;
  right: 0;
  bottom: 0;
  background: rgba(19, 127, 87, 0.97);
  z-index: 1490;
  padding-top: 150px;
}
.responsive-nav-container .responsive-nav {
  padding: 0;
  margin: 0;
}
.responsive-nav-container .responsive-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 20px;
}
.responsive-nav-container .responsive-nav ul li {
  display: inline-block;
  position: relative;
  padding: .5rem 1.5rem;
  width: 100%;
  text-align: left;
  opacity: 0;
  transform: translateY(-15px);
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  transition: 0.3s ease;
}
.responsive-nav-container .responsive-nav ul li.button {
  width: auto;
  margin: 15px auto 0 auto;
  padding: 2px 15px 4px 15px;
  font-size: 20px;
  background-image: none;
}
.responsive-nav-container .responsive-nav ul li.button a {
  font-size: 0.875em;
}
.responsive-nav-container .responsive-nav ul li a {
  display: inline-block;
  width: 100%;
  color: white;
  font-weight: 400;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  transition: 0.3s ease;
}
.responsive-nav-container .responsive-nav ul li a:hover,
.responsive-nav-container .responsive-nav ul li a:active {
  color: white;
  text-decoration: none;
}
.responsive-nav-container .responsive-nav ul li a.sf-with-ul {
  position: relative;
}
.responsive-nav-container .responsive-nav ul li a.sf-with-ul::after {
  position: absolute;
  content: "";
  background: url('https://www.heidehof-someren.nl/wp-content/themes/heidehof/css/../images/icon-chevron-down-white.svg');
  background-size: 10px;
  background-position: right 1px center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  right: 0;
  top: 2px;
  border: none;
}
.responsive-nav-container .responsive-nav ul li a.sf-with-ul:hover::after,
.responsive-nav-container .responsive-nav ul li a.sf-with-ul:active::after {
  background-image: url('https://www.heidehof-someren.nl/wp-content/themes/heidehof/css/../images/icon-chevron-down-white.svg');
}
.responsive-nav-container .responsive-nav ul li li {
  padding-right: 0;
}
.responsive-nav-container .responsive-nav ul li.current-menu-item a,
.responsive-nav-container .responsive-nav ul li.current_page_parent a {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}
.responsive-nav-container .responsive-nav ul li.li-show {
  opacity: 1;
  transform: translateY(0px);
}
.responsive-nav-container.in {
  display: block;
}
.banner + .tekst-met-formulier {
  margin-top: calc(-5rem - 25px);
}
@media only screen and (max-width: 991px) {
  .banner + .tekst-met-formulier {
    margin-top: -3rem;
  }
}
.tekst-met-formulier {
  position: relative;
  z-index: 1;
}
.tekst-met-formulier.with-before::before {
  content: '';
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50%;
  background: #efefef;
  z-index: -1;
}
.tekst-met-formulier .tekst-met-formulier-inner {
  padding: 8rem 2rem 0 2rem;
  z-index: 3;
}
.tekst-met-formulier .tekst-met-formulier-inner .content {
  padding-bottom: 4rem;
}
.tekst-met-formulier .tekst-met-formulier-inner .content span.top-titel {
  color: white;
}
.tekst-met-formulier .tekst-met-formulier-inner .content h1,
.tekst-met-formulier .tekst-met-formulier-inner .content h2,
.tekst-met-formulier .tekst-met-formulier-inner .content h3 {
  color: white;
}
.tekst-met-formulier .tekst-met-formulier-inner .content p {
  color: white;
}
.tekst-met-formulier .tekst-met-formulier-inner .content .phone-item:not(:last-of-type) {
  margin-bottom: 1rem;
}
.tekst-met-formulier .tekst-met-formulier-inner .content .cta-button-container {
  margin-top: 2rem;
}
.tekst-met-formulier .tekst-met-formulier-inner .footer-form {
  padding-top: 4rem;
  margin-bottom: -7rem;
}
.tekst-met-formulier .tekst-met-formulier-inner .footer-form.with-before {
  position: relative;
}
.tekst-met-formulier .tekst-met-formulier-inner .footer-form.with-before::before {
  content: '';
  position: absolute;
  bottom: calc(100% - 1rem);
  left: calc(100% + 2rem);
  width: 6rem;
  height: 6rem;
  background-image: url('https://www.heidehof-someren.nl/wp-content/themes/heidehof/css/../images/icon-contact-tea.svg');
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.tekst-met-formulier .tekst-met-formulier-inner .footer-form textarea {
  height: 300px;
}
.tekst-met-formulier .bg-custom-width {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.tekst-met-formulier .bg-custom-width .bg-element {
  background-color: #137f57;
}
@media only screen and (max-width: 991px) {
  .tekst-met-formulier .tekst-met-formulier-inner {
    padding: 4rem 2rem 0 2rem;
  }
  .tekst-met-formulier .tekst-met-formulier-inner .footer-form.with-before::before {
    display: none;
  }
  .tekst-met-formulier .tekst-met-formulier-inner .footer-form textarea {
    height: 250px;
  }
}
footer {
  position: relative;
  margin: 0;
  width: 100%;
  display: block;
}
footer .footer-cta {
  position: relative;
}
footer .footer-cta .footer-cta-inner {
  padding: 8rem 2rem;
}
footer .footer-cta .footer-cta-inner span.top-titel {
  color: white;
}
footer .footer-cta .footer-cta-inner h1,
footer .footer-cta .footer-cta-inner h2,
footer .footer-cta .footer-cta-inner h3 {
  color: white;
}
footer .footer-cta .footer-cta-button {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: flex-end;
}
footer .footer-cta .bg-custom-width {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}
footer .footer-cta .bg-custom-width .bg-element {
  background-color: #bd9225;
  border-bottom-left-radius: 0px;
  border-top-left-radius: 25px;
}
@media only screen and (max-width: 991px) {
  footer .footer-cta .footer-cta-inner {
    padding: 4rem 2rem;
  }
}
footer .footer-openingstijden {
  padding: 8rem 0;
  background: #efefef;
  position: relative;
}
footer .footer-openingstijden.with-before::after {
  content: '';
  width: 100%;
  position: absolute;
  bottom: 100%;
  height: 20rem;
  background: #efefef;
}
footer .footer-openingstijden .openingstijden .openingstijd-regel {
  display: flex;
  padding: .1rem 0;
}
footer .footer-openingstijden .openingstijden .openingstijd-regel .openingstijd-dag {
  width: 110px;
  font-weight: 600;
}
footer .footer-openingstijden .openingstijden .opmerking {
  font-size: .75rem;
  margin-top: 1rem;
}
footer .footer-openingstijden .footer-openingstijden-inner {
  position: relative;
}
footer .footer-openingstijden .footer-openingstijden-inner::before {
  content: '';
  position: absolute;
  top: -5rem;
  bottom: -5rem;
  left: calc(100% - 10rem);
  width: 100%;
  background-image: url('https://www.heidehof-someren.nl/wp-content/themes/heidehof/css/../images/beeldmerk-grey-light.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
  z-index: 0;
}
@media only screen and (max-width: 991px) {
  footer .footer-openingstijden {
    padding: 6rem 0 4rem 0;
  }
  footer .footer-openingstijden .footer-openingstijden-inner::before {
    top: -2rem;
    bottom: -2rem;
    left: calc(50% - 2rem);
  }
}
footer .footer-content .footer-inner {
  padding: 4rem 0;
}
footer .footer-content .footer-item .logo img {
  max-width: 213px;
}
footer .footer-content .footer-item.contact-icon-before {
  padding-left: 3rem;
  background-image: url('https://www.heidehof-someren.nl/wp-content/themes/heidehof/css/../images/icon-locatie-color-1.svg');
  background-size: auto 2rem;
  background-position: top .5rem left;
  background-repeat: no-repeat;
}
footer .footer-content .footer-item .contact-gegevens .phone-item {
  margin-bottom: 2rem;
}
footer .footer-content .footer-item .contact-gegevens .phone-item:last-child {
  margin-bottom: 0;
}
footer .footer-content .footer-item p {
  color: #1c1c1c;
}
footer .footer-content .footer-item p a {
  color: #1c1c1c;
}
footer .footer-content .footer-item p a:hover {
  color: rgba(28, 28, 28, 0.8);
}
footer .footer-content .footer-item p.titel {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-family: 'Merriweather', serif;
  font-weight: 600;
  color: #1c1c1c;
  margin-bottom: 30px;
}
@media only screen and (max-width: 991px) {
  footer .footer-content .footer-item p.titel {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
footer .footer-content .footer-item ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
footer .footer-content .footer-item ul li {
  display: inline-block;
  width: 100%;
}
footer .footer-content .footer-item ul li a {
  color: #1c1c1c;
}
footer .footer-content .footer-item ul li a:hover,
footer .footer-content .footer-item ul li a:focus {
  color: #1c1c1c;
}
footer .footer-content .footer-item ul.social-media {
  padding: 0;
  margin: 0;
  display: inline-block;
}
footer .footer-content .footer-item ul.social-media li {
  display: inline-block;
  width: 100%;
  margin-bottom: 1rem;
}
footer .footer-content .footer-item ul.social-media li a img {
  width: 35px;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  transition: 0.3s ease;
}
footer .footer-content .footer-item ul.social-media li a span {
  padding-left: .75rem;
}
footer .footer-content .footer-item ul.social-media li a:hover img {
  opacity: .7;
}
footer .footer-content .footer-item ul.social-media li a:hover span {
  color: #137f57;
}
footer .footer-colofon .footer-inner {
  padding: 2rem 2.5rem 2rem 2.5rem;
  background: #137f57;
  border-radius: 25px 25px 0 0;
}
footer .footer-colofon a {
  color: #ffffff;
  font-size: 1em;
}
footer .footer-colofon a:hover,
footer .footer-colofon a:focus {
  color: rgba(255, 255, 255, 0.8);
}
footer .footer-colofon a.website-door {
  float: right;
}
footer .footer-colofon ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
footer .footer-colofon ul li {
  display: inline-block;
  color: white;
  font-size: 1em;
}
footer .footer-colofon ul li a {
  color: #ffffff;
  font-size: 1em;
}
footer .footer-colofon ul li a:hover,
footer .footer-colofon ul li a:focus {
  color: rgba(255, 255, 255, 0.8);
}
footer .footer-colofon ul li:not(:last-child)::after {
  content: '|';
  margin: 0 5px;
  color: #ffffff;
}
@media only screen and (max-width: 767px) {
  footer .footer-content .footer-inner {
    padding: 2rem 0 0 0;
  }
  footer .footer-content .footer-item {
    margin-bottom: 3rem;
  }
  footer .footer-content .footer-item .logo {
    display: none;
  }
  footer .footer-content .footer-item .contact-gegevens .phone-item {
    margin-bottom: 1rem;
  }
  footer .footer-content .footer-item .contact-gegevens .phone-item:last-child {
    margin-bottom: 0;
  }
  footer .footer-colofon a.website-door {
    float: left;
  }
}
.width-outside-container {
  max-width: 100%;
  margin-left: calc((100% - (1140px + 360px)) / 2);
}
@media only screen and (max-width: 1540px) {
  .width-outside-container {
    margin-left: calc((100% - (1140px + 160px)) / 2);
  }
}
@media only screen and (max-width: 1340px) {
  .width-outside-container {
    margin-left: calc((100% - (1140px + 60px)) / 2);
  }
}
@media only screen and (max-width: 1240px) {
  .width-outside-container {
    max-width: calc(100% - 21px);
    margin-left: 21px;
  }
}
@media only screen and (max-width: 991px) {
  .width-outside-container {
    max-width: calc(100% - 21px);
    margin-left: 21px;
  }
}
.border-radius {
  border-radius: 25px;
}
.border-left-top {
  border-top-left-radius: 25px;
}
.border-left-bottom {
  border-bottom-left-radius: 25px;
}
.border-radius-left {
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
}
.phone-item {
  display: flex;
}
.phone-item span.icon {
  width: 2.5rem;
  background-image: url('https://www.heidehof-someren.nl/wp-content/themes/heidehof/css/../images/icon-restaurant.svg');
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.phone-item span.icon.cafetaria {
  background-image: url('https://www.heidehof-someren.nl/wp-content/themes/heidehof/css/../images/icon-cafetaria.svg');
}
.phone-item span.text {
  color: rgba(28, 28, 28, 0.5);
  font-weight: 300;
  padding-left: 1rem;
}
.phone-item span.text a {
  font-weight: 600;
  color: #1c1c1c;
}
.phone-item.white span.icon {
  background-image: url('https://www.heidehof-someren.nl/wp-content/themes/heidehof/css/../images/icon-restaurant-wit.svg');
}
.phone-item.white span.icon.cafetaria {
  background-image: url('https://www.heidehof-someren.nl/wp-content/themes/heidehof/css/../images/icon-cafetaria-wit.svg');
}
.phone-item.white span.text {
  color: #7cb9a2;
}
.phone-item.white span.text a {
  color: #1c1c1c;
  cursor: pointer;
  position: relative;
  color: #ffffff;
}
.phone-item.white span.text a::after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #bd9225;
  position: absolute;
  top: calc(100% + .1rem);
  right: 0;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  transition: 0.3s ease;
}
.phone-item.white span.text a:hover {
  color: #bd9225;
}
.phone-item.white span.text a:hover::after {
  width: 0%;
}
.phone-item.white span.text a.white {
  color: #ffffff;
}
.phone-item.white span.text a.white::after {
  background-color: #ffffff;
}
.phone-item.white span.text a.white:hover {
  color: #ffffff;
}
.phone-item.white span.text a.reverse::after {
  width: 0%;
}
.phone-item.white span.text a.reverse:hover::after {
  width: 100%;
}
.phone-item.white span.text a::after {
  width: 0%;
}
.phone-item.white span.text a:hover::after {
  width: 100%;
}
.phone-item.white span.text a::after {
  background-color: #ffffff;
}
.phone-item.white span.text a:hover {
  color: #ffffff;
}
.phone-item.black span.icon {
  background-image: url('https://www.heidehof-someren.nl/wp-content/themes/heidehof/css/../images/icon-restaurant-color-1.svg');
}
.phone-item.black span.icon.cafetaria {
  background-image: url('https://www.heidehof-someren.nl/wp-content/themes/heidehof/css/../images/icon-cafetaria-color-1.svg');
}
.phone-item.black span.text {
  color: #212121;
}
.phone-item.black span.text a {
  color: #212121;
  color: #1c1c1c;
  cursor: pointer;
  position: relative;
}
.phone-item.black span.text a::after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #bd9225;
  position: absolute;
  top: calc(100% + .1rem);
  right: 0;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  transition: 0.3s ease;
}
.phone-item.black span.text a:hover {
  color: #bd9225;
}
.phone-item.black span.text a:hover::after {
  width: 0%;
}
.phone-item.black span.text a.white {
  color: #ffffff;
}
.phone-item.black span.text a.white::after {
  background-color: #ffffff;
}
.phone-item.black span.text a.white:hover {
  color: #ffffff;
}
.phone-item.black span.text a.reverse::after {
  width: 0%;
}
.phone-item.black span.text a.reverse:hover::after {
  width: 100%;
}
.phone-item.black span.text a::after {
  width: 0%;
}
.phone-item.black span.text a:hover::after {
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .phone-item span.icon {
    width: 2rem;
  }
}
.banner {
  position: relative;
  min-height: 225px;
  z-index: 4;
  margin-bottom: 5rem;
}
@media only screen and (max-width: 991px) {
  .banner {
    margin-bottom: 3rem;
  }
}
.banner.with-intro {
  margin-bottom: 0;
}
.banner.home {
  min-height: 600px;
}
.banner .banner-img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.banner .banner-img .banner-img-inner {
  position: relative;
  height: 100%;
  max-width: 100%;
  margin-left: calc((100% - (1140px + 360px)) / 2);
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1540px) {
  .banner .banner-img .banner-img-inner {
    margin-left: calc((100% - (1140px + 160px)) / 2);
  }
}
@media only screen and (max-width: 1340px) {
  .banner .banner-img .banner-img-inner {
    margin-left: calc((100% - (1140px + 60px)) / 2);
  }
}
@media only screen and (max-width: 1240px) {
  .banner .banner-img .banner-img-inner {
    max-width: calc(100% - 21px);
    margin-left: 21px;
  }
}
@media only screen and (max-width: 991px) {
  .banner .banner-img .banner-img-inner {
    max-width: calc(100% - 21px);
    margin-left: 21px;
  }
}
@media only screen and (max-width: 991px) {
  .banner.home {
    min-height: 400px;
  }
  .banner.home .banner-img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  .banner.home .banner-img .banner-img-inner {
    max-width: calc(100% + 40px);
    margin-left: 0;
    border-radius: 0;
  }
}
@media only screen and (max-width: 767px) {
  .banner.home {
    min-height: 250px;
  }
  .banner.home .banner-img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  .banner.home .banner-img .banner-img-inner {
    max-width: calc(100% + 40px);
    margin-left: 0;
    border-radius: 0;
  }
}
.banner-intro {
  margin-bottom: 5rem;
  margin-top: -20px;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .banner-intro {
    margin-bottom: 3rem;
  }
}
.banner-intro .banner-intro-inner {
  padding: 8rem 2rem;
  text-align: center;
}
.banner-intro .banner-intro-inner p {
  font-size: 1.2rem;
}
.banner-intro .banner-intro-inner .banner-intro-content {
  position: relative;
  z-index: 1;
}
.banner-intro .banner-intro-inner .banner-intro-content::before {
  content: '';
  position: absolute;
  top: -5rem;
  bottom: -5rem;
  left: calc(100% - 10rem);
  width: 100%;
  background-image: url('https://www.heidehof-someren.nl/wp-content/themes/heidehof/css/../images/beeldmerk-grey-light.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center left;
  z-index: -1;
}
@media only screen and (max-width: 991px) {
  .banner-intro .banner-intro-inner {
    padding: 4rem 2rem;
  }
}
.bg-custom-width {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.bg-custom-width .bg-element {
  position: relative;
  height: 100%;
  max-width: 100%;
  margin-left: calc((100% - (1140px + 360px)) / 2);
  background: #efefef;
  border-bottom-left-radius: 25px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1540px) {
  .bg-custom-width .bg-element {
    margin-left: calc((100% - (1140px + 160px)) / 2);
  }
}
@media only screen and (max-width: 1340px) {
  .bg-custom-width .bg-element {
    margin-left: calc((100% - (1140px + 60px)) / 2);
  }
}
@media only screen and (max-width: 1240px) {
  .bg-custom-width .bg-element {
    max-width: calc(100% - 21px);
    margin-left: 21px;
  }
}
@media only screen and (max-width: 991px) {
  .bg-custom-width .bg-element {
    max-width: calc(100% - 21px);
    margin-left: 21px;
  }
}
.contact-met-fotos {
  margin-bottom: 5rem;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .contact-met-fotos {
    margin-bottom: 3rem;
  }
}
.contact-met-fotos .contact-met-fotos-inner {
  padding: 8rem 0 3rem 0;
}
.contact-met-fotos .contact-met-fotos-inner .contact-met-fotos-content {
  padding: 0 0 0 5rem;
}
.contact-met-fotos .contact-met-fotos-inner .contact-met-fotos-content * {
  color: white;
}
.contact-met-fotos .contact-met-fotos-inner .contact-met-fotos-content h2,
.contact-met-fotos .contact-met-fotos-inner .contact-met-fotos-content h3 {
  margin-bottom: .5em;
}
.contact-met-fotos .contact-met-fotos-inner .contact-met-fotos-content p {
  color: #7cb9a2;
}
.contact-met-fotos .contact-met-fotos-inner .contact-met-fotos-content p:last-child {
  margin-bottom: 0;
}
.contact-met-fotos .contact-met-fotos-inner .contact-met-fotos-content p a {
  color: #1c1c1c;
  cursor: pointer;
  position: relative;
  color: #ffffff;
}
.contact-met-fotos .contact-met-fotos-inner .contact-met-fotos-content p a::after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #bd9225;
  position: absolute;
  top: calc(100% + .1rem);
  right: 0;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  transition: 0.3s ease;
}
.contact-met-fotos .contact-met-fotos-inner .contact-met-fotos-content p a:hover {
  color: #bd9225;
}
.contact-met-fotos .contact-met-fotos-inner .contact-met-fotos-content p a:hover::after {
  width: 0%;
}
.contact-met-fotos .contact-met-fotos-inner .contact-met-fotos-content p a.white {
  color: #ffffff;
}
.contact-met-fotos .contact-met-fotos-inner .contact-met-fotos-content p a.white::after {
  background-color: #ffffff;
}
.contact-met-fotos .contact-met-fotos-inner .contact-met-fotos-content p a.white:hover {
  color: #ffffff;
}
.contact-met-fotos .contact-met-fotos-inner .contact-met-fotos-content p a.reverse::after {
  width: 0%;
}
.contact-met-fotos .contact-met-fotos-inner .contact-met-fotos-content p a.reverse:hover::after {
  width: 100%;
}
.contact-met-fotos .contact-met-fotos-inner .contact-met-fotos-content p a::after {
  background-color: #ffffff;
}
.contact-met-fotos .contact-met-fotos-inner .contact-met-fotos-content p a:hover {
  color: #ffffff;
}
.contact-met-fotos .contact-met-fotos-inner .contact-gegevens {
  display: flex;
  justify-content: flex-end;
  height: 100%;
  align-items: center;
}
.contact-met-fotos .contact-met-fotos-inner .contact-gegevens .phone-item:not(:last-child) {
  margin-right: 3rem;
}
.contact-met-fotos .contact-met-fotos-inner .contact-met-fotos-afbeeldingen {
  display: flex;
  align-items: center;
  width: calc(100% + 10rem);
  margin-left: -5rem;
  margin-top: 4rem;
}
.contact-met-fotos .contact-met-fotos-inner .contact-met-fotos-afbeeldingen .afbeelding-column {
  width: 30%;
  padding: 0 15px;
}
.contact-met-fotos .contact-met-fotos-inner .contact-met-fotos-afbeeldingen .afbeelding-column.extra-width {
  width: 35%;
}
.contact-met-fotos .contact-met-fotos-inner .contact-met-fotos-afbeeldingen .afbeelding-column.extra-width .image-element {
  padding-bottom: 70%;
}
.contact-met-fotos .contact-met-fotos-inner .contact-met-fotos-afbeeldingen .afbeelding-column.first {
  padding-top: 3rem;
}
.contact-met-fotos .contact-met-fotos-inner .contact-met-fotos-afbeeldingen .afbeelding-column.last {
  padding-top: 6rem;
}
.contact-met-fotos .contact-met-fotos-inner .contact-met-fotos-afbeeldingen .afbeelding-column .image-element {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 60%;
  margin-bottom: 30px;
  background: #137f57;
}
.contact-met-fotos .contact-met-fotos-inner .contact-met-fotos-afbeeldingen .afbeelding-column .image-element .image-element-inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.contact-met-fotos .contact-met-fotos-inner .contact-met-fotos-afbeeldingen .afbeelding-column .image-element .image-element-inner .inner-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(19, 127, 87, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-met-fotos .contact-met-fotos-inner .contact-met-fotos-afbeeldingen .afbeelding-column .image-element .image-element-inner .inner-content span.text {
  font-family: 'Merriweather', serif;
  font-weight: 300;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: #1c1c1c;
  color: #ffffff;
}
@media only screen and (max-width: 991px) {
  .contact-met-fotos .contact-met-fotos-inner .contact-met-fotos-afbeeldingen .afbeelding-column .image-element .image-element-inner .inner-content span.text {
    font-size: 1.1rem;
  }
}
.contact-met-fotos .contact-met-fotos-inner .contact-met-fotos-afbeeldingen .afbeelding-column .image-element .image-element-inner:hover {
  opacity: .6;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  transition: 0.3s ease;
}
.contact-met-fotos .bg-custom-width .bg-element {
  height: calc(100% - 11rem);
  bottom: 0;
  margin-left: calc((100% - (1140px)) / 2);
  background: #137f57;
  background-image: url('https://www.heidehof-someren.nl/wp-content/themes/heidehof/css/../images/contact-heidehof-achtergrond.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-top-left-radius: 25px;
}
@media only screen and (max-width: 1240px) {
  .contact-met-fotos .contact-met-fotos-inner .contact-met-fotos-afbeeldingen {
    width: calc(100% + 0rem);
    margin-left: 0rem;
  }
  .contact-met-fotos .bg-custom-width .bg-element {
    max-width: calc(100% - 21px);
    margin-left: 21px;
  }
}
@media only screen and (max-width: 991px) {
  .contact-met-fotos .contact-met-fotos-inner {
    padding: 4rem 0 3rem 0;
  }
  .contact-met-fotos .contact-met-fotos-inner .contact-gegevens {
    justify-content: space-between;
    padding: 0 5rem;
    margin-top: 1rem;
  }
  .contact-met-fotos .contact-met-fotos-inner .contact-met-fotos-afbeeldingen {
    margin-top: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .contact-met-fotos .contact-met-fotos-inner .contact-met-fotos-content {
    padding: 0 2rem;
  }
  .contact-met-fotos .contact-met-fotos-inner .contact-gegevens {
    padding: 0 2rem;
    margin-top: 1.5rem;
  }
  .contact-met-fotos .contact-met-fotos-inner .contact-met-fotos-afbeeldingen {
    padding-left: 2rem;
    margin-top: 1rem;
  }
  .contact-met-fotos .contact-met-fotos-inner .contact-met-fotos-afbeeldingen .afbeelding-column {
    width: 100%;
    display: none;
    padding: 0;
  }
  .contact-met-fotos .contact-met-fotos-inner .contact-met-fotos-afbeeldingen .afbeelding-column.extra-width {
    width: 100%;
  }
  .contact-met-fotos .contact-met-fotos-inner .contact-met-fotos-afbeeldingen .afbeelding-column.first {
    display: block;
  }
  .contact-met-fotos .contact-met-fotos-inner .contact-met-fotos-afbeeldingen .afbeelding-column .image-element {
    margin-bottom: 0;
  }
}
.home-intro {
  margin-bottom: 5rem;
  position: relative;
  z-index: 6;
  margin-top: -15rem;
}
@media only screen and (max-width: 991px) {
  .home-intro {
    margin-bottom: 3rem;
  }
}
.home-intro .lijst-items a {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid #dbdbdb;
  padding: 1.4rem 1rem;
}
.home-intro .lijst-items a span.icoon {
  margin: 0;
  width: 55px;
  text-align: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.home-intro .lijst-items a span.icoon img {
  width: 100%;
  max-width: 100%;
  max-height: 45px;
}
.home-intro .lijst-items a span.titel {
  width: 100%;
  font-family: 'Merriweather', serif;
  font-weight: 300;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: #1c1c1c;
  color: #bd9225;
  line-height: 1.2em;
  margin: 0;
  text-align: left;
  padding-left: 2rem;
  align-self: center;
}
@media only screen and (max-width: 991px) {
  .home-intro .lijst-items a span.titel {
    font-size: 1.6rem;
  }
}
.home-intro .lijst-items a span.arrow {
  width: 55px;
  background-image: url('https://www.heidehof-someren.nl/wp-content/themes/heidehof/css/../images/icon-arrow-right-black.svg');
  background-size: auto 1.3rem;
  background-position: center center;
  background-repeat: no-repeat;
}
.home-intro .lijst-items a:hover span.arrow {
  transform: translateX(0.5rem);
}
.home-intro .lijst-items a:hover span.titel {
  color: #1c1c1c;
}
.home-intro .home-intro-content {
  position: relative;
  z-index: 2;
  margin-top: 8rem;
  padding: 4rem 0 3rem 4rem;
}
.home-intro .home-intro-content::before {
  content: '';
  position: absolute;
  top: 5rem;
  bottom: 3rem;
  left: calc(100% - 10rem);
  width: 100%;
  background-image: url('https://www.heidehof-someren.nl/wp-content/themes/heidehof/css/../images/beeldmerk-grey-light.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}
.home-intro .home-intro-content::after {
  content: '';
  position: absolute;
  width: 100vw;
  left: 0;
  top: 0;
  height: 100%;
  background: #efefef;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  z-index: -2;
}
@media only screen and (min-width: 992px) {
  .home-intro .lijst-items .row > .col-lg-6 {
    padding-bottom: 2rem;
  }
  .home-intro .lijst-items a.uitgelicht {
    border: none;
    background: #bd9225;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    height: 100%;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
  }
  .home-intro .lijst-items a.uitgelicht::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url('https://www.heidehof-someren.nl/wp-content/themes/heidehof/css/../images/lijst-item-before.png');
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center top;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .home-intro .lijst-items a.uitgelicht span {
    position: relative;
    z-index: 1;
  }
  .home-intro .lijst-items a.uitgelicht span.icoon {
    margin: 0;
    width: 100%;
    height: 65px;
    text-align: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }
  .home-intro .lijst-items a.uitgelicht span.icoon img {
    width: 100%;
    max-width: 50px;
  }
  .home-intro .lijst-items a.uitgelicht span.titel {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1c1c1c;
    font-weight: 400;
    line-height: 1.2em;
    padding: 0;
    margin: 2rem 0;
    text-align: center;
    color: #ffffff;
    min-height: 110px;
  }
  .home-intro .lijst-items a.uitgelicht span.arrow {
    width: 100%;
    height: 1.3rem;
    background-image: url('https://www.heidehof-someren.nl/wp-content/themes/heidehof/css/../images/icon-arrow-right-black.svg');
    background-size: auto 100%;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .home-intro .lijst-items a.uitgelicht:hover {
    background-color: #a88221;
  }
  .home-intro .lijst-items a.uitgelicht:hover::before {
    background-size: 120% auto;
  }
}
@media only screen and (min-width: 992px) and only screen and (max-width: 991px) {
  .home-intro .lijst-items a.uitgelicht span.titel {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 991px) {
  .home-intro {
    margin-top: -2rem;
  }
  .home-intro .lijst-items a {
    padding: 1rem 0 1rem 1rem;
  }
  .home-intro .lijst-items a span.icoon img {
    max-height: 30px;
  }
  .home-intro .lijst-items a span.arrow {
    background-size: 1rem auto;
  }
  .home-intro .lijst-items a.uitgelicht {
    border: none;
    background: #bd9225;
    border-radius: 25px;
    margin-bottom: 1rem;
    position: relative;
  }
  .home-intro .lijst-items a.uitgelicht::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url('https://www.heidehof-someren.nl/wp-content/themes/heidehof/css/../images/lijst-item-before-mobiel.png');
    background-size: 5rem 100%;
    background-repeat: no-repeat;
    background-position: left top;
  }
  .home-intro .lijst-items a.uitgelicht span.titel {
    color: #ffffff;
  }
  .home-intro .home-intro-content {
    margin-top: 0rem;
  }
}
@media only screen and (max-width: 767px) {
  .home-intro .lijst-items a.uitgelicht {
    border: none;
    background: #bd9225;
    border-radius: 25px;
    margin-bottom: .5rem;
  }
  .home-intro .home-intro-content {
    padding: 3rem 2rem;
    margin-top: 3rem;
  }
  .home-intro .home-intro-content::before {
    display: none;
  }
  .home-intro .home-intro-content::after {
    width: 100%;
    border-radius: 25px;
  }
}
.content-tekst {
  margin-bottom: 5rem;
}
@media only screen and (max-width: 991px) {
  .content-tekst {
    margin-bottom: 3rem;
  }
}
.content-tekst h2.kolom-titel {
  margin-bottom: 30px;
}
@media only screen and (max-width: 575px) {
  .content-tekst .kolom-2 {
    margin-top: 50px;
  }
}
.tekstblok {
  margin-bottom: 5rem;
}
@media only screen and (max-width: 991px) {
  .tekstblok {
    margin-bottom: 3rem;
  }
}
.tekstblok .tekstblok-inner {
  padding-left: 12rem;
  position: relative;
}
.tekstblok .tekstblok-inner span.top-titel {
  margin-left: -5rem;
}
.tekstblok .tekstblok-inner h2:first-of-type,
.tekstblok .tekstblok-inner h3:first-of-type {
  margin-left: -5rem;
  margin-bottom: 3.5rem;
}
.tekstblok .tekstblok-inner.without-icons p {
  margin-left: -5rem;
}
.tekstblok .tekstblok-inner.without-icons ul {
  margin-left: -5rem;
}
.tekstblok .tekstblok-inner.without-icons ul ul {
  margin-left: 1rem;
}
.tekstblok .tekstblok-inner.without-icons h2,
.tekstblok .tekstblok-inner.without-icons h3 {
  margin-left: -5rem;
}
.tekstblok .tekstblok-inner .icon-container {
  position: absolute;
  height: 100%;
  top: 0;
  left: -2rem;
  padding-top: 8rem;
}
.tekstblok .tekstblok-inner .icon-container img {
  max-width: 100%;
  max-height: 100%;
}
@media only screen and (max-width: 991px) {
  .tekstblok .tekstblok-inner {
    padding-left: 10rem;
  }
  .tekstblok .tekstblok-inner span.top-titel {
    margin-left: -4rem;
  }
  .tekstblok .tekstblok-inner h2:first-of-type {
    margin-left: -4rem;
  }
  .tekstblok .tekstblok-inner.without-icons p {
    margin-left: -4rem;
  }
  .tekstblok .tekstblok-inner .icon-container {
    left: -1rem;
  }
}
@media only screen and (max-width: 767px) {
  .tekstblok .tekstblok-inner {
    padding-left: 0;
  }
  .tekstblok .tekstblok-inner span.top-titel {
    margin-left: 0rem;
  }
  .tekstblok .tekstblok-inner h2:first-of-type {
    margin-left: 0rem;
  }
  .tekstblok .tekstblok-inner.without-icons p {
    margin-left: 0rem;
  }
  .tekstblok .tekstblok-inner .icon-container {
    display: none;
  }
}
.reviews {
  margin-bottom: 5rem;
}
@media only screen and (max-width: 991px) {
  .reviews {
    margin-bottom: 3rem;
  }
}
.reviews .reviews-inner .tripadvisor-link,
.reviews .reviews-inner .google-link {
  display: block;
  float: left;
}
.reviews .reviews-inner .tripadvisor-link img,
.reviews .reviews-inner .google-link img {
  width: 35px;
}
.reviews .reviews-inner .tripadvisor-link:hover,
.reviews .reviews-inner .google-link:hover {
  opacity: .5;
}
.reviews .reviews-inner .google-link {
  margin-left: 1rem;
}
.reviews .reviews-inner .reviews-container {
  background: #efefef;
  position: relative;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  padding-left: 4rem;
}
.reviews .reviews-inner .reviews-container .slick-arrows {
  position: absolute;
  top: 2rem;
  z-index: 3;
}
.reviews .reviews-inner .reviews-container .slick-arrows .slick-next,
.reviews .reviews-inner .reviews-container .slick-arrows .slick-prev {
  display: inline-block;
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  width: 21px;
  height: 17px;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  background-image: url('https://www.heidehof-someren.nl/wp-content/themes/heidehof/css/../images/icon-arrow-right-black.svg');
  background-size: 100% auto;
  background-position: center left;
  background-repeat: no-repeat;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  transition: 0.3s ease;
}
.reviews .reviews-inner .reviews-container .slick-arrows .slick-next::before,
.reviews .reviews-inner .reviews-container .slick-arrows .slick-prev::before {
  display: none;
}
.reviews .reviews-inner .reviews-container .slick-arrows .slick-next:hover,
.reviews .reviews-inner .reviews-container .slick-arrows .slick-prev:hover {
  opacity: .6;
}
.reviews .reviews-inner .reviews-container .slick-arrows .slick-prev {
  background-image: url('https://www.heidehof-someren.nl/wp-content/themes/heidehof/css/../images/icon-arrow-left-black.svg');
  margin-right: 1rem;
}
.reviews .reviews-inner .reviews-container::after {
  content: '';
  position: absolute;
  width: 100vw;
  left: 100%;
  top: 0;
  bottom: 0;
  background: inherit;
}
.reviews .reviews-inner .reviews-container .review-item {
  padding: 7rem 0 3rem 0;
  outline: none !important;
}
.reviews .reviews-inner .reviews-container .review-item h3 {
  color: #137f57;
}
@media only screen and (max-width: 991px) {
  .reviews .reviews-inner .reviews-container {
    padding: 0 3rem;
    margin-top: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .reviews .reviews-inner .reviews-container {
    padding: 0 2rem;
  }
}
.wpcf7 form.wpcf7-form {
  display: inline-block;
  width: 100%;
}
.wpcf7 form.wpcf7-form .form-group {
  display: inline-block;
  width: 100%;
  margin-bottom: 0;
}
.wpcf7 form.wpcf7-form .form-group input.wpcf7-text,
.wpcf7 form.wpcf7-form .form-group textarea.wpcf7-textarea {
  border: 1px solid white;
  border-radius: 10px;
  padding: 1.5rem 1rem;
  outline: none;
  box-shadow: none;
  -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.23);
  -moz-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.23);
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.23);
  font-size: 12px;
  margin: 0 0 15px 0;
}
.wpcf7 form.wpcf7-form .form-group input.wpcf7-text:focus,
.wpcf7 form.wpcf7-form .form-group textarea.wpcf7-textarea:focus {
  outline: none;
  -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.43);
  -moz-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.43);
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.43);
}
.wpcf7 form.wpcf7-form .form-group input.wpcf7-text.wpcf7-not-valid,
.wpcf7 form.wpcf7-form .form-group textarea.wpcf7-textarea.wpcf7-not-valid {
  border-color: #c50e00;
}
.wpcf7 form.wpcf7-form .form-group span.titel {
  font-weight: 600;
  color: #ffffff;
}
.wpcf7 form.wpcf7-form .form-group input.wpcf7-submit {
  position: relative;
  font-family: 'Merriweather', serif;
  font-weight: 300;
  font-weight: 600;
  background-color: #bd9225;
  color: #ffffff;
  font-size: 15px;
  padding: .75rem 4rem .75rem 1.25rem;
  display: inline-block;
  border-radius: 20px;
  border: none;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  transition: 0.3s ease;
  background-image: url('https://www.heidehof-someren.nl/wp-content/themes/heidehof/css/../images/icon-arrow-right-black.svg');
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  background-size: 1.1rem;
  min-width: 11rem;
  max-width: 100%;
}
.wpcf7 form.wpcf7-form .form-group input.wpcf7-submit:hover {
  background-color: #a88221;
  text-decoration: none;
  color: #ffffff;
  background-position: right .75rem center;
  cursor: pointer;
}
.wpcf7 form.wpcf7-form .form-group input.wpcf7-submit:focus,
.wpcf7 form.wpcf7-form .form-group input.wpcf7-submit:active {
  outline: none;
  color: #ffffff;
}
.wpcf7 form.wpcf7-form .form-group input.wpcf7-submit.icon {
  padding-left: 4rem;
  padding-right: 1.25rem;
  background-position: left 1rem center;
  background-size: 1.5rem;
  background-image: url('https://www.heidehof-someren.nl/wp-content/themes/heidehof/css/../images/icon-reserveren-wit.svg');
}
.wpcf7 form.wpcf7-form .form-group input.wpcf7-submit.icon:hover {
  background-position: left 1rem center;
}
.wpcf7 form.wpcf7-form .form-group input.wpcf7-submit.white {
  background-color: #ffffff;
  color: #bd9225;
}
.wpcf7 form.wpcf7-form .form-group input.wpcf7-submit.white:hover {
  background-color: rgba(255, 255, 255, 0.85);
}
@media only screen and (max-width: 767px) {
  .wpcf7 form.wpcf7-form .form-group input.wpcf7-submit {
    padding: 10px 60px 10px 30px;
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .wpcf7 form.wpcf7-form .form-group input.wpcf7-submit {
    width: 100%;
  }
}
.wpcf7 form.wpcf7-form .form-group span.wpcf7-not-valid-tip {
  display: none;
}
.wpcf7 form.wpcf7-form .form-group p {
  text-align: left;
}
.wpcf7 form.wpcf7-form .form-group p small {
  text-align: left;
}
.wpcf7 form.wpcf7-form .form-group .input-file {
  border: 1px solid white;
  border-radius: 10px;
  padding: 1.5rem 1rem;
  outline: none;
  box-shadow: none;
  -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.23);
  -moz-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.23);
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.23);
  font-size: 12px;
  background: white;
  padding: 8px 15px 0 15px;
  display: inline-block;
  width: 100%;
}
.wpcf7 form.wpcf7-form .form-group .input-file:focus {
  outline: none;
  -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.43);
  -moz-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.43);
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.43);
}
.wpcf7 form.wpcf7-form .form-group .input-file .wpcf7-form-control-wrap {
  display: inline-block;
  width: 100%;
}
.wpcf7 form.wpcf7-form .form-group .input-file .wpcf7-form-control-wrap input {
  display: inline-block;
  float: left;
  max-width: 100%;
}
.wpcf7 form.wpcf7-form .form-group .file-2 {
  display: none;
}
@media only screen and (max-width: 767px) {
  .wpcf7 form.wpcf7-form .form-group .file-2 {
    margin-top: 15px;
  }
}
.wpcf7 form.wpcf7-form .form-group .show-file-2 {
  color: #137f57;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.wpcf7 form.wpcf7-form .form-group .show-file-2::before {
  content: '+';
  color: #137f57;
  font-size: 1.45em;
  margin-right: 5px;
}
.wpcf7 form.wpcf7-form .form-group.fileupload {
  border-top: 1px solid #d1d1d1;
  border-bottom: 1px solid #d1d1d1;
  padding: 40px 0;
  margin: 40px 0;
}
.wpcf7 form.wpcf7-form .form-group.fileupload .opmerking-center {
  margin-top: 25px;
}
.wpcf7 form.wpcf7-form .form-group.fileupload .opmerking-center p {
  text-align: center;
  margin: 0;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .wpcf7 form.wpcf7-form .form-group.fileupload {
    padding: 20px 0;
    margin: 20px 0;
  }
  .wpcf7 form.wpcf7-form .form-group.fileupload .opmerking-center {
    margin-top: 10px;
  }
}
.wpcf7 form.wpcf7-form .form-group p.privacy {
  text-align: center;
}
.wpcf7 form.wpcf7-form .form-group p.privacy a {
  color: #1c1c1c;
  text-decoration: underline;
}
.wpcf7 form.wpcf7-form .form-group p.privacy a:hover,
.wpcf7 form.wpcf7-form .form-group p.privacy a:focus {
  text-decoration: none;
}
.wpcf7 form.wpcf7-form .form-group .wpcf7-form-control-wrap {
  width: 100%;
  display: inline-block;
}
.wpcf7 form.wpcf7-form .form-group .wpcf7-form-control-wrap .wpcf7-checkbox,
.wpcf7 form.wpcf7-form .form-group .wpcf7-form-control-wrap .wpcf7-list-item {
  display: inline-block;
  width: 100%;
  text-align: left;
  padding-top: 10px;
}
.wpcf7 form.wpcf7-form .form-group .wpcf7-form-control-wrap .wpcf7-checkbox span.wpcf7-list-item,
.wpcf7 form.wpcf7-form .form-group .wpcf7-form-control-wrap .wpcf7-list-item span.wpcf7-list-item {
  margin: 0 20px 10px 0;
}
.wpcf7 form.wpcf7-form .form-group .wpcf7-form-control-wrap .wpcf7-checkbox span.wpcf7-list-item:last-child,
.wpcf7 form.wpcf7-form .form-group .wpcf7-form-control-wrap .wpcf7-list-item span.wpcf7-list-item:last-child {
  margin: 0;
}
.wpcf7 form.wpcf7-form .form-group .wpcf7-form-control-wrap .wpcf7-radio {
  display: block;
  margin-bottom: 1rem;
}
.wpcf7 form.wpcf7-form .form-group .wpcf7-form-control-wrap .wpcf7-radio .wpcf7-list-item {
  padding-left: 0;
  margin-left: 0;
}
.wpcf7 form.wpcf7-form .form-group .wpcf7-form-control-wrap .wpcf7-radio .wpcf7-list-item * {
  color: #ffffff;
}
.wpcf7 form.wpcf7-form .form-group .wpcf7-form-control-wrap .wpcf7-radio .wpcf7-list-item label {
  margin: 0;
}
.wpcf7 form.wpcf7-form .form-group .fake-btn-container {
  position: relative;
}
.wpcf7 form.wpcf7-form .form-group .fake-btn-container span.fake-form-button {
  position: absolute;
  bottom: 2.5rem;
  right: 1rem;
}
.wpcf7 form.wpcf7-form .form-group .fake-btn-container input.wpcf7-submit {
  display: none;
}
@media only screen and (max-width: 767px) {
  .wpcf7 form.wpcf7-form .form-group .fake-btn-container input.wpcf7-submit {
    width: 100%;
  }
}
.wpcf7 form.wpcf7-form .form-with-fake-btn .form-group input.wpcf7-submit {
  display: none !important;
}
.wpcf7 form.wpcf7-form .wpcf7-response-output {
  border: none;
  background: #c50e00;
  padding: 15px 20px;
  margin: 0 0 2rem 0;
  color: white;
}
.wpcf7 form.wpcf7-form .wpcf7-response-output.wpcf7-mail-sent-ok {
  background: #6ea249;
}
.nav-toggler {
  visibility: hidden;
  opacity: 0;
  padding: 0;
  margin-right: 2rem;
}
.dropdown,
.dropleft,
.dropright,
.dropup {
  position: static;
}
#overlay {
  background: #212121;
  opacity: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 100px;
  width: 100%;
  height: 100vh;
  z-index: -9999;
  visibility: hidden;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  transition: 0.3s ease;
}
#overlay.show {
  opacity: .8;
  visibility: visible;
  z-index: 7;
}
