/* --------------------------------
PRIMARY STYLES
-------------------------------- */
*, *::after, *::before { box-sizing: border-box; }
body {
	font-family: sans-serif;
	font-weight: normal;
	line-height: 1;
	color: black;
}

h1, h2, h3, h4 {
	font-family: 'Vollkorn', serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
	margin-bottom: .5em;
	color: black;
}
h1,
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }

table { width: 100%; }
th, td,
ul, ol, p { 
	font-family: 'Vollkorn', serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
	font-size: 16px;
	line-height: 1.5;
}

a { transition: all .5s ease; text-decoration: none; }
a:hover {}

b, strong { font-weight: 700; }
i, em { font-style: italic; }

/* --------------------------------
EFFECTS
-------------------------------- */
.txt-shadow { text-shadow: 1px 1px 40px black; }
.bx-shadow,
.bx-shadow-hover:hover {
	-webkit-box-shadow: 0px 0px 50px 0px rgba(0,0,0,.2);
	-moz-box-shadow: 0px 0px 50px 0px rgba(0,0,0,.2);
	box-shadow: 0px 0px 50px 0px rgba(0,0,0,.2);
}
.opacity-hover:hover { opacity: .5; }

/* --------------------------------
BUTTONS
-------------------------------- */
.btns { cursor: pointer; }
.btn-more {
  font-family: 'Vollkorn', serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  display: inline-block;
  transition: all .5s ease;
  color: white;
}
.btn-more:hover { text-decoration: underline; }
.btn-more i { font-size: 60%; padding-left: .5em; transition: all .5s ease; }
.btn-more:hover i { padding-left: 2em; }

.btn-img img { transition: all .5s ease; }
.btn-img:hover img { transform: scale(1.1); }

/* -------------------------------- 
VIDEO
-------------------------------- */
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.embed-container iframe,
.embed-container object,
.embed-container embed,
.embed-container video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}

/* --------------------------------
FORMS
-------------------------------- */
form { position: relative; width: 100%; }
textarea,
select,
.input-text,
.input-submit {
	display: inline-block;
	font-family: 'Vollkorn', serif;
  font-optical-sizing: auto;
	font-weight: 300;
	color: black;
	font-size: 18px;
	line-height: 1;
	width: 100%;
	padding: .75em 1.5em;
	margin-bottom: .5em;
	outline: none;
	border: none;
	background: rgba(255,255,255,.95);
	border-top-right-radius: 1em;
}
textarea { height: 120px; }

.input-submit {
	float: right;
	background: #69972f;
	color: white;
	padding: .75em 1.5em;
	font-weight: 700;
	opacity: .95;
	display: inline-block;
	border-top-right-radius: 1em;
	width: auto;
}
.input-submit:hover { background: #51aee2; }

/* --------------------------------
HEADER
-------------------------------- */
header {
	z-index: 999;
	position: sticky;
	top: 0; left: 0;
	width: 100%;
	background: white;
	padding: 2em 0;
	transition: all .5s ease;
}
header.active { background: rgba(255, 255, 255, 0.95); padding: 1em 0; }

header .notification-banner {
  width: 100%;
  background: #c71066;
  padding: .25em;
  text-align: center;
  margin: 1em 0 -1em;
}
header .notification-banner p { color: white; margin-bottom: 0; }

/* --------------------------------
NAV
-------------------------------- */
nav { 
	display: none;
	text-align: left;
	background: rgba(255,255,255,.95);
	position: fixed;
	top: 0; left: 0;
	width: 100%;
	height: 100vh;
	padding: 1.5em;
}
nav ul { width: 100%; padding: 2em 0; }
nav ul li { display: block; }
nav ul li a {
	color: black;
	display: inline-block;
	padding: .5em;
	transition: all .5s ease;
}
nav ul li a:hover,
nav ul li.current-menu-item > a,
nav ul li a i { color: #c71066; }
nav ul ul { display: none; padding: 0 1em 1em; }
nav ul li.menu-item-has-children { position: relative; }
nav ul li.menu-item-has-children > a::after {
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	font-family: "Font Awesome 5 Free";
	font-size: .6em;
	font-weight: bold;
	content: "\f107";
	margin-left: .5em;
	color: #c71066;
}
header nav ul li.menu-item-has-children:hover > ul { display: block; z-index: 2; }

nav ul.top {}
nav ul.top .quantity {
  background: #c71066;
  color: white;
  border-radius: 50%;
  width: 24px;
  display: inline-block;
  text-align: center;
}
nav ul.top li a { font-size: 16px; }
nav ul.main li a { font-size: 18px; }

.nav-toggle {
	float: right;
	-webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  cursor: pointer;
  position: relative;
  z-index: 3;
  display: inline-block;
  height: .75rem;
  width: 2em;
}
.nav-toggle:hover .nav-toggle-bar,
.nav-toggle:hover .nav-toggle-bar::after,
.nav-toggle:hover .nav-toggle-bar::before { background: #c71066; }

.nav-toggle .nav-toggle-bar,
.nav-toggle .nav-toggle-bar::after,
.nav-toggle .nav-toggle-bar::before {
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	background: black;
	content: '';
	height: 0.2rem;
	width: 100%;
}
.nav-toggle .nav-toggle-bar { margin-top: 0; }
.nav-toggle .nav-toggle-bar::after { margin-top: .4rem; }
.nav-toggle .nav-toggle-bar::before { margin-top: -0.4rem; }

.nav-toggle.expanded .nav-toggle-bar { background: transparent; }
.nav-toggle.expanded .nav-toggle-bar::after,
.nav-toggle.expanded .nav-toggle-bar::before { background: #c71066; margin-top: 0; }
.nav-toggle.expanded .nav-toggle-bar::after {
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.nav-toggle.expanded .nav-toggle-bar::before {
	-ms-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* -------------------------------- 
SLIDER
-------------------------------- */
.slider { }
.slider .slide { position: relative; width: 100%;	height: 100%; }

.slider .slide .slide-1-1,
.slider .slide .slide-1-2,
.slider .slide .slide-1-3,
.slider .slide .slide-2-3 { 
	height: 300px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	transition: all .5s ease;
	float: left;
}
.slider .slide .slide-1-1 { width: 100%; float: none; }
.slider .slide .slide-1-2 { width: 50%; }
.slider .slide .slide-1-3 { width: 33.33%; }
.slider .slide .slide-2-3 { width: 66.67%; }

/* --------------------------------
ARTICLE & SECTIONS
-------------------------------- */
article { overflow: hidden; }
section { 
	position: relative;
	width: 100%;
	line-height: 0;
	margin-bottom: 3em;
	text-align: center;
}
section h4 {
	position: relative;
	color: #c71066;
	background: white;
	padding: .5em;
	display: inline-block;
	margin-bottom: 1em;
}
section h4:after {
	content: "";
	z-index: -1;
	position: absolute;
	top: 50%; left: calc(50% - 150px);
	width: 300px;
	height: 1px;
	background: #c71066;
}
section ul { list-style: disc; }
section ol { list-style: numeric; }
section ul,
section ol,
section p { margin-bottom: 2em; }
section p a { color: #c71066; text-decoration: underline; }
section p a:hover { text-decoration: none; }
section span { color: #c71066; }

.container { margin: 0 auto; position: relative; }
.inner { padding: 0 1.5em; }

.desktop-hide {}
.desktop-show { display: none; }

.table-align { display: table; width: 100%; height: 100%; }
.table-cell-align { display: table-cell; vertical-align: middle; }
.table-cell-align.bottom { vertical-align: bottom; }

.last { margin-bottom: 0 !important; }
.align-h { height: 100%; }
.center { text-align: center; }
.right { text-align: right; }

.hero { padding: 0; overflow: hidden; }
.hero .hero-nav {
	z-index: 9;
	display: none;
	position: absolute;
	bottom: 1em; right: 2em;
	background: rgba(199,16,102,.95);
	padding: 1em .5em;
}
.hero .hero-nav i {
	font-size: 40px;
	line-height: 1;
	color: white;
	padding: 0 .5em;
	transition: all .5s ease;
}
.hero .hero-nav i:hover {}
.hero .hero-nav i.fa-angle-left {  }
.hero .hero-nav i.fa-angle-right {  }
.hero .hero-nav i.slick-disabled { opacity: .4; cursor: not-allowed; }

.hero .hero-img { position: relative; }
.hero .hero-img img {
	width: 100%;
	max-width: 100%;
	height: auto;
	margin: auto;
}
.hero .hero-overlay {
	z-index: 2;
	position: relative;
	top: 0; left: 0;
	width: 100%;
	height: 100%;
	background: #c71066;
}
.hero .hero-overlay .box {
	position: relative;
	background: rgba(199,16,102,.95);
	padding: 2em 1em 3em;
}
.hero .hero-overlay .box h2 { color: white; margin-bottom: 0; }
.hero .hero-overlay .box p {
	position: absolute;
	left: 0; bottom: -1.5em;
	width: 100%;
	margin: 0;
}
.hero .hero-overlay .box p .btn-more {
  padding: 1em;
  background: rgba(255,255,255,.95);
  color: black;
}
.hero .hero-overlay .box p .btn-more:hover { background: rgba(0,0,0,.95); color: white; }

.bg { padding: 3em 0; background: #f5f5f5; }
.bg:after {
	content: "";
	z-index: 1; 
	position: absolute;
	bottom: 0; left: 0;
	width: 100%;
	height: 13.5em;
	background: white;
}
.bg.reversed { padding-top: 0; }
.bg.reversed:after { top: 0; bottom: auto; }
.bg .container { z-index: 2; }
.bg h4 { background: #f5f5f5; }

.bg .marge-5em { margin-top: 3em; }

.tiles {}
.tiles .tile { 
	position: relative;
	margin: .5em;
	display: inline-block;
  width: calc(100% - 1em);
  height: calc(100% - 1em);
}

.tiles .tile .tile-link,
.tiles .tile .tile-gallery,
.tiles .tile .tile-link img { position: relative; }

.tiles .tile .tile-link .tile-inner {
  z-index: 3;
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
}

.tiles .tile .tile-title,
.tiles .tile .tile-more {
	font-family: 'Vollkorn', serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  color: white;
  padding: .5em;
  display: block;
	transition: all .5s ease;
}

.tiles .tile .tile-title {
	font-size: 18px;
	margin-bottom: .5em;
	text-shadow: 1px 1px 40px black;
}
.tiles .tile.lg .tile-title { font-size: 32px; }
.tiles .tile .tile-link:hover .tile-title { text-shadow: none; }
.tiles .tile .tile-more { opacity: 0; }
.tiles .tile .tile-link:hover .tile-more { text-decoration: underline; opacity: 1; }
.tiles .tile .tile-more i { font-size: 60%; padding-left: .5em; transition: all .5s ease; }
.tiles .tile .tile-link:hover .tile-more i { padding-left: 2em; }
.tiles.products .tile .tile-title { opacity: 0; }
.tiles.products .tile .tile-link:hover .tile-title { opacity: 1; }

.tiles .tile .tile-link .tile-overlay {
	content: "";
  z-index: 2;
  position: absolute;
  top: 0; left: -100%;
  width: 200%;
  height: 100%;
	background: rgba(199,16,102,.95);
	transform: scale(0);
	border-radius: 100%;
	transition: all .5s ease;
}
.tiles .tile .tile-link:hover .tile-overlay { transform: scale(1); border-radius: 0; }

.tile-pink { position: relative; background: #c71066; }
.tile-pink:after { content: ""; display: block; padding-bottom: 100%; }
.tile-pink-inner { position: absolute; width: 100%; height: 100%; }
.tile-pink-inner h3 { font-size: 18px; margin-bottom: 1em; color: white; }

.lookbook { 
	position: relative;
	background: #c71066;
	padding: 3em 0;
}
.lookbook:after {
	content: "";
	z-index: -1;
	position: absolute;
	top: 100%; left: 0;
	width: 100%;
	height: 100%;
	background: #c71066;
}
.lookbook h2 { color: white; }

.process {}
.process p.icon-sphere { position: relative; }
.process p.icon-sphere:after {
	z-index: -1;
	position: absolute;
	top: 15%; left: 15%;
	background: #c50063;
	width: 70%;
	height: 70%;
	border-radius: 100%;
	content: "";
}

.reviews { position: relative; margin-top: -120px; }
.reviews .reviews-bg { background: #c71066; padding: 2em 1em; }
.reviews .reviews-bg h2,
.reviews .reviews-bg p { color: white; }

.reviews .grade {
	z-index: 1;
	position: relative;
	top: 120px; left: calc(50% - 120px);
	background: white;
	width: 240px;
	height: 240px;
	border-radius: 50%;
	transition: all .5s ease;
}
.reviews:hover .grade { 
	-webkit-box-shadow: 0px 0px 50px 0px rgba(0,0,0,.2);
	-moz-box-shadow: 0px 0px 50px 0px rgba(0,0,0,.2);
	box-shadow: 0px 0px 50px 0px rgba(0,0,0,.2);
}
.reviews .grade h2 { 
	font-size: 60px;
	font-weight: 700;
	color: #c71066;
	margin-bottom: 0;
}
.reviews .grade p { margin: 0; line-height: 1.2; }
.reviews .grade p i { font-size: 12px; color: #c71066; margin-bottom: 2em; }

.searchandfilter ul { list-style: none; }
.searchandfilter ul li li {
	position: relative;
	display: inline-block;
	padding: .5em 1em !important;
	transition: all .5s ease;
}
.searchandfilter ul li li:hover,
.searchandfilter ul li li.sf-option-active { background: #c71066; color: white; }
.searchandfilter ul li li label span { 
	padding-left: .5em;
	color: #c71066;
	transition: all .5s ease;
}
.searchandfilter ul li li:hover label span { color: white; }

/* --------------------------------
FOOTER
-------------------------------- */
footer {
	width: 100%;
	padding: 3em 0 1em;
	background: #333f47 url("img/footer-bg.png") no-repeat center;
	background-size: cover;
	background-blend-mode: multiply;
	color: white;
}
footer h3 { color: inherit; margin-bottom: 1em; }
footer p,
footer ul { color: inherit; margin-bottom: 2em; }
footer a { color: inherit; text-decoration: underline; }
footer a:hover { color: #c71066; text-decoration: none; }

footer ul.social li { display: inline; }
footer ul.social li a {
	font-size: 40px;
	display: inline-block;
	margin-right: .25em;
	transition: all .5s ease;
}
footer ul.social li a:hover { transform: scale(1.2); }

/* --------------------------------
MEDIA QUERIES
-------------------------------- */
@media screen and (min-width: 35.5em) {
	.container { width: 568px; }

	.tiles .tile .tile-title { font-size: 24px; }
	.tiles .tile.lg .tile-title { font-size: 40px; }
	.tiles .tile .tile-pink-inner h3 {font-size: 24px; margin-bottom: 2em; }

	.slider .slide .slide-1-1,
	.slider .slide .slide-1-2,
	.slider .slide .slide-1-3,
	.slider .slide .slide-2-3 { height: 375px; }
}
@media screen and (min-width: 48em) {
	.container { width: 768px; }
}
@media screen and (min-width: 64em) {
	.container { width: 1024px; }

	.desktop-hide { display: none; }
	.desktop-show { display: block; }

	h1,
	h2 { font-size: 40px; }
	h3 { font-size: 32px; }

	textarea,
	.input-text,
	.input-submit,
	th, td,
	ul, p { font-size: 18px; }

	nav {
		display: block !important;
		text-align: right;
		background: transparent;
		position: relative;
		height: auto;
		padding: 0;
	}
	nav ul { padding: 0; }
	nav ul li { display: inline-block; }
	nav ul ul {
		position: absolute;
    top: 100%;
    left: -1em;
    background: rgba(199,16,102,.95);
    width: 240px;
    text-align: left;
    padding: 1em;
	}
	nav ul ul li { display: block; }
	nav ul ul li a { color: white; }
	nav ul ul li.current-menu-item a,
	nav ul ul li a:hover { color: white; text-decoration: underline; }

	section { margin-bottom: 5em;	}
	section h4 { margin-bottom: 2em; }

	footer { padding: 5em 0 3em; }

	.hero { overflow: hidden; }
	.hero .hero-nav { display: block; }
	.hero .hero-overlay { position: absolute; background: transparent; }
	.hero .hero-overlay .box { padding: 4em 2em; }
	.hero .hero-overlay .box h2 { font-size: 48px; }

	.slider .slide { margin: 0 .5em; }
	.slider .slide .slide-1-1,
	.slider .slide .slide-1-2,
	.slider .slide .slide-1-3,
	.slider .slide .slide-2-3 { height: 675px; margin: 0 .5em; }
	.slider .slide .slide-1-1 { width: calc(100% - 1em); }
	.slider .slide .slide-1-2 { width: calc(50% - 1em); }
	.slider .slide .slide-1-3 { width: calc(33% - 1em); }
	.slider .slide .slide-2-3 { width: calc(67% - 1em); }

	.bg { padding: 5em 0; }
	.bg .marge-5em { margin-top: 5em; }
	.bg .marge-8em { margin-top: 8em; }

	.lookbook {	padding: 4em 0; }
	.lookbook:after { top: 0; left: 100%; }

	.reviews:after {
	  content: "";
	  position: absolute;
	  bottom: 2em; left: calc(50% - 35px);
	  width: 70px;
	  height: 70px;
	  background: url(img/beeldmerk.svg) no-repeat center;
	}
	.reviews .reviews-bg { padding: 4em 2em; }
}
@media screen and (min-width: 80em) {
	.container { width: 1200px; }
}
@media screen and (min-width: 120em) {
	.hero .hero-img { width: 1920px; left: calc(50% - 960px); }
}

/* IE11
@media all and (-ms-high-contrast:none) {
	*::-ms-backdrop,
	[data-aos^=fade][data-aos^=fade],
	[data-aos^=zoom][data-aos^=zoom] { opacity: 1; }
}*/