/*
Theme Name: HZNG
Description: Webdesign & design systems
Version: 2.1
Author: P. Huizinga at HZNG - hzng.nl
*/

/* Reset */
/* Handled by reset.css from https://github.com/murtaugh/HTML5-Reset */

/* GENERAL */

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
*:focus {
    outline: none;
}
*,html,body {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    -moz-appearance: none;
    -webkit-appearance: none;
    font-size: 19px;
    line-height: 28px;
    color: #1D8EAB;
    font-weight: 300;

}
input {
    font-family: inherit;
}
body {
    background-color: #f1eee7;
    overflow-x: hidden;
    padding-top: 115px;
}
hr {
    border-style: solid none none;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    margin: 60px 0;
    border-bottom: 1px solid #f1eee7;
    width: 100%;
    display: block;
}
    hr.last_acc {
    background: ;border-bottom: 1px solid #4b6142;
    margin: 0 0;
    display: block!important;
}
img {
    max-width: 100%;
}
blockquote p {
    font-size: 2.2em;
    font-weight: 400;
    padding: 25px 0 25px 50px;
    line-height: 1.25em;
}

/* FONTS */
h1,h2,h3,h4,h5,h6 {
    font-family: "Suranna", serif;
}
h1 span,
h1 em,
h1 {
    font-weight: 500;
    font-size: 2.22em;
    line-height: 110%;
    margin: 0 0 30px;
}

h2{
    font-weight: 500;
    font-size: 1.52em;
    line-height: 125%;
    margin: 30px 0 10px;
}
    h1 + h2 {
        margin: 0 0 20px;
    }

h3{
    font-weight: 500;
    font-size: 1.42em;
    line-height: 125%;
    margin: 15px 0 5px;
}

.grid-item.story p.name,
.footer-menu #menu-footer.menu > li > a,
h4{
    font-size: 1.22em;
    line-height: 125%;
    margin: 12px 0 4px;
}
h5 {
    font-size: 24px;
    line-height: 125%;
    margin: 10px 0 3px;
}
li a,
li,
p *,
p {
    font-size: 1em;
}
p {
    margin-bottom: 15px;
}
p.intro {
    margin-bottom: 1.2em;
}
p strong{
    font-weight: 500;
    position: relative;
    background: #ffc80040;
    border-radius: 2px;
    padding: 0 3px;
}
.text-center,
.text-center * {
    text-align: center;
}

.product-info ul {
    margin: 10px 0 10px 20px;
    padding: 0 0 0 5px;
}

.product-info ul li {
    list-style: disc;
    padding-left: 0px;
    margin: 0;
    position: relative;
}
    .product-info ul ul li {
        list-style: circle;
    }
article a {
    text-decoration: none;
    position: relative;
    cursor:pointer;
}
article p a:after {
    width: 100%;
    height: 5px;
    background: gold;
    opacity: 0.35;
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -2px;
    transition: all 0.1s ease-in-out;
    z-index: -1;
}
    article p a:hover:after {
        height: 30px;
        bottom: 0px;
    }


/* GRID */

article,
section {
    display: flex;
    position: relative;
    overflow: hidden;
    flex-direction: column;
}
.row {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    padding: 90px 0 90px;
    flex-wrap: wrap;
    overflow: hidden;
    z-index: 1;
}
    .usps .row {
        padding-top: 0;
    }
.container {
    width: 100%;
    max-width: 1350px;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    position: relative;
}
    .container.all-posts,
    .container.chosen-posts,
    .container.more-pages {
        max-width: 1218px;
    }
    .container.padding-top {
        padding-top: 60px;
    }
    .vh-100  {
    height: 100vh;
}
.vh-75  {
    height: 75vh;
}
.vh-50  {
    height: 50vh;
}
.min-height  {
    min-height: 400px;
}
.vw-100  {
    width: 100vw;
}
.flex {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}
.center,
.flex-center {
    justify-content: center;
}
.flex-stretch{
    align-content: stretch;
}
.space-between,
.flex-space-between{
    justify-content: space-between;
}
.flex-end{
    justify-content: flex-end;
}
.flex-self-end{
    align-self: flex-end;
}
.flex-space-around{
    justify-content: space-around;
}
.flex-space-evenly{
    justify-content: space-evenly;
}
.flex-v-align-center{
    align-items: center;
}
.flex-v-align-bottom{
    align-items: flex-end;
}
.flex-stretch {
    align-items: stretch;
}
.flex-v-align-top{
    align-items: flex-start;
}
.flex-h-align-left{
    justify-content: left;
}
.flex-h-align-center{
    justify-content: center;
}

.flex-h-align-right {
    justify-content: right;
}
.flex-column-reverse {
    flex-direction: column-reverse;
}
.flex-wrap {
    flex-wrap: wrap;
}
.flex-row {
    flex-direction: row;
}
.flex-column {
    flex-direction: column;
}
.flex-no-wrap  {
    flex-wrap: nowrap;
}
.flex-grow-1 {
    flex-grow: 1;
}
.flex-grow-2 {
    flex-grow: 2;
}
.flex-grow-3 {
    flex-grow: 3;
}
.flex-grow-4 {
    flex-grow: 4;
}
.flex-grow-5 {
    flex-grow: 5;
}
.flex-grow-6 {
    flex-grow: 6;
}

/* PADDING ON THE COLUMNS */

div[class*="col-"] {
    padding: 0px 40px;
    position: relative;
}
.no-padding > div[class*="col-"] {
    padding: 0;
}
.extra-padding div[class*="col-"] {
    padding: 0 40px;
}
.no-self-padding {
    padding: 0!important;
}
*.padding {
    padding: 25px 40px;
}
.border-radius  {
    border-radius: 20px;
    overflow: hidden;
}

/* COLUMNS */

.col-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
}
.col-2 {
    flex: 0 0 16.6666%;
    max-width: 16.6666%;
}
.col-20 {
    flex: 0 0 20%;
    max-width: 20%;
}
.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}
.col-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
}
.col-45 {
    flex: 0 0 37.5%;
    max-width: 37.5%;
}
.col-5 {
    flex: 0 0 41.66666%;
    max-width: 41.66666%;
}
.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}
.col-60 {
    flex: 0 0 60%;
    max-width: 60%;
}
.col-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
}
.col-8 {
    flex: 0 0 66.6666%;
    max-width: 66.6666%;
}
.col-9 {
    flex: 0 0 75%;
    max-width: 75%;
}
.col-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
}
.col-11 {
    flex: 0 0 91.66666%;
    max-width: 91.66666%;
}
.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}
.small-screen-only {
    display: none;
}
.large-screen-only {
    display: block;
}
.pull-right {
    float: right;
}
.sticky {
    position: sticky!important;
    top: 90px;
}
.order-1 {
 order: -1;
}

.btn {
    background: #657344;
    color: #f1eee7;
    margin: 0 10px 10px 0;
    font-weight: 500;
    text-decoration: none;
    padding: 10px 30px;
    line-height: 20px;
    border-radius: 40px;
    display: inline-block;
    transition: opacity 0.2s ease-in-out;
}
    .btn:hover {
        opacity: 0.85;
        transition: opacity 0.2s ease-in-out;
    }

/* GENERAL */

.whole-link {
    position: absolute!important;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    cursor: pointer;
    z-index: 200;
}

/* CSS FOR TOGGLE BUTTON */

.toggle-menu {
    display: none;
    width: 80px;
    height: 80px;
    cursor: pointer;
    padding: 0!important;
    right: -20px;
    top: 0;
    margin: 0!important;
    margin-left: 20px!important;
    position: absolute;
    transition: all .2s ease-in-out;
}

    .toggle-menu .bar{
        width: 25px;
        height: 2px;
        position: absolute;
        background: #202223;
        border-radius: 4px;
        transition: all .2s ease-in-out;

    }
        .toggle-menu .bar.top-bar{
            top: 32px;
            left: 27px;
        }
        .toggle-menu .bar.middle-bar{
            top: 50%;
            margin-top: -1px /*height of bar / 2*/ ;
            left: 27px;
            width: 14px;
        }
        .toggle-menu .bar.bottom-bar{
            bottom: 32px;
            left: 27px;
        }

        .menu-active .toggle-menu .bar.top-bar{
            transform: rotate(45deg);
            transform-origin: 0 0;
        }
        .menu-active .toggle-menu .bar.middle-bar{
            opacity: 0;
        }
        .menu-active .toggle-menu .bar.bottom-bar{
            transform: rotate(-45deg);
            transform-origin: 0 100%;
        }
        .menu-active .toggle-menu .bar.top-bar,
        .menu-active .toggle-menu .bar.bottom-bar {
            width: 21px;
            left: 32px;
        }

/* MAIN MENU DESKTOP */

@media (min-width:1050px) {
    .row.main-menu {
        margin: 0;
        padding: 0;
        z-index: 1000;
        overflow: visible;
        position: fixed;
        height: 115px;
        top: 0;
        justify-content: center;
        -webkit-backdrop-filter: blur(6px);
        backdrop-filter: blur(6px);
        background: #f1eee7E6;
    }
    .main-menu .menu {
        display: flex;
    }
        .main-menu .col-12 {
            height: 100%;
        }
        .main-menu a.shoppingbag,
        .main-menu .menu a {
            text-decoration: none;
            line-height: 40px;
            padding: 10px 20px;
            margin: 0 5px;
            display: inline-block;
            font-weight: 400;
            transition: background 0.2s ease-in-out;
            text-transform: lowercase;
        }   

            .main-menu a.shoppingbag * { 
                font-weight: 400;
            }
            .main-menu .menu .menu-item {
                position: relative;
                list-style: none;
            }
                .main-menu .menu > .menu-item:hover > a,
                .main-menu .menu > .menu-item.current-menu-item  > a,
                .main-menu .menu > .menu-item.current-page-parent > a {
                    transition: background 0.2s ease-in-out;
                }
                    .main-menu .menu > .menu-item.cta :hover > a,
                    .main-menu .menu .menu-item.cta a {
                        background: #657344;
                        color: #f1eee7;
                        margin-left: 10px;
                    }
                    .main-menu .menu > .menu-item.cta :hover > a {
                        background: #657344D9;
                    }

                .main-menu .menu .sub-menu a {
                    font-weight: 400;
                    font-size: 1em;
                }
                .main-menu .menu .sub-menu a:hover{
                    font-weight: 500;
                }
                .main-menu .menu .sub-menu .current-menu-item > a {
                    font-weight: 700;
                }

                .main-menu .menu .menu-item.menu-item-has-children a {
                    position: relative;
                    padding-right: 30px;
                }

        .main-menu .menu .menu-item.menu-item-has-children .sub-menu {
            position: absolute;
            left: -9999px;
            width: 260px;
            background: #f1eee7;
            z-index: 900;
            opacity: 0;
            top:  115px;
            padding: 0 10px 10px;
            border-bottom-left-radius: 10px;
            border-bottom-right-radius: 20px;
            box-shadow: 0px 6px 6px rgba(0,0,0,0.1);
            transition: opacity 0.3s ease-in-out 0s;
        }
            .main-menu .menu .menu-item.menu-item-has-children:hover .sub-menu {
                left: 0px;
                opacity: 1;
            }

                .main-menu .menu .menu-item.menu-item-has-children .sub-menu .menu-item a {
                    width: 100%;
                    line-height: 30px;
                    padding: 7px 20px;
                    border-radius: 0;
                }
}

/* MAIN MENU MOBILE */

@media (max-width:1049px) {
    
    .row.main-menu {
        position: absolute;
        top: 0;
        background: #f1eee7;
        width: 100vw;
        padding: 0;
        margin:0;
        z-index: 990;
        overflow: visible;
        transition: background 0.2s ease-in-out;
    }
        .row.main-menu .container {
            height: 100%;
            width: 100%!important;
            padding: 0 20px;
        }
        .row.main-menu .col-12 {
            height: 100%;
            width: 100%!important;
            padding: 0;
        }
        .row.main-menu .menu {
            overflow-y: scroll;
            position: fixed;
            left: -9999px;
            top: 80px;
            opacity: 0;
            width: 100vw;
            height: calc(100vh - 80px);
            transition: opacity .2s ease-in-out;
            padding-top: 20px;
        }
            .menu-active .row.main-menu  .menu {
                left: 0;
                opacity: 1;
                transition: opacity .2s ease-in-out;
            }
                .main-menu .menu a {
                    text-decoration: none;
                    line-height: 70px;
                    padding: 0 25px 0 15px;
                    font-size: 125%;
                    width: 100%;
                    color: #;
                    display: inline-block;
                }
                .main-menu .menu .menu-item.menu-item-has-children > a:after {
                    content: "";
                    display: block;
                    width:  10px;
                    height: 10px;
                    border-bottom: 2px solid;
                    border-left:2px solid;
                    transform: rotate(-45deg);
                    position: absolute;
                    right: 35px;
                    top: 37px;
                    margin-top: -7px;
                    transition: all 0.4s ease-in-out;
                    opacity: 0;
                }

                .menu-active .main-menu .menu .menu-item.menu-item-has-children > a:after {
                    opacity: 1;
                }


                .main-menu .menu .menu-item {
                    position: relative;
                }

                    .main-menu .menu .menu-item.current-menu-item > a {
                        color: #f1eee7;
                    }

                .main-menu .menu .menu-item.menu-item-has-children .sub-menu {
                    display: none;
                }
                    .main-menu .menu .menu-item.menu-item-has-children:hover .sub-menu {
                        display: block;
                    }

                    .main-menu .menu .menu-item.menu-item-has-children .sub-menu .menu-item a {
                        width: 100%;
                        padding-left: 40px;
                        line-height: 50px;
                        font-size: 95%;
                    }
                    .main-menu .menu .menu-item.cta a {
                        background: none;
                        border-radius: 50px;
                        margin: 10px;
                        padding: 0 12px;
                        color: #f1eee7;
                        text-align: center;
                        width: calc(100% - 20px);
                        transition: all 0.4s ease-in-out;
                    }
                    .menu-active .main-menu .menu .menu-item.cta a {
                        background: #e3794e;
                        transition: all 0.4s ease-in-out;

                    }


    .menu-active .row.main-menu #menu-hoofdmenu.menu,
    .menu-active .row.main-menu {
        background: #4a6042;
        border:0;
    }

    .menu-active .toggle-menu .bar{
        background: #f1eee7;
    }
    .menu-active .logo svg *,
    .menu-active .logo svg{
        fill: #f1eee7;
    }
    .menu-active  .main-menu .menu a {
        color: #f1eee7;
        padding-left:25px;
    }

        .menu-active  .main-menu .menu a {
            color: #f1eee7;
        }
}


/* FOOTER MENU DESKTOP */

footer {
    position: relative;
    padding: 30px 0 0;
}

    .menu-footer-container {
        width: 100%;
    }
    footer .menu {
        display: flex;
        width: 100%;
    }
        #menu-subfooter.menu > li {
            width: auto;
        }

    footer .menu a {
        padding: 0 20px 5px 0!important;
        font-size: 95%;
        line-height: 150%;
        text-decoration: none;
        display: inline-block;
        white-space: nowrap;
    }
    span.strong {
        font-weight: 600;
    }
    .footer-menu ul,
    .footer-menu ul li {
        margin: 0;
        list-style: none;
    }
    .footer-menu ul li a{
        text-decoration: none;
    }
    address li {
        padding-left: 40px;
        position: relative;
        font-size: 95%;
        line-height: 150%;
    }
    address svg {
        position: absolute;
        left: 0;
        width: 22px;
        height: 22px;
    }
    address svg * {
        fill: #f1eee7!important;
    }

.footer-menu .menu .menu-item {
    position: relative;
}
address li a:hover,
.footer-menu .menu .menu-item > a:hover,
.footer-menu .menu .menu-item.current-menu-item > a {
    opacity: 0.75;
}

    
/* FOOTER MOBILE */

@media (max-width:1049px) {

    .footer-menu .menu{
        flex-direction: column;
    }
    footer .menu > li {
        width: 100%;
    }
    footer .copyright {
        margin-top: 30px;
    }
        .footer-menu .menu a {
            text-decoration: none;
            padding: 0;
            display: inline-block;
        }
        footer p {
            margin: 0 0 10px;
        }
}


ul.language {
    border: 1.5px solid #1D8EAB;
    background: #F5F2EF;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    border-radius: 4px;
    margin-left: 20px;
}
    footer ul.language {
        opacity: 0.5;
    }
    footer ul.language:hover{
        opacity: 1;
    }

ul.language li a{
    font-weight: 600;
    font-size: 14px;
    padding: 6px 10px;
    line-height: 18px;
    display: block;
    text-decoration: none;
}
ul.language.en li.en a,
ul.language.nl li.nl a{
    color: #1D8EAB;
    background: #FFF;
    border-radius: 3px;
}
    .main-menu ul.language {
        display: inline-block;
    }
        .main-menu ul.language li{
            float: left;
        }


    .logo svg {
        width: 220px;
        height: 100px;
        margin: 10px 0;
    }
/* WOOCOMMERCE */

.wc-block-product,
.woocommerce ul.products li.product a.woocommerce-loop-product__link,
.woocommerce ul.products li.product {
    background: #FFF;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    padding: 5px;
}
.has-text-align-center {
    text-align: left;
}
.wc-block-product {
    padding: 10px;
}
.woocommerce ul.products.columns-4 li.product a.woocommerce-loop-product__link,
.woocommerce ul.products.columns-4 li.product {
    
}
    .wc-block-product img,
    .woocommerce ul.products li.product a img {
        margin: 0;
    }
    .wc-block-product .wp-block-post-title,
    .woocommerce ul.products li.product h2.woocommerce-loop-product__title {
        font-size: 22px!important;
        padding: 10px 10px!important;
        margin: 0!important;
        text-align: left!important;
        line-height: 32px!important;
    }
    .wc-block-components-product-image {
        margin-bottom: 0!important;
    }
    .wc-block-product .wp-block-button,
    .woocommerce ul.products li.product .button {
        display: none;
    }
    .wc-block-product .wp-block-woocommerce-product-price,
    .woocommerce ul.products li.product .price {
        bottom: 10px;
        left: 15px;
        font-size: 20px;
        font-weight: 500;
    }

    .wc-block-product .wp-block-woocommerce-product-price *,
    .woocommerce ul.products li.product .price * {
        font-size: 18px;
        font-size: 20px;
        font-weight: 500;
    }
    .woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images {
        width: 66.66666%;
        padding: 10px;
        background: #FFF;
        border-radius: 6px;
    }

    .woocommerce #content div.product div.summary, .woocommerce div.product div.summary, .woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.summary {
        width: 33.333333%;
        padding: 20px 30px;
    }
    .woocommerce div.product form.cart div.quantity {
        border: 1px solid #1D8EAB;
        height: 50px;
        width: 120px;
        position: relative;
        padding: 0;
        overflow: hidden;
        margin-bottom: 20px;
        border-radius: 6px;
        text-align: center;
        background: #FFF;
        margin-right: 10px;
    }
        .woocommerce div.product form.cart div.quantity .minus,
        .woocommerce div.product form.cart div.quantity .plus{
            background: none;
            border: none;
            height: 48px;
            width: 44px;
            position: absolute;
            left: 0;
            top: 0;
        }
        .woocommerce div.product form.cart div.quantity .plus {
            left: auto;
            right: 0;
        }
        .woocommerce .product_meta {
            display: none;
        }
    .woocommerce div.product form.cart div.quantity input[type=number],
    .woocommerce div.product form.cart div.quantity input::-webkit-outer-spin-button,
    .woocommerce div.product form.cart div.quantity input::-webkit-inner-spin-button {
          -webkit-appearance: none;
          -moz-appearance: textfield;
          margin: 0;
          border: 0;
          font-size: 16px;
          line-height: 48px;
          background: transparent;
        }
        .wc-block-components-button,
        .woocommerce div.product form.cart .button:hover,
        .woocommerce div.product form.cart .button {
            line-height: 32px;
            padding: 9px 20px;
            border-radius: 6px;
            background: #1D8EAB;
            font-weight: 400;
            color: #FFF!important;
            text-decoration: none;
            text-transform: lowercase;
            border: 0!important;
        }   

            .wc-block-components-button * {
                color: #FFF!important; 
            }
        .woocommerce-tabs.wc-tabs-wrapper .tabs.wc-tabs {
            display: none;
        }
        .woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
            border-radius: 6px;
            overflow: hidden;
        }
        .woocommerce.single-product .price * {
            font-weight: 500;
        }
        .woocommerce div.product div.images .flex-control-thumbs li {
            width: calc(20% - 8.16666px);
            margin-right: 10px;
            margin-top: 10px;
        }
            .woocommerce div.product div.images .flex-control-thumbs li:nth-child(5n+5) {
                margin-right: 0;
            }
            .woocommerce div.product .woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n+1) {
                clear: none;
            }
            .woocommerce div.product .woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(5n+1) {
                clear: left;
            }

        .wp-block-woocommerce-checkout-order-summary-block {
            background: #FFF;
            border: 0;
        }
        .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-product-metadata{
            display: none;
        }
        .wc-block-components-order-summary .wc-block-components-order-summary-item__quantity {
            box-shadow: none!important;
            border: none!important;
            background: #222!important;
            color: #FFF!important;
        }
            .wc-block-components-order-summary .wc-block-components-order-summary-item__quantity *{
                color: #FFF!important;
                font-weight: 500;
            }
            .wc-block-components-totals-item.wc-block-components-totals-footer-item * {
                font-weight: 500!important;
            }

.woocommerce-message {
    border: 0;
}
    .woocommerce-message .button:hover {
        background: none!important;
    }
.woocommerce-error, .woocommerce-info, .woocommerce-message {
    background-color: #FFF;
}
    .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button {
        padding: 6px 0 0 ;
        background: none;
        font-weight: 400;
    }
.shoppingbag .amount {
    width: 25px;
    height: 45px;
    background-image: url('images/shoppingbag.svg');
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    line-height: 35px;
    padding-top: 6px;
    margin-top: -6px;
    text-align: center;
    margin-left: 10px;
    font-size: 16px;
    font-weight: 500;
}
    .woocommerce-ordering,
    .woocommerce-result-count {
        display: none;
    }

.woocommerce-product-details__short-description *,
.woocommerce-tabs.wc-tabs-wrapper ul,
.woocommerce-tabs.wc-tabs-wrapper li *,
.woocommerce-tabs.wc-tabs-wrapper p,
.woocommerce-tabs.wc-tabs-wrapper p *{
    font-weight: 300!important;
 }
/* BREADCRUMBS */

.breadcrumbs .row {
   padding: 30px 0 20px;
}

.breadcrumbs .offset-crumbs {
    margin-left: -20px;
}
.breadcrumbs * {
   font-size: 14px;
   margin: 0 5px;
}

.breadcrumbs span span {
   font-size: 14px;
   margin: 0 5px;
}
    .breadcrumbs span span {
       opacity: 0.75;
    }
    .breadcrumbs span span:hover {
       opacity: 1;
    }


.form {
    background: #f1eee7;
    border-radius: 30px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.15);
    padding: 20px 30px;
    margin-top: 40px;
}
    .form label {
        width: 100%;
        font-size: 14px;
        font-weight: 500;
    }

    .form input {
        width: 100%;
        line-height: 34px;
        padding: 10px;
        font-size: 18px;
        border: 1px solid #DDD;
        border-radius: 4px;
        margin-bottom: 10px;
    }

    .form p.disclaimer {
        width: 100%;
        margin: 10px 0 20px;
        font-size: 14px;
        line-height: 22px;
        color: #666;
    }

/* USPS */

.jumbotron {
    margin-bottom: 160px;
}
.jumbotron.has-usps {
    margin-bottom: 0;
}
.has-usps + .usps {
    background: #657345;
    padding-top: 550px;
    margin-top: -350px;
}
    .usps * {
        color: #f1eee7;
        text-align: center;
    }

    .usps .icon {
        background: #abb97d;
        border-radius: 50%;
        width: 75px;
        height: 75px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 10px auto;
    }

/* Slider */

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.quote-slider.slick-slider {
    padding-bottom: 50px;
    margin-bottom: 50px;
}
.slick-list {
    position: relative;
    overflow: visible;
    display: block;
    margin: 0;

    &:focus {
        outline: none;
    }

    &.dragging {
        cursor: pointer;
        cursor: hand;
    }
}
.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.productslide .slick-track .col-4 {
    margin-top: 40px;
}
.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;

    &:before,
    &:after {
        content: "";
        display: table;
    }

    &:after {
        clear: both;
    }

    .slick-loading & {
        visibility: hidden;
    }
        }
        .slick-slide {
            float: left;
            height: 100%;
            min-height: 1px;
            [dir="rtl"] & {
                float: right;
            }
            img {
                display: block;
            }
            &.slick-loading img {
                display: none;
            }

            display: none;

            &.dragging img {
                pointer-events: none;
            }

            .slick-initialized & {
                display: block;
            }

            .slick-loading & {
                visibility: hidden;
            }

            .slick-vertical & {
                display: block;
                height: auto;
                border: 1px solid transparent;
            }
        }
        .slick-arrow.slick-hidden {
            display: none;
        }
        .slick-arrow {
            position: absolute;
            left: 25px;
            border: 0;
            text-indent: -9999px;
            width: 50px;
            height: 50px;
            cursor: pointer;
            z-index: 500;
            bottom: -30px;
        }
            .slick-arrow.slick-disabled {
                opacity: 0.75;
                cursor: default;
            }
            .slick-arrow.slick-prev {
                 left: 60px;
             }
            .slick-arrow.slick-next {
                 left: 125px;
             }
            .slick-arrow.slick-prev,
            .slick-arrow.slick-next {
                background: url('images/arrow-next-black.svg');
                background-size: contain;
                background-repeat: no-repeat;

            }
            .slick-arrow.slick-prev {
                background-image: url('images/arrow-prev-black.svg');
            }
                .quote-slider .slick-arrow {
                    bottom: -25px;
                    left: 50%;
                    margin-left: 0px;
                }
                .quote-slider .slick-arrow.slick-prev {
                    margin-left: -65px;
                }
.slick-dots
{
    position: absolute;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
.slick-dots li
{
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-size: 40px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: .25;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .5;
    color: black;
}
 .slider{
  -webkit-transition: opacity 3000s ease-in-out;
    -moz-transition: opacity 3000s ease-in-out;
    -ms-transition: opacity 3000s ease-in-out;
    -o-transition: opacity 3000s ease-in-out;
     opacity: 1;
}

/*  GRID ITEMS */

.grid-item {
    margin-top: 20px;
    position: relative;
    padding-bottom: 20px;
}
    .grid-item a{
        text-decoration: none;
        color: inherit;
     }
    .grid-item  {
        position: relative;
        padding: 0;
        overflow: hidden;
        min-height: 500px;
        margin-bottom: 60px;
        background-size: cover;
        background-position: center center;
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }

        .grid-item h4 {
            z-index: 1;
            color: #f1eee7;
            padding: 0;
            font-size: 20px;
            margin: 0;
            font-weight: 400;
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }
        .grid-item h4::after{
            width: 10px;
            height: 10px;
            border-bottom: 2px solid #f1eee7;
            border-right: 2px solid #f1eee7;
            transform: rotate(-45deg);
            content: "";
            z-index: 0;
            display: inline-block;
            margin-left: 10px;
            transition: margin 0.2s ease-in-out;
        }
            .grid-item.product h4::before{
                display: block;
                content: "";
                width: calc(100% - 10px);
                height: 0;
                border-bottom: 1.5px solid;
                position: absolute;
                bottom: -7px;
                left: 0;
            }

            .grid-item.product:hover h4::after{
                margin-left: 15px;
                transition: margin 0.2s ease-in-out;
            }

        .grid-item:after {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 150px;
            content: "";
            z-index: 0;
            display: block;
            border-bottom-right-radius: 20px;
            border-bottom-left-radius: 20px;
            background-image: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.5));
        }

        .grid-item.story .details{
            position: absolute;
            bottom: 10px;
            z-index: 1;
            color: #f1eee7;
            width: 100%;
            padding: 20px 30px;
            font-size: 20px;
            margin: 0;
            font-weight: 400;
        }

            .grid-item.story .details p {
                margin: 0;
            }
            .grid-item.story .details p.quote,
            .grid-item.story .details p.relation{
                font-size: 0.8em;
            }
            .grid-item.story .details p.quote {
                line-height: 1.4em;
                margin: 7px 0;
            }

            .grid-item.story .details p.relation {
                margin-top: -7px;
            }
            .grid-item.story .details * {
                color: #f1eee7;
            }


.text-link {
    position: relative;
    font-weight: 500;
    text-decoration: none;
}
    .text-link::after {
        width: 10px;
        height: 10px;
        border-bottom: 2px solid ;
        border-right: 2px solid ;
        transform: rotate(-45deg);
        content: "";
        z-index: 0;
        display: inline-block;
        margin-left: 0px;
        transition: margin 0.2s ease-in-out;
    }
    .text-link:hover::after,
    .grid-item:hover .text-link::after {
        margin-left: 5px;
        transition: margin 0.2s ease-in-out;
    }
    .story .text-link {
        font-size: 0.8em;
    }

/* GALLERY  */

.gallery-main img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

    .gallery-thumbs {
        display: flex;
        gap: 32px;
    }

    .gallery-thumb-img {
        width: calc(25% - 24px);
        cursor: pointer;
        opacity: 0.75;
        transition: opacity .2s;
        border-radius: 10px;
    }

    .gallery-thumb-img:hover {
        opacity: 1;
    }

    .gallery-thumb-img.active-thumb {
        opacity: 1;
    }


/* ACCORDION */

h2.acc_item {
    border-top: 1px solid #4b6142;
    font-size: 1em;
    color: #4b6142;
    padding: 0 40px 0 0;
    margin: 0;
    line-height: 60px;
    position: relative;
}
    h2.acc_item::after {
        width: 10px;
        height: 10px;
        border-bottom: 2px solid #4b6142;
        border-right: 2px solid #4b6142;
        transform: rotate(-45deg);
        content: "";
        z-index: 0;
        display: block;
        margin-left: 10px;
        position: absolute;
        right: 5px;
        top: 24px;
        transition: transform 0.3s ease-in-out;
    }

        h2.acc_item.active::after {
            transform: rotate(45deg);
            transition: transform 0.3s ease-in-out;
        }


/* OVER ONS */

.advice,
.about-us {
    background: #b08f4d;
}
    .advice *,
    .about-us *{
        color: #f1eee7;
    }

/* GLOBALS RESPONSIVE */

.mobile-overflow {
    min-width: 100%;
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    margin: 0 auto;
    flex-wrap: wrap;
}
.mobile-only {
    display: none!important;
}
.text-in-columns {
    column-count: 2;
    column-gap: 50px;
}

@media (max-width: 1023px) {
    body {
        padding: 80px 0 0;
    }
    .row.main-menu .container {
        padding: 0 20px 0 0;
    }
    .mask-mark {
        width: 100vw;
        left:0;
    }
    .text-center *,
    .text-center {
        text-align: left;
    }
    .usps .text-center *,
    .usps .text-center {
        text-align: center;
    }

    .desktop-only {
        display: none!important;
    }
    .mobile-only {
        display: flex!important;
    }
    .mobile-scroll {
        overflow-x: scroll;
        overflow-y: visible;
    }
    .mobile-overflow {
        width: 1023px!important;
        min-width:  1023px;
        display: flex;
        flex-wrap: initial;
        padding-bottom: 30px;
    }
    .mobile-overflow > div {
        flex: 0 0 30%!important;
        max-width: 30%!important;
    }
    .logo svg {
        width: 140px;
        margin-left: 25px;
    }
    .container {
        max-width: 860px;
    }
    .row.main-menu .container {
        max-width: 100%;
    }

    .mobile-order-1 {
        order: -1;
    }
    .col-1,
    .col-2,
    .col-3,
    .col-4,
    .col-5,
    .col-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-7,
    .col-8,
    .col-9,
    .col-10,
    .col-11,
    .col-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .container.all-posts,
    .container.chosen-posts,
    .container.more-pages {
        padding-right: 30px;
    }
    div[class*="col-"] {
        padding: 0px 20px;
        position: relative;
    }
    .mask-mark {
        background-image: none!important;
    }
    .wp-block-pullquote p {

        font-size: 8vw;
        line-height: 125%;
    }
    .whitepaper-cover {
        transform: scale(0.75);
    }

}

@media (max-width: 767px) {
    .col-1,
    .col-2,
    .col-3,
    .col-4,
    .col-5,
    .col-6,
    .col-7,
    .col-8,
    .col-9,
    .col-10,
    .col-11,
    .col-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .home .first .row,
    .first .row {
        padding-top: 30px;
    }
    .breadcrumbs {
        display: none;
    }
    .text-in-columns {
        column-count: 1;
        column-gap: 0;
    }
    .woocommerce #content div.product div.summary, .woocommerce div.product div.summary, .woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.summary,
    .woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images {
        width: 100%;
        padding: 0;
    }
    .wc-block-product,
    .woocommerce ul.products li.product a.woocommerce-loop-product__link,
    .woocommerce ul.products li.product{
        min-height: 305px;
    }
    .wc-block-product .wp-block-post-title, .woocommerce ul.products li.product h2.woocommerce-loop-product__title {
        padding: 10px 0px!important;
        line-height: 24px!important;
    }

    .jumbotron h1,
    h1 span,
    h1 em,
    h1 {
        font-size: 35px;
        line-height: 125%;

    }
    h2{
        font-size: 30px;
        line-height: 125%;
        margin: 15px 0 10px;
    }
    h3{
        font-weight: 600;
        font-size: 26px;
        line-height: 125%;
        margin: 15px 0 5px;
    }
    .footer-menu #menu-footer.menu > li > a,
    h4{
        font-weight: 600;
        font-size: 24px;
        line-height: 125%;
        margin: 12px 0 4px;
    }
    h5 {
        font-weight: 600;
        font-size: 22px;
        line-height: 125%;
        margin: 10px 0 3px;
    }
    .footer-menu ul.menu > li {

        width: 100%;

    }
    .breadcrumbs .offset-crumbs {
        margin-left: -30px;
    }

    .logo svg {
        margin-left: 15px;
    }
}

@media (max-width: 512px) {

}


.wc-block-checkout__payment-method .wc-block-components-radio-control__label {
    display: flex!important;
}
.wc-block-components-payment-method-label{
    float: left;
}
.wc-block-components-payment-method-icons:last-child {
    float: right;
}
.wc-block-components-radio-control-accordion-content {
    padding: 0!important;
}
.wc-block-components-payment-methods__save-card-info,
.wcpay-payment-element {
    padding: 0 1em;
}
#radio-control-wc-payment-method-options-mollie_wc_gateway_creditcard__content.wc-block-components-radio-control-accordion-content,
#radio-control-wc-payment-method-options-ppcp-gateway__content.wc-block-components-radio-control-accordion-content,
.radio-control-wc-payment-method-options-ppcp-gateway__content,
.wc-block-components-payment-methods__save-card-info {
    padding: 0 1em 1em!important;

}
#radio-control-wc-payment-method-options-ppcp-gateway__content *,
.radio-control-wc-payment-method-options-ppcp-gateway__content * {
    text-align: left!important;
}
.woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2
.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1 {
    float: left;
    width: 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0;
    margin-bottom: 20px;
}
.woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2{
    float: right;
}