@font-face {
    font-family: "JosefinSans";
    src: url("../fonts/josefin-sans/JosefinSans-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "JosefinSans";
    src: url("../fonts/josefin-sans/JosefinSans-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

/** COLORS */
.color-red {color: #ef5758 !important;}
.color-darkgreen {color: #004543 !important}
.color-lightgreen {color: #6ac290 !important}
.color-white {color: #FFF !important;}
.color-orange {color: #faac2a !important;}
.color-lightpurple {color: #c1a9d0 !important;}
.color-black{ color: #000000 !important;}

html, body {
    min-height: 100vh;
}

h1 {
    font-size: 3.1rem;
    font-weight: 900;
}
h2 {
    font-size: 2.5rem;
    font-weight: 700;
}
h6 {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    font-weight: 700;
}

/** BUTTONS */
a.button {}
a.button.big {
    display: inline-block;  
    padding: 18px 18px;
    border-radius: 100px;
    font-size: 0.9rem;
    color: #FFF;
    text-transform: uppercase;
    background-color: #ef5758;
    text-decoration: none;
    box-shadow: 0px 12px 18px -6px rgba(0,0,0,0.3);
    transform: scale(1);
    transition: all 0.3s ease;
}
a.button.big:hover {
    cursor: pointer;
    transform: scale(1.1) perspective(1px)
}
a.button.lightgreen {background-color: #6ac290;}
a.button.lightpurple {background-color: #c1a9d0;}
a.button.darkgreen {background-color: #004543FF;}

/** MISC */
.disable-mouse-select {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}
.clickable:hover {
    cursor: pointer;
    color: #ef5758;
}

html, body {
    width: 100%;
    font-family: JosefinSans, serif;
}
.container {
    position: relative;
    width: inherit;
}

#wrapper-header {
    position: fixed;
    width: 100%;
    z-index: 8000;
    top: 0;
    -webkit-transition: all 0.5s ease;
}

#wrapper-header .logo {}
#wrapper-header .logo img {
    max-width: 120px;
    -webkit-transition: all 0.5s ease;
}
#wrapper-header .items {
    position: relative;
    font-family: JosefinSans, serif;
    font-weight: 700;
    font-size: 1rem;
    color: #004543;
}
#wrapper-header .items .item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
}
#wrapper-header .items .item:not(:first-child) {margin-left: 10px;}
#wrapper-header .items .item .submenu {
    max-height: 0;
    overflow: hidden;
    position: absolute;
    min-width: 230px;
    max-width: 230px;
    left: 0;
    top: 25px;
}
#wrapper-header .items .item .submenu ul {
    margin-top: 15px;
    border-top: solid 3px #004543;
    background-color: #FFF;
    list-style-type: none;
    padding: 20px 30px;
}
#wrapper-header .items .item .submenu ul li {text-transform: uppercase;}
#wrapper-header .items .item .submenu ul li:not(:last-child) {margin-bottom: 10px;}
#wrapper-header .items .item a {
    text-decoration: none;
    color: #004543;
}
#wrapper-header .items .item:hover .submenu {
    max-height: 1000px;
}
#wrapper-header .items .item:hover a.category-title {color: #ef5758;}
#wrapper-header .items .item a:hover{color: #ef5758;}

#wrapper-header.tiny {
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-transition: all 0.5s ease;
    -webkit-box-shadow: 0px 6px 13px -6px rgba(0, 0, 0, 0.27);
    box-shadow: 0px 6px 13px -6px rgba(0, 0, 0, 0.27);
}
#wrapper-header.tiny .logo img {
    max-width: 50px;
    -webkit-transition: all 0.5s ease;
}

/** Mobile header */
#wrapper-header #burger-menu-button {}
#wrapper-header #mobile-menu-wrapper {
    max-height: 0;
    background-color: #FFF;
    color: #004543;
    min-width: 100px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 600;
    -webkit-transition: all 0.3s ease;
    height: auto;
}
#i_mobile_menu_toggle:checked + #mobile-menu-wrapper {
    max-height: 300px;
    overflow: scroll;
}
#wrapper-header #mobile-menu-wrapper ul {
    list-style: none;
    padding-left: 0;
}
#wrapper-header #mobile-menu-wrapper li {
    padding-top: 10px;
    padding-bottom: 10px;
}
#wrapper-header #mobile-menu-wrapper li:last-child {padding-bottom:0}
#wrapper-header #mobile-menu-wrapper ul.submenu li {padding-left: 40px;}
#wrapper-header #mobile-menu-wrapper ul.submenu li:not(:last-child) {border-bottom: solid 1px #eae9e9;}
#wrapper-header #mobile-menu-wrapper li.menu-category a{
    display: block;
    padding: 10px;
    width: 100%;
    background-color: rgba(0,0,0,.03);
    color: #004543;
    text-decoration: none;
}

#wrapper-footer{
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #004543;
    color: #FFF;
}

.section {
    position: relative;
    z-index: 1000;
    width: 100%;
    min-height: 1000px;
    text-align: left;
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    align-content: space-between;
}
.section.auto-height {
    min-height: auto;
}
.section.background {
    background-size: cover;
    background-repeat: no-repeat;
}
.section.bg-gradient-green-white {background-image: radial-gradient(circle at top right,rgba(255,255,255,0) 20%,#6ac290 100%) !important;}
.section.bg-gradient-white-green {background-image: radial-gradient(circle at top right,#6ac290 40%,rgba(255,255,255,0) 100%) !important;}
.section.bg-gradient-red-white {background-image: radial-gradient(circle at bottom left,rgba(255,255,255,0) 20%,#ef5758 100%) !important;}
.section .container {
    height: inherit;
}
.section .container.with-top-divider {
    margin-top: 50px;
}
.section .container .box-content {
    padding: 80px;
}
@media (max-width: 768px) {
    .section .container .box-content {
        padding: 20px;
    }
}

.section .container .box-content.shadowed {
    border-radius: 80px;
    box-shadow: 0px 12px 18px -6px rgba(0,0,0,0.09);
}
.section .container .box-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
}
.section .container .box-content h6 {
    color: #faac2a;
}
.section .container .box-content h6.brand-name {
    margin-bottom: 15px;
}

.section-divider {
    height: 50px;
    /*margin-top: -50px;*/
    width: 100%;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDBweCIgdmlld0JveD0iMCAwIDEyODAgMTQwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnIGZpbGw9IiNmZmZmZmYiPjxwYXRoIGQ9Ik0xMjgwIDBsLTI2Mi4xIDExNi4yNmE3My4yOSA3My4yOSAwIDAgMS0zOS4wOSA2TDAgMHYxNDBoMTI4MHoiLz48L2c+PC9zdmc+);
    background-size: 100% 50px;
    transform: scale(-1,1);
    position: absolute;
}
.section-divider.alt {
    position: absolute;
    background-size: 100% 50px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDBweCIgdmlld0JveD0iMCAwIDEyODAgMTQwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnIGZpbGw9IiNmZmZmZmYiPjxwYXRoIGQ9Ik05NzguODEgMTIyLjI1TDAgMGgxMjgwbC0yNjIuMSAxMTYuMjZhNzMuMjkgNzMuMjkgMCAwIDEtMzkuMDkgNS45OXoiLz48L2c+PC9zdmc+);
    height: 50px;
    transform: scale(1,1);
    top: -1px;
}
.section-divider.alt2 {
    position: relative;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDBweCIgdmlld0JveD0iMCAwIDEyODAgMTQwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnIGZpbGw9IiNmZmZmZmYiPjxwYXRoIGQ9Ik0xMjgwIDBsLTI2Mi4xIDExNi4yNmE3My4yOSA3My4yOSAwIDAgMS0zOS4wOSA2TDAgMHYxNDBoMTI4MHoiLz48L2c+PC9zdmc+);
    background-size: 100% 50px;
    height: 50px;
    z-index: 1;
    transform: scale(-1,1);
}
.section-divider.alt3 {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDBweCIgdmlld0JveD0iMCAwIDEyODAgMTQwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnIGZpbGw9IiNmZmZmZmYiPjxwYXRoIGQ9Ik0xMjgwIDBsLTI2Mi4xIDExNi4yNmE3My4yOSA3My4yOSAwIDAgMS0zOS4wOSA2TDAgMHYxNDBoMTI4MHoiLz48L2c+PC9zdmc+);
    background-size: 100% 50px;
    top: -1px;
    height: 50px;
    z-index: 1;
    transform: scale(-1,-1);
}
.section-divider.over-next {
    margin-top: 0;
}
.section-divider.top {top: 0;}
.section-divider.bottom {bottom: 0;}

.quote-wrapper {
    position: relative;
    display: block;
    border-left: solid 6px #6ac290;
    padding-left: 20px;
}

.dock-guaranties {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.dock-guaranties .item {
    text-align: center;
}
.dock-guaranties .item img {
    width: 50px;
}
.dock-guaranties .item h6 {
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #000000 !important;
    margin-top: 20px;
}

/** HOMEPAGE */
.page-homepage{}
.page-homepage .illustration-img {
    width: 100%;
    max-width: 300px;
}

/** PRODUCTS CATEGORY */
.page-products-listing{}
.page-products-listing .listing-header-wrapper{
    position: relative;
    min-height: 200px;
    margin-bottom: 80px;
    background-image: radial-gradient(circle at top left,rgba(255,255,255,0) 20%,#6ac290 100%) !important
}
.page-products-listing .listing-header-wrapper h6 {color: #FFF;}
.page-products-listing .listing-header-wrapper p {
    color: #FFF;
    font-size: 1.2rem;
}
.page-products-listing .listing-header-wrapper .section-divider {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDBweCIgdmlld0JveD0iMCAwIDEyODAgMTQwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnIGZpbGw9IiNmZmZmZmYiPjxwYXRoIGQ9Ik0xMjgwIDBsLTI2Mi4xIDExNi4yNmE3My4yOSA3My4yOSAwIDAgMS0zOS4wOSA2TDAgMHYxNDBoMTI4MHoiLz48L2c+PC9zdmc+);
    background-size: 100% 50px;
    bottom: 0;
    height: 50px;
    z-index: 1;
    transform: scale(-1,1);
}
.page-products-listing .listing-header-wrapper .container .row {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.page-products-listing .listing-wrapper{
    display: flex;
    justify-content: start;
    align-items: start;
}
.page-products-listing .listing-wrapper .categories-wrapper{
    border-right: solid 3px #6ac290;
    flex-shrink: 0;
    padding-top: 10%;
    padding-bottom: 10%;
}
.page-products-listing .listing-wrapper .categories-wrapper .category-item{
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #004543;
    text-decoration: none;
}
.page-products-listing .listing-wrapper .categories-wrapper .category-item.selected {
    color: #faac2a;
}
.page-products-listing .listing-wrapper .categories-wrapper .category-item.selected:before {
    content: '»';
    margin-right: 5px;
}

.page-products-listing .listing-wrapper .products-list-wrapper {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.page-products-listing .listing-wrapper .products-list-wrapper .product-overview {
    min-width: 250px;
    margin-bottom: 20px;
}

/** PRODUCT CARD */
.product-card{
    width: 245px;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100%;
    padding: 0 20px 20px;
    border-radius: 40px;
    box-shadow: 0px 12px 18px -6px rgba(0,0,0,0.09);
}
.product-card a.product-link{
    display: block;
    width: 100%;
    height: 240px;
    margin-top: 5px;
    margin-bottom: 20px;
}
.product-card .name {
    display: block;
    font-size: 1.15rem;
    word-wrap: break-word;
    line-height: 23px;
}
.product-card .detail1 {
    display: block;
    font-size: 0.9rem;
    color: #ef5758;
    text-transform: uppercase;
    margin-top: 10px;
}
.product-card .stars {
    display: block;
    font-size: 0.9rem;
    color: #ef5758;
}
.product-card .price {
    display: block;
    font-size: 1.15rem;
    margin-top: 15px;
}
.product-card a.button-add {
    display: inline-block;
    box-shadow: 0 12px 18px -6px rgba(0,0,0,0.3);
    background-color: #004543;
    padding: 0.5em 1.5em;
    border-radius: 100px;
    font-size: 1rem;
    color: #FFF;
    text-decoration: none;
    transform: scale(1);
    transition: all 0.2s ease;
}
.product-card a.button-add:hover {
    cursor: pointer;
    background-color: #ef5758;
    transform: scale(1.1) perspective(1px)
}

.blog-articles-list {}
.blog-articles-list .blog-article-card{
    background-position: top;
    padding: 50px !important;
    height: auto;
}
.blog-articles-list .blog-article-card .blog-article-image-thumb {
    height: 250px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    margin-bottom: 30px;
}
.blog-articles-list .blog-article-card h2 {font-size: 1.55rem !important;}
.blog-articles-list .blog-article-card p {margin-top: 20px;}
.blog-articles-list .blog-article-card .read {
    text-align: center;
    margin-top: 30px;
}

#sitemap {}
#sitemap p{
    font-size: 1rem;
    font-weight: 700;
}

#shop-infos {}
#shop-infos .item{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    align-content: start;
    text-align: center;
}
#shop-infos .item .logo{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    background-color: #ef5758;
}
#shop-infos .item .logo i {
    color: #FFF;
    font-size: 1.8rem;
}
#shop-infos .item .title {
    margin-top: 15px;
    color: #FFF;
}
#shop-infos .item p {
    font-size: 1rem;
}

#newsletter {text-align: center}
#newsletter h2 {
    font-size: 1.6rem !important;
    color: #FFF;
}
#newsletter input {
    margin-top: 30px;
    border-radius: 20px;
    height: 50px;
    text-align: center;
}
#newsletter a {
    margin-top: 30px;
    width: 90%;
    text-transform: none;
    font-size: 1rem;
}