/* Global
---------------------------------------------------------------------------- */

body {
	color: #231F20;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.5;
}

:focus,
:hover {
	outline: none;
}

.wrap {
	margin-inline: auto;
	max-width: 90%;
}

.site-inner {
	max-width: none;
	overflow: hidden;
	padding-left: 0;
	padding-right: 0;
}

.full-width-content .content {
	width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #153E69;
}

.entry-content h4 {
	margin-top: 0;
}


/* Header
---------------------------------------------------------------------------- */

.site-header {
	background-color: #F2EDDE;
	padding: 35px 0 20px;
	position: relative;
}

.site-header .wrap {
	display: grid;
	grid-gap: 0 5%;
	grid-template-areas: 'logo widget';
	grid-template-columns: 300px 1fr;
}

.site-header .title-area {
	grid-area: logo;
	padding: 0;
}

.site-header .widget-area {
	color: #153E69;
	font-size: 16px;
	grid-area: widget;
	line-height: 1.25;
	text-align: right;
}

.site-header .widget {
	margin: 0;
}

.site-header .widget-title,
.site-header .widget-title a {
	color: #238DBF;
	font-size: 26px;
	font-weight: 800;
	line-height: 1;
	margin: 0 0 5px;
	text-decoration: none;
}

.site-header .widget-title a:focus,
.site-header .widget-title a:hover {
	color: #8CD4E1;
}


/* Footer
---------------------------------------------------------------------------- */

.footer-widgets {
	background-color: #F2EDDE;
	color: #153E69;
	font-size: 16px;
	line-height: 1.33;
	overflow: hidden;
	padding: 100px 0 70px;
	position: relative;
}

.footer-widgets .wrap {
	display: grid;
	grid-gap: 30px 10%;
	grid-template-areas: 'info form' 'footer form';
	grid-template-columns: 1fr 1fr;
}

.footer-widgets .widget-area {
	margin: 0;
	padding: 0;
}

.footer-widgets p:last-child {
	margin: 0;
}

.footer-widgets-1 {
	grid-area: info;
}

.footer-widgets-1 img {
	width: 300px;
}

.footer-widgets-1 .widget-title,
.footer-widgets-1 .widget-title a {
	color: #238DBF;
	font-size: 26px;
	font-weight: 800;
	line-height: 1;
	margin: 0 0 5px;
	text-decoration: none;	
}

.footer-widgets-1 .widget-title a:focus,
.footer-widgets-1 .widget-title a:hover {
	color: #8CD4E1;
}

.footer-widgets-1 .widget_text a {
	color: #238DBF;
}

.footer-widgets-1 .widget_text a:focus,
.footer-widgets-1 .widget_text a:hover {
	color: #8CD4E1;
}

.footer-widgets-2 {
	color: #fff;
	font-size: 20px;
	grid-area: form;
}

.footer-widgets-2::before {
	background-color: #153E69;
	content: '';
	display: block;
	height: 100%;
	left: 50%;
	position: absolute;
	top: 0;
	width: 100vw;
	z-index: 0;
}

.footer-widgets-2 > * {
	position: relative;
}

.footer-widgets-2 .widget {
	margin: 0;
}

.footer-widgets-2 .widget-title {
	color: #fff;
	font-size: 32px;
	font-weight: 300;
	letter-spacing: -1px;
}

.footer-widgets-2 .widget_text strong {
	display: inline-block;
	width: 80px;
}

.footer-widgets-3 {
	grid-area: footer;
}

.footer-widgets-3 .footer-text a {
	color: #153E69;
	text-decoration: none;
}

.footer-widgets-3 .footer-text a:focus,
.footer-widgets-3 .footer-text a:hover {
	color: #238DBF;
}


/* Gravity Forms
---------------------------------------------------------------------------- */

div.gform_wrapper.gravity-theme .ginput_container_date input {
	width: 100%;
}

div.gform_wrapper.gravity-theme .ginput_container.ginput_container_select,
div.gform_wrapper.gravity-theme .gfield select {
	height: 100%;
}

.footer-widgets input[type="submit"] {
	background-color: #FFD694;
	color: #231F20;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 1px;
	padding: 10px 25px;
	text-transform: uppercase;
}

.footer-widgets input[type="submit"]:focus,
.footer-widgets input[type="submit"]:hover {
	background-color: #fff;
}


/* Media Queries
---------------------------------------------------------------------------- */

@media only screen and (min-width: 1024px) {
	
	.wrap {
		max-width: 960px;
	}
	
}

@media only screen and (min-width: 1200px) {
	
	.wrap {
		max-width: 1170px;
	}
	
}

@media only screen and (max-width: 767px) {
	
	.site-header .wrap {
		grid-template-areas: 'logo' 'widget';
		grid-template-columns: auto;
	}
	
	.site-header .title-area {
		margin: 0 auto 20px;
	}
	
	.site-header .widget-area {
		text-align: center;
	}
	
	.footer-widgets {
		padding: 70px 0 0;
		text-align: center;
	}
	
	.footer-widgets .wrap {
		grid-gap: 30px 0;
		grid-template-areas: 'info' 'form' 'footer';
		grid-template-columns: auto;
	}
	
	.footer-widgets-2.widget-area {
		margin: 30px 0;
		padding: 60px 0;
		position: relative;
	}
	
	.footer-widgets-2::before {
		left: 50%;
		transform: translateX(-50%);
	}
	
	div.gform_wrapper.gravity-theme .gform_footer {
		justify-content: center;
	}
	
}