/*
	Theme Name: HTML5 Blank
	Theme URI: http://html5blank.com
	Description: HTML5 Blank WordPress Theme
	Version: 1.4.3
	Author: Todd Motto (@toddmotto)
	Author URI: http://toddmotto.com
	Tags: Blank, HTML5, CSS3

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html {
	scroll-behavior: smooth;
}

body {

}

/* GLOBAL FONT STYLES */

/* FONTS

ITALIC - 	font-family: hypatia-sans-pro,sans-serif;
			font-weight: 400;
			font-style: italic;

REGULAR -   font-family: hypatia-sans-pro, sans-serif;
			font-weight: 400;
			font-style: normal;

SEMIBOLD - 	font-family: hypatia-sans-pro, sans-serif;
			font-weight: 600;
			font-style: normal;

THIN -  	font-family: hypatia-sans-pro, sans-serif;
			font-weight: 300;
			font-style: normal;

*/

h1{
	font-family: hypatia-sans-pro, sans-serif;
	font-weight: 600;
	font-style: normal;
	margin: 0;
	padding: 0;
	font-size: 40px;
	color: #35332e;
}

h2{
	font-family: hypatia-sans-pro, sans-serif;
	font-weight: 400;
	font-style: normal;
	margin: 0;
	padding: 0;
	font-size: 30px;
}

h3{
	font-family: hypatia-sans-pro, sans-serif;
	font-weight: 600;
	font-style: normal;
	margin: 0;
	padding: 0;
	font-size: 18px;
}


h4{
	font-family: hypatia-sans-pro, sans-serif;
	font-weight: 400;
	font-style: normal;
	margin: 0;
	padding: 0;
	font-size: 50px;
	letter-spacing: 1.5px;
	color: #c7dcac;
}


h5{
	font-family: hypatia-sans-pro, sans-serif;
	font-weight: 400;
	font-style: normal;
	margin: 0;
	padding: 0;
	font-size: 30px;
	color: #7c7c7c;
}


h6{
	font-family: hypatia-sans-pro, sans-serif;
	font-weight: 600;
	font-style: normal;
	margin: 0;
	padding: 0;
	font-size: 30px;
}


h7{
	font-family: hypatia-sans-pro, sans-serif;
	font-weight: 600;
	font-style: normal;
	margin: 0;
	padding: 0;
	font-size: 26px;
}


h8{
	font-family: hypatia-sans-pro, sans-serif;
	font-weight: 600;
	font-style: normal;
	margin: 0;
	padding: 0;
	font-size: 20px;
}

p{
	font-family: hypatia-sans-pro, sans-serif;
	font-weight: 300;
	font-style: normal;
	margin: 0;
	padding: 0;
	font-size: 15px;
	
}

/* STYLESHEETS START */

.headernavwrap{
	width: 100%;
	height: auto;
	background-color:#fff ;
	margin: 0;
	padding: 0;
	float: left;
	overflow: hidden;
	position: relative;
}

.headernavcontent {
    width: 90%;
    margin: 0 5%;
    height: auto;
    overflow: hidden;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.headerlogo{
    width: 150px;
    height: auto;
    float: left;
    margin: 15px 0;
}

.headerlogo img{
	width: 100%;
	height: auto;
	display: block;
}

.headernavitems{
    width: auto;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.headernavitems > a{
    width: auto;
    height: auto;
    text-align: center;
    text-decoration: none;
    border: 0;
    padding: 0;
    margin: 0 18px;
    color: #35332e;
    font-family: hypatia-sans-pro, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 18px;
}

.headernavitems > a:hover{
	color: #c7dcac;
}

.navitem img{
	width: 37%;
	height: auto;
	max-width: 42px;
}



.mobilenavitem{
	padding: 10px 0;
}



.mobilenavwrap{
	width: 100%;
	height: auto;
	float: left;
	display: none;
    flex-wrap: wrap;
    justify-content: space-between;
	z-index: 999;
    background-color: white;
    left: 0;
    top: 70px;
	position: fixed;
}

.mobile_nav_padding{
	display: none;
	position: relative;
	z-index: 1;
	top: 0;
	left: 0;
	height: 70px;
	width: 100%;
}

.mobilenavwrap > a{
	width: 19%;
	height: auto;
	text-align: center;
	text-decoration: none;
    border: 0;
    padding: 0;
	margin: 0;
	color: #35332e;
	font-family: hypatia-sans-pro, sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: 18px;
	float: left;
}

.mobilenavwrap > a{
	width: 100%;
    height: auto;
    text-align: center;
    text-decoration: none;
    border: 0;
    padding: 0 0 20px 0;
}

.hamburger{
	display: none;
}

@media only screen and (max-width:700px){
	
.headernavwrap{
	position: fixed;
	z-index: 3;
	top: 0;
	}
	
	.headernavitems {
    display: none;
}
	
	.hamburger{
    display: block;
    margin: 0;
	 width: auto;
    float: left;
    height: auto;
    padding: 0;
	}
	
	.hamburger:focus{
		outline: 0;
	}
	

	.mobile_nav_padding{
		display: block;
	}
	
	.navitem img {
    width: 35%;
}

	
	
}


/* HOMEPAGE STYLESHEET START */

.homepagewrap{
	width: 100%;
	height: auto;
	background-color: #fff;
	float: left;
	margin: 0;
}

.homepagecontent{
	width: 100%;
	margin: 0;
	height: auto;
	float: left;
}

.homepageslider{
	width: 100%;
	height: 600px;
	float: left;
	margin: 0;
}

.homepageslide{
	width: 100%;
	height: 100%!important;
}

.slidecontent{
	width: 90%;
    margin: 0 5%;
	height: auto;
	float: left;
	text-align: center;
}

.slidecontent h4{
	margin: 0 0 30px 0;
}

.slidecontent a{
	font-family: hypatia-sans-pro, sans-serif;
	font-weight: 400;
	font-style: normal;
	margin: 0;
	padding: 10px 20px;
	font-size: 20px;
	border: 1.5px solid #c7dcac;
	color: #fff;
	text-decoration: none;
	background-color:rgba(213,170,3,0);
}

.slidecontent a:hover{
	background-color:#c7dcac;
}

.slick-list{
	height: 100%!important;
}

.slick-track{
	height: 100%!important;
}

.slick-slide > div{
	height: 100%!important;
}

.singleslide{
	width: 100%;
	height: 100%!important;
    display: flex!important;
    background-position: center;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.homepage-intro{
	width: 100%;
	height: auto;
	float: left;
	background-color: #fff;
	padding: 50px 0;
}

.homepage-intro-content{
	width: 60%;
	height: auto;
	margin: 0 20%;
	float: left;
	text-align: center;
	
}

.homepage-intro-button{
	width: 100%;
	float: left;
	height: auto;
	margin: 30px 0 0 0;
}

.homepage-intro-button a{
	font-family: hypatia-sans-pro, sans-serif;
	font-weight: 400;
	font-style: normal;
	margin: 0;
	padding: 10px 20px;
	font-size: 20px;
	border: 1.5px solid #c7dcac;
	color: #35332e;
	text-decoration: none;
	background-color:rgba(213,170,3,0);
}

.homepage-intro-button a:hover{
	background-color: #c7dcac;
}


.homepage-three-col{
	width: 100%;
	height: auto;
	float: left;
	background-color: #fff;
	padding: 50px 0;
	overflow: hidden;
}

.home-three-wrap{
	width: 90%;
	margin: 0 5%;
	height: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	float: left;
	align-content: center;
}

.home-three{
	width: 30%;
	height: auto;
	background-color: #35332e;
	float: left;
	
}

.home-three-content{
	width: 80%;
	height: auto;
	text-align: center;
	margin: 40px 10% 50px 10%;
}

.homepage_explore{
	width: 100%;
	height: auto;
	float: left;
	overflow: hidden;
	background-color: #fff;
	padding: 0 0 90px 0;
}

.homepage_explore_content{
	width: 80%;
	margin: 0 10%;
	height: auto;
	float: left;
	text-align: center;
}

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

	.homepagecopy {
    width: 90%;
    margin: 0 5% 0 0;
}
	.homepagecopy > a > button {
    width: 80%;
    margin: 40px 0 0 0;
}
	.homepageslider {
    width: 100%;
    height: 340px;
}
	
	

.homepagecopy h1{
	margin: 0;
}
	
}

@media only screen and (max-width:750px){
.homepage-three-col{
	padding: 20px 0;
}
.home-three{
	width: 80%;
	margin: 20px 0;
}
}


/* CLIENTS PAGE STYLES */
.gb_header {
	max-width: 1400px;
	width: 80%;
	margin: 0 auto;
	overflow: hidden;
	height: auto;
}
.gb_header img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 630px;
    object-fit: contain;
}
.gb_header_text {
	width: 100%;
	height: auto;
	float: left;
	text-align: center;
	margin: 30px 0 0 0;
}
.clients_intro{
	width: 100%;
	height: auto;
	background-color: #fff;
	float: left;
	overflow: hidden;
	padding: 50px 0;
}

.clients_intro_content{
	width: 80%;
	height: auto;
	margin: 0 10%;
	text-align: center;
}

.clients_box_wrap{
	width: 100%;
	height: auto;
	display: flex;
	flex-wrap: wrap;
	float: left;
	overflow: hidden;
	margin: 50px 0;
	align-content: center;
}

.clients_box{
	width: 25%;
	height: auto;
	float: left;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	
}

.clients_box_overlay{
	width: 100%;
	height: 100%;
	background-color:rgba(61,58,52,.6);
	display: grid;
	place-items: center;
}

.clients_box_content{
	width: 80%;
	height: auto;
	text-align: center;
	margin: 50px 10%;
}

.clients_box_content h6{
	margin: 0 0 20px 0;
}

.clients_button{
	width: fit-content;
    margin: 0 auto;
    border: 2px solid #c7dcac;
    padding: 10px 15px;
	color: #c7dcac;
	background-color:rgba(213,170,0,0);
	font-family: hypatia-sans-pro, sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 14px;
}

.clients_box:hover .clients_button{
	color: #000;	
	background-color:#c7dcac;
}

.testimonial_slider{
	width: 100%;
	height: auto;
	float: left;
	overflow: hidden;
	padding: 60px 0;
}

.testi_title{
	margin: 0 0 50px 0;
	width: 100%;
	height: auto;
	text-align: center;
	float: left;
	
}

.testi_slide_wrap{
	width: 80%;
	height: auto;
	margin: 0 10%;
	float: left;
	text-align: center;
}

.testimonial-slide{
	width: 100%;
	height: auto;
	text-align: center;
}

@media only screen and (max-width:880px){
	.clients_box {
    width: 50%;
}
	.clients_box_content {
    margin: 90px 10%;
}
}

@media only screen and (max-width:700px){
	.clients_box_content {
    margin: 40px 10%;
}
	.clients_intro{
	padding: 100px 0 50px 0;
}
.gb_header {
    margin: 115px auto 0 auto;
}
.clients_intro {
    padding: 30px 0 50px 0;
}
}

@media only screen and (max-width:550px){
		.clients_box {
    width: 100%;
}
	.clients_box_content {
    margin: 80px 10%;
}
}




/* SERVICES STYLES */

.services_button_wrap{
	width: 100%;
	height: auto;
	float: left;
	overflow: hidden;
	background-color: #f4f4f4;
	margin: 0;
}

.services_title{
	width: 80%;
	height: auto;
	margin: 50px 10% 0 10%;
	text-align: center;
	float: left;
}

.services_button_content{
	width: 80%;
	height: auto;
	float: left;
	margin: 40px 10%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	align-content: center;
}

.service_button{
	width: 20%;
	height: auto;
	text-align: center;
	float: left;
	margin: 0 auto 30px auto;
	cursor: pointer;
}

.service_button img{
	width: 70px;
	height: 70px;
	text-align: center;
	margin: 0 auto 10px auto;
	
}

.service_button a{
	text-decoration: none;
	color: #35332e;
}

.service_button a:hover{
	color: #c7dcac;
}

.services_panel_one{
	width: 100%;
	height: auto;
	float: left;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
}

.panel_one_image{
	width: 50%;
	height: auto;
	float: left;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	order: 1;
}

.services_img_overlay{
	width: 100%;
	height: 100%;
	background-color:rgba(71,66,60,.60);
	mix-blend-mode: multiply;
}

.panel_one_text{
	width: 50%;
	height: auto;
	float: left;
	background-color: #fff;
	order: 2;
}

.panel_content{
	width: 80%;
	height: auto;
	text-align: left;
	margin: 80px 10%;
}

.panel_content img{
	width: 70px;
	height: 70px;
}

.services_panel_two{
	width: 100%;
	height: auto;
	float: left;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
}

.panel_two_image{
	width: 50%;
	height: auto;
	float: left;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	order: 2;
}

.panel_two_text{
	width: 50%;
	height: auto;
	float: left;
	background-color: #fff;
	order: 1;
}


@media only screen and (max-width:930px){
	.service_button img {
    width: 50px;
    height: 50px;
}
}

@media only screen and (max-width:860px){
	.servicesblock{
	width: 45%;
	}
}

@media only screen and (max-width:700px){
	.services_button_wrap {
    
    margin: 93px 0 0 0;
}
}

@media only screen and (max-width:650px){
	
	.services_panel_one {
    width: 100%;
}
	.panel_one_text {
    width: 100%;
}
	
	.panel_one_image {
    width: 100%;
    height: 300px;
}
	
	.panel_two_text {
    width: 100%;
    order: 2;
}
	
.panel_content {
    width: 80%;
    margin: 50px 10%;
}
	.panel_two_image {
    width: 100%;
    height: 300px;
    order: 1;
}
}

@media only screen and (max-width:540px){
	
	.services_button_content{
	width: 90%;
	margin: 40px 5%;
	}
	.servicesblock{
	width: 85%;
	}
	.service_button {
    width: 22%;
	}
}

/* STORIES STYLES */


.storiescontentwrap{
	width: 90%;
	margin: 60px 5%;
	height: auto;
	float: left;
}

.row{
	width: 100%;
	height: auto;
	float: left;
	margin: 5px 0;
}

.row > .column {
  margin: 0.5%
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Create four equal columns that floats next to eachother */
.column {
	float: left;
	width: 24%;
	height: auto;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	cursor: pointer;
	border: 1px solid #7c7c7c;
}

.columnimage{
	width: 100%;
	height: 170px;
	float: left;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.columntext{
    width: 90%;
    height: auto;
    margin: 15px 5%;
    text-align: left;
    float: left;
}

/*
.columnoverlay{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	background-color: rgba(255,255,255,0.83);
	color: #000;
	opacity: 0;
		-webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
	padding: 30px;
}

.columnoverlay:hover{
	opacity: 1;
		-webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.overlaycontent{
	width: fit-content;
	margin: 0 auto;
	height: auto;
	text-align: center;
	border: 1px solid #7c7c7c;
	padding: 10px 15px;
	color: #7c7c7c;
}
*/

/* The Modal (background) */
.modal {
	display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    place-items: center;
    height: 100%;
    overflow: auto;
    background-color:rgba(61,58,52,.8);
}

/* Modal Content */
.modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 55%;
    max-width: 1200px;
    background-color: #fff;
}

.modalcopy{
        width: 88%;
    height: auto;
    margin: 50px 5%;
}


/* The Close Button */
.close {
color: #7c7c7c;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 55px;
    font-weight: bold;
    width: 60px;
    height: 60px;
    background-color: #fff;
    text-align: center;
    line-height: 1;
}

.close:hover,
.close:focus {
  color:  #7c7c7c;
  text-decoration: none;
  cursor: pointer;
}

/* Hide the slides by default */
/*
.mySlides {
  display: none;
}
*/

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Caption text */
.caption-container {
  text-align: center;
  background-color: black;
  padding: 2px 16px;
  color: white;
}

img.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

.hover-shadow {
  transition: 0.3s;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

@media only screen and (max-width:1100px){
	.columntext h2{
		font-size: 19px;
	}
}

@media only screen and (max-width:970px){
	.column{
		width: 49%;
		height: auto;
	}
	.modal-content{
		width: 75%;
	}
}

@media only screen and (max-width:570px){
	.column{
		width: 99%;
		height: auto;
	}
		.modal-content{
		width: 85%;
	}
	.row > .column {
    margin: 0 0.5% 20px 0.5%;
	}
}

/* TEAM GB STYLES */
.teamwrap {
    width: 90%;
    margin: 0 5% 30px 5%;
    float: left;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.teamblock {
    width: 29%;
    height: auto;
    float: left;
    text-align: center;
    margin: 0;
}

.teamimg{
    width: 220px;
    height: 220px;
    border-radius: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0 auto 20px auto;
}

.teamimgthree{
    width: 130px;
    height: 130px;
    border-radius: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0 auto 20px auto;
	border: 2px solid #7c7c7c;
}

.teamblock img{
	width: 90px;
	height: auto;
	margin: 20px auto 0 auto;
}

@media only screen and (max-width:840px){
	.teamblock {
    width: 80%;
	margin: 30px 10%;
}

	.teamwrap {
    display: block;
		margin: 0 5%;
}
	.teamimg{
	 width: 130px;
    height: 130px;
	}
	
	.teamimgthree{
	width: 100px;
    height: 100px;
	}


}

/* BLOG STYLES */

.blogwrap{
	width: 90%;
	margin: 40px 5%;
	height: auto;
	float: left;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.blogpost{
	width: 45%;
    height: auto;
    float: left;
    margin: 20px auto;
	background-color: #35332e;
}

.contentboximagecontainer{
    width: 100%;
    height: 330px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.blogcontent{
	width: 80%;
	height: auto;
	margin: 20px 10% 30px 10%;
	text-align: center;
}

.blogcontent p{
	color: #fff;
}

.blogcontent > a > button{
	width: 140px;
	height: auto;
	padding: 10px;
	border: 1px solid #c7dcac;
	background-color:rgba(230,172,0,0);
	color: #c7dcac;
	margin: 10px 0 0 0;
		  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.blogcontent > a > button:hover{

	background-color:#c7dcac;
	color: #35332e;
-webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media only screen and (max-width:980px){
	
.blogpost{
	width: 45%;
}
	.contentboximagecontainer{
    height: 220px;
}
}

@media only screen and (max-width:700px){
	
.blogpost{
	width: 90%;
}
	
.blogcontent{
	width: 90%;
	height: auto;
	margin: 20px 5%;
}
}



.singlewrap{
	width: 100%;
	height: auto;
	float: left;
	background-color: #f4f4f4;
}

.singlecontentwrap{
    width: 90%;
    margin: 50px 5%;
    float: left;
}

.singleleft{
	width: 70%;
    height: auto;
    margin: 0 5% 30px 0;
    float: left;
    background-color: #fff;
}

.singleright{
	width: 25%;
	height: auto;
	float: left;
	
}

.sharelinks{
	width: 100%;
	height: auto;
	float: left;
	margin: 0 0 20px 0;
}

.sharelinks hr{
	width: 100%;
	height: 1px;
	border: 0;
	background-color: #c7dcac;
}

.blog_icon{
	width: 40px;
	height: 40px;
	border-radius: 100%;
	margin: 0 10px 0 0;
	border: 1.5px solid #c7dcac;
	float: left;
	display: grid;
    place-items: center;
    background-color: rgba(213,170,3,0);
}

.blog_icon:hover{
    background-color: #c7dcac;	
}

.blog_icon a{
	display: grid;
    place-items: center;
}

.blog_icon img{
	width: 70%;
	height: auto;
	filter: invert(.8);
}

.recentposts{
	width: 100%;
	height: auto;
	float: left;
	margin: 0 0 20px 0;
}

.recentposts li{
	list-style: none;
}

.recentposts hr{
	width: 100%;
	height: 1px;
	border: 0;
	background-color: #c7dcac;
}

.recentposts hr{
	width: 100%;
	height: 1px;
	border: 0;
	background-color: #c7dcac;
}

.recentposts a{
	text-decoration: none;
}

.recentposts p{
	margin: 0 0 10px 0;
	color: #35332e;
}

.recentposts p:hover{
	color: #c7dcac;
}

.singleheader{
	width: 100%;
	height: 400px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	float: left;
}

.singlecontent{
	width: 80%;
	height: auto;
	margin: 40px 10%;
	text-align: center;
	float: left;
}

@media only screen and (max-width:700px){
	
.singleleft{
width: 100%;
    margin: 0 0 30px 0;
}

.singleright{
	width: 100%;
}
	.singleheader {
    height: 300px;
	}

.singlecontentwrap{
    margin: 130px 5%;
}
}

/* CONTACT STYLES */

.contact_wrap{
	width: 100%;
	height: auto;
	margin: 0;
	float: left;
	overflow: hidden;
	background-color: #fff;
}

.contact_title{
	width: 100%;
	height: auto;
	text-align: center;
	margin: 50px 0;
}

.contact_content{
	width: 80%;
	height: auto;
	margin: 0 10%;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
}

.contact_image{
	width: 50%;
	order: 1;
	height: auto;
	float: left;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.contact_logo{
	width: 100%;
	height: auto;
	float: left;
	margin: 30px 0 0 0;
}

.contact_logo > img{
	display: block;
	width: 150px
}

.contact_details{
	width: 30%;
	order: 2;
	margin: 0 10%;
	text-align: left;
	float: left;
}

.contact_details > h8{
	margin: 0 0 20px 0;
	width: 100%;
	float: left;
	height: auto;
}

.contact_address{
	width: 100%;
	height: auto;
	float: left;
	text-align: left;
	margin: 30px 0 0 0;
}

.contact_form{
	width: 80%;
	margin: 50px 10%;
	text-align: center;
	float: left;
	height: auto;
	overflow: hidden;
}

.contactformwrap {
    width: 100%;
    height: auto;
    float: left;
}

.with_frm_style input[type=text], .with_frm_style textarea {
    text-align: center;
    font-family: hypatia-sans-pro, sans-serif;
	font-weight: 400;
	font-style: normal;
	margin: 0;
    font-size: 15px;
    border: 1px solid #35332e;
    border-radius: 0;
    background-color: #fff;
    color: #35332e!important;
    padding: 25px 0;
}

.with_frm_style input[type=text], .with_frm_style input[type=email] {
    text-align: center;
    font-family: hypatia-sans-pro, sans-serif;
	font-weight: 400;
	font-style: normal;
	margin: 0;
    font-size: 15px;
    border: 1px solid #35332e;
    border-radius: 0;
    background-color: #fff;
    color: #35332e!important;
    padding: 25px 0;
}

.frm_style_formidable-style.with_frm_style .frm_submit button {
    width: 100%;
   font-family: hypatia-sans-pro, sans-serif;
	font-weight: 400;
	font-style: normal;
	margin: 0;
    font-size: 15px;
    border: 1px solid #c7dcac;
    border-radius: 0;
    background-color:rgba(213,171,2,0);
    color: #c7dcac;
    padding: 15px 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

input#field_qh4icy::placeholder{
	color: #35332e;
}

input#field_4yn5a::placeholder{
	color: #35332e;
}

input#field_j0974::placeholder{
	color: #35332e;
}

textarea#field_j0974::placeholder{
	color: #35332e;
}

.frm_style_formidable-style.with_frm_style textarea:focus{
	background-color:rgba(255,255,255,0.2);
    box-shadow: none;
	border-color: #35332e;
}

.frm_style_formidable-style.with_frm_style .form-field input:not([type=file]):focus{
	background-color:rgba(255,255,255,0.2);
    box-shadow: none;
	border-color: #35332e;
}

.frm_style_formidable-style.with_frm_style .frm_form_field :invalid {
    color: red;
    background-color:rgba(188,90,105,1.00);
    border-color:rgba(188,90,105,1.00);
}

.frm_style_formidable-style.with_frm_style .frm_submit button:focus{
	background-color: #c7dcac;
	border-color: #c7dcac;
	color: #fff;
	border-radius: 0;
	transition-property: all;
    transition-duration: .2s;
    transition-timing-function: cubic-bezier(0,0,.2,1);
}

.frm_style_formidable-style.with_frm_style .frm_submit button:hover {
	background-color: #c7dcac;
	border-color: #c7dcac;
    color: #fff;
	transition-property: all;
    transition-duration: .2s;
    transition-timing-function: cubic-bezier(0,0,.2,1);
}

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

.contact_title {
    margin: 100px 0 50px 0;
}
}

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

.contact_image{
	width: 100%;
	order: 2;
	height: 200px;
}

.contact_details{
	width: 100%;
	order: 1;
	margin: 0 0 50px 0;
}
}

/* FOOTER STYLES */


.approachslidewrap{
	width: 90%;
	margin: 60px 5% 60px 5%;
	height: auto;
	float: left;
}

.approachslider{
	width: 90%;
	height: auto;
	
	margin: 0 5%;
}

.logoslide {
	width: 100%;
	height: auto;
	text-align: center;
}

.logoslide img{
	max-height: 60px;
    max-width: 120px;
	margin: 0 auto;
    vertical-align: middle;
    display: inline-block;
}

.slick-initialized .slick-slide {
    float: none;
    display: inline-block;
    vertical-align: middle;
}

@media only screen and (max-width:700px){
	.approachslider {
    width: 100%;
    height: auto;
    margin: 0;
}
}

.footer_wrap{
	width: 100%;
	height: auto;
	float: left;
	overflow: hidden;
	background-color: #35332e;
}

.footer_content{
    width: 90%;
    height: auto;
    margin: 0 5%;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer_left{
    width: 200px;
    height: auto;
    position: relative;
    top: 0;
    left: 0;
    float: left;
}

.footer_left img{
    width: 100%;
	display: block;
	filter: invert(1);
}

.footer_right{
	width: 60%;
	height: auto;
	margin: 50px 0;
	float: right;
	text-align: right;
}

.footer_button{
	width: 100%;
	height: auto;
	float: right;
	margin-bottom: 20px;
}

.footer_button a{
	font-family: hypatia-sans-pro, sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding: 10px 20px;
    font-size: 16px;
    border: 1.5px solid #c7dcac;
    color: #fff;
    text-decoration: none;
    background-color: rgba(213,170,3,0);
}

.footer_button a:hover{
    color: #35332e;
    background-color: #c7dcac;
}

.footer_icon_wrap{
	width: 100%;
	height: auto;
	float: right;
}

.footer_icon{
	width: 40px;
	height: 40px;
	border-radius: 100%;
	margin: 0 0 0 10px;
	border: 1.5px solid #c7dcac;
	float: right;
	display: grid;
    place-items: center;
    background-color: rgba(213,170,3,0);
}

.footer_icon:hover{
    background-color: #c7dcac;	
}

.footer_icon a{
	display: grid;
    place-items: center;
}

.footer_icon img{
	width: 70%;
	height: auto;
}

.footer_signoff{
	width: 100%;
	height: auto;
	float: left;
	overflow: hidden;
	padding: 10px 0;
	background-color: #232220;
}

.footer_signoff_content{
	width: 80%;
	height: auto;
	text-align: center;
	color: #fff;
	font-family: hypatia-sans-pro, sans-serif;
	font-weight: 300;
	font-style: normal;
	margin: 0 10%;
	padding: 0;
	font-size: 12px;
}

.footer_signoff_content a{
	color: #fff;
	text-decoration: none;
}

.footer_signoff_content a:hover{
	color: #c7dcac;
}


@media only screen and (max-width:650px){
	.footer_left {
		margin: 40px 0 0 0;
	}
	.footer_right {
    width: 100%;
    float: left;
    text-align: left;
}
	.footer_icon_wrap {
    float: left;
}
	.footer_icon {
    margin: 0 10px 0 0;
    float: left;
}
}

/* GLOBAL FONT MEDIA QUERIES */

@media only screen and (max-width:950px){
	h2{
		font-size: 22px;
	}
	h3{
		font-size: 15px;
	}
	p{
		font-size: 12px;
	}
}

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

@media only screen and (max-width:700px){
	
	
	h4{
			font-size: 35px;
	}
}

@media only screen and (max-width:530px){
	
	h3{
		font-size: 12px;
	}
}

.privacy__wrap{
	width: 80%;
	height: auto;
	margin: 20px 10%;
	text-align: left;
	float: left;
	overflow: hidden;
}

.privacy__wrap > h2{
	margin: 20px 0 10px 0;
}
