@charset "UTF-8";
/*
Theme Name: Pixel Example Theme
Theme URI: https://wp.pixel-development.nl
Author: Pixel Creation
Author URI: https://www.pixelcreation.nl/
Description: This is a example theme made by Pixel Creation.
Version: 1.0
Text Domain: pixel-example
*/
/* TODO: Fill in the correct information above */
/* TODO: Vervang de screenshot.png */
@import url("https://fonts.googleapis.com/css2?family=Tienne:wght@400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@300;400;500;700;800&display=swap");
/* This file is made for all your variables, think of colors you will use, basic spacing etc. */
/* EXAMPLE:
$text_color: #333;
$red: #FF0000;

$text_font: "Open Sans", serif;
$title_font: "Meriweather", sans-serif;
*/
.bg-lightgreen {
  background-color: #F2F4EE;
}

.bg-green {
  background-color: #0D653B;
}

.bg-white {
  background-color: #ffffff;
}

.text-green {
  color: #004400;
}

body {
  font-family: "Spartan", sans-serif;
}

.logo-img {
  background-color: #0D653B;
  border-radius: 50%;
  padding: 10px;
  width: 100px;
  transition: 0.3s;
}
.logo-img:hover {
  background-color: #ffffff;
}

#logo-svg {
  transition: 0.3s;
  background-color: #0D653B;
  border-radius: 50%;
  padding: 8px;
}
#logo-svg:hover {
  transform: rotate(30deg);
  background-color: #ffffff;
}
#logo-svg g {
  transition: 0.3s;
}
#logo-svg:hover g {
  fill: #004400 !important;
}

.top-header {
  padding: 20px 0;
  background-color: #0D653B;
  font-weight: 400;
  font-family: "Tienne", serif;
  color: #ffffff;
}
.top-header a {
  color: #ffffff;
}

.navbar {
  border-bottom: solid 1px #efefef;
  min-height: 130px;
}
.navbar .navbar-brand {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.navbar li {
  margin: 0 10px;
}
.navbar li:first-child {
  margin-left: 0;
}
.navbar li:first-child a {
  margin-left: 0 !important;
}
.navbar li.current-menu-item .nav-link {
  border-bottom: solid 3px #0D653B;
}
.navbar .nav-link {
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.navbar a {
  color: #000000;
  font-weight: 700;
}

h1 {
  font-size: 50px;
  font-weight: 600;
  color: #004400;
}

h2 {
  font-weight: 600;
  color: #004400;
  margin-bottom: 25px;
}

p {
  font-size: 0.9rem;
  line-height: 1.4rem;
}

a {
  color: #0D653B;
}
a:hover {
  color: #004400;
}

.btn {
  border-radius: 0;
  padding: 16px 22px;
  font-family: "Tienne", serif;
  transition: 0.3s;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.btn.btn-primary {
  border: solid 1px #0D653B;
  background-color: #0D653B;
  color: #ffffff;
}
.btn.btn-primary:hover {
  background-color: #004400;
}
.btn.btn-secondary {
  border: solid 1px #0D653B;
  background-color: transparent;
  color: #0D653B;
}
.btn.btn-secondary:hover {
  background-color: #0D653B;
  color: #ffffff;
}

.btn-big {
  font-weight: unset !important;
  letter-spacing: unset !important;
  text-transform: unset !important;
}

.nf-form-content button, .nf-form-content input[type=button], .nf-form-content input[type=submit] {
  border-radius: 0 !important;
  padding: 14px 20px !important;
  font-family: "Tienne", serif !important;
  border: solid 1px #0D653B !important;
  background-color: #0D653B !important;
  color: #ffffff !important;
  height: unset !important;
}

button {
  outline: none;
}

figure {
  background-size: cover;
  background-position: center;
}

.banner-right {
  position: absolute;
  height: calc(100% + 350px);
  width: 50%;
  right: 0;
  top: 0;
  border-top: 0;
  border-right: 0;
  border-bottom: solid #ffffff 15px;
  border-left: solid #ffffff 15px;
}

.breadcrumb {
  background-color: transparent;
  padding-left: 0;
}

/* SECTIONS */
section {
  padding: 4rem 0;
}
section.section-sm {
  padding: 2rem 0;
}
section.section-dark {
  color: #fff;
  background-color: #333;
}
section.section-grey {
  background-color: #F2F4EE;
}

/* BLOCKS */
.block {
  padding: 2rem;
}
.block.block-grey {
  background-color: #F2F4EE;
}

/* BLOG */
.blog {
  display: block;
  color: #333;
  background-color: #fff;
  margin-bottom: 2rem;
  height: calc(100% - 2rem);
}
.blog .blog-photo {
  height: 13rem;
  overflow: hidden;
}
.blog .blog-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.5s ease;
}
.blog .blog-content {
  padding: 2rem;
}
.blog:hover {
  text-decoration: none;
  color: #333;
}
.blog:hover .blog-photo img {
  transform: scale(1.1);
}

/* CONTACT PAGE */
#map_canvas {
  height: 30rem;
}

/* FOOTER */
.split-section-footer {
  background-color: #F2F4EE;
  padding-top: 0;
  margin-bottom: -150px;
}
.split-section-footer .container {
  padding-top: 180px;
}
.split-section-footer .container .row {
  position: relative;
  top: -120px;
}

.home .split-section-footer .container, .page-template-contact .split-section-footer .container {
  margin-top: 180px;
  padding-top: 0;
}

footer {
  padding: 4rem 0;
  background-color: #F2F4EE;
}
footer ul {
  list-style: none;
  padding-left: 0;
}
footer ul li:before {
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  content: "";
  padding-right: 15px;
  color: #004400;
}
footer ul li a {
  font-size: 0.9rem;
}
footer h3 {
  font-size: 20px;
  font-weight: 500;
  color: #004400;
  margin-bottom: 30px;
}

.footerbar {
  background-color: #0D653B;
  color: #ffffff;
  font-size: 0.9rem;
  font-family: "Tienne", serif;
}
.footerbar a {
  color: #ffffff;
}

/* SCREEN READER */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.category-item-wrapper-link:hover {
  text-decoration: none;
  color: #0D653B;
}

.category-item {
  position: relative;
}
.category-item i {
  opacity: 0;
  transition: 0.5s;
}
.category-item:hover i {
  opacity: 1;
  transform: translateX(10px);
}
.category-item img {
  height: 400px;
  width: 100%;
  object-fit: cover;
}
.category-item .category-link-block {
  display: block;
  background-color: #ffffff;
  padding: 30px;
  width: calc(100% - 50px);
  position: relative;
  z-index: 2;
  margin-top: -80px;
}
.category-item .category-link-block h4 {
  color: #004400;
  font-weight: 500;
}

.readmore-link {
  font-family: "Tienne", serif;
  text-transform: uppercase;
  color: #0D653B;
  font-size: 12px;
  letter-spacing: 2px;
  padding-bottom: 5px;
  border-bottom: solid 2px #0D653B;
}

.carousel .owl-nav {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: calc(100% + 40px);
  pointer-events: none;
  left: -20px;
}
.carousel .owl-nav .owl-prev, .carousel .owl-nav .owl-next {
  background-color: #0D653B !important;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  color: #ffffff !important;
  outline: none;
  pointer-events: visible;
  transition: 0.4s;
}
.carousel .owl-nav .owl-prev.disabled, .carousel .owl-nav .owl-next.disabled {
  opacity: 0;
}
.carousel .owl-nav .owl-next {
  float: right;
}
.carousel .owl-dots {
  margin-top: 20px;
}
.carousel .owl-dots .owl-dot {
  background-color: #F2F4EE !important;
  width: 100px;
  height: 3px;
  margin-right: 20px;
  transition: 0.3s;
  outline: none !important;
}
.carousel .owl-dots .owl-dot.active {
  background-color: #0D653B !important;
}

.home-banner-section {
  padding: 7rem 0;
}

.home-intro-section {
  padding-bottom: 300px;
  margin-bottom: -300px;
}

.split-box-green-content {
  border: solid 1px #ffffff;
  padding: 30px;
  margin: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.split-box-green-content h2, .split-box-green-content h3 {
  color: #ffffff;
  font-weight: 400;
}

.split-box-white-content {
  padding: 30px;
  margin: 20px;
}
.quote-heading {
  font-family: "Tienne", serif;
  max-width: 380px;
  margin: auto;
}

.home-products-section {
  padding-top: 300px;
  margin-top: -250px;
  padding-bottom: 200px;
}

.product-block {
  background-color: #ffffff;
}
.product-block img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.product-block .product-block-text {
  padding: 40px;
}
.product-block h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #0D653B;
}

.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
  background-color: #ffffff !important;
  color: #004400 !important;
  font-family: "Tienne", serif !important;
  border-radius: 0 !important;
  font-weight: 400;
  padding: 15px 20px;
}

.woocommerce-message::before, .woocommerce-info::before {
  color: #0D653B;
}

.woocommerce-message, .woocommerce-info {
  border-top-color: #0D653B;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  background: #fff;
  padding: 25px;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li {
  border-bottom: solid 1px #eeeeee;
  padding: 10px 0;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li:last-child {
  border-bottom: 0;
}

.woocommerce.columns-4 li.product {
  width: 23% !important;
  margin: 0 30px 2.992em 0 !important;
}
.woocommerce li.product {
  background-color: #ffffff;
}
.woocommerce li.product img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.woocommerce li.product .product-item-text-wrapper {
  padding: 20px 30px;
}
.woocommerce li.product .product-item-text-wrapper h2 {
  font-size: 20px !important;
  font-weight: 600;
  padding: 0 !important;
  margin-bottom: 25px !important;
  color: #0D653B;
}
.woocommerce li.product .product-item-text-wrapper .product-item-excerpt {
  margin-bottom: 40px;
  font-size: 14px;
  color: #333333;
}
.woocommerce li.product .price {
  color: #000000 !important;
  font-weight: 600 !important;
  font-size: 14px !important;
}
.woocommerce li.product .added_to_cart {
  padding: 0 20px 20px 30px;
}
.woocommerce li.product .add_to_cart_button {
  height: 50px;
  width: 50px;
  background-color: #0D653B !important;
  display: block;
  border-radius: 30px !important;
  margin-left: auto;
  position: absolute;
  bottom: 20px;
  right: 20px;
  transition: 0.3s;
}
.woocommerce li.product .add_to_cart_button:hover {
  background-color: #004400 !important;
}
.woocommerce li.product .add_to_cart_button.added {
  display: none;
}
.woocommerce li.product .add_to_cart_button:before {
  content: "";
  background-image: url("images/shoppingbagplus.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 1px 9px;
  z-index: 2;
  position: absolute;
  display: block;
  width: calc(100% - 20px);
  height: 100%;
  margin: auto;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.woocommerce .woocommerce-error, .woocommerce .woocommerce-info, .woocommerce .woocommerce-message {
  background-color: transparent !important;
}
.woocommerce #add_payment_method #payment, .woocommerce .woocommerce-cart #payment, .woocommerce .woocommerce-checkout #payment {
  background: #ffffff;
  border-radius: 0px;
}
.woocommerce .col-1, .woocommerce .col-2 {
  flex: none;
  max-width: 48%;
}
.woocommerce form .form-row {
  display: block;
}
.woocommerce form .form-row input, .woocommerce form .form-row textarea {
  border-radius: 0;
  border: none;
  padding: 15px 20px;
}
.woocommerce .woocommerce-ordering select {
  border-radius: 0;
  border: none;
  padding: 15px 20px;
}
.woocommerce #customer_details {
  margin-bottom: 30px;
}
.woocommerce #sidebar {
  padding: 30px;
  background-color: #ffffff;
}
.woocommerce #sidebar h2 {
  font-size: 22px;
}
.woocommerce #sidebar ul {
  padding-left: 0;
  list-style: none;
}
.woocommerce span.onsale {
  border-radius: 0 !important;
  background-color: #0D653B !important;
  line-height: 0 !important;
  min-height: 0 !important;
  min-width: 0 !important;
  padding: 20px !important;
  margin: 0 !important;
}
.woocommerce .woocommerce-product-gallery__image {
  border: solid 15px #ffffff;
}
.woocommerce .quantity .qty {
  height: 60px;
  border: none;
  margin-right: 20px;
}
.woocommerce .woocommerce-tabs {
  display: none;
}
.woocommerce div.product {
  display: flex;
}
.woocommerce div.product .images, .woocommerce div.product .summary {
  float: none;
}
.woocommerce div.product .summary {
  padding: 10px 50px !important;
}
.woocommerce div.product p.price, .woocommerce div.product span.price {
  color: #004400;
}

.cart-customlocation {
  position: relative;
}
.cart-customlocation .cart-items-count {
  background: #0d653b;
  font-size: 10px;
  padding: 4px 5px;
  /* text-align: center; */
  height: 20px;
  width: 20px;
  position: absolute;
  color: white;
  right: 0;
  top: 11px;
  font-weight: 400;
  border-radius: 30px;
  display: flex;
  justify-content: center;
}
.cart-customlocation .woocommerce-Price-amount {
  font-size: 14px;
  margin-right: 10px;
}
.cart-customlocation .woocommerce-Price-amount .woocommerce-Price-currencySymbol {
  font-size: 11px;
  margin-right: 5px;
  color: #004400;
  font-weight: 400;
}

.woocommerce-cart-form, .shop_table {
  background-color: #ffffff;
}

.image-cta-section {
  position: relative;
  padding-bottom: 0;
}

.image-cta-right-wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 60%;
  height: calc(100% + 110px);
}
.image-cta-right-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border: solid 15px #ffffff;
}

.image-cta-text-wrapper {
  background-color: #ffffff;
  padding: 30px;
}

.review-item {
  background-color: #F2F4EE;
  padding: 40px;
}
.review-item h3 {
  color: #004400;
  font-size: 22px;
  margin-bottom: 20px;
}

@media screen and (max-width: 992px) {
  .top-header span {
    display: none;
  }

  .banner-right {
    position: absolute;
    width: 100%;
    right: unset;
    top: unset;
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    height: 220px;
    left: 0;
    bottom: -60px;
  }

  .home-banner-text {
    padding-bottom: 100px;
  }

  .navbar {
    min-height: unset;
  }

  .navbar li:first-child {
    margin-left: 10px;
  }

  .navbar li:first-child a {
    margin-left: 0.5rem !important;
  }

  .top-nav-wrapper {
    height: 70px;
  }

  .nav-toggler-wrapper {
    position: absolute;
    left: 10px;
  }

  #logo-svg {
    width: 70px;
    height: 70px;
  }

  .cart-customlocation {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  .cart-customlocation bdi {
    display: none;
  }

  .home-banner-section {
    padding-top: 60px;
  }

  .image-cta-right-wrapper {
    width: 100%;
    height: calc(100% + 150px);
  }

  footer {
    padding: 2rem 12px;
  }
  footer h3 {
    margin-bottom: 15px;
    margin-top: 30px;
  }

  .carousel .owl-dots .owl-dot {
    width: 50px;
  }

  .carousel .owl-nav {
    width: calc(100% + 20px);
    left: -10px;
  }

  .quote-heading {
    padding: 60px 0;
  }

  .woocommerce ul.products[class*=columns-] li.product, .woocommerce-page ul.products[class*=columns-] li.product {
    width: 100% !important;
    float: unset;
  }

  .woocommerce ul.products[class*=columns-] li.product:nth-child(2n), .woocommerce-page ul.products[class*=columns-] li.product:nth-child(2n) {
    float: unset;
  }

  .woocommerce div.product {
    display: block;
  }
  .woocommerce div.product .summary {
    padding: 10px 10px !important;
  }

  .woocommerce .button.wc-forward {
    display: block;
    float: unset;
    margin-bottom: 10px;
  }

  .woocommerce .woocommerce-result-count {
    display: none;
  }

  .woocommerce #sidebar {
    margin: 20px 0;
  }
}
@media screen and (max-width: 768px) {
  section {
    padding: 2rem 0;
  }

  .col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
    padding-right: 25px;
    padding-left: 25px;
  }
}

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