/*
Theme Name: Delaive
Theme URI: https://
Description: Thema voor de website van Delaive.
Version: 0.1
Author: Bonsai media
Author URI: https://www.bonsaimedia.nl/
*/



/* Reset */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

:focus {
	outline: 0;
}

ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}



*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}





/* Variables */

:root {
	--main-blue: #1b2d5b;
	--main-gold: #b99c74;
}





/* Global styles */

body {
	background: #fff;
	color: #1f1f1d;
	font: 300 19px/32px "Jost", sans-serif;
}



h1, h2, h3, h4 {
	color: #676662;
	font-weight: 300;
	text-transform: uppercase;
}

h1 { margin-bottom: ; font-size: 38px; line-height: 46px; }
h2 { margin-bottom: ; font-size: 32px; line-height: 38px; }
h3 { margin-bottom: ; font-size: 26px; line-height: 31px; color: #192855; }
h4 { margin-bottom: ; font-size: 24px; line-height: 29px; color: var(--main-gold); }

h1:only-child, h2:only-child, h3:only-child, h4:only-child {
	margin-bottom: 0;
}



a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s;
}



strong {
	font-weight: 700;
}



img {
	max-width: 100%;
	height: auto;
}



hr {
	height: 1px;
	margin: 0 0 35px;
	background: #e5e3de;
	border: 0;
}



/* --- Input */

::placeholder {
	color: #000;
	opacity: 1;
}

:-ms-input-placeholder {
	color: #000;
}

::-ms-input-placeholder {
	color: #000;
}



form {}

form p {}
form p:not(:last-child) {
	margin-bottom: 0;
}

form label, form legend {
	font-weight: 300;
	text-transform: uppercase;
}

form legend {
	margin-bottom: 10px;
}


input[type=text], input[type=number], input[type=email], input[type=tel], input[type=password], input[type=datepicker], input[type=submit], textarea, select, button {
	width: 100%;
	margin-bottom: 20px;
	padding: 10px 30px;
	background: #fff;
	color: #312907;
	font: 300 19px/32px "Jost", sans-serif;
	text-align: left;
	border: 1px solid #d9d9d9;
	transition: all 0.2s;
	-webkit-appearance: none;
}
input[type=text]:focus, input[type=number]:focus, input[type=email]:focus, input[type=tel]:focus, input[type=password]:focus, input[type=datepicker]:focus, textarea:focus, select:focus, button:focus {
	border-color: var(--main-gold);
}


textarea {
	height: 100px;
}


select {
	background: #fff url(img/chevron-down.svg) right 15px center/16px 9px no-repeat;
}


input[type=submit] {
	display: block;
	width: auto;
	margin: 0;
	padding: 15px 30px;
	background: var(--main-gold);
	color: #fff;
	font: 400 18px/25px "DM Serif Text", serif;
	text-align: center;
	border: 0;
	transition: all 0.2s;
}
input[type=submit]:hover {
	background: #192855;
	cursor: pointer;
}





/* Global classes */

.left { float: left; }
.right { float: right; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }
.text-uppercase { text-transform: uppercase; }
.text-lowercase { text-transform: lowercase; }
.text-capitalize { text-transform: capitalize; }



.align-items-flex-start {
	align-items: flex-start;
}

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



.fluid {
	width: 100%;
	float: left;
}

.container {
	max-width: 100%;
	margin: 0 auto;
	padding: 0 20px;
}




.alternate {
	background: #f8f7f4;
}



/* --- Buttons */

a.button {
	position: relative;
	display: inline-block;
	margin: 0 35px 35px 0;
	padding: 15px 30px;
	background: var(--main-gold);
	color: #fff;
	font: 400 18px/25px "DM Serif Text", serif;
	text-align: center;
	cursor: pointer;
	transition: background 0.2s;
}
a.button:only-child, a.button:only-of-type {
	margin: 0;
}
a.button:hover {
	background: #1b2d5b;
}


a.button.primary {
	background: var(--main-gold);
}
a.button.primary:hover {
	background: #1b2d5b;
}


a.button.secondary {
	background: #1b2d5b;
}
a.button.secondary:hover {
	background: var(--main-gold);
}



/* --- Text */

span.date {
	color: var(--main-gold);
}



/* --- Artist */

/* ------ Overview */

#artists {
	position: relative;
	min-height: 100vh;
}


#artists .close {
	position: absolute;
	top: 30px;
	right: 40px;
	display: block;
	width: 40px;
	height: 40px;
	background: var(--main-gold);
	cursor: pointer;
	z-index: 1;
}

#artists .close span {
	position: absolute;
	left: 8px;
	display: block;
	width: 24px;
	height: 2px;
	background: #fff;
}
#artists .close span:nth-child(1) {
	top: 19px;
	transform: rotate(45deg);
}
#artists .close span:nth-child(2) {
	top: 19px;
	transform: rotate(-45deg);
}


#artists h2 {
	margin-bottom: 50px;
	line-height: 40px;
}

#artists ul {
	line-height: 36px;
}


#artists .row {
	min-height: 100vh;
}

#artists .row .col {
	min-height: 100vh;
	padding: 40px;
}

#artists .row .col.col-4-md {
	border-right: 1px solid #e5e3de;
}

#artists .row .col.col-8-md {
	position: relative;
}

#artists .row .col.col-8-md .artist-hover {
	display: none;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 60%;
}



/* ------ Detail */

#content .artist {
	margin-bottom: 50px;
	padding-bottom: 35px;
	color: var(--main-gold);
	font-size: 24px;
	line-height: 35px;
	border-bottom: 1px solid #e5e3de;
}

#content .artist h3 {
	margin-bottom: 10px;
	color: #000;
	font: 400 24px "DM Serif Text", serif;
	text-transform: none;
}





.fancybox-slide--html {
	padding: 20px!important;
}

.fancybox {
	display: none;
	width: 100vw;
	height: calc(100vh - 40px);
	margin: 0;
}

.fancybox .inner {
	height: 100%;
}

.fancybox .inner .row {
	height: 100%;
}


.fancybox .inner .row img {
	width: 100%;
}

.fancybox .inner .row p {}
.fancybox .inner .row p:not(:last-child) {
	margin-bottom: 35px;
}

.fancybox .inner .row p.details {
	color: #767676;
}


.fancybox .inner .row span {
	color: var(--main-gold);
}



/* --- Artwork */

#content .artwork {
	margin-bottom: 50px;
}


#content .artwork .image  {
	float: left;
	width: 100%;
	margin-bottom: 20px;
}

#content .artwork .image img {
	float: left;
}


#content .artwork .content {
	float: left;
	width: 100%;
}

#content .artwork .content h3 {
	margin-bottom: 10px;
	color: #000;
	font: 400 24px "DM Serif Text", serif;
	text-transform: none;
}

#content .artwork .content span {
	color: var(--main-gold);
}

#content .artwork .content p:not(:last-child) {
	margin-bottom: 20px;
}

#content .artwork .content a {
	color: #000;
	font-style: italic;
	font-weight: 500;
}



/* --- Art fair */

#artfairs-upcoming {
	margin-bottom: 50px;
	padding-top: 0;
	padding-bottom: 50px;
	border-bottom: 1px solid #e5e3de;
}

#artfairs-upcoming h2 {
	margin-bottom: 50px;
}



#artfairs-past {
	padding-top: 0;
}

#artfairs-past h2 {
	margin-bottom: 50px;
}





#content .artfair {
	margin-bottom: 50px;
	border: 1px solid #e5e3de;
}


#content .artfair .image  {
	float: left;
	width: 100%;
	margin-bottom: 20px;
	margin-bottom: 0;
}

#content .artfair .image img {
	float: left;
}


#content .artfair .content {
	float: left;
	width: 100%;
	padding: 40px;
}



#content .artfair .content span.label {
	display: inline-grid;
	margin-bottom: 50px;
	padding: 10px 25px;
	color: var(--main-gold);
	border: 1px solid var(--main-gold);
	border-radius: 30px;
}



#content .artfair .content h3 {
	margin-bottom: 10px;
	color: #000;
	font: 400 24px "DM Serif Text", serif;
	text-transform: none;
}

#content .artfair .content h3 a {
	color: #000;
	text-decoration: none;
}

#content .artfair .content span {
	color: var(--main-gold);
}



/* --- Article */

#content .post {
	margin-bottom: 50px;
}


#content .post .image  {
	float: left;
	width: 100%;
	margin-bottom: 20px;
}

#content .post .image img {
	float: left;
}


#content .post .content {
	float: left;
	width: 100%;
}

#content .post .content h3 {
	margin-bottom: 10px;
	color: #000;
	font: 400 24px "DM Serif Text", serif;
	text-transform: none;
}

#content .post .content h3 a {
	color: #000;
	text-decoration: none;
}

#content .post .content p:not(:last-child) {
	margin-bottom: 20px;
}





/* Header */

#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 3;
}

#header .container {
	height: 120px;
	background: #fff;
}

#header .row {
	height: 120px;
}



#header #logo {
	float: left;
	display: block;
	width: 344px;
	height: 60px;
}

#header #logo img {
	float: left;
}



/* --- Nav */

#nav {}

#nav ul {}

#nav ul li {
	position: relative;
	display: inline-block;
	margin-left: 35px;
}

#nav ul li a {
	display: inline-block;
	line-height: ;
	transition: all 0.2s;
	color: #676662;
}
#nav ul li a:hover {
	color: var(--main-gold);
}

/*
#nav ul li.current-menu-item a, #nav ul li.current-menu-ancestor a, #nav ul li.current_page_item a, #nav ul li.current_page_parent a {
	color: #192855;
	border-bottom: 1px solid #192855;
}
*/

#nav ul li.current-menu-item a, #nav ul li.current-menu-ancestor a {
	color: #192855;
	border-bottom: 1px solid #192855;
}



/* --- Spacer */

#spacer {
	height: 120px;
}





/* Content */

#title {}

#title .col {
	margin-bottom: 50px;
	padding-bottom: 50px;
	border-bottom: 1px solid #e5e3de;
}

#title .col span {
	color: #000;
	font: 400 80px/116px "DM Serif Text", serif;
	text-transform: uppercase;
}



#title #cats {
	float: left;
	width: 100%;
	margin-top: 15px;
}

#title #cats ul {}

#title #cats ul li {
	float: left;
	margin: 0 20px 10px 0;
}

#title #cats ul li a {
	text-decoration: none;
}
#title #cats ul li  a:hover {
	text-decoration: underline;
}



#content {
	float: left;
	width: 100%;
	padding: 100px 0;
}


#content p {}
#content p:not(:last-child) {
	margin-bottom: 35px;
}


#content a:not(.button) {
	color: var(--main-gold);
	text-decoration: underline;
}
#content a:not(.button):hover {
	text-decoration: none;
}





/* Pagebuilder */

section {
	padding: 100px 0;
}

section .title {}
section .title h2 {
	margin-bottom: 50px;
}





section#heading {
	padding-bottom: 0;
}





section.banner {
	/* min-height: calc(100vh - 120px); */
	padding: 200px 0 100px;
	padding: 380px 0 100px;
	background: #000;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	color: #fff;
}

section.banner h1, section.banner h2 {
	color: #fff;
	font-style: italic;
	font-weight: 500;
	text-transform: none;
}

section.banner h1 {
	font-size: 80px;
	line-height: 116px;
}

section.banner h2 {
	margin-bottom: 20px;
	font-size: 50px;
	line-height: 73px;
}





section.contentrow {}

section.contentrow h1 { margin-bottom: 35px; }
section.contentrow h2 { margin-bottom: 25px; }
section.contentrow h3 { margin-bottom: 15px; }
section.contentrow h4 { margin-bottom: 5px; }





section.artworks, section#artist-artworks {
	padding: 100px 0 50px;
}

section.artworks {}

section.artworks .artwork {}

section.artworks .artwork .image {
	align-items: flex-end;
	display: flex;
}





section.artists {
	background: #f9f8f5;
}





section.news {
	padding: 100px 0 50px;
}





/* Pages */

/* --- Artist */

#artist-bio {
	border-bottom: 1px solid #e5e3de;
}

#artist-archive {
	padding-bottom: 50px;
	border-bottom: 1px solid #e5e3de;
}

#artist-photos {
	border-bottom: 1px solid #e5e3de;
}





/* Footer */

#footer {
	position: relative;
	padding: 95px 0 65px;
	background: #192855;
	color: #fff;
}


#footer p {}
#footer p:not(:last-child) {
	margin-bottom: 35px;
}


#footer a {
	color: #fff;
	text-decoration: underline;
}
#footer a:hover {
	text-decoration: none;
}


#footer ul {}

#footer ul li {
	display: inline-block;
	margin-right: 30px;
}

#footer ul li a {
	text-decoration: none;
}
#footer ul li a:hover {
	text-decoration: underline;
}


#footer .col {
	margin-bottom: 50px;
}


#footer #socials {}

#footer #socials a {
	float: left;
	display: block;
	width: 56px;
	height: 56px;
	margin-right: 10px;
	background: #fff;
	color: #192855;
	font-size: 22px;
	line-height: 56px;
	text-align: center;
	transition: all 0.2s;
}
#footer #socials a:hover {
	background: var(--main-gold);
	color: #fff;
}





/* Plugins */

/* --- Gravity forms */

.gform_required_legend {
	display: none;
}


.gform_wrapper.gravity-theme .gfield_label {
	font-weight: 300!important;
	font-size: 19px!important;
}


.gform_wrapper.gravity-theme input[type=color], .gform_wrapper.gravity-theme input[type=date], .gform_wrapper.gravity-theme input[type=datetime-local], .gform_wrapper.gravity-theme input[type=datetime], .gform_wrapper.gravity-theme input[type=email], .gform_wrapper.gravity-theme input[type=month], .gform_wrapper.gravity-theme input[type=number], .gform_wrapper.gravity-theme input[type=password], .gform_wrapper.gravity-theme input[type=search], .gform_wrapper.gravity-theme input[type=tel], .gform_wrapper.gravity-theme input[type=text], .gform_wrapper.gravity-theme input[type=time], .gform_wrapper.gravity-theme input[type=url], .gform_wrapper.gravity-theme input[type=week], .gform_wrapper.gravity-theme select, .gform_wrapper.gravity-theme textarea {
	padding: 10px 20px!important;
	font-size: 19px!important;
}



@media only screen and (max-width: 641px) {

	.gform_wrapper.gravity-theme input:not([type=radio]):not([type=checkbox]):not([type=image]):not([type=file]) {
		line-height: 1!important;
	}

}





/* Responsive */



/* --- Max widths */

@media screen and (max-width: 1199px) {

}



@media screen and (max-width: 959px) {

	body {
		font-size: 18px;
		line-height: 30px;
	}


	h1 { font-size: 36px; line-height: 44px; }
	h2 { font-size: 30px; line-height: 36px; }
	h3 { font-size: 24px; line-height: 29px; }
	h4 { font-size: 22px; line-height: 27px; }



	.fancybox .inner .row img {
		margin-bottom: 35px;
	}



	#header .container {
		height: 100px;
	}

	#header .row {
		height: 100px;
	}


	#spacer {
		height: 100px;
	}



	#toggle-menu {
		position: absolute;
		top: 30px;
		right: 40px;
		width: 40px;
		height: 40px;
		background: #192855;
		cursor: pointer;
		pointer-events: auto;
		z-index: 999;
	}
	#toggle-menu.open {
		background: var(--main-gold);
	}

	#toggle-menu span {
		position: absolute;
		left: 8px;
		display: block;
		width: 24px;
		height: 2px;
		background: #fff;
		transform: rotate(0deg);
		transition: transform 0.2s ease-in-out;
	}
	#toggle-menu span:nth-child(1) {
		top: 15px;
	}
	#toggle-menu span:nth-child(2) {
		top: 23px;
	}
	#toggle-menu.open span:nth-child(1) {
		top: 19px;
		transform: rotate(45deg);
	}
	#toggle-menu.open span:nth-child(2) {
		top: 19px;
		transform: rotate(-45deg);
	}


	#mobile-menu {
		display: none;
		position: fixed;
		top: 100px;
		left: 0;
		width: 100%;
		height: calc(100vh - 100px);
		padding: 20px;
		background: #fff;
		line-height: 56px;
		text-align: center;
		overflow-y: scroll;
		z-index: 3;
	}

	#mobile-menu ul {
		margin: 0;
		padding: 0;
		font-weight: 300;
		font-size: 26px;
	}

	#mobile-menu ul li {
		position: relative;
	}

	#mobile-menu ul li a {
		color: #676662;
		transition: all 0.2s;
	}
	#mobile-menu ul li a:hover {
		color: var(--main-gold);
	}


	/*
	#mobile-menu ul li.menu-item-has-children {}
	#mobile-menu ul li.menu-item-has-children:before {
		position: absolute;
		top: 10px;
		right: 0;
		width: 18px;
		height: 10px;
		background: url(img/chevron-down.svg) right center no-repeat;
		transform: rotate(180deg);
		transition: transform 0.2s;
		content: " ";
	}

	#mobile-menu ul li.menu-item-has-children.open {}
	#mobile-menu ul li.menu-item-has-children.open:before {
		transform: rotate(0deg);
	}

	#mobile-menu ul li ul {
		display: none;
		margin: 8px 0;
		padding: 8px 20px;
		background: #312907;
		font-size: 16px;
		line-height: 24px;
		border-radius: 20px;
	}

	#mobile-menu ul li ul li {
		padding: 8px 0;
	}

	#mobile-menu ul li ul li a {
		color: #fff;
	}
	*/



	#title .col {
		margin-bottom: 40px;
		padding-bottom: 40px;
	}

	#title .col span {
		font-size: 67px;
		line-height: 103px;
	}



	#content {
		padding: 75px 0;
	}



	section {
		padding: 75px 0;
	}


	section.banner {
		min-height: calc(100vh - 100px);
	}

	section.banner h1 {
		font-size: 67px;
		line-height: 88px;
	}

	section.banner h2 {
		font-size: 37px;
		line-height: 60px;
	}


	section.artworks, section#artist-artworks {
		padding: 75px 0 25px;
	}


	section.news {
		padding: 75px 0 25px;
	}



	#artists .row .col {
		padding: 30px 20px;
	}

	#artists .row .col.col-4-md {
		border-right: 0;
	}


	#artist-archive {
		padding-bottom: 25px;
	}



	#footer {
		padding: 65px 0 35px;
	}

}



@media screen and (max-width: 767px) {

}



@media screen and (max-width: 567px) {

	body {
		font-size: 17px;
		line-height: 28px;
	}


	h1 { font-size: 34px; line-height: 42px; }
	h2 { font-size: 28px; line-height: 34px; }
	h3 { font-size: 22px; line-height: 27px; }
	h4 { font-size: 20px; line-height: 25px; }



	.row.mobile-reverse {
		-webkit-box-direction: reverse;
		flex-flow: column-reverse;
	}



	#header #logo {
		width: 229px;
		height: 40px;
	}



	#title .col {
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	#title .col span {
		font-size: 54px;
		line-height: 90px;
	}



	#content {
		padding: 50px 0;
	}

	#content .artfair .content {
		padding: 40px 20px;
	}



	section {
		padding: 50px 0;
	}


	section.banner h1 {
		font-size: 54px;
		line-height: 60px;
	}

	section.banner h2 {
		font-size: 24px;
		line-height: 47px;
	}


	section.contentrow .col-6:first-child:not(:only-child) {
		margin-bottom: 35px;
	}

	section.contentrow .mobile-reverse .col-6:first-child {
		margin-bottom: 0;
	}
	section.contentrow .mobile-reverse .col-6:last-child {
		margin-bottom: 35px;
	}


	section.artworks, section#artist-artworks {
		padding: 50px 0 0;
	}


	section.news {
		padding: 50px 0 0;
	}



	#artist-archive {
		padding-bottom: 0;
	}

	#artist-archive .col-6:first-child {
		margin-bottom: 35px;
	}

}



@media screen and (max-width: 479px) {

	.fancybox-content {
		padding: 20px!important;
	}

}



/* --- Min widths */

@media screen and (min-width: 480px) {

}



@media screen and (min-width: 568px) {

}



@media screen and (min-width: 768px) {

}



@media screen and (min-width: 960px) {

	#mobile-menu {
		display: none!important;
	}

	#toggle-menu {
		display: none!important;
	}

}



@media screen and (min-width: 1200px) {

}