:root {
	--body-font: 'Asap', sans-serif; /* 100..900 */
	--headings-font: 'Cardo', serif; /* 400, 700 */
	
	--color-primary: #000;
	--color-secondary: #6E4535; /* was: #B06142 */
	
	--rgb-color-primary: 0,0,0;
	--rgb-color-secondary: 110,69,53; /* was: 176,97,66 */
}
*, *:before, *:after {
	box-sizing: border-box;
}

/* Enable automatic view transitions for navigation */
@view-transition {
	navigation: auto;
}
::view-transition-old(root),
::view-transition-new(root) {
	animation-duration: 0.4s;
}

html.overscroll-lock,
html.overscroll-lock body {
	/*position: fixed;*/
	overflow: hidden !important;
	height: 100% !important;
}
html, body {
	overflow-x: hidden; /* aos bugfix */
}
body {
	margin: 0;
	padding: 0;
	color: var(--color-primary);
	font-size: 100%;
	line-height: 1.6em;
	font-weight: 400;
	font-family: var(--body-font);
	background: #fff;
}
#wrap {
	padding-top: 250px;
	-webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	-ms-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}
img, svg {
	max-width: 100%;
}
input[type="text"],
input[type="email"],
input[type="submit"],
textarea {
	-webkit-appearance: none;
	border-radius: 0;
}
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active {
	-webkit-box-shadow: 0 0 0 30px #fff inset !important;
}
a {
	color: #000;
	cursor: pointer;
	outline: none;
	-webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	-ms-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	color: var(--color-secondary);
	font-family: var(--headings-font);
}
.rel {
	position: relative;
}
.flex-container {
	display: flex;
}
/*.grid-container { --> conflict xy grid (benaming)
	display: grid;
}*/
.block {
	display: block;
}
.text-right {
	text-align: right;
}
.text-center {
	text-align: center;
}
.bg-secondary {
	background: rgba(var(--rgb-color-secondary), 0.1);
}

/* !Tooltips tippy */
.tippy-box[data-theme~='customTooltip'] {
	background-color: #4c3025;
	color: #fff;
	font-size: 13px;
	padding: 6px 10px;
	border-radius: 4px;
	box-shadow: 0 6px 20px rgba(0,0,0,.25);
}

.tippy-box[data-theme~='customTooltip'] .tippy-arrow {
	color: #4c3025;
}

/* !BUTTONS */
.btn {
	display: inline-block;
	
	margin: 1rem 0;
	padding: 10px 25px;
	
	color: #fff;
	background-color: var(--color-primary);
	border: none;
	
	font-size: 0.9rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	border-radius: 25px;
}
.no-touchevents .btn:hover {
	background-color: var(--color-secondary);
	transition: all 0.3s ease;
}

/* !HEADER */
header {
	position: fixed;
	z-index: 100;
	top: 0;
	width: 100%;
	height: 250px;
	padding: 1rem 0;
	
	display: flex;
	align-items: flex-end;
	
	background-color: #fff;
	border-bottom: 1px solid #eee;
	-webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	-ms-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}
header > div {
	width: 100%;
}
header a {
	display: inline-block;
	text-decoration: none;
}
header div.logo {
	display: inline-block;
}
header div.logo svg {
	display: block;
	width: 150px;
	margin: 0 auto;
	-webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	-ms-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}
header div.logo h5 {
	margin: 0.5rem 0 0;
	text-align: center;
	font-size: 1.2rem;
	letter-spacing: 1px;
	color: var(--color-secondary);
	font-family: var(--body-font);
	font-weight: 500;
}
header nav.main {
	margin-top: 1rem;
	-webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	-ms-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}
header nav.main ul {
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: right;
}
header nav.main ul li {
	display: inline-block;
	margin-left: 2rem;
}
header nav.main ul li:first-child {
	margin-left: 0;
}
header nav.main ul li a {
	display: inline-block;
	position: relative;
	overflow: hidden;
	padding: 0.4rem 0;
	font-size: 1rem;
	line-height: 1rem;
	font-weight: 500;
	color: var(--color-secondary);
	text-decoration: none;
}
header nav.main ul li:not(.contact) a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--color-secondary);
	opacity: 1;
	transition: opacity 300ms, transform 300ms;
	transform: translate3d(-101%, 0, 0);
}
header nav.main ul li.active a::after,
.no-touchevents header nav.main ul li a:hover::after {
	transform: translate3d(0, 0, 0);
}
/*
header nav.main ul li.contact a {
	color: #fff;
	background-color: var(--color-primary);
	background-color: var(--color-secondary);
	padding: 0.4rem 0.5rem;
	font-weight: 700;
	border-radius: 3px;
}
.no-touchevents header nav.main ul li.contact a:hover {
	background-color: var(--color-secondary);
	background-color: var(--color-primary);
}
*/

/* !Mobile nav */
.hamburger {
	display: none;
	width: 30px;
	height: 25px;
	position: absolute;
	z-index: 200;
	top: 18px;
	right: 20px;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	-webkit-transition: top 0.16s ease-in-out;
	-moz-transition: top 0.16s ease-in-out;
	-o-transition: top 0.16s ease-in-out;
	transition: top 0.16s ease-in-out;
	cursor: pointer;
}
.hamburger span {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	background: var(--color-secondary);
	border-radius: 9px;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
	z-index: 200;
}
.hamburger.open span {
	left: 0;
	z-index: 200;
}
.hamburger span:nth-child(1) {
	top: 2px;
}
.hamburger span:nth-child(2) {
	top: 12px;
}
.hamburger span:nth-child(3) {
	top: 22px;
}
.hamburger.open span:nth-child(1) {
	top: 14px;
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	transform: rotate(135deg);
}
.hamburger.open span:nth-child(2) {
	opacity: 0;
	left: -60px;
}
.hamburger.open span:nth-child(3) {
	top: 14px;
	-webkit-transform: rotate(-135deg);
	-moz-transform: rotate(-135deg);
	-o-transform: rotate(-135deg);
	transform: rotate(-135deg);
}
.mobilenav {
	display: none;
	opacity: 0;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
	background: rgba(255, 255, 255, 0.98);
	background: rgba(var(--rgb-color-secondary), 0.98);
	margin: 0;
	padding: 0;
	text-align: center;
	margin: 0 auto;
	margin-top: 60px;
	overflow: scroll;
	-webkit-overflow-scrolling: touch;
	padding-bottom: 200px; /* owv scroll long*/
}
.mobilenav .first,
.mobilenav .second {
	list-style: none;
	margin: 0;
	padding: 0;
}
.mobilenav .first a,
.mobilenav .second a {
	text-decoration: none;
}
.mobilenav .first {
	margin-top: -1rem;
}
.mobilenav .first li a {
	opacity: 0;
	color: #fff;
	font-size: 1.2rem;
	font-weight: 700;
	display: block;
	width: 100%;
	padding: 10px 0;
	text-transform: uppercase;
}

/* !BANNERS (slider) */
.banners {
	position: relative;
	margin: 0 auto 4rem;
	overflow: hidden;
}
.banners .slider img {
	display: block;
	height: 65vh;
	margin: 0 auto;
}
.objectfit .banners .slider img {
	width: 100%;
	object-fit: cover;
	object-position: center center;
}
.banners .slick-dotted.slick-slider {
	margin-bottom: 0;
	padding-bottom: 0;
}
.banners .copy {
	height: 100%;
}
.banners .copy .inner {
	position: absolute;
	top: 30%;
	max-width: 330px;
	padding-right: 1rem;
	color: #fff;
	font-weight: 700;
	line-height: 2.4rem;
	font-family: var(--headings-font);
	/*
	background-color: rgba(0,0,0,0.5);
	padding: 1rem;
	*/
}
.banners .copy .inner p {
	margin: 0;
}
.banners .copy .inner span.icon {
	display: block;
	font-size: 10rem;
	line-height: 1rem;
}
.banners .copy .inner .text {
	font-size: 2rem;
}
.banners .copy .inner .source {
	font-size: 1rem;
	margin-top: 1rem;
	font-family: var(--body-font);
	font-weight: 400;
}

/* !BANNER (single image) */
.banner {
	width: 100%;
	height: 65vh;
	min-height: 400px;
	background: #fff url('../img/banner-04.jpg') no-repeat center center;
	background-size: cover;
	position: relative;
}
.banner.inspiratie {
	background: #fff url('../img/banner-inspiratie.jpg') no-repeat center center / cover;
	margin-bottom: .9375rem;
}
.banner .overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	background-color: rgba(255,255,255,0.2);
	display: none;
}
.banner .copy {
	height: 100%;
}
.banner .copy .inner {
	margin-top: 5%;
	max-width: 320px;
	padding-right: 1rem;
	color: #fff;
}

/* !CONTENT */
section {
	padding: 4rem 0 0;
}
h1, h2 {
	font-size: 2.6rem;
	line-height: 2.8rem;
}
.padded-right {
	padding-right: 20%;
}
.quote {
	position: relative;
	margin: 6rem 0;
	padding: 2rem 0;
	color: var(--color-secondary);
	font-family: var(--headings-font);
}
.quote p.icon {
	position: absolute;
	font-size: 18rem;
	line-height: 1rem;
	margin: 0;
}
.quote p.icon.open {
	top: 3rem;
	left: 8%;
}
.quote p.icon.close {
	bottom: 3.4rem;
	right: 8%;
	transform: rotate(180deg);
}
.quote p.text {
	font-size: 2rem;
	line-height: 2.4rem;
	font-weight: 700;
	margin: 1rem 0;
}
.quote p.source {
	font-size: 1rem;
	line-height: 1.2rem;
	font-weight: 400;
}
.grid-container.full .center {
	max-width: 70%;
	margin: 0 auto;
}

/* !Home */
#home h1 {
	font-size: 2.2rem;
	line-height: 2.4rem;
}
#home .intro img {
	padding-left: 1rem;
}
#home .inspiratie {
	margin-top: 4rem;
}
#home .inspiratie .flex-container {
	gap: 1rem;
}
#home .inspiratie div.inner {
	position: relative;
}
#home .inspiratie img {
	display: block;
}
#home .inspiratie .overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	background-color: rgba(var(--rgb-color-secondary), 0.8);
	
	display: flex;
	align-items: center;
	justify-content: center;
	
	opacity: 0;
	transition: opacity 0.25s ease-in-out;
}
.no-touchevents #home .inspiratie div.inner:hover .overlay {
	opacity: 1;
}
#home .inspiratie .overlay .btn {
	background-color: #fff;
	color: var(--color-secondary);
}
.no-touchevents #home .inspiratie .overlay .btn:hover {
	opacity: 0.7;
}

/* !Microcement */
.features .grid-container h2 {
	margin: 0;
}
.features .grid-container p {
	margin: 0;
}
.finishing-shots {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: .9375rem;
}
.finishing-shots img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* v1: slick */
/*
.no-touchevents .slider.features:hover {
	cursor: grab;
}
.slider.features div.inner {
	padding: 1rem;
}
.slider.features img {
	height: auto;
}
*/

/* v2: swiper */
.features .swiper {
	width: 100%;
	margin-left: 8.5%;
}
.features .swiper-slide {
	/*width: 25% !important;*/
}
.no-touchevents .features .swiper:hover {
	cursor: col-resize;
}
.features .swiper-slide img {
	display: block;
	max-width: 100%;
	height: auto;
}
.features .swiper-pagination {
	position: static;
	margin-top: 1rem;
	margin-left: -8.5%;
}
.features .swiper-pagination-bullet-active {
	background-color: var(--color-secondary);
}
/*
.features .swiper-button-next, 
.features .swiper-button-prev, 
.features .swiper-button-next.swiper-button-disabled,
.features .swiper-button-prev.swiper-button-disabled {
	background-color: rgba(255,255,255,0.9);
	height: 100%;
	top: 0;
	opacity: 1;
	padding: 0 2rem;
}
.features .swiper-button-prev {
	left: 0;
}
.features .swiper-button-next {
	right: 0;
}
*/
.features h3 {
	margin-bottom: 0;
	font-size: 1.3rem;
	color: var(--color-primary);
}
.features h3 + p {
	margin-top: 10px;
}
.applications {
	margin-top: 6rem;
	padding: .9375rem;
}
.app-shots {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: .9375rem;
}
.app-shots img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* !Inspiratie - Isotope */
#isotope-grid {
	opacity: 0;
}
#isotope-grid .grid-sizer,
#isotope-grid .grid-item {
	box-sizing: border-box;
	width: 33.34%;
	padding-right: .9375rem;
	padding-bottom: .9375rem;
	overflow: hidden;
}
#isotope-grid .grid-item--width2 {width: 66.67%;}

@media screen and (max-width: 640px)
{
	#isotope-grid .grid-sizer,
	#isotope-grid .grid-item {
		width: 100%; /* small = 1 col */
		padding-right: 0;
	}
}
#isotope-grid .grid-item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}


/* !FOOTER */
footer {
	font-size: 0.95rem;
	padding: 4rem 0 2rem;
	color: var(--color-secondary);
}
footer h3 {
	font-size: 3rem;
	line-height: 3rem;
	font-weight: 500;
	font-family: var(--body-font);
	letter-spacing: 1px;
	margin: 1rem 0;
}
footer .flex-container.data {
	justify-content: flex-end;
	gap: 2rem;
}
footer .data a {
	text-decoration: none;
	color: var(--color-secondary);
}
.no-touchevents footer .data a:hover {
	text-decoration: underline;
}


/* !MEDIA */

/* Large and up */
@media screen and (min-width: 64em) /* >= 1024 */
{
	/*body {color: blue;}*/
}
/* Medium */
@media screen and (max-width: 63.99em) /* <= 1023 */
{
	/*body {color: red;}*/
	
	.grid-container.fluid.reduced {max-width: 100%;}
	
	header nav {
		display: none;
	}
	.hamburger {
		display: block;
	}
	#wrap {
		padding-top: 60px;
	}
	header {
		height: 60px;
		padding: 0;
	}
	header div.logo {
		display: flex;
		flex-direction: row;
		align-items: center;
		gap: .5rem;
		position: relative;
		top: 3px;
	}
	header div.logo svg {
		width: 50px;
	}
	header div.logo h5 {
		margin: 0;
	}
	.banners {
		margin-bottom: 0;
	}
	.banners .slider img {
		height: 50vh;
	}
	.banner {
		height: 50vh;
		min-height: 50vh;
	}
	.banner .copy .inner {
		background-color: rgba(0,0,0,0.5);
		padding: 1px 1rem;
	}
	section {
		padding: 3rem 0;
	}
	h1, h2 {
		font-size: 2.4rem;
		line-height: 2.6rem;
	}
	.padded-right {
		padding-right: 0;
	}
	.quote {
		margin: 3rem 0;
	}
	.quote p.icon {
		font-size: 14rem;
	}
	.quote p.icon.open {
		top: 2rem;
		left: 2%;
	}
	.quote p.icon.close {
		bottom: 2.4rem;
		right: 2%;
	}
	.quote p.text {
		font-size: 1.8rem;
		line-height: 2.2rem;
	}
	.grid-container.full .center {
		max-width: 90%;
		padding: 0 .9375rem;
		margin-bottom: 2rem;
	}
	
	#home h1 {
		font-size: 2rem;
		line-height: 2.2rem;
	}
	#home .inspiratie {
		margin-top: 3rem;
	}
	#home .inspiratie .overlay .btn {
		font-size: 0.8rem;
		padding: 8px 20px;
		line-height: 1rem;
	}
	.features .grid-container h2 {
		text-align: center;
	}
	.features .swiper {
		margin-left: 25%;
	}
	.features .swiper-pagination {
		margin-left: -25%;
	}
	.applications {
		margin-top: 4rem;
	}
	
	footer {
		padding: 2rem 0;
	}
	footer h3 {
		font-size: 2.6rem;
		line-height: 2.6rem;
	}
}
/* Small */
@media screen and (max-width: 40em) /* <= 640 */
{
	/*body {color: green;}*/
	
	header div.logo h5 {
		font-size: 1rem;
	}
	.banners .slider img {
		height: 400px;
	}
	.banner {
		height: 400px;
		min-height: 400px;
	}
	.banner .copy .inner {
		margin-top: 0;
		max-width: 100%;
		position: absolute;
		bottom: 0;
		left: 0;
	}
	section {
		padding: 2rem 0;
	}
	h1, h2 {
		font-size: 2.2rem;
		line-height: 2.4rem;
	}
	.quote p.icon {
		font-size: 12rem;
	}
	.quote p.icon.open {
		top: 1.8rem;
	}
	.quote p.icon.close {
		bottom: 2rem;
	}
	
	#home h1 {
		font-size: 1.8rem;
		line-height: 2rem;
	}
	#home .intro img {
		padding: 0;
	}
	#home .inspiratie .overlay .btn {
		font-size: 0.75rem;
		padding: 8px 10px;
	}
	.finishing-shots {
		padding: .9375rem;
	}
	.features .swiper {
		margin-left: .9375rem;
	}
	.features .swiper-slide {
		width: 90% !important;
	}
	.features .swiper-pagination {
		margin-left: -.9375rem;
	}
	.app-shots {
		grid-template-columns: repeat(2, 1fr);
	}
	
	footer h3 {
		font-size: 2.2rem;
		line-height: 2.4rem;
		margin-bottom: 0;
	}
	footer .flex-container.data {
		display: block;
	}
	
}