/*
Theme Name: Levant
Theme URI: https://
Description: Thema voor de website van Levant.
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-orange: #f18819;
}





/* Global styles */

body {
	background: #fff;
	color: #000;
	font: normal 400 18px/28px "Source Sans 3", sans-serif;
}



h1, h2, h3, h4 {
	color: #25365f;
	font-weight: 700;
	font-family: "commuters-sans", sans-serif;
}

h1 { margin-bottom: 20px; font-size: 40px; line-height: 44px; }
h2 { margin-bottom: 15px; font-size: 30px; line-height: 36px; color: var(--main-orange); }
h3 { margin-bottom: 10px; font-size: 22px; line-height: 28px; }
h4 { margin-bottom: 5px; font-size: 20px; line-height: 26px; color: #091634; }

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

h1 span, h1 svg {
	color: var(--main-orange);
}

.text-center h1 svg {
	margin-bottom: 10px;
	font-size: 48px;
}



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 20px;
	background: #909aae;
	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: 700 16px "commuters-sans", sans-serif;
}

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 20px;
	background: #fff;
	color: #000;
	font: 16px/28px "Source Sans 3", sans-serif;
	text-align: left;
	border: 1px solid #909aae;
	border-radius: 8px;
	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: #25365f;
}


textarea {
	height: 100px;
}


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


input[type=submit], button {
	display: block;
	width: 100%;
	margin: 0;
	padding: 11px 33px;
	background: var(--main-orange);
	color: #fff;
	font-weight: 600;
	font-size: 18px;
	text-align: center;
	border: 0;
	transition: all 0.2s;
}
input[type=submit]:hover, button:hover {
	background: #e56100;
	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; }



.position-relative {
	position: relative;
}

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

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



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

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