/* 
 Theme Name:     Bare bones for Divi
 Author:         Divi theme examples
 Author URI:     http://www.divithemeexamples.com 
 Template:       Divi
 Version:        1.0 
*/


/* ----------- PUT YOUR CUSTOM CSS BELOW THIS LINE -- DO NOT EDIT ABOVE THIS LINE --------------------------- */

@import url("https://use.typekit.net/ptn4elu.css");
h1, h2, h3, h4, h5, a, p {
	font-family: muli, sans-serif !important;
}

.brown-title {
    color: #9F7320;
}

.no-bold {
    font-weight: 500 !important;
}

.border-bottom {
    position: relative;
    display: inline-block;
}

.flex-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.contact-block .et_pb_text_inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.border-bottom:after {
    content: '';
    position: absolute;
    height: 2px;
    background-color: #CEA666;
    width: 50%;
    left: 25%;
    right: 25%;
    bottom: 0;
}

.nav-flex .et_pb_column {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.nav-flex .et_pb_column ul.et-menu.nav li {
    margin: 0 8px;
}

.grid-producten {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
	grid-gap: 16px;
}

.grid-producten .product_item {
    background-color: #F3F0EC;
	display: flex;
	flex-direction: column;
}

.grid-producten .product_item .content-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
	height: 100%;
}

.grid-producten .product_item .product-img {
    padding: 16px;
}

.grid-producten .product_item .content {
    padding: 0 24px 24px 24px;
}

.grid-producten .product_item .content h4 {
	text-transform: uppercase;
}

.grid-producten .product_item .content p.hoeveelheid {
	font-style: italic;
	font-weight: 600;
}

.grid-producten .cta {
    margin: 40px 0 20px 0;
    padding: 0 24px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.grid-producten p.hoeveelheid {
    color: #CEA666;
}

.grid-producten p.description {
    color: #9F7320;
}

.product-img {
    height: 246px;
    width: 370px;
    object-fit: cover;
    object-position: center;
}

.assortiment-item {
    position: relative;
}

.assortiment-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(243, 240, 236, 0.85);
    width: 100%;
    height: auto;
}

.footer-flex {
    display: flex;
    align-items: flex-end;
}

.footer-flex .et_pb_row.et_pb_row_7 {
    margin: 0 auto;
}

.short-underline {
	position: relative;
	margin-bottom: 16px;
}

.short-underline:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 2px;
	width: 100px;
	height: 2px;
	background-color: #9E7320;
}

.has_et_pb_sticky .et_pb_image_wrap img {
	width: 50%;
}

@media (max-width: 1255px) {
    .grid-producten {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .grid-producten {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
	
	.has_et_pb_sticky .et_pb_menu__logo img {
		width: 150px;
	}
	
    .grid-producten {
        display: flex;
		flex-direction: column;
    }
	
	.grid-producten img {
		width: 100%;
	}
	.nav-flex .et_pb_column {
		display: inherit;
	}
	
	.short-underline:after {
		bottom: 0;
	}
	
	.flex-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}
}