@import "/wp-content/themes/desallandsemoestuin/static/styles/imports/bootstrap-grid.min.css";
@import "/wp-content/themes/desallandsemoestuin/static/styles/imports/reset.css";
@import "/wp-content/themes/desallandsemoestuin/static/styles/imports/fonts.css";
@import "/wp-content/themes/desallandsemoestuin/static/styles/imports/swiper-bundle.min.css";
@import "/wp-content/themes/desallandsemoestuin/static/styles/imports/jquery.fancybox.min.css";
/* Color Theme Swatches in Hex */
html {
  font-size: 62.5%;
}
body {
  position: relative;
  font-size: 2rem;
  line-height: 1.6;
  color: black;
  background-color: #dfead8;
  font-family: 'Source Sans Pro', 'Arial', sans-serif;
  font-weight: 300;
}
body p strong {
  color: white;
}
body a {
  color: white;
}
body a:hover {
  text-decoration: none;
}
body img {
  max-width: 100%;
  height: auto;
}
body:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.65);
  content: "";
  opacity: 0;
  visibility: hidden;
  z-index: 98;
  transition: opacity .2s ease, visibility .2s ease;
}
body.body--has-overlay:after {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 991px) {
  body {
    font-size: 1.6rem;
  }
}
.main {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  width: 100%;
  padding-top: 12rem;
}
@media (max-width: 991px) {
  .main {
    padding-top: 5.6rem;
  }
}
.container {
  width: 100%;
  max-width: 144rem;
  padding-left: 2.4rem;
  padding-right: 2.4rem;
  margin: 0 auto;
}
.container--large {
  max-width: 108rem;
}
.container--medium {
  max-width: 72rem;
}
.container--grid {
  max-width: 128rem;
  max-width: 102.4rem;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 99;
  background-color: #dfead8;
  box-shadow: 0px 0px 10px 0px rgba(67, 99, 76, 0);
  transition: box-shadow 0.2s ease;
}
.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  justify-content: space-between;
}
.header__logo-container {
  display: flex;
  align-items: center;
  padding-right: 2rem;
  max-height: 12rem;
  min-height: 12rem;
  height: 100%;
  transition: all .2s ease;
}
.header__logo {
  max-width: 13rem;
  width: 100%;
  transition: max-width 0.2s ease;
}
.header.headroom--not-top {
  box-shadow: 0px 0px 10px 0px rgba(67, 99, 76, 0.2);
}
.header.headroom--not-top .header__logo-container {
  max-height: 10rem;
  min-height: 10rem;
}
.header.headroom--not-top .header__logo {
  max-width: 11rem;
}
.header__mobile-toggle {
  display: none;
}
.header__mobile-name {
  display: none;
}
@media (max-width: 991px) {
  .header__inner {
    justify-content: space-between;
    width: 100%;
    padding: .3rem 1.6rem;
    box-shadow: 0px 0px 10px 0px rgba(67, 99, 76, 0.2) !important;
  }
  .header__inner:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #dfead8;
    content: "";
    z-index: 2;
  }
  .header__logo-container {
    position: relative;
    z-index: 3;
    min-height: 5rem !important;
    max-height: 5rem !important;
    padding-right: 0;
  }
  .header__logo {
    max-width: 7rem !important;
  }
  .header .menu-hoofdmenu-container {
    position: absolute;
    z-index: 1;
    top: 5.6rem;
    left: 0;
    width: 100%;
    background-color: #dfead8;
    padding-bottom: 2rem;
    transform: translateY(-100%);
    transition: transform .5s ease;
  }
  .header .menu-hoofdmenu-container.open {
    transform: translateY(0);
  }
  .header__mobile-toggle {
    position: relative;
    display: flex;
    width: 5.6rem;
    height: 5.6rem;
    justify-content: center;
    align-items: center;
    padding: 0;
    z-index: 3;
    background: transparent !important;
    border-radius: 0;
  }
  .header__mobile-toggle-inner {
    position: relative;
    display: flex;
    width: 3rem;
    height: 2.2rem;
  }
  .header__mobile-toggle-inner span,
  .header__mobile-toggle-inner:after,
  .header__mobile-toggle-inner:before {
    position: absolute;
    width: 100%;
    height: .3rem;
    border-radius: .1rem;
    background-color: #2d6027;
    right: 0;
    content: '';
    transition: all .2s ease;
  }
  .header__mobile-toggle-inner:before {
    top: 0;
  }
  .header__mobile-toggle-inner span {
    top: 50%;
    transform: translateY(-50%);
  }
  .header__mobile-toggle-inner:after {
    bottom: 0;
    width: 60%;
  }
  .header__mobile-toggle-inner--open:before {
    transform: rotate(45deg) translateY(0.6rem) translateX(0.8rem);
  }
  .header__mobile-toggle-inner--open:after {
    width: 100%;
    transform: rotate(-45deg) translateY(-0.6rem) translateX(0.8rem);
  }
  .header__mobile-toggle-inner--open span {
    opacity: 0;
    transform: translateX(0.4rem);
  }
  .header__mobile-name {
    position: relative;
    z-index: 3;
    display: flex;
    font-family: 'Lora-600';
    color: #333;
    margin-right: auto;
    margin-left: 1rem;
    font-size: 1.6rem;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    font-style: italic;
  }
  .header.headroom--not-top .header__mobile-name {
    opacity: 1;
    visibility: visible;
  }
}
.navigation {
  display: flex;
  align-items: center;
}
.navigation__item,
.navigation li a {
  font-family: 'Lora-600';
  display: flex;
  align-items: center;
  color: #333;
  padding: 0 3rem;
  height: 6rem;
  text-decoration: none;
  transition: color .4s ease;
  font-style: italic;
}
.navigation__item:hover,
.navigation li a:hover {
  color: #5b9754;
}
@media (max-width: 991px) {
  .navigation {
    flex-flow: column nowrap;
  }
}
.footer {
  display: flex;
  padding: 10rem 0;
  background-color: #43634c;
}
.footer__left {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer__logo {
  max-width: 20rem;
  width: 100%;
  height: auto;
}
.footer__right.editor h1,
.footer__right.editor h2,
.footer__right.editor h3,
.footer__right.editor h4,
.footer__right.editor h5,
.footer__right.editor h6 {
  font-size: 2.4rem;
  margin-bottom: 1.6rem;
}
.footer__right.editor p,
.footer__right.editor a,
.footer__right.editor ul li,
.footer__right.editor ol li {
  font-size: 1.6rem;
}
.footer__right.editor p,
.footer__right.editor ul,
.footer__right.editor ol {
  margin-bottom: 1.6rem;
}
@media (max-width: 768px) {
  .footer {
    padding: 5rem 0 3rem;
  }
  .footer__right {
    margin-top: 5rem;
  }
}
.button,
button,
input[type="submit"] {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  line-height: 1.3rem;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  font-family: 'Lora-700', "Arial", sans-serif;
  font-style: italic;
  position: relative;
  height: 5.4rem;
  padding: 0 3rem;
  border-radius: 2.7rem;
  margin: 0;
  font-size: 2rem;
  background-color: #578014;
  color: white;
  box-shadow: 0 0 0 0;
  border: 0;
  transition: all .2s ease;
}
.button:hover,
button:hover,
input[type="submit"]:hover {
  background-color: #2a3e0a;
}
.button--disabled,
button--disabled,
input[type="submit"]--disabled {
  pointer-events: none;
}
button,
input[type="submit"] {
  cursor: pointer;
}
.swiper-pagination-bullets {
  display: inline-flex;
  height: 3rem;
  align-items: flex-end;
}
@media only screen and (max-width: 768px) {
  .swiper-pagination-bullets {
    display: flex;
    height: auto;
    left: 2.4rem;
  }
}
.swiper-pagination-bullet {
  position: relative;
  width: 6rem;
  height: 100%;
  max-height: 3rem;
  height: 3rem;
  margin-right: 2rem;
  border-radius: 0;
  opacity: 1 !important;
  background-color: transparent !important;
}
.swiper-pagination-bullet:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: .2rem;
  transition: background 0.5s ease, max-height 0.3s ease;
  background: rgba(255, 255, 255, 0.3);
  content: "";
}
.swiper-pagination-bullet:hover:after {
  background: white;
  max-height: .6rem;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active:after {
  background: rgba(255, 255, 255, 0.8);
  max-height: .6rem;
  transition: background 0.5s ease, max-height 0.3s 0.5s ease;
}
@media only screen and (max-width: 768px) {
  .swiper-pagination-bullet {
    width: 3rem;
    height: 3rem;
    margin-right: 0;
    margin-bottom: 1rem;
  }
  .swiper-pagination-bullet:after {
    max-height: 3rem;
    width: .4rem;
  }
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
    max-height: 3rem;
  }
  .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
    max-height: 3rem;
  }
}
.editor h2,
.editor h3,
.editor h4,
.editor h5,
.editor h6 {
  font-family: 'Lora-700';
  line-height: 1;
  font-weight: 400;
  margin-bottom: 2rem;
  line-height: 1.3;
  display: flex;
  flex-flow: column nowrap;
  color: #2d6027;
  font-style: italic;
}
.editor h2 {
  font-size: 5rem;
}
.editor h3 {
  font-size: 4rem;
}
.editor h4 {
  font-size: 3rem;
}
.editor h5 {
  font-size: 2.2rem;
}
.editor h6 {
  font-size: 1.8rem;
}
.editor p,
.editor ul,
.editor ol {
  margin-bottom: 3rem;
}
.editor ul li,
.editor ol li {
  padding-left: 2rem;
}
.editor ul li {
  position: relative;
}
.editor ul li:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: .6rem;
  height: .6rem;
  background: white;
  border-radius: 50%;
  content: "";
  background-color: #578014;
}
.editor ol {
  counter-reset: li-counter;
}
.editor ol li {
  position: relative;
}
.editor ol li:before {
  position: absolute;
  left: 0;
  top: 50%;
  font-weight: 700;
  color: #578014;
  transform: translateY(-50%);
  content: counter(li-counter);
  counter-increment: li-counter;
}
.editor img {
  max-width: 100%;
  width: auto;
  height: auto;
  border-radius: 3rem;
}
.editor p {
  font-family: 'Source Sans Pro', 'Arial', sans-serif;
}
.editor--white h1,
.editor--white h2,
.editor--white h3,
.editor--white h4,
.editor--white h5,
.editor--white h6,
.editor--white p,
.editor--white a,
.editor--white ul li,
.editor--white ol li {
  color: white;
}
@media (max-width: 991px) {
  .editor p,
  .editor ul,
  .editor ol {
    margin-bottom: 1.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .editor h2,
  .editor h3,
  .editor h4 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
  .editor h5,
  .editor h6 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .editor p,
  .editor ul,
  .editor ol {
    margin-bottom: 1.6rem;
  }
}
.grid {
  width: calc(104.8%);
  margin-left: -2.4rem;
  display: flex;
  flex-flow: row wrap;
}
@media only screen and (max-width: 640px) {
  .grid {
    width: calc(102.4%);
    margin-left: -1.2rem;
  }
}
input[type="text"],
input[type="textarea"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="url"],
input[type="number"],
input[type="tel"],
select,
textarea {
  font-family: 'Source Sans Pro', 'Arial', sans-serif;
  width: 100%;
  font-size: 1.8rem;
  line-height: 2rem;
  color: #2d6027;
  height: 5rem;
  border: 0;
  padding: 0 1.8rem;
  margin-bottom: 2.4rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 1rem;
}
input[type="text"]::-webkit-input-placeholder,
input[type="textarea"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="url"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: rgba(45, 96, 39, 0.6);
}
input[type="text"]::-ms-input-placeholder,
input[type="textarea"]::-ms-input-placeholder,
input[type="email"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="url"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
select::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: rgba(45, 96, 39, 0.6);
}
input[type="text"]::placeholder,
input[type="textarea"]::placeholder,
input[type="email"]::placeholder,
input[type="password"]::placeholder,
input[type="search"]::placeholder,
input[type="url"]::placeholder,
input[type="number"]::placeholder,
input[type="tel"]::placeholder,
select::placeholder,
textarea::placeholder {
  color: rgba(45, 96, 39, 0.6);
}
textarea {
  min-height: 200px;
  resize: none;
  padding: 1.8rem;
}
input[type="file"] {
  margin-bottom: 2.4rem;
  font-size: 1.4rem;
}
label {
  font-size: 1.6rem;
  font-weight: 500;
  color: #578014;
}
.wpcf7 .wpcf7-form-control-wrap {
  display: flex;
  flex-flow: column nowrap;
}
.wpcf7 .wpcf7-not-valid-tip {
  font-size: 1.6rem;
  transform: translateY(-1.6rem);
}
.wpcf7 form .wpcf7-response-output {
  margin: 2rem 0 0 0;
  padding: 1rem;
  font-size: 1.6rem;
  line-height: 1.3;
}
.grecaptcha-badge {
  display: none;
}
.section {
  position: relative;
  padding: 12rem 0;
  overflow: hidden;
}
.section__scroll {
  position: absolute;
  top: -10rem;
  left: 0;
  width: 0;
  height: 0;
}
.section__image {
  padding-left: 10rem;
}
.section__image img {
  max-height: 60rem;
}
.section__image .editor {
  display: flex;
  justify-content: center;
}
.section--first {
  padding-top: 6rem;
}
.section--bg-se {
  background-color: #f7f6ec;
}
.section--switched .section__text {
  order: 2;
}
.section--switched .section__image {
  order: 1;
  padding-left: 0;
  padding-right: 10rem;
}
@media (max-width: 1024px) {
  .section {
    padding: 6rem 0;
  }
}
@media (max-width: 991px) {
  .section__image {
    padding-left: 4rem;
  }
  .section--switched .section__image {
    padding-right: 4rem;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }
  .section__image {
    padding-left: 0;
  }
  .section--switched .section__image {
    padding-right: 0;
    margin-bottom: 1.6rem;
  }
}
.flexible-content .section:nth-of-type(3n + 1):before {
  position: absolute;
  top: 0;
  right: 0;
  height: 119rem;
  width: 35rem;
  transform: rotate(10deg) translateY(-15rem);
  opacity: .08;
  content: "";
  background: url("/wp-content/themes/desallandsemoestuin/static/svg/wortel.svg") 0% 0% no-repeat;
}
.flexible-content .section:nth-of-type(3n + 2):before {
  position: absolute;
  top: 50%;
  left: 0;
  height: 100rem;
  width: 29rem;
  transform: rotate(-10deg) translateY(-50%);
  opacity: .08;
  content: "";
  background: url("/wp-content/themes/desallandsemoestuin/static/svg/ui.svg") 0% 0% no-repeat;
}
.flexible-content .section:nth-of-type(3n + 3):before {
  position: absolute;
  top: 50%;
  right: -5rem;
  height: 96rem;
  width: 45rem;
  transform: rotate(10deg) translateY(-50%);
  opacity: .08;
  content: "";
  background: url("/wp-content/themes/desallandsemoestuin/static/svg/suikerbiet.svg") 0% 0% no-repeat;
}
@media (max-width: 768px) {
  .flexible-content .section:nth-of-type(3n + 1):before {
    width: 15rem;
    top: auto;
    bottom: -73rem;
    height: 94rem;
  }
  .flexible-content .section:nth-of-type(3n + 2):before {
    width: 15rem;
    top: auto;
    left: -5rem;
    bottom: -5rem;
    height: 52rem;
    transform: rotate(-10deg) translateY(0);
  }
  .flexible-content .section:nth-of-type(3n + 3):before {
    width: 20rem;
    right: -5rem;
    height: 44rem;
    transform: rotate(10deg) translateY(0);
    top: auto;
    bottom: -3rem;
  }
}
.main-slider {
  position: relative;
}
.main-slider:before {
  position: absolute;
  top: 3rem;
  left: 0rem;
  width: 50rem;
  height: 100rem;
  background: url("/wp-content/themes/desallandsemoestuin/static/svg/suikerbiet.svg") 0% 0% no-repeat;
  content: "";
  opacity: .08;
  z-index: 1;
  transform: rotate(-25deg);
}
.main-slider > .container {
  max-width: 124rem;
}
.main-slider__inner {
  position: relative;
  display: flex;
}
.main-slider__left {
  position: relative;
  width: 60%;
}
.main-slider__left:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(247, 246, 236, 0.2);
  z-index: 2;
}
.main-slider__slide-inner {
  position: relative;
  width: 100%;
  height: 65rem;
  overflow: hidden;
  border-radius: 6rem;
}
.main-slider__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main-slider__right {
  position: absolute;
  top: 50%;
  left: 55rem;
  display: flex;
  width: 60rem;
  padding: 5rem 0;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  z-index: 3;
  background-color: #dfead8;
  transform: translateY(-50%);
  border-radius: 3rem;
}
.main-slider__logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  margin-bottom: 5rem;
}
.main-slider__logo {
  max-width: calc(100% - 30rem);
}
.main-slider__payoff {
  font-family: 'Raleway';
  text-transform: uppercase;
  font-size: 2.2rem;
  letter-spacing: .3rem;
  line-height: 1.3;
  color: #578014;
  text-align: center;
}
@media (max-width: 1240px) {
  .main-slider__right {
    left: auto;
    right: 0;
  }
}
@media (max-width: 1024px) {
  .main-slider {
    padding-top: 3rem;
  }
  .main-slider__right {
    width: 50rem;
    padding: 3rem 0;
  }
  .main-slider__slide-inner {
    height: 45rem;
    border-radius: 3rem;
  }
}
@media (max-width: 768px) {
  .main-slider:before {
    width: 22rem;
    top: 27rem;
    left: auto;
    right: -17rem;
  }
  .main-slider__inner {
    padding-top: 11rem;
  }
  .main-slider__logo-container {
    margin-bottom: 2rem;
  }
  .main-slider__logo {
    min-width: 17rem;
  }
  .main-slider__slide-inner {
    height: 30rem;
  }
  .main-slider__left {
    width: 75%;
  }
  .main-slider__right {
    top: 0;
    width: 24rem;
    padding: 1.6rem 0;
    border-radius: 1.6rem;
    transform: translateY(0);
  }
  .main-slider__payoff {
    font-size: 1.6rem;
  }
}
