/*
Theme Name: Donalda Forms
Description: Developed for Donalda.
Version: 9999.999
Text Domain: blankslate
*/

* {
	box-sizing: border-box;
	padding: 0px;
	margin: 0px;
}

body, html {
	overflow-x: hidden;
}

.full {
	width: 100%;
}

.center {
	width: 60%;
	margin: 0 auto;
}

.flex-row-between-stretch {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
}

.flex-row-start-start {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
}

.flex-col-center-center {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

p {
	font-family: "Helvetica", sans-serif;
	font-size: 14pt;
	line-height: 20pt;
}

header {
	padding-top: 100px;
	padding-bottom: 100px;
}

header img {
	width: 650px;
	max-width: 100%;
}

header h1 {
	font-family: "Helvetica", serif;
	font-size: 24pt;
	color: #FFF;
}

header p {
	color: #FFF;
}

.registration-form {
	padding-top: 50px;
	padding-bottom: 50px;
}

.acf-form {
	max-width: 100% !important;
}

.acf-form input, select, textarea, label {
	font-family: "Helvetica", sans-serif;
	font-size: 14pt;
	line-height: 18pt;
}

.acf-form input[type="submit"] {
	border: none;
	cursor: pointer;
}

.acf-form .button {
	display: block;
	width: 100%;
	background: #003777;
	font-family: "Helvetica", sans-serif;
	font-size: 12pt;
	color: #FFF;
	text-decoration: none;
	margin-top: 25px;
	padding: 15px;
	transition: .25s ease-out;
}

.acf-form .button:hover {
	background: #2f2f2f;
	transition: .25s ease-in;
}

.acf-field-message p {
	margin-top: 25px;
}

.acf-image-uploader {
	overflow-x: hidden;
}

.image-block {
	height: 40vh;
}

.accordion-block {
	background: #F5F5F5;
	padding-top: 50px;
	padding-bottom: 50px;
}

.accordion-block h2 {
	font-family: "Helvetica", sans-serif;
	font-size: 24pt;
	margin-bottom: 25px;
}

.accordion-block details {
	margin-bottom: 25px;
}

.accordion-block details:last-of-type {
	margin-bottom: 0px;
}

.accordion-block details summary {
	background: #003777;
	padding: 25px;
	font-family: "Helvetica", sans-serif;
	font-size: 14pt;
	line-height: 18pt;
	color: #FFF;
}

.accordion-block details summary::-webkit-details-marker {
	float: right;
}

.accordion-block details article {
	font-family: "Helvetica", sans-serif;
	font-size: 14pt;
	padding: 25px;
	background: #FFF;
}

footer {
	padding-top: 50px;
	padding-bottom: 50px;
	background-color: #003777;
	text-align: center;
}

footer a {
	display: block;
	font-family: "Domine", serif;
	font-size: 14pt;
	margin-top: 25px;
	color: #FFF;
}

footer p {
	color: #FFF;
}

.frm_checkbox {
	margin-bottom: 10px !important;
}

.frm_checkbox label {
	font-size: 15px;
}

.frm_form_field p {
	font-size: 15px !important;
}

.frm_primary_label {
	margin-bottom: 10px !important;
}

/*CONTACT FORM 7 STYLES*/

.wpcf7 {
	font-family: "Domine", sans-serif;	
}

.wpcf7 input, textarea, select {
	width: 100%;
	margin-bottom: 15px;
	padding: 10px;
}

.wpcf7-field-groups {
	border-left: 3px solid black;
	padding-left: 25px;
	margin-bottom: 25px;
	margin-top: 25px;
}

.notice {
	margin-bottom: 25px;
}

@media (max-width: 1400px) {
	
	.center {
		width: 80%;
	}
	
}

@media (max-width: 1000px) {
	
	.center {
		width: 90%;
	}
	
}