@import url("https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,700;9..40,800;9..40,900&display=swap");
html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans";
}

.container {
  max-width: 1400px;
}

h1 {
  font-size: 60px;
  font-weight: bold;
}

h2 {
  font-size: 46px;
  font-weight: bold;
}

h3 {
  font-size: 36px;
  font-weight: bold;
}

h4 {
  font-size: 24px;
  font-weight: bold;
}

a {
  text-decoration: none;
  transition: 0.2s ease-in;
}
a:hover {
  text-decoration: none;
}

img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*/ THEME BUTTON /*/
.theme-button {
  padding: 12px 20px;
  border-radius: 999px;
}
.theme-button__superior {
  background-color: #CACECE;
  color: #fff;
}
.theme-button__superior:hover {
  background-color: rgba(202, 206, 206, 0.8);
  color: #fff;
}
.theme-button__redwood {
  background-color: #602D28;
  color: #fff;
}
.theme-button__redwood:hover {
  background-color: rgba(96, 45, 40, 0.8);
  color: #fff;
}
.theme-button__jackfrost {
  background-color: #055CA1;
  color: #fff;
}
.theme-button__jackfrost:hover {
  background-color: rgba(5, 92, 161, 0.8);
  color: #fff;
}

/*/ THEME STYLING /*/
.theme-wrapper {
  padding: 75px 0;
}

.theme-header__top {
  background-color: #007853;
  height: 20px;
  padding: 0;
}
.theme-header__bottom {
  background-color: #000;
  padding: 24px 0;
}
.theme-header__bottom .header-logo-link {
  display: inline-block;
}
.theme-header__bottom-language {
  height: 100%;
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
}
.theme-header__bottom-language-current {
  color: #fff;
  border-bottom: 2px solid #007853;
  margin-right: 8px;
  margin-bottom: -2px;
}
.theme-header__bottom-language li {
  list-style-type: none;
  margin-right: 8px;
}
.theme-header__bottom-language li a {
  color: #B3B5B5;
}
.theme-header__bottom-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.theme-header__bottom-wrapper-burger-trigger {
  position: relative;
  height: 22px;
  width: 30px;
  z-index: 15;
  margin-right: 12px;
  display: none;
  cursor: pointer;
}
.theme-header__bottom-wrapper-burger-trigger span {
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #fff;
  transition-duration: 0.3s;
}
.theme-header__bottom-wrapper-burger-trigger span:first-child {
  top: 0px;
}
.theme-header__bottom-wrapper-burger-trigger span.center {
  top: calc(50% - 1px);
}
.theme-header__bottom-wrapper-burger-trigger span:last-child {
  bottom: 0px;
}
.theme-header__bottom-wrapper-burger-trigger.burger-active span:nth-of-type(1) {
  rotate: -135deg;
  top: 9.5px;
}
.theme-header__bottom-wrapper-burger-trigger.burger-active span.center {
  opacity: 0;
}
.theme-header__bottom-wrapper-burger-trigger.burger-active span:nth-of-type(4) {
  rotate: 135deg;
  bottom: 9.5px;
}

.theme-hero {
  padding: 0;
  margin-bottom: 100px;
  min-height: 650px;
  position: relative;
}
.theme-hero-background {
  position: absolute;
  background-color: #EEF4F1;
  overflow: hidden;
  top: 0;
  left: 0;
  height: 100%;
  min-height: 650px;
  width: calc((100% - 1400px) / 2 + 1166px - 15px);
  border-bottom-right-radius: 90px;
  background-position: 0% 25%;
  background-size: cover;
  background-repeat: no-repeat;
}
.theme-hero-background.has-hand:after {
  content: "";
  background-image: url("../img/SIER-plantgoed-in-de-hand-1-hero-home.png");
  background-size: cover;
  position: absolute;
  top: 0px;
  right: -55px;
  width: 460px;
  height: 650px;
}
.theme-hero-wrapper {
  padding: 24px 0;
  font-weight: 800;
  min-height: 650px;
  position: relative;
  display: flex;
  align-items: center;
}
.theme-hero-wrapper.has-hand {
  padding: 130px 300px 130px 0;
}
.theme-hero-wrapper-content {
  font-size: 52px;
}
.theme-hero-wrapper-content.content-width {
  max-width: 80%;
}
.theme-hero-wrapper-content strong {
  color: #007853;
}
.theme-hero-wrapper.has-background {
  align-items: flex-end;
}
.theme-hero-wrapper.has-background .theme-hero-wrapper-content {
  font-size: 36px;
  background-color: #007853;
  color: #fff;
  padding: 24px 50px;
  margin-bottom: 24px;
}
.theme-hero-navmenu {
  padding-top: 130px;
}
.theme-hero-navmenu ul {
  padding: 0;
  list-style-type: none;
}
.theme-hero-navmenu ul li {
  margin: 12px 0;
}
.theme-hero-navmenu ul li.current-menu-item a {
  border-bottom: 4px solid #007853;
}
.theme-hero-navmenu ul li.menu-item-has-children:hover .sub-menu {
  display: block;
  visibility: visible;
  opacity: 1;
  max-height: 100%;
  margin-bottom: unset;
}
.theme-hero-navmenu ul li a {
  color: #000;
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
}
.theme-hero-navmenu ul li a:hover {
  color: #007853;
}
.theme-hero-navmenu ul li .sub-menu {
  transition: 0.4s ease-in-out;
  visibility: hidden;
  opacity: 0;
  max-height: 0;
  margin-bottom: -14px;
}
.theme-hero-navmenu ul li .sub-menu a {
  color: #7B868C;
  font-weight: 400;
}
.theme-hero-navmenu ul li .sub-menu a:hover {
  color: #007853;
}

.theme-content-title {
  font-weight: 700;
  margin-bottom: 32px;
}
.theme-content-content {
  font-size: 20px;
}
.theme-content-card {
  color: #000;
  display: block;
  padding: 24px;
  background-color: #F2F5F5;
  border-bottom-right-radius: 30px;
  margin: 8px 0;
}
.theme-content-card:hover .theme-content-card-title {
  color: #007853;
}
.theme-content-card-image-wrapper {
  height: 100px;
}
.theme-content-card-image-wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}
.theme-content-card-title {
  font-size: 24px;
  font-weight: 500;
  margin-top: 16px;
  transition: 0.2s ease-in;
}

.theme-counter-content {
  font-size: 42px;
  color: #7B868C;
  font-weight: 700;
}
.theme-counter-content strong {
  font-size: 62px;
  display: inline-block;
  color: #007853;
  font-weight: 900;
}

.theme-timeline {
  background-image: url("../img/sierteelt-kools-timeline-background-image.svg");
  background-repeat: no-repeat;
  background-position: 50% 100%;
  position: relative;
  border-bottom-left-radius: 90px;
  margin-bottom: 150px;
  padding-top: 200px;
}
.theme-timeline:before {
  content: "";
  position: absolute;
  height: 100%;
  min-width: 1500px;
  width: calc((100% - 1400px) / 2 + 1500px - 15px);
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #2D7853;
  border-bottom-left-radius: 40px;
  z-index: -1;
}
.theme-timeline-plant {
  position: absolute;
  bottom: -60px;
  left: -70px;
  width: 800px;
  height: 700px;
  z-index: -1;
}
.theme-timeline-line {
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  width: 100%;
  height: 400px;
}
.theme-timeline-line img {
  height: 100%;
  -o-object-fit: none;
     object-fit: none;
}
.theme-timeline-wrapper .col-12:nth-of-type(2) .theme-timeline-card:before {
  height: 140px;
  top: -140px;
}
.theme-timeline-wrapper .col-12:nth-of-type(2) .theme-timeline-card:after {
  top: -182px;
}
.theme-timeline-wrapper .col-lg-4 .theme-timeline-card:before {
  display: none;
}
.theme-timeline-wrapper .col-lg-4 .theme-timeline-card:after {
  display: none;
}
.theme-timeline-card {
  display: block;
  position: relative;
}
.theme-timeline-card:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 50px;
  background-color: white;
  top: -50px;
  left: 8px;
}
.theme-timeline-card:after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background-color: white;
  top: -94px;
  left: -2px;
  border-radius: 999px;
}
.theme-timeline-card:hover .theme-timeline-card-year {
  color: #fff;
}
.theme-timeline-card.last-card {
  padding-right: 32px;
}
.theme-timeline-card-year {
  color: #BEC4C2;
  font-size: 60px;
  transition: 0.2s ease-in;
  font-weight: bold;
}
.theme-timeline-card-title {
  color: #fff;
  font-size: 24px;
}
.theme-timeline-card-content {
  color: #fff;
  font-size: 20px;
  margin-bottom: 40px;
}
.theme-timeline-image-wrapper {
  height: 580px;
  margin-bottom: -150px;
  overflow: hidden;
  border-bottom-right-radius: 30px;
  border: 4px solid white;
}
.theme-timeline-image-wrapper img {
  height: 100%;
}

.theme-archive {
  padding: 25px 0px 75px;
}
.theme-archive-filter {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.theme-archive-filter .filter-card {
  background: #F2F5F5;
  padding: 10px;
  transition: 0.2s ease-in;
}
.theme-archive-filter .filter-card.active {
  border-bottom-right-radius: 12px;
  background-color: #007853;
  color: #fff;
  font-weight: 700;
}
.theme-archive-collection {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.theme-archive-collection .collection-card {
  background: #F2F5F5;
  padding: 10px;
  width: calc(33.334% - 16px);
  border-bottom-right-radius: 12px;
  overflow-wrap: break-word;
}

.theme-news {
  position: relative;
}
.theme-news:after {
  content: "";
  position: absolute;
  background-color: #F2F5F5;
  bottom: 0;
  right: 0;
  height: 50%;
  width: calc((100% - 1400px) / 2 + 1500px - 15px);
  border-top-left-radius: 50px;
  z-index: -1;
}
.theme-news-title {
  text-align: center;
  margin-bottom: 40px;
}
.theme-news-slider .slick-track {
  display: flex !important;
}
.theme-news-slider-slide {
  margin: 0px 16px;
  height: inherit !important;
  overflow: hidden;
  border-bottom-right-radius: 50px;
}
.theme-news-slider-slide-image-wrapper {
  height: 250px;
  width: 100%;
  overflow: hidden;
  border-top-left-radius: 50px;
}
.theme-news-slider-slide-image-wrapper img {
  height: 100%;
}
.theme-news-slider-slide-date {
  background-color: #7B868C;
  color: #fff;
  padding: 12px 16px;
  font-size: 24px;
  font-weight: 700;
}
.theme-news-slider-slide-wrapper {
  background-color: #fff;
  color: #000;
  padding: 24px;
  height: 100%;
}
.theme-news-slider-slide-wrapper-title {
  font-size: 24px;
  font-weight: bold;
}
.theme-news-slider-slide-wrapper-content {
  font-size: 20px;
  margin-top: 16px;
}
.theme-news-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}
.theme-news-controls__top {
  display: flex;
}
.theme-news-controls-buttons {
  background-color: #fff;
  color: #007853;
  border-radius: 999px;
  padding: 5px 9px;
  cursor: pointer;
}
.theme-news-controls-buttons i {
  color: #007853;
}
.theme-news-controls-dots {
  margin: 0 32px;
}
.theme-news-controls-dots .slick-dots {
  display: flex;
  padding: 0;
  list-style-type: none;
}
.theme-news-controls-dots .slick-dots li {
  width: 32px;
  height: 2px;
  background-color: rgba(45, 120, 83, 0.3019607843);
  margin-top: 16px;
}
.theme-news-controls-dots .slick-dots li:hover {
  cursor: pointer;
}
.theme-news-controls-dots .slick-dots li.slick-active {
  background-color: #007853;
  height: 6px;
  margin-top: 14px;
}
.theme-news-controls-dots .slick-dots button {
  display: none;
}
.theme-news-controls-link {
  background-color: #fff;
  padding: 10px 16px;
  border: 2px solid #7B868C;
  color: #7B868C;
  border-radius: 32px;
  margin-left: 12px;
  display: block;
}
.theme-news-controls-link:hover {
  background-color: #007853;
  border-color: #007853;
  color: #fff;
}

.theme-news-archive-card {
  margin: 0px 16px;
}
.theme-news-archive-card-image-wrapper {
  height: 250px;
  width: 100%;
  overflow: hidden;
  border-top-left-radius: 50px;
}
.theme-news-archive-card-image-wrapper img {
  height: 100%;
}
.theme-news-archive-card-date {
  background-color: #7B868C;
  color: #fff;
  padding: 12px 16px;
  font-size: 24px;
  font-weight: 700;
}
.theme-news-archive-card-wrapper {
  background-color: #FAFAFA;
  color: #000;
  padding: 24px;
  border-bottom-right-radius: 50px;
}
.theme-news-archive-card-wrapper-title {
  font-size: 24px;
  font-weight: bold;
}
.theme-news-archive-card-wrapper-content {
  font-size: 20px;
  margin-top: 16px;
}

.theme-news-date {
  padding: 24px 0;
}
.theme-news-date-wrapper {
  display: flex;
  align-items: center;
}
.theme-news-date-wrapper-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #7B868C;
  color: #fff;
  font-size: 72px;
  line-height: 0.8;
  padding: 20px 16px;
  font-weight: 700;
}
.theme-news-date-wrapper-date span {
  font-size: 14px;
  text-transform: uppercase;
  margin-top: 6px;
}
.theme-news-date-wrapper-title {
  padding-left: 48px;
}

.theme-news-single {
  padding: 24px 0;
}
.theme-news-single-image {
  border-bottom-right-radius: 75px;
  overflow: hidden;
}
.theme-news-single-content > p > img {
  width: auto;
}

.theme-contact-card {
  background-color: #EEF4F1;
  border-bottom-right-radius: 50px;
  padding: 50px;
}
.theme-contact-card-title {
  color: #007853;
  font-size: 32px;
}
.theme-contact-card-content {
  font-size: 20px;
}
.theme-contact-card-link {
  display: block;
  font-size: 20px;
  color: #000;
}
.theme-contact-card-link:hover {
  color: #007853;
}
.theme-contact-card-link i {
  color: #007853;
  margin-right: 8px;
}

.theme-superior-single-prev, .theme-superior-single-next {
  background-color: #fff;
  color: #007853;
  padding: 8px 12px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 10;
  border-radius: 999px;
  cursor: pointer;
}
.theme-superior-single-prev {
  left: 40px;
}
.theme-superior-single-next {
  right: 40px;
}
.theme-superior-single-slider .slick-list {
  height: 360px;
}
.theme-superior-single-slider .slick-list .slick-track {
  height: 360px;
}
.theme-superior-single-slider-slide {
  margin: 0 16px;
  border-bottom-right-radius: 50px;
  overflow: hidden;
}
.theme-superior-single-slider-slide img {
  height: 100%;
}
.theme-superior-single-wrapper {
  margin-top: 80px;
}
.theme-superior-single-wrapper-link {
  padding: 8px 32px;
  background-color: transparent;
  color: #7B868C;
  border: 2px solid #7B868C;
  display: inline-block;
  border-radius: 999px;
  margin-bottom: 24px;
  font-weight: 700;
}
.theme-superior-single-wrapper-link:hover {
  color: #007853;
  border-color: #007853;
}
.theme-superior-single-wrapper-content {
  font-size: 20px;
}
.theme-superior-single-wrapper-content-title {
  font-size: 32px;
  color: #007853;
}
.theme-superior-single-wrapper-content-collection {
  font-size: 32px;
  font-weight: 500;
  color: #7B868C;
}
.theme-superior-single-information {
  margin-top: 80px;
  background-color: #FAFAFA;
  border-bottom-right-radius: 50px;
  padding: 50px;
}
.theme-superior-single-information-card {
  display: flex;
}
.theme-superior-single-information-card-name {
  font-size: 24px;
  color: #007853;
  font-weight: 600;
  width: 40%;
}
.theme-superior-single-information-card-content {
  font-size: 20px;
  width: 60%;
}

.theme-history {
  padding-bottom: 0;
  margin-bottom: -50px;
}
.theme-history-wrapper {
  display: flex;
  margin-bottom: 50px;
  position: relative;
}
.theme-history-wrapper::after {
  content: "";
  background-color: #CAD5CF;
  position: absolute;
  top: 50%;
  width: 12%;
  height: 2px;
  transform: translate(0, -50%);
  right: -11.5%;
  z-index: -1;
}
.theme-history-wrapper.flex-reverse {
  flex-direction: row-reverse;
}
.theme-history-wrapper.flex-reverse .theme-history-wrapper-right {
  border-top-right-radius: 0px;
  border-top-left-radius: 50px;
}
.theme-history-wrapper-left {
  width: 33.333%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}
.theme-history-wrapper-left img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.theme-history-wrapper-right {
  background-color: #FAFAFA;
  width: 66.666%;
  padding: 50px 60px 50px 60px;
  border-top-right-radius: 50px;
}
.theme-history-wrapper-right-year {
  font-size: 60px;
  font-weight: 700;
  color: #007853;
}
.theme-history-wrapper-right-title {
  font-size: 24px;
}
.theme-history-wrapper-right-content {
  font-size: 20px;
}
.theme-history-wrapper-full {
  background-color: #FAFAFA;
  border-top-left-radius: 50px;
  padding: 50px 60px 50px 60px;
}
.theme-history-wrapper-full-year {
  font-size: 60px;
  font-weight: 700;
  color: #007853;
}
.theme-history-wrapper-full-title {
  font-size: 24px;
}
.theme-history-wrapper-full-content {
  font-size: 20px;
}
.theme-history-line {
  display: flex;
  justify-content: center;
  height: 100%;
}
.theme-history-line-inner {
  width: 7px;
  height: 100%;
  border: 4px solid #B6C3CB;
  position: relative;
}
.theme-history-line-inner::before {
  content: "";
  position: absolute;
  left: 18px;
  transform: translate(-50%, 0);
  top: -350px;
  width: 165px;
  height: 500px;
  background-image: url("../img/SIER-sierteel-kools-asset-boom.svg");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}
.theme-history-line-inner::after {
  content: "";
  position: absolute;
  left: 0;
  transform: translate(-50%, 0);
  bottom: 0;
  width: 165px;
  height: 35px;
  background-image: url("../img/SIER-sierteel-kools-asset-poppetjes.svg");
  background-size: cover;
  background-repeat: no-repeat;
}

.theme-onze-merken {
  position: relative;
  z-index: 5;
}
.theme-onze-merken-wrapper {
  margin-bottom: 40px;
}
.theme-onze-merken-wrapper-title {
  font-size: 46px;
}
.theme-onze-merken-wrapper-content {
  font-size: 20px;
}
.theme-onze-merken-card {
  margin-bottom: 60px;
  display: flex;
  justify-content: space-between;
}
.theme-onze-merken-card.reverse {
  flex-direction: row-reverse;
}
.theme-onze-merken-card-text {
  width: 45%;
}
.theme-onze-merken-card-text-title {
  font-size: 46px;
}
.theme-onze-merken-card-text-content {
  font-size: 20px;
  margin-bottom: 32px;
}
.theme-onze-merken-card-image {
  width: 45%;
  border-bottom-right-radius: 75px;
  padding: 120px 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.theme-onze-merken-card-image.redwood {
  background-color: #F4F0EF;
}
.theme-onze-merken-card-image.superior {
  background-color: #EFF1F2;
}
.theme-onze-merken-card-image.jackfrost {
  background-color: #F4FBFD;
}

.theme-partners__wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  gap: 240px;
}
.theme-partners__wrapper-image-wrapper {
  width: calc(16.67% - 24px);
}

.theme-portfolio-loadmore > div > button {
  background-color: #007853 !important;
}

.wpgb-button.wpgb-load-more {
  background-color: #007853 !important;
}

.theme-footer__top {
  color: #7B868C;
  background-color: #000;
  position: relative;
  padding: 150px 0 100px 0;
  overflow-x: clip;
  margin-top: 200px;
}
.theme-footer__top:after {
  content: "";
  background-image: url("../img/SIER-tektray-footer.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  width: 800px;
  height: 400px;
  position: absolute;
  top: -260px;
  right: -85px;
}
.theme-footer__top-backtotop {
  position: absolute;
  top: 0px;
  right: -150px;
  width: 40px;
  height: 40px;
  background-color: #7B868C;
  border-radius: 999px;
  transition: 0.2s ease-in;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.theme-footer__top-backtotop:hover {
  transform: translate(0, -5px);
}
.theme-footer__top-backtotop i {
  color: #fff;
}
.theme-footer__top-image-wrapper {
  display: inline-block;
}
.theme-footer__top-title {
  color: #fff;
  margin-bottom: 24px;
}
.theme-footer__top-link {
  display: block;
  padding: 2px 0;
  color: #7B868C;
}
.theme-footer__top-link:hover {
  color: #fff;
}
.theme-footer__top-content {
  padding: 2px 0;
}
.theme-footer__top-content p {
  margin: 0;
}
.theme-footer__top-navmenu ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.theme-footer__top-navmenu ul li {
  padding: 2px 0;
}
.theme-footer__top-navmenu ul li a {
  color: #7B868C;
}
.theme-footer__top-navmenu ul li a:hover {
  color: #fff;
}
.theme-footer__socials {
  position: absolute;
  top: 0;
  right: 20px;
  width: 50px;
  transition: 0.2s ease-out;
  gap: 4px;
}
.theme-footer__socials-wrapper {
  display: flex;
  flex-direction: row;
}
.theme-footer__opleiding {
  transition: 0.2s ease-in;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 2px;
  filter: brightness(0) saturate(100%) invert(56%) sepia(9%) saturate(367%) hue-rotate(157deg) brightness(91%) contrast(93%);
}
.theme-footer__opleiding:hover {
  filter: invert(100%);
}
.theme-footer__opleiding > img {
  width: 40px;
  height: 40px;
}
.theme-footer__bottom {
  padding: 20px 0;
  background-color: #007853;
}
.theme-footer__bottom-link {
  color: #D5E4DD;
}
.theme-footer__bottom-link:first-of-type {
  border-right: 1px solid #D5E4DD;
  padding-right: 4px;
  margin-right: 4px;
}
.theme-footer__bottom-link:hover {
  color: #000;
}
.theme-footer__bottom-copyright {
  color: #D5E4DD;
}
.theme-footer__bottom-madeby {
  color: #D5E4DD;
}
.theme-footer__bottom-madeby span {
  color: #FCE100;
}
.theme-footer__bottom-madeby a {
  color: #D5E4DD;
}

.theme-offcanvas {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  background-color: #fff;
  transform: translate(100%, 0%);
  transition: 0.4s ease-in;
  z-index: 20;
}
.theme-offcanvas.canvas-open {
  transform: translate(0%, 0%);
}
.theme-offcanvas__top-greenbar {
  height: 20px;
  width: 100%;
  background-color: #007853;
}
.theme-offcanvas__top-logo {
  background-color: #000;
  width: 100%;
  padding: 27px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.theme-offcanvas__top-logo img {
  width: 95%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.theme-offcanvas__top-logo-burger-trigger {
  position: relative;
  height: 22px;
  width: 30px;
  z-index: 15;
  margin-right: 12px;
  cursor: pointer;
}
.theme-offcanvas__top-logo-burger-trigger span {
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #fff;
  transition-duration: 0.3s;
}
.theme-offcanvas__top-logo-burger-trigger span:first-child {
  top: 0px;
}
.theme-offcanvas__top-logo-burger-trigger span.center {
  top: calc(50% - 1px);
}
.theme-offcanvas__top-logo-burger-trigger span:last-child {
  bottom: 0px;
}
.theme-offcanvas__top-logo-burger-trigger.burger-active span:nth-of-type(1) {
  rotate: -135deg;
  top: 9.5px;
}
.theme-offcanvas__top-logo-burger-trigger.burger-active span.center {
  opacity: 0;
}
.theme-offcanvas__top-logo-burger-trigger.burger-active span:nth-of-type(4) {
  rotate: 135deg;
  bottom: 9.5px;
}
.theme-offcanvas__top-language {
  background-color: #EEF4F1;
  height: 100px;
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  padding: 0 60px;
}
.theme-offcanvas__top-language-current {
  color: #000;
  border-bottom: 2px solid #007853;
  margin-right: 8px;
  margin-bottom: -2px;
}
.theme-offcanvas__top-language li {
  list-style-type: none;
  margin-right: 8px;
}
.theme-offcanvas__top-language li a {
  color: #B3B5B5;
}
.theme-offcanvas__bottom {
  padding: 30px 0 30px 60px;
}
.theme-offcanvas__bottom-navigation ul {
  list-style-type: none;
  padding: 0;
}
.theme-offcanvas__bottom-navigation ul li {
  padding: 20px 0;
}
.theme-offcanvas__bottom-navigation ul li a {
  color: #000;
  font-weight: 700;
  font-size: 24px;
}
.theme-offcanvas__bottom-navigation ul li a:hover {
  color: #007853;
}

/*/ MEDIA QUERYS /*/
@media screen and (min-width: 1920px) {
  .theme-timeline-line img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (max-width: 1440px) {
  .theme-hero-background {
    width: 80%;
  }
  .theme-hero-background.has-hand:after {
    width: 350px;
    height: 530px;
  }
  .theme-hero-wrapper-content {
    font-size: 42px;
  }
  .theme-content-card-title {
    font-size: 20px;
  }
  .theme-footer__top-backtotop {
    right: -100px;
  }
  .theme-footer__opleiding {
    right: 10px;
    width: 130px;
  }
}
@media screen and (max-width: 1200px) {
  .theme-contact-card-link {
    display: block;
    font-size: 18px;
    color: #000;
  }
}
@media screen and (max-width: 992px) {
  .theme-header__bottom-language {
    display: none;
  }
  .theme-header__bottom-wrapper-burger-trigger {
    display: block;
  }
  .theme-hero-navmenu {
    display: none;
  }
  .theme-hero-background {
    width: 100%;
  }
  .theme-hero-background.has-hand {
    width: 100%;
  }
  .theme-hero-background.has-hand:after {
    transform: rotate(-45deg);
    width: 60%;
    height: 625px;
    top: -150px;
    right: 40px;
  }
  .theme-hero-wrapper.has-hand {
    padding: 400px 40px 130px 0;
  }
  .theme-timeline {
    padding: 75px 0;
    margin-bottom: 50px;
  }
  .theme-timeline-plant {
    display: none;
  }
  .theme-timeline-line {
    display: none;
  }
  .theme-timeline-card:before {
    display: none;
  }
  .theme-timeline-card:after {
    display: none;
  }
  .theme-history-wrapper::after {
    display: none;
  }
  .theme-history-line {
    display: none;
  }
  .theme-contact-card {
    padding: 32px;
  }
  .theme-footer__top-backtotop {
    right: 0;
    top: 110%;
  }
  .theme-footer__opleiding {
    right: 0;
    width: 110px;
    height: unset;
  }
}
@media screen and (max-width: 768px) {
  .theme-header__bottom-wrapper-burger-trigger {
    display: block;
  }
  .theme-partners__wrapper {
    flex-wrap: wrap;
  }
  .theme-partners__wrapper-image-wrapper {
    width: 25%;
  }
  .theme-history-wrapper {
    flex-direction: column;
  }
  .theme-history-wrapper.flex-reverse {
    flex-direction: column;
  }
  .theme-history-wrapper-left {
    width: 100%;
    min-height: 400px;
  }
  .theme-history-wrapper-right {
    width: 100%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 50px;
  }
  .theme-news-title {
    text-align: unset;
  }
  .theme-news-single-content {
    padding-bottom: 16px;
  }
  .theme-contact-card {
    margin: 16px 0;
  }
  .theme-onze-merken-card {
    flex-direction: column;
  }
  .theme-onze-merken-card.reverse {
    flex-direction: column;
  }
  .theme-onze-merken-card-text {
    width: 100%;
    margin-bottom: 48px;
  }
  .theme-onze-merken-card-image {
    width: 100%;
  }
  .theme-footer__socials {
    right: 70px;
  }
  .theme-footer__top-title {
    margin-top: 16px;
  }
  .theme-footer__top-link {
    display: block;
  }
  .theme-offcanvas {
    width: 80%;
  }
}
@media screen and (max-width: 568px) {
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 32px;
  }
  h3 {
    font-size: 28px;
  }
  h4 {
    font-size: 20px;
  }
  .theme-hero {
    margin-bottom: 0;
  }
  .theme-hero-background.has-hand:after {
    width: 75%;
    height: 300px;
    top: -55px;
    right: -12px;
    transform: rotate(-30deg);
  }
  .theme-hero-wrapper.has-hand {
    padding: 250px 0 50px 0;
  }
  .theme-hero-wrapper-content {
    font-size: 26px !important;
  }
  .theme-history-wrapper-right {
    padding: 40px 20px 40px 20px;
  }
  .theme-content-card-title {
    text-align: center;
  }
  .theme-content-content {
    font-size: 16px;
  }
  .theme-counter {
    padding-top: 0px;
  }
  .theme-counter-content {
    font-size: 24px;
  }
  .theme-counter-content strong {
    font-size: 40px;
  }
  .theme-archive-collection {
    font-size: 14px;
  }
  .theme-archive-collection .collection-card {
    width: calc(50% - 16px);
  }
  .theme-news-title {
    font-size: 32px;
  }
  .theme-news-date-wrapper {
    flex-wrap: wrap;
    justify-content: left;
  }
  .theme-news-date-wrapper-title {
    width: 100%;
    text-align: left;
    padding-left: 0px;
    margin-top: 16px;
  }
  .theme-news-date-wrapper-date {
    align-items: unset;
  }
  .theme-news-controls {
    flex-direction: column;
  }
  .theme-news-controls-dots .slick-dots li {
    width: 20px;
  }
  .theme-news-single {
    padding: 0px;
  }
  .theme-news-archive {
    margin-top: 24px;
  }
  .theme-onze-merken-wrapper-title {
    font-size: 32px;
  }
  .theme-onze-merken-card-text-title {
    font-size: 32px;
  }
  .theme-onze-merken-card-text-content {
    font-size: 16px;
  }
  .theme-partners__wrapper-image-wrapper {
    padding: 0px;
    width: 40%;
  }
  .theme-footer__socials {
    position: unset;
    display: flex;
    margin-top: 20px;
    justify-content: space-between;
  }
  .theme-footer__socials-wrapper {
    flex-direction: row;
  }
  .theme-footer__top:after {
    width: 600px;
  }
  .theme-footer__top-backtotop {
    top: 100%;
    left: 0;
    margin-top: 20px;
    margin-left: 15px;
  }
  .theme-footer__opleiding {
    position: unset;
    width: auto;
  }
  .theme-footer__opleiding:last-child {
    padding-right: 0px;
  }
  .theme-footer__opleiding:nth-child(1) {
    padding-left: 0px;
  }
  .theme-footer__bottom-link:first-of-type {
    padding-right: 0px;
  }
  .theme-offcanvas {
    width: 100%;
  }
  .theme-offcanvas__top-language {
    padding: 0 30px;
  }
  .theme-offcanvas__bottom {
    padding: 30px 0 30px 30px;
  }
  .theme-offcanvas__bottom-navigation ul li {
    padding: 10px 0;
  }
  .theme-offcanvas__bottom-navigation ul li a {
    font-size: 20px;
  }
}/*# sourceMappingURL=style.css.map */