/*
Theme Name: SolarSteijns V4 september 2025
Author: SolarSteijns B.V.
*/
/* latin */
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  font-display: swap;
  src: url(/content/fonts/NotoSans.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+>
}

:root {
    --natural-brown: #442b0c; /* #daf3c9;*/
    --bg-green: #dff5d0;
    --bg-heavy: #113413; /*#30363b; /*rgb(33,37,41);*/
    --bg-light: #d0d0d0;
    --bg-bright: #cfe9d0; /*#c4ebc6;*/
    /*--gradient-bright: linear-gradient(0deg, #d0f9a0, var(--bg-bright));*/
    --gradient-bright: linear-gradient(0deg, #e0eecf 0%, #cfe9d0 100%);
    --theme-color-primary: #5f9322;
    --shadow-color: #c5d7af;
    --text-color-dark: #2f5b31;
    --secondary-parts-color: #2c6079;
}
body {
    padding: 0px;
    margin: 0px;
    /* font-family: 'Aller'; */
    font-family: "Noto Sans", sans-serif;
    background-color: #f9faf9;
}
/*ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
ul li {
    display: inline-block;
}*/
a, a:visited {
    color: var(--natural-brown);
}
a:hover {
    color: var(--text-color-dark);
}
.page-margin {
    margin-left: 10%;
    margin-right: 10%;
}
.page-margin-left {
    margin-left: 10%;
}
.page-margin-right {
    margin-right: 10%;
}
.page-padding {
    padding-left: 10%;
    padding-right: 10%;
}
@media screen and (max-width: 1130px) {
    .page-margin {
        margin-left: 2.8rem;
        margin-right: 2.8rem;
    }
    .page-margin-left {
        margin-left: 2.8rem;
    }
    .page-margin-right {
        margin-right: 2.8rem;
    }
    .page-padding {
        padding-left: 2.8rem;
        padding-right: 2.8rem;
    }
}
/*@media screen and (max-width: 900px) {
    .page-margin {
        margin-left: 3rem;
        margin-right: 3rem;
    }
    .page-padding {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}*/
@media screen and (max-width: 576px) {
    .page-margin {
        margin-left: 1.5rem;
        margin-right: 1.5rem;
    }
    .page-margin-left {
        margin-left: 1.5rem;
    }
    .page-margin-right {
        margin-right: 1.5rem;
    }
    .page-padding {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}




.frontpage-intro-container {
    min-height: 350px;
/*    background-image: url('/wp-content/themes/solarsteijns/img/intro-bg-crop.jpeg');*/
    background-image: url('img/ref zonnepanelen.jpg');
    background-size: cover;
    background-position: center center;
    position: relative;
}

.frontpage-intro-container-bg {
    min-height: 350px;
    background-size: cover;
    background-position: center center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: opacity 1.6s;
}

.bg-one {
    background: linear-gradient(45deg, hsl(102 26% 88% / 1), #bddbea);
}
.bg-two {
    background: var(--natural-brown);
}

.bg-heavy {
    background: var(--bg-heavy);/*rgb(33,37,41);*/
}
.bg-bright {
    background: var(--bg-bright);
}
.bg-gradient-bright {
    background: var(--gradient-bright);
}
.bg-natural-brown {
    background: var(--natural-brown);
}
.bg-parts-secondary {
    background: var(--secondary-parts-color);
}
.color-light {
    color: #fafafa;
}
.text-smaller {
    font-size: .9rem;
}
.text-white {
    color: #fff;
}

.services-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.service-tile-wrapper {
    min-width: 0;
}
.service-tile {
    min-width: 0;
    min-height: 5rem;
    font-size: 1.2rem;
    display: flex;
    flex-direction: row;
    box-shadow: 0px 0px 15px rgba(0,0,0,.5);
/*    border: 1px solid #7c9541;*/
    transition: all .3s ease-in-out;
    background: #5f9322;
    color: #fff;
    text-decoration: none;
    box-shadow: inset 0px 0px 0px 0px #5f9322, 0px 0px 15px rgba(0,0,0,.5);
}
.service-tile:hover {
    transform: translateY(-3px);
    color: #5f9322;
    box-shadow: inset 0px -150px 0px 0px #fff, 0px 0px 15px rgba(0,0,0,.5);
}
.service-tile img {
    display: block;
    margin: 0 auto;
}
.services-tile-picture {
    width: 15%;
    min-width: 5rem;
}
.services-tile-content {
    display: flex;
    align-items: center;
    flex: 1;
    padding: 1rem;
}
.services-tile-content h2 {
    color: inherit;
    font-size: 1.2rem;
    padding: 0;
    margin: 0 0 0 1rem;
}
.services-tile-content h2::after {
    transform: skewX(-45deg) scaleX(0);
    transform-origin: left center;
    content: '';
    display: block;
    height: 4px;
    margin-bottom: -4px;
    margin-top: 2px;
    background: #5f9322;
    transition: all .4s;
}
.service-tile:hover .services-tile-content h2::after {
    transform: skewX(-45deg) scaleX(1);
}
@media screen and (max-width: 1000px) 
{
    .services-tile-content {
        padding-left: .1rem;
    }
}
@media screen and (max-width: 840px) 
{
    .services-tile-content {
        padding-left: 1rem;
    }
    .services-tile-content h2 {
        font-size: 1rem;
        margin: 0;
    }
}
@media screen and (max-width: 768px)
{
    .services-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
/*        margin: 0;*/
    }
    .service-tile {
        min-height: 4rem;
    }
    .services-tile-content {
        padding-left: 1rem;
    }
    .services-tile-content h2 {
        color: inherit;
        font-size: 1rem;
        padding: 0;
        margin: 0;
    }
}
@media screen and (max-width: 576px)
{
    .services-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 3px;
/*        margin: 0 5px;*/
    }
    .service-tile {
        min-height: 3rem;
        transition: none;
    }
    .service-tile, .service-tile:hover {
        box-shadow: none;
        transform: none;
        color: #fff;
        margin: 0;
    }
    .services-tile-content {
        padding: .5rem;
    }
    .services-tile-content h2 {
        color: inherit;
        font-size: 1rem;
        padding: 0;
        margin: 0 0 0 .5rem;
    }
    .services-tile-picture {
        display: none;
    }
}
.services-tile-picture {
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
}
.services-tile-picture.services-tile-picture-solarpanels {
    background: url('img/solarpanels-deco.png');
    background-position: center center;
    background-size: cover;
}
.services-tile-picture.services-tile-picture-airco {
    background: url('img/airco-deco-2.png');
    background-position: center center;
    background-size: cover;
}
.services-tile-picture.services-tile-picture-heatpump {
    background: url('img/heatpump-deco.png');
    background-position: center center;
    background-size: cover;
}
.services-tile-picture.services-tile-picture-homebattery {
    background: url('img/homebattery-deco.png');
    background-position: center center;
    background-size: cover;
}
.services-tile-picture.services-tile-picture-carcharger {
    background: url('img/carcharger-deco.png');
    background-position: center center;
    background-size: cover;
}
.services-tile-picture.services-tile-picture-fusebox {
    background: url('img/fusebox-deco.png');
    background-position: center center;
    background-size: cover;
}

.cutoff-effect-wrapper {
    position: relative;
    overflow: hidden;
}

.cutoff-effect-seam {
}

.cutoff-effect-svg {
    position: absolute;
    top: auto;
    bottom: -1px;
    transform: rotateX(0deg) rotateY(0deg);
    width: 100%;
    height: 100px;
}

.site-footer {
    background: #222;
    background: linear-gradient(290deg, #232331 0%, #222 50%, #282828 50%, #282828 100%);
    color: #f0f0f0;
    padding: 10px;
}
.site-footer a {
    color: #fff;
    text-decoration: none;
}
.site-footer a:hover {
    color: #fff;
    text-decoration: underline;
}
.footer-content-secondary {
    font-size: .9rem;
    color: #d0d0d0;
}
a.footer-link-secondary {
    text-decoration: none;
    color: #d0d0d0;
}

.footer-link-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    column-gap: .5rem;
}

h1, h2, h3, h4, h5, h6 {
    color: #48790f; /*#126a12;*/
}

.benefit-grid {
    line-height: 1.1rem;
}

.benefit {
    display: flex;
    flex-direction: row;
}
.benefit-icon {
    
}
.benefit-content {
    flex: 1;
    margin-left: 1rem;
}

.checkmark-list, .themed-list {
    padding: 0;
    margin: 1rem 0;
}
.checkmark-list li, .themed-list li {
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: .3rem;
}
.checkmark-list li::last-child {
    margin-bottom: 0;
}
.checkmark-list li span {
    display: block;
    flex: 1;
}
.checkmark-list li::before {
    content: '';
    width: 1rem;
    height: 1rem;
    display: inline-block;
    vertical-align: middle;
    background-image: url('img/check.svg');
    background-size: 100%;
    background-repeat: no-repeat;
    margin-top: .3rem;
    margin-right: 1rem;
}

.themed-list li::before {
    content: '';
    width: .8rem;
    height: .8rem;
    display: inline-block;
    vertical-align: middle;
    background-color: #008000;
    margin-top: .3rem;
    margin-right: 1rem;
    transform: skewX(-10deg);
}

.styled-list {
    list-style: square;
}
.styled-list li {
    display: list-item;
}
.styled-list li::marker {
  color: var(--theme-color-primary);
}

.sweep-effect-svg {
    position: absolute;
    left: 0;
    bottom: -2px;
    right: 0;
}


.cta-lead-widget {
    padding: 1.5rem 0;
    background: #f8f8f8;
    box-shadow: 0px 0px 2rem rgba(0,0,0,.30);
    border-radius: .25rem;
    margin-top: 2rem;
}
.cta-lead-widget label {
    font-size: .9rem;
}




.news-section {
    padding-top: 30px;
}
.news-scope {
    overflow: hidden;
}
.news-scroll-wrapper {
    position: relative;
    margin-left: calc(10% - 1.5rem);
    margin-right: 10%;
}
.news-scroll {
    overflow: hidden;
}
/*.news-container {
    display: inline-flex;
    padding: 1.5rem;
}*/

.news-container .news-item {
    min-width: 300px;
    max-width: 300px;
    min-height: 120px;
    background: #5f9322;
    /*box-shadow: 0px 0px 10px rgba(0,0,0,.30);*/
    box-shadow: 12px 12px 0px #c5d7af; /*rgb(207, 255, 150);*/
    cursor: pointer;
    display: flex;
    overflow: hidden;
}
.news-container .news-item + .news-item {
    margin-left: 1.5rem;
}
.news-container .news-item a {
    text-decoration: none;
}
.news-container .news-item h3 {
    min-height: 65px;
    font-size: 1.2rem;
    color: #fff;
    flex: 1;
    box-shadow: inset 0px 0px 0px transparent;
    transition: box-shadow .4s;
}
.news-article-image-container {
    height: 150px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.news-article-image-container img {
    width: 100%;
    transition: transform .2s ease-in;
    flex: 1;
}
.news-container .news-item:hover .news-article-image-container img {
    transform: scale(1.1);
    transform-origin: center center;
}
.news-container .news-item:hover h3 {
    box-shadow: inset 0px -100px 0px #fff;
    transition: box-shadow .5s;
    color: #5f9322;
}

.news-scroll-btn-container-left {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    display: flex;
    align-items: center;
}
.news-scroll-btn-container-right {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    display: flex;
    align-items: center;
}
.h-scroll-btn {
    width: 2rem;
    height: 4rem;
    border: none;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 1.5rem;
    background-color: transparent;
}
.news-scroll-btn-left {
    background-image: url('img/arrow-triangle-left.svg');
    position: relative;
    left: -2rem;
}
.news-scroll-btn-right {
    background-image: url('img/arrow-triangle-right.svg');
    position: relative;
    left: 3rem;
}

@media screen and (max-width: 768px) 
{
    .news-scroll-wrapper {
        margin-left: 1.5rem;
        margin-right: 3rem;
    }
    .news-scroll {
        overflow: hidden;
    }
    .news-container .news-item {
        min-width: 250px;
        max-width: 250px;
    }
}
@media screen and (max-width: 576px)
{
    .news-scroll-wrapper {
        margin-left: 0;
        margin-right: 0;
    }
    .news-scroll {
        overflow-x: auto;
    }
}


.services-section {
    background-color: #fff; /*#e0eecf;*/
    /*
    background: linear-gradient(150deg, hsl(89 48% 90% / 1) 0%, hsl(88 47% 90% / 1) 42%, hsl(88deg 62% 37% / 30%) 42%, hsl(88deg 62% 38% / 70%) 100%);
    */
    
}
.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.product-box {
    min-width: 0;
    box-shadow: 12px 12px 0px rgba(0,0,0,.1);
    padding: 1rem;
    box-sizing: border-box;
    background: #fff;
}
@media screen and (max-width: 840px) 
{
    .products-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .product-grid h3 {
        font-size: 1.5rem;
    }
}


.products-layout {
/*    display: grid;
    grid-template-columns: 25% 1fr;*/
}
.products-content {
}
.product-row {
    
}
.product-row.odd {
}
.product-row.even {
    background: #f2f9ff;
}
.product-row-inner {
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.product-row-inner.odd {
    flex-direction: row-reverse;
}
.products-tabs-main-content {
    flex: 1;
}
.products-tabs-deco-content {
}
.products-tabs-deco-img-right {
    box-shadow: -1rem 1rem 0px #e1ffbd;
}
.products-tabs-deco-img-left {
    box-shadow: 1rem 1rem 0px #e1ffbd;
}

@media screen and (max-width: 576px)
{
    .product-row-inner {
        display: block;
    }
}


.advice-section {
    /*background: #c5d7af;*/
    
}
.advice-section-inner {
    background: hsl(61.44deg 59% 80%);
}

.recent-projects-section {
    background: linear-gradient(-45deg, #8BC34A 40%, hsl(88 42% 37% / 1) 40%);
    color: #fff;
}

.reviews-section {
/*    background: linear-gradient(-45deg, #efefef 40%, #dbffb2 40%);*/
/*background: linear-gradient(-45deg, #efefef 40%, #d0e1bb 40%);*/
/*background: linear-gradient(-45deg, #efefef 40%, #e0edd1 40%);*/
background: linear-gradient(-45deg, #a0b786 40%, #e0edd1 40%);
}
.reviews-scope {
    overflow-x: scroll;
}
.reviews-container {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
}
.review-block {
    width: 200px;
    min-width: 200px;
    color: #444;
    font-style: italic;
    background: #fff;
    box-shadow: 0px 0px 10px rgba(0,0,0,.30);
    padding: 1rem;
}
.company-rating-score {
    font-size: 1.4rem;
    color: #7a6a14;
}
.review-source-img-big {
    width: 1.5rem;
    height: 1.5rem;
}
.theme-shadow-1 {
    box-shadow: 12px 12px 0px #c5d7af;
}
.bg-white {
    background-color: #fff;
}
.max-width-100 {
    max-width: 100%;
}
.crumbs {
    font-size: 1rem;
}
@media screen and (max-width: 576px)
{
    .crumbs {
        font-size: .9rem;
    }
}
.crumbs a {
    display: inline-block;
    text-decoration: none;
    vertical-align: middle;
    color: var(--theme-color-primary);
    font-size: inherit;
}
.crumbs a:hover {
    text-decoration: underline;
    color: var(--theme-color-primary);
}
.crumbs .crumb-delimiter {
    display: inline-block;
    margin: 0 .5rem;
    vertical-align: middle;
}

.more-news {
    padding-bottom: 4rem;
}
.more-news h2 {
    color: var(--natural-brown);
}
.more-news a {
    color: var(--theme-color-primary);
    text-decoration: none;
}
.more-news a:hover {
    text-decoration: underline;
}

.list-purpose {
    padding: 0;
}
.list-purpose li {
    display: block;
}
.list-purpose li .list-purpose-marker {
    content: '';
    width: .9rem;
    height: .5rem;
    margin-right: 1rem;
    background: var(--theme-color-primary);
    display: inline-block;
    vertical-align: middle;
    transform: skew(-45deg);
}
.company-info {
    /*background: var(--theme-color-primary);*/
    background: linear-gradient(100deg, rgba(95,147,34,1) 0%, rgba(95,147,34,1) 80%, rgba(82,130,26,1) 80.0001%, rgba(82,130,26,1) 100%);
    padding: 1rem;
    color: #fff;
}
.company-contact { 
}
.company-address {
    display: block;
}
.company-name {
    font-weight: bold;
}

.product-selection-grid {
    grid-template-columns: max-content max-content;
/*    background: #e6eedd;*/
    padding-top: .5rem;
    padding-bottom: .5rem;
}
.product-selection-grid label {
    display: block;
    padding: 0 .8rem 0 0;
}

.text-color-dark {
    color: var(--text-color-dark);
}

/* Checkbox */

.styled-checkbox {
    appearance: none;
    width: 1rem;
    height: 1rem;
    border: 1px solid var(--theme-color-primary);
    position: relative;
    top: 2px;
    vertical-align: baseline;
    background: var(--shadow-color);
    border-radius: 3px;
}
.styled-checkbox:checked {
    background: var(--theme-color-primary);
}
.styled-checkbox:hover {
    background: #e1ead6;
}
.styled-checkbox:checked:before {
    content: '';
    position: absolute;
    left: 0.3rem;
    top: 0;
    width: .3rem;
    height: .7rem;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.styled-checkbox:checked:hover {
    background: #2f5b31;
    border-color: #2f5b31;
}
.styled-checkbox.bigger {
    width: 1.2rem;
    height: 1.2rem;
    top: 3px;
}
.styled-checkbox.bigger:checked:before {
    left: 0.35rem;
    top: 0;
    width: .36rem;
    height: .84rem;
}

/* End of Checkbox */

/* Radio button */

.styled-radio {
    appearance: none;
    width: 1rem;
    height: 1rem;
    border: 1px solid var(--theme-color-primary);
    border-radius: 100%;
    position: relative;
    top: 2px;
    vertical-align: baseline;
    background: var(--shadow-color);
}
.styled-radio:checked {
    background: var(--theme-color-primary);
}
.styled-radio:hover {
    background: #e1ead6;
}
.styled-radio:checked:before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 100%;
}
.styled-radio:checked:hover {
    background: #2f5b31;
    border-color: #2f5b31;
}
.styled-radio.bigger {
    width: 1.2rem;
    height: 1.2rem;
    top: 3px;
}
.styled-radio.bigger:checked:before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    background: #fff;
    border-radius: 100%;
}

/* End of radio button */

.brands-list {
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}
.brands-list li {
    margin-right: 3rem;
    scroll-snap-align: start;
    list-style-type: none;
}
.brands-list img {
    filter: grayscale(1.0);
    transition: filter .2s;
}
.brands-list img:hover {
    filter: grayscale(0.0);
}

.container-cutoff {
    position: relative;
}
.container-cutoff-content {
    background: #58acfa;
}
.container-cutoff-svg {
    --svg-path-fill: #58acfa;
}

.container-clipped-cutoff {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 65px));
}
.container-clipped-cutoff-corner {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 65px), 70% 100%, 0 calc(100% - 65px));
}
.container-clipped-cutoff-content {
    padding-bottom: 65px;
}

.project-deco-bg {
    --paper-color: #e5e5f7;
    --lines-color: #d0d0d0;
    background-color: var(--paper-color);
    opacity: 0.8;
    background-image: linear-gradient(var(--lines-color) 2px, transparent 2px), 
        linear-gradient(90deg, var(--lines-color) 2px, transparent 2px), 
        linear-gradient(var(--lines-color) 1px, transparent 1px), 
        linear-gradient(90deg, var(--lines-color) 1px, var(--paper-color) 1px);
    background-size: 50px 50px, 50px 50px, 10px 10px, 10px 10px;
    background-position: -2px -2px, -2px -2px, -1px -1px, -1px -1px;
}

.project-details-tile {
    background: var(--theme-color-primary);
    color: #fff;
}

.project-cta {
    border: 1px solid var(--theme-color-primary);
    color: --theme-color-primary;
}

.list-square {
    list-style: square;
    color: inherit;
    padding-left: 1rem;
}
.list-square li {
    display: list-item;
    list-style-type: square;
}

.color-inherit, a.color-inherit {
    color: inherit;
}

.text-1rem {
    font-size: 1rem;
}
.text-1-2rem {
    font-size: 1.2rem;
}
.text-theme-color {
    color: var(--theme-color-primary);
}

.faq-expander-icon-wrapper {
    min-width: 2rem;
}
.faq-expander-icon {
    width: 1rem;
}
.faq-expander-content {
    padding-left: 2rem;
}

.checkmark-item {
    display: flex;
    align-items: flex-start;
}
.checkmark-item-icon {
    width: 1rem;
    height: 1rem;
    margin-top: .3rem;
    display: inline-block;
    vertical-align: middle;
    background-image: url('img/check.svg');
    background-size: 100%;
    background-repeat: no-repeat;
}
.checkmark-item-content {
    flex: 1;
    margin-left: .8rem;
}
.cta-part {
    background: linear-gradient(-70deg, #efefef 40%, #e0edd1 40%);
}

.wrapper-for-expandable {
}
.wrapper-for-expandable .the-expandable {
    overflow: hidden;
    max-height: 0px;
    transform: scaleY(0);
    transform-origin: center top;
    transition: transform .3s, max-height .3s;
}
.wrapper-for-expandable.expanded-state .the-expandable {
    max-height: 1000px;
    transform: scaleY(1);
    transform-origin: center top;
}
.activates-expandable {
    cursor: pointer;
}
.wrapper-for-expandable .icon-for-expandable {
    transform: rotate(0deg);
    transform-origin: center center;
    transition: transform .3s;
}
.wrapper-for-expandable.expanded-state .icon-for-expandable {
    transform: rotate(180deg);
}

/* News archive */

.news-archive-wrapper {
    grid-template-columns: 1fr 1fr; 
    column-gap: 2rem;
}
.article-archive-item {
    margin-bottom: 3rem;
}
.article-featured-image-as-bg {
    min-height: 10rem;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.article-archive-title-link {
    color: inherit;
    text-decoration: none;
}
.article-archive-title-link:hover {
    color: inherit;
    text-decoration: underline;
}

/* END OF News Archive */

.main-title {
    margin-bottom: 2rem;
}
.text-underline-effect::after {
    transform: skewX(-45deg) scaleX(0);
    transform-origin: left center;
    content: '';
    display: block;
    height: 4px;
    margin-bottom: -4px;
    margin-top: .5rem;
    background: #5f9322;
    animation: text-underline-effect-keyframes 1.3s ease .1s 1;
    animation-fill-mode: forwards;
}
@keyframes text-underline-effect-keyframes {
    0% { transform: skewX(-45deg) scaleX(0); }
    100% { transform: skewX(-45deg) scaleX(1); }
}

@media screen and (min-width: 768px)
{
    .form-wrapper-design {
        background: #fff;
        border: 1px solid var(--theme-color-primary);
        padding: 1rem;
    }
}
.form-wrapper-design label {
    color: var(--text-color-dark);
}

.field-required-mark {
    color: #a30909;
    font-weight: bold;
}
.flex-1 {
    flex: 1;
}

.contact-action-link {
    color: var(--text-color-dark);
    font-weight: bold;
    border-radius: .2rem;
    background: #fff;
}

.form-field-error {
    color: #c12020;
    font-size: .9rem;
}

.form-input-hidden {
    width: 0px;
    height: 0px;
    display: none;
    opacity: 0;
}

.paging-container .page-numbers {
    display: inline-block;
    padding: .8rem 1.2rem;
    background: var(--shadow-color);
    text-decoration: none;
}
.paging-container .page-numbers:hover {
    background: var(--theme-color-primary);
    color: #fff;
}
.paging-container .page-numbers.current, .paging-container .page-numbers.current:hover {
    background: #d0d0d0;
    color: inherit;
}

.faq-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}
.faq-category-tile {
    background: #e1f5ca;
}
.faq-category-tile h2 {
    font-size: 1.5rem;
}
.faq-category-tile a {
    text-decoration: none;
}
.faq-category-tile a:hover {
    text-decoration: underline;
}

.anchor-elem {
    /* When scrolling to it automatically (navigation based on window hash),
     this property adds space to the scrolled offset. This solves the problem 
     that the fixed site header covers the scrolled-to element. */
    scroll-margin-top: 100px; 
}

.link-emphasized {
    color: var(--theme-color-primary);
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
}
.link-emphasized:hover, .link-emphasized:active {
    text-decoration: underline;
}

/*
 * -----------------------------------------------------------------------
 * Button theme style (btn.css)
 */
.btn-theme, .btn-theme:visited {
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    background: #5f9322;
    color: #fff;
    text-decoration: none;
    padding: .5rem .8rem;
    position: relative;
    border-radius: .2rem;
    transition: all .3s ease-in-out;
}
.btn-theme::before {
    content: '';
    display: block;
    width: 100px;
    height: 100%;
    background-color: #406317; /*#085d03;*/
    transform: skewX(-10deg);
    position: absolute;
    top: 0;
    right: -4rem;
    z-index: 1;
    transition: all .3s ease-in-out;
}
.btn-theme:hover::before {
    width: 150%;
}
.btn-theme:hover {
    color: #fff;
}
.btn-theme:hover .btn-ico-arrow {
    animation: btn-arrow-bounce-right .4s ease-in-out;
}
@keyframes btn-arrow-bounce-right {
    0% { left: 0rem; }
    50% { left: .3rem; }
    100% { left: 0rem; }
}
.btn-theme-inner {
    position: relative;
    z-index: 3;
}
.btn-ico-arrow {
    width: 1rem;
    height: 1rem;
    display: inline-block;
    vertical-align: middle;
    background-image: url('img/arrow-right.svg');
    background-repeat: no-repeat;
    background-size: 100%;
    margin: 0 0 0 .6rem;
    position: relative;
}

.btn-theme.secondary {
    background-color: #2c6079;
}
.btn-theme.secondary::before {
    background-color: #184459;
}

.btn-theme:active {
    transform: scale(.98);
}





/*
 * ------------------------------------------------------------------------
 * Header (header.css))
 */

#site-header-wrap {
    min-height: 115px;
}
.site-header {
	position: fixed;
	top: 0;
   left: 0;
   right: 0;
	z-index: 9999;
}
.site-header-all-wrapper {
	position: relative;
	z-index: 2;
}
.site-header-top {
    max-height: 3rem;
	color: #fff;
	font-size: .9rem;
   transition: max-height .2s;
}
.site-header.compact .site-header-top {
/*	display: none;*/
    max-height: 0;
    overflow: hidden;
}
.site-header-top a {
	color: inherit;
	text-decoration: none;
}
.site-header-top a:hover span {
	text-decoration: underline;
}
.site-header-top-inner {
}
.site-header-top-ul {
	list-style: none;
	list-style-type: none;
	justify-content: flex-end;
}
.site-header-top-ul li {
	list-style: none;
	list-style-type: none;
	display: inline-block;
}
.site-header-top-ul li a {
	color: inherit;
	text-decoration: none;
	padding: .35rem 0 .35rem 0;
}
.site-header-top-ul li a:hover span {
	text-decoration: underline;
}
.site-header-contact-icon {
}
.site-header-languages a {
	padding: .35rem 0 .35rem 0;
}

.site-header-main {
	background: #fff;
}
.site-header.compact .site-header-main {
	backdrop-filter: blur(5px);
	background: rgba(255, 255, 255, .8);
	box-shadow: 0px 0px 10px rgba(0,0,0,.20);
}
.site-header-main-inner {
	
}
.logo-wrapper {
}
.logo-img {
	width: 120px;
	height: 55px;
   transition: width .1s, height .2s;
}
.site-header.compact .logo-img {
	width: 108px;
	height: 50px;
}
.main-menu-nav-big {
	margin-left: 2.5rem;
}
@media screen and (max-width: 1130px)
{
    .main-menu-nav-big {
        margin-left: 1.5rem;
    }
}
.main-menu-nav-big * {
    vertical-align: middle;
}
.main-menu-nav-big .nav-big-main-item {
	display: inline-block;
}
.main-menu-nav-big .main-nav-main-a {
	font-size: 1.1rem;
	padding: .5rem 1rem;
	margin-right: .2rem;
	border-radius: .25rem;
   color: #222;
	text-decoration: none;
	display: block;
}
.main-menu-nav-big .drop-item .main-nav-main-a {
    border-radius: .25rem .25rem 0 0;
}
@media screen and (max-width: 1130px)
{
    .main-menu-nav-big .main-nav-main-a {
        font-size: 1rem;
        padding: .4rem;
        margin-right: .8rem;
    }
}
.main-menu-nav-big .main-nav-main-a:hover, .drop-item:hover .main-nav-main-a {
	background: #f0f0f0;
}
.drop-item:hover .main-menu-sub {
    display: block;
}
.main-menu-nav-big .main-menu-sub {
    display: none;
    min-width: 250px;
    position: absolute;
    top: 100%;
    left: 0;
    right: -1rem;
    background: #f0f0f0;;
    box-shadow: .5rem .5rem 0px rgba(0,0,0,.2);
}
.main-menu-nav-big .main-menu-sub li {
    display: block;
    position: sticky;
    z-index:10;
/*    padding: .2rem;*/
}
.main-menu-nav-big .main-menu-sub li a {
    padding: .5rem 1rem;
    font-size: 1.1rem;
    display: block;
    text-decoration: none;
    color: inherit;
    background: #f0f0f0;
/*    border-radius: .25rem;*/
    transition: background .1s;
}
.main-menu-nav-big .main-menu-sub li a:hover {
    background: var(--theme-color-primary);
    color: #fff;
}
@media screen and (max-width: 1130px)
{
    .main-menu-nav-big .main-menu-sub li a {
        font-size: 1rem;
    }
}

@media screen and (max-width: 576px) 
{
	.site-header-top-ul {
		justify-content: flex-start;
	}
	.hide-small-screen {
		display: none;
	}
}


/* Main menu toggler */

.main-menu-toggle {
    width: 36px;
    height: 40px;
    display: inline-block;
}
.nav-icon {
}
.nav-icon div, .nav-icon::before, .nav-icon::after {
    display: block;
    content: '';
    height: 4px;
    position: relative;
    margin: 7px 0;
    background: #596b30;
    transition: all .3s ease-in-out;
}
.main-menu-toggle {
    border: none;
    background: none;
    font-size: inherit;
    font-family: inherit;
    padding: 0;
    margin: 0;
}
.main-menu-toggle.open .nav-icon::before {
    transform-origin: center center;
    transform: translateY(11px) rotate(135deg);
}
.main-menu-toggle.open .nav-icon::after {
    transform-origin: center center;
    transform: translateY(-11px) rotate(-135deg);
}
.main-menu-toggle.open .nav-icon div {
    transform: scale(0);
}

/* End of main menu toggler */

.site-header-overlay {
	width: 100%;
	height: 100vh;
	position: fixed;
	/*
	top: 5rem;
	left: 0;
	right: 0;
	bottom: 0;
	*/
	top: 5rem;
	left: -100%;
	background: rgba(0,0,0,.30);
	z-index: 1;
	opacity: 0;
	transition: left .01s ease .5s, opacity .2s ease .3s;
}
.site-header-drawer {
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: -100%;
	background: #5f9322;
	color: #fff;
	transition: left .2s;
	transition-delay: .1s;
	overflow: auto;
}
.site-header-drawer-content {
	padding-top: 10rem;
	padding-bottom: 5rem;
	opacity: 0;
	transform: translateX(-3rem);
	transition: transform .2s ease, opacity .4s ease;
	transition-delay: .3s;
}

.site-header.open .site-header-overlay {
	top: 5rem;
	left: 0;
	opacity: 1;
	transition: left .01s ease 0s, opacity .3s ease 0s;
}
.site-header.open .site-header-drawer {
	left: 0;
}
.site-header.open .site-header-drawer-content {
	transform: translateX(0rem);
	opacity: 1;
}
.site-header .quotation-btn {
    font-size: 1.1rem;
}
@media screen and (max-width: 1130px)
{
    .site-header .quotation-btn {
        font-size: .95rem;
    }
}

.site-header-drawer a {
    font-size: 1.2rem;
    color: #fff;
    display: block;
    padding: .5rem;
    text-decoration: none;
}
.site-header-drawer a:hover, .site-header-drawer a:active {
    color: var(--natural-brown);
}
.expandable-item-indicator-wrap svg {
    width: 2rem;
    height: 2rem;
}
.expandable-item.open .expandable-item-a .expandable-item-indicator-wrap {
    transform: scaleY(-100%);
}
.expandable-item-content {
    overflow: hidden;
    max-height: 0px;
    transition: max-height .2s;
}
.expandable-item.open .expandable-item-content {
    max-height: 1000px;
}
.header-drawer-expandable {
    /* No style. This class is for javascript to identify open/closable menu items */
}




/*
 * -------------------------------------------------------------------------
 * Reviews (reviews.css)
 */

.conveyor-item.review-conveyor-item {
    width: calc(33.3% - 8px);
    max-width: 95%;
    min-width: 250px;
}
.review-top {
    display: flex;
}
.review-rating-wrapper {
}
.star-rating-icon-svg {
    width: 1.1rem;
    height: 1.1rem;
}
.review-origin-wrapper {
    
}
.review-source-img {
    width: 1.1rem;
    height: 1.1rem;
    vertical-align: middle;
}
.review-content {
    color: #444;
}
.review-content-text.truncated {
    display: inline;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}





/*
 * -----------------------------------------------------------------------
 * Simple carousel (simple-carousel.css)
 */

/* Class names like .carousel-... were alrady taken by Bootstrap CSS. 
    Used term "conveyor" in stead of "carousel"...
*/
.conveyor-list {
    display: flex;

    /*    padding: 16px;*/
    padding: 1rem 0;
    
    list-style: none;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.conveyor-list.gap-8px {
    gap: 8px;
}
.conveyor-list::-webkit-scrollbar {
    display: none;
}
.conveyor-item {
    flex-shrink: 0;
    width: 33.3%;
    min-width: 200px;
/*    height: 150px;*/
    background-color: #FFF;
    scroll-snap-align: center;
}
.conveyor-content {
    height: 100%;
}
.conveyor-list-wrapper {
  position: relative;
  padding: 0 .5rem;
}
.conveyor-button {
    width: 2rem;
    height: 4rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 1.5rem;
    background-color: transparent;
}
.conveyor-button-previous {
  left: -1.5rem;
  background-image: url('img/arrow-triangle-left.svg');
}
.conveyor-button-next {
  right: -1.5rem;
  background-image: url('img/arrow-triangle-right.svg');  
}

.conveyor-button-previous.white {
    left: -1.5rem;
    background-image: url('img/arrow-triangle-left-white.svg');
}
.conveyor-button-next.white {
  right: -1.5rem;
  background-image: url('img/arrow-triangle-right-white.svg');  
}




.crumbs > .current {
  vertical-align: middle;
}
        .footer-link-list a {
                color: #fff;
                text-decoration: none;
        }
        .footer-link-list a:hover {
                text-decoration: underline;
        }
