/*
Theme Name: RW - Bamdex theme - Cleaned
Author: Online Klik
Author URI: https://onlineklik.nl/
Version: 1.1
*/

/* Standard page styles */
:root {
	--black: #002D29;
	--white: #FFF;
	--act-primary: #3CAD85;
	--act-dark: #10403B;
	--shd-light: #FAFAFA;
	--shd-mid: #CCC;
	--shd-dark: #333;
	--darkest: #0A2C29;
	--text: #353C3F;
	--std-gap: 10%;
	--std-radius: 10px;
	--btn-radius: 5px;
}


html,
body {
    padding: 0;
    margin: 0;
	font-family: 'Saira', sans-serif!important;
	color: var(--text);
	background-image: url(/wp-content/uploads/2023/11/Bamdura_Pattern@2x-1.png);
	background-size: 2000px;
}

/* FONTS */
p {
	padding: 0;
    margin: 0;
	font-size: 16px;
	font-weight: 300;
	line-height: 30px;
}

h1 {
	font-size: 60px;
	line-height: 70px;
	margin: 0;
}

h2 {
	font-size: 28px;
	margin: 0;
}

h3, h4, h5, h6 {
	margin: 0;
}

flex {
	display: flex;
	align-items: center;
}

grid {
	display: grid;
}

act {
	color: var(--act-primary);
}

/* Tussenruimte van blokken (acf rows) */
.space {
	height: 100px;
}

/* Breedte van de content */
.boxed {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 25px;
}

.button {
	background-color: var(--act-primary);
	color: var(--white);
	padding: 13px 35px;
	border: 1px solid var(--act-primary);
	border-radius: var(--btn-radius);
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}

.button-alt {
	background-color: rgba(0,0,0,0);
	color: var(--black);
	padding: 13px 35px;
	border: 1px solid var(--black);
	border-radius: var(--btn-radius);
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}

.text-box {
	gap: 20px;
	align-content: center;
}

.text-box h2 {
	margin: 0;
}

.text-box flex {
	gap: 10px;
}

.widget-kop {
	margin-bottom: 30px;
	color: var(--act-primary);
	font-size: 36px;
}

.text-center {
	text-align: center;
}

.widget-bottom-btn {
	margin-top: 50px;
}

.grid-center {
	justify-content: center;
}

.back-btn {
	align-items: center;
	gap: 10px;
	cursor: pointer;
	font-size: 20px;
}

.back-btn img {
	height: 21px;
}

/* FORMS */

body form {
	display: grid;
	gap: 10px;
}

body form p {
	display: grid;
}

.wpcf7-submit {
	margin: 0;
	font-family: 'Saira', sans-serif!important;
	background-color: var(--act-primary);
	border: none;
	font-size: 14px;
	font-weight: 600;
	color: var(--white);
}

body form label {
	color: var(--white);
	font-size: 13px;
	font-weight: 600;
}

body input, body textarea, body select {
	padding: 15px;
	margin: 0;
	border-radius: var(--btn-radius);
	border: 1px solid var(--shd-light);
	font-family: 'Saira', sans-serif!important;
}

body textarea, body select {
	-webkit-appearance: none!important;
	appearance: none!important;
}

body .select-wrap select {
	width: 100%;
}

body .select-wrap::after {
	position: absolute;
	margin-top: 20px;
	content: "";
  	width: 7px;
  	height: 7px;
	margin: 21px 0 0 -22px;
	border: solid var(--darkest);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
  	-webkit-transform: rotate(45deg);
}

body .wpcf7-response-output {
	border: 1px solid var(--act-primary)!important;
    border-radius: var(--btn-radius);
    font-size: 13px;
    color: var(--white);
}

body .wpcf7-spinner {
	display: none;
}

@media screen and (max-width: 1180px) and (orientation: portrait),
screen and (max-width: 1024px) {
    
}

@media screen and (max-width: 768px) {
	.text-box flex {
		flex-wrap: wrap;
	}
	
	.text-box flex a {
		width: 100%;
		text-align: center;
	}
	
	h1 {
		font-size: 28px;
		line-height: 34px;
	}
	
	h2 {
		font-size: 20px;
		line-height: 28px;
	}
	
	.widget-kop {
		font-size: 24px;
	}
}

/* ANIMATIONS */

.fa-circle-notch {
	color: var(--act-primary);
	animation-name: spin;
	animation-duration: 1500ms;
  	animation-iteration-count: infinite;
  	animation-timing-function: linear;
}

@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}