/* =========================== fonts =========================== */

@font-face {
  font-family: 'domaine-light';
  src:  url('fonts/domaine-text-web-light.woff2') format('woff2'),
        url('fonts/domaine-text-web-light.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'circularA-light';
  src:  url('fonts/EuclidCircularA-Light-WebS.woff2') format('woff2'),
        url('fonts/EuclidCircularA-Light-WebS.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'circularA-regular';
  src:  url('fonts/EuclidCircularA-Regular-WebS.woff2') format('woff2'),
        url('fonts/EuclidCircularA-Regular-WebS.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'circularA-medium';
  src:  url('fonts/EuclidCircularA-Medium-WebS.woff2') format('woff2'),
        url('fonts/EuclidCircularA-Medium-WebS.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}


/* =========================== font families =========================== */

.domaine {
  font-family: 'domaine-light', serif;
  font-weight: normal;
  font-style: normal;
}

.circular-light {
  font-family: 'circularA-light', sans-serif;
  font-weight: normal;
  font-style: normal;
}

.circular-regular {
  font-family: 'circularA-regular', sans-serif;
  font-weight: normal;
  font-style: normal;
}

.circular-medium {
  font-family: 'circularA-medium', sans-serif;
  font-weight: normal;
  font-style: normal;
}


/* =========================== default styles =========================== */

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  outline-style:none;
  box-shadow:none;
  border-color:transparent;
  margin: 0;
  padding: 0;
}

html,body{
  width: 100%;
  height: 100%;
}

body {
  font-family: 'circularA-regular', sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.5;
  color: #333333;
  overflow-x: hidden;
}

img {
  width: auto;
  height: auto;
}

a {
  text-decoration: none;
  color: #333333;
}

p {}

h1 {
  font-family: 'domaine-light', serif;
  font-weight: normal;
  font-style: normal;
  font-size: 3rem;
  line-height: 1.15;
  margin: 0 0 25px 0;
}

h2 {
  font-family: 'domaine-light', serif;
  font-weight: normal;
  font-style: normal;
  font-size: 3rem;
  line-height: 1.15;
  margin: 0 0 25px 0;
}

h3 {
  font-family: 'circularA-regular', sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 1.5rem;
  color: #88ABA1;
  line-height: 1;
  margin-bottom: 16px;
}


.big-text {
  font-family: 'circularA-light', sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 1.4rem;
  line-height: 1.6;
}

.container {
  max-width: 1260px;
  margin: 0 auto;
}

/* =========================== header =========================== */

header {
  box-shadow: 0 0 80px 0 rgba(0,0,0,0.05);
} 

header .logo {
  width: 128px;
}

.desktop-header,
.device-header {
  z-index: 9999;
}

.desktop-header a {
  font-size: 1.125rem;
  margin: 0 4%;
  text-align: center;
}

.desktop-header a:nth-child(3) {
  margin: 0 2%;
}

.device-header img {
  margin: 0 auto;
}

.device-menu a {
  font-size: 	1.5rem;
  margin: 5vh auto;
}

/* menu icon */

.menu-icon {
  position: absolute;
  right: 5%;
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }
  .menu-icon:hover {
    opacity: 1; }
  .menu-icon.is-active:hover {
    opacity: 1; }
  .menu-icon.is-active .menu-icon-inner,
  .menu-icon.is-active .menu-icon-inner::before,
  .menu-icon.is-active .menu-icon-inner::after {
    background-color: #333333; }

.menu-icon-box {
  width: 24px;
  height: 19px;
  display: inline-block;
  position: relative;
}

.menu-icon-inner {
  display: block;
  top: 50%;
  margin-top: -2px; }
  .menu-icon-inner, .menu-icon-inner::before, .menu-icon-inner::after {
    width: 24px;
    height: 1px;
    background-color: #333333;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .menu-icon-inner::before, .menu-icon-inner::after {
    content: "";
    display: block; }
  .menu-icon-inner::before {
    top: -10px; }
  .menu-icon-inner::after {
    bottom: -10px; }

/* hamburger slider */

.menu-icon--slider .menu-icon-inner {
  top: 2px; }
  .menu-icon--slider .menu-icon-inner::before {
    top: 10px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s; }
  .menu-icon--slider .menu-icon-inner::after {
    top: 20px; }

.menu-icon--slider.is-active .menu-icon-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg); }
  .menu-icon--slider.is-active .menu-icon-inner::before {
    transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
    opacity: 0; }
  .menu-icon--slider.is-active .menu-icon-inner::after {
    transform: translate3d(0, -20px, 0) rotate(-90deg); }

.device-menu {
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.device-menu-visible {
  opacity: 1;
  pointer-events: all;
}


/* =========================== hero image =========================== */

.hero-image {
  min-height: 100vh;
  background-image: url('../images/hero-image.jpg');
  background-repeat: no-repeat;
  background-position: bottom center;
}


/* =========================== troeven =========================== */

.troeven-wrapper {
  padding-top: 60px;
  margin-bottom: 120px;
  background-image: url('../images/drawing-1.jpg');
  background-size: 600px;
  background-repeat: no-repeat;
  background-position: bottom -50px right 0px;
  background-color: #DAE5DD;
}

.troeven-wrapper h1,
.troeven-wrapper .big-text,
.kwaliteiten-wrapper h1,
.kwaliteiten-wrapper .big-text {
  position: relative;
  z-index: 2;
  max-width: 740px;
  padding-left: 12px;
}

.troeven-boxes-wrapper {
  width: 100%;
}

.boxes-overlap {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 50%;
  bottom: 0;
  left: 0;
  background-color: white;
}

.troeven-boxes {
  position: relative;
  align-items: stretch;
  margin-top: 60px;
}

.troeven-boxes .container {
  align-items: stretch;
}

.troeven-box {
  position: relative;
  z-index: 2;
  text-align: center;
  background-color: white;
  border-radius: 8px;
  padding: 32px 32px 48px 32px; 
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.20);
  margin: 0 12px;
}


/* =========================== aanbod - slider =========================== */

.big-content-wrapper {
  position: relative;
  overflow: hidden;
}

.drawing-2 {
  position: absolute;
  z-index: 1;
  top: 140px;
  left: 0;
  transform: translateX(-50%);
  width: 830px;
  overflow: hidden;
}

.drawing-3 {
  position: absolute;
  z-index: 1;
  top: 100px;
  right: 0;
  transform: translateX(15%);
  width: 800px;
  overflow: hidden;
}

.drawing-4 {
  position: absolute;
  z-index: 1;
  bottom: -220px;
  right: -70px;
  width: 800px;
  overflow: hidden;
}

.aanbod-wrapper {
  margin-bottom: 80px;
  overflow: hidden;
}

.aanbod-text {
  position: relative;
  z-index: 99;
  padding-right: 50px;
  padding-left: 12px;
}

.aanbod-slider {
  position: relative;
  z-index: 99;
}

.aanbod-slider-item {
  position: relative;
  width: 50%;
  margin: 0 12px;
  left: 0;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.20);
}

.slider-item-text {
  position: relative;
  padding: 32px 32px 56px 32px;
}

.veggie {
  position: absolute;
  bottom: 24px;
  right: 18px;
}

.glider {
  padding-bottom: 10px;
  padding-top: 10px;
}


/* =========================== kwaliteiten =========================== */

.kwaliteiten-wrapper {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.groenten h2,
.groenten h3 {
  color: #D2C364;
}

.suikers h2,
.suikers h3 {
  color: #78466E;
}

.additieven h2,
.additieven h3 {
  color: #C35A28;
}

.traditie h2,
.traditie h3 {
  color: #467D55;
}

.groenten h2,
.suikers h2,
.additieven h2,
.traditie h2 {
  margin-bottom: 10px;
}

.suikers { 
  background-color: #E4DAE2; 
}

.additieven { 
  background-color: #F3DED4;
}

.desktop-accordion .groenten-arrow,
.desktop-accordion .suikers-arrow,
.desktop-accordion .additieven-arrow,
.desktop-accordion .traditie-arrow {
  position: absolute;
  bottom: 30px;
  right: 30px;
  transform: rotate(180deg);
  transition: all .3s ease;
}

.desktop-accordion .box-active .groenten-arrow,
.desktop-accordion .box-active .suikers-arrow,
.desktop-accordion .box-active .additieven-arrow,
.desktop-accordion .box-active .traditie-arrow {
  position: absolute;
  bottom: 30px;
  right: 30px;
  transform: rotate(0);
}

.device-accordion .groenten-arrow,
.device-accordion .suikers-arrow,
.device-accordion .additieven-arrow,
.device-accordion .traditie-arrow {
  position: absolute;
  top: 30px;
  right: 30px;
  transform: rotate(-90deg);
  transition: all .3s ease;
}

.device-accordion .box-active .groenten-arrow,
.device-accordion .box-active .suikers-arrow,
.device-accordion .box-active .additieven-arrow,
.device-accordion .box-active .traditie-arrow {
  position: absolute;
  top: 30px;
  right: 30px;
  transform: rotate(90deg);
}

.text {
  opacity: 0;
  transition: all 0.3s ease;
  margin-bottom: 30px;
  line-height: 1.8;
}

.showTekst{
  opacity: 1;
  transition: all 1s .3s  ease;
}


/* =========================== momenten =========================== */

.moment-wrapper {
  position: relative;
  padding-top: 150px;
  padding-bottom: 88px;
  overflow: hidden;
}

.moment-slide-wrapper {
  position: relative;
  z-index: 2;
  height: 480px;
}

.moment-slide-wrapper.spinazie-bg {
  background: #222222 url('../images/moment-spinazie.jpg');
  background-size: cover;
}

.moment-slide-wrapper.rode-biet-bg {
  background: #222222 url('../images/moment-rode-biet.jpg');
  background-size: cover;
}

.moment-slide-wrapper.paprika-bg {
  background: #222222 url('../images/moment-paprika.jpg');
  background-size: cover;
}

.moment-slide-wrapper.pompoen-bg {
  background: #222222 url('../images/moment-pompoen.jpg');
  background-size: cover;
}

.moment-slider-item {
  margin: 0 12px;
  border-radius: 8px;
  overflow: hidden;
}

.moment-slide-text {
  position: absolute;
  top: 0;
  left: 0;
  padding: 30px;
  color: white;
  text-shadow: 0 0 24px #000000;
}

.moment-slide-text h3 {
  color: white;
}

.moment-slide-text p {
  font-size: 18px;
  max-width: 500px;
}


/* =========================== footer =========================== */

footer {
  position: relative;
  background-color: #F6F3E0;
  overflow: hidden;
  text-align: left;
  padding: 72px 24px;
}

footer p {
  margin-bottom: 12px;
}

.drawing-5 {
  position: absolute;
  z-index: 1;
  top: -505px;
  right: -70px;
  width: 800px;
  overflow: hidden;
}

.footer-text {
  position: relative;
  z-index: 2;
}

.logo-DBV {
  margin-bottom: 46px;
}

.deel-van-tradelio,
.legal {
  margin-top: 46px;
}

.legal-links a {
  margin-right: 46px;
  white-space: nowrap;
}

.legal-links a:last-child {
  margin-right: 0;
}


/* =========================== responsive styles =========================== */

/* small */
@media screen and (max-width:30em) {

  .drawing-2 {
    position: absolute;
    z-index: 1;
    top: 70px;
    left: 0;
    transform: translateX(-50%);
    width: 500px;
    overflow: hidden;
  }
  
  .drawing-3 {
    position: absolute;
    z-index: 1;
    top: 50px;
    right: 0;
    transform: translateX(15%);
    width: 500px;
    overflow: hidden;
  }
  
  .drawing-4 {
    display: none;
  }

  .drawing-5 {
    display: none;
  }

  h1 {
    font-family: 'domaine-light', serif;
    font-weight: normal;
    font-style: normal;
    font-size: 2.5rem;
    line-height: 1.15;
    margin: 0 0 25px 0;
  }
  
  h2 {
    font-family: 'domaine-light', serif;
    font-weight: normal;
    font-style: normal;
    font-size: 2.5rem;
    line-height: 1.15;
    margin: 0 0 25px 0;
  }
  
  h3 {
    font-family: 'circularA-regular', sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 1.5rem;
    color: #88ABA1;
    line-height: 1;
    margin-bottom: 16px;
  }
  
  
  .big-text {
    font-family: 'circularA-light', sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 1.25rem;
    line-height: 1.6;
  }

  header .logo {
    width: 90px;
  }

  .hero-image {
    min-height: 80vh;
  }

  /* menu */
  .device-menu a {
    font-size: 	1.15rem;
    margin: 5vh auto;
  }

  /* troeven */

  .troeven-box {
    margin: 0 0 18px 0;
    padding: 24px 24px 36px 24px; 
  }
  
  .boxes-overlap {
    height: 120px;
  }

  .troeven-wrapper {
    background-image: url('../images/drawing-1.jpg');
    background-size: 400px;
    background-position: top 60px right 0px;
    background-color: #DAE5DD;
    margin-bottom: 70px;
  }

  .legal-links a {
    display: block;
  }

  .glider-next {
    right: -5px;
    left: auto;
  }
  .glider-prev {
    left: -5px;
    right: auto;
  }

  .glider-prev,.glider-next {
    top: 41%;
  }

  .troeven-wrapper {
    padding-top: 56px;
    background-image: none;
    background-color: #DAE5DD;
    margin-bottom: 25px;
  }

  .aanbod-wrapper {
    margin-bottom: 40px;
  }

  .moment-wrapper {
    padding-top: 60px;
    padding-bottom: 88px;
  }

}

/* medium */
@media screen and (min-width:30em) and (max-width:60em) {

  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2.5rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  
  .big-text {
    font-family: 'circularA-light', sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 1.25rem;
    line-height: 1.6;
  }

  /* hero image */
  .hero-image {
    min-height: 60vh;
    max-height: 60vh;
  }

  /* troeven */
  .troeven-box {
    padding: 24px 24px 36px 24px; 
  }

  .troeven-boxes {
    margin-top: 40px;
  }

  .boxes-overlap {
    height: 20%;
  }

  .troeven-wrapper {
    padding-top: 40px;
    background-image: none;
    background-color: #DAE5DD;
    margin-bottom: 56px;
  }

  .drawing-1,
  .drawing-2,
  .drawing-3,
  .drawing-4,
  .drawing-5 {
    display: none;
  }

  .aanbod-wrapper {
    margin-bottom: 40px;
  }

  .moment-wrapper {
    padding-top: 60px;
    padding-bottom: 88px;
  }

}

/* large */
@media screen and (min-width:60em) {

  /* hero image */
  .hero-image {
    min-height: 80vh;
    max-height: 80vh;
  }

  /* troeven */
  .troeven-wrapper {
    padding-top: 80px;
  }

}

/* SMALL ACCORDION */
@media screen and (max-width:1024px) {

  .desktop-accordion {
    display: none;
  }

  .device-accordion {
    width: 100%;
    position: relative;
    z-index: 2;
    padding: 0 12px;
    display: flex;
    flex-direction: column;
  }

  .device-accordion .box{
    cursor: pointer;
    position: relative;
    overflow: hidden;
    height: auto;
    max-height: 150px;
    transition: all .3s ease;
    flex: 1;
    padding: 30px 40px 30px 30px;
  }

  .device-accordion .box-active{
    flex: 3;
    transition: all .3s ease;
    max-height: 100vh;
  }

  .box br {
    display: none;
  }

  .groenten { 
    border-top-left-radius: 8px; 
    border-top-right-radius: 8px;
    background-color: #F6F3E0; 
  }

  .traditie { 
    border-bottom-right-radius: 8px; 
    border-bottom-left-radius: 8px;
    background-color: #DAE5DD; 
  }

}

/* BIG ACCORDION */
@media screen and (min-width:1024px) {

  .device-accordion {
    display: none;
  }

  .desktop-accordion {
    width: 100%;
    position: relative;
    z-index: 2;
    padding: 0 12px;
    display: flex;
  }

  .desktop-accordion .box{
    cursor: pointer;
    position: relative;
    overflow: hidden;
    height: 500px;
    transition: all .3s ease;
    flex: 1;
    padding: 30px 40px 60px 30px;
  }


  .desktop-accordion .box-active{
    flex: 3;
    transition: all .3s ease;
  }

  .groenten { 
    border-top-left-radius: 8px; 
    border-bottom-left-radius: 8px;
    background-color: #F6F3E0; 
  }

  .traditie { 
    border-top-right-radius: 8px; 
    border-bottom-right-radius: 8px;
    background-color: #DAE5DD; 
  }

}








