:root {
	--white: #FFFF;
	--dark-grey: #434343;
	--light-grey: #f8f4f4;
	--green: #237387;
	--gradient: linear-gradient(90deg, rgba(104,36,92,1) 0%, rgba(56,148,92,1) 100%); 
}

html {
  scroll-behavior: smooth;
}

/* ----------------------------------------------------- Background Styles ------------------------------------------------- */
.bg-light-grey {
	background-color: var(--light-grey);
}

.bg-dark-grey {
	background-color: var(--dark-grey);
}
.border-bottom-white {
	border-bottom: solid 1px var(--white);
}
.border-gradient {
	background-image: linear-gradient(90deg, rgba(104,36,92,1) 0%, rgba(56,148,92,1) 100%); 
	height: 10px; 
}
.bg-gradient {
	background-image: linear-gradient(90deg, rgba(104,36,92,1) 0%, rgba(56,148,92,1) 100%); 
}
.min-height {
	min-height: 60vh;
}
.boxes-min-height {
	height: 20vw;
}

.boxes-width {
    width: 48%;
}

.overlay-boxes {
    position: absolute;
    bottom: 3%;
}

.box-shadow {
  background-color: white;
  box-shadow: 5px 5px 5px 5px #aaa;
  border-radius: 10px;
	padding: 0;

}

.box-shadow-underline {
  background-color: white;
  box-shadow: 5px 5px 5px #aaa;
}

.box-shadow-row {
  background-color: white;
  box-shadow: 5px 5px 5px 5px #aaa;
}

.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) a {
	border-radius: 10px;
}

/* ----------------------------------------------------- Menu Styles ------------------------------------------------- */

.menu ul {
	padding: 0px;
	margin: 0;
}
.menu li {
	list-style: circle;
	display: inline-block;
	padding: 3px 15px;
	background-image: none;
	margin-bottom: 10px;
	color: var(--dark-grey);
}
.menu a {
	font-weight: 300;
}

/* ----------------------------------------------------- Header And Banner Image Styles ---------------------------------------------------------------- */

header {
	/*position: absolute;*/
	width: 100%;
	top: 0;
	left: 0;
	right: 0;
	/*padding: 50px 5%;*/
}
/*.header-row {
	position: absolute;
}*/

.logo {
	width: 100%;
	max-width: 130px;
	min-width: 500px;
}

.banner-image {
	width: 100%;
	height: auto;
	min-height: 65vh;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-blend-mode: multiply;
	display: flex;
	flex-direction: column;
}

.header-caption {
	padding: 20px 5% 35px !important;
	width: 90%;
	font-family: 'Lato', sans-serif;
	color: var(--white) !important;
	font-weight: 700;
	font-size: 28px;
	line-height: initial;
	text-align: left;
}

.header-caption h1 {
	font-size: 70px;
	font-weight: 600;

}


/*-------------------------------------------------------------------------------- Burger Styles ---------------------------------------------------------------------------------------*/

#burger {
	transform: translateZ(0);
	width: 50px;
	height: 50px;
	cursor: pointer;
	position: absolute;
	right: 5%;
	top: 3px;
	z-index: 9999;
}

#burger .top_line, #burger .middle_line, #burger .bottom_line {
	transition: transform 0.3s ease, background 0.3s ease, opacity 0.3s ease, top 0.3s ease;
	width: 35px;
	height: 3px;
	border-radius: 0px;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	background-color: var(--white);
}

#burger .top_line {
	top: -18px;
}

#burger .bottom_line {
	top: 18px;
}

.toggle_burger {
	transform: translateZ(0);
}

.toggle_burger .top_line {
	top: 0 !important;
	transform: rotate(45deg);
	background-color: var(--white);
}

.toggle_burger .middle_line {
	opacity: 0;
	background-color: var(--white);
}

.toggle_burger .bottom_line {
	top: 0 !important;
	transform: rotate(-45deg);
	background-color: var(--white);
}

/* ----------------------------------------------------- Nav Styles ------------------------------------------------- */

.overlay {
	min-height: 60vh;
	width: 100%;
	position: absolute;
	z-index: 3;
	top: -300vh;
	left: 0;
	overflow: hidden;
	transition: 0.3s;
	display: flex;
	background: #092344;
	padding: 230px 5% 0 5%;
	color: white !important;
}
.overlay-inner {
	margin: auto;
	/*display: flex;*/
	width: 100%;
}
.open-menu {
	top: 0 !important;
}
.overlay-inner .menu-section {
	width: 29%;
	margin: 0 20px;
}
.overlay-inner .menu-section-lrg {
	width: 18%;
}
.overlay-inner div h2{
	font-weight: bold;
	margin-bottom: 12px;
	font-size: 40px;
}
.menu {
	padding: 0px !important;
	margin-bottom: 0 !important;
}
.menu-row {
	display: flex; 
	margin-bottom: 5vh; 
	margin-top: 2.5vh;
}
.menu-section ul li {
	list-style: circle;
	padding: 0;
	display: block;
	margin-bottom: 7px;
	text-decoration: none;
	line-height: 20px;
}
.menu-margin-top {
	margin-top: 51px !important;
}
.menu-section ul li a {
	text-decoration: none;
	color: #fff;
}
.menu-section p, .menu-section a {
	color: #fff;
}
/*----- nav styles -----*/
#nav ul, #nav ul li {
	list-style:none;
	padding:0;
	margin:0;
}

#nav li {
	float:left;
}

#nav ul {
	margin:0px;
}

#nav {
	text-align:right;
	margin: auto 0px auto auto;
}

#nav a {
    font-size:15px;
    display:block;
    float:left;
	margin-left: 25px;
	color: #fff;
	text-transform: uppercase;
}

#nav a:hover {
    text-decoration: underline;
}	

.nav-bar {
	position: absolute;
	right: 0;
	margin-right: 5%;
	z-index: 9999;
}


/* ----------------------------------------------------- Generic Content Styles ---------------------------------------------------------------- */

.content-padding {
	padding: 5%;
}
.content-padding-sm {
	padding: 2.5%;
}
.content-margin {
	margin: 5% 0;
}

.solution-box {
	width: 32%;
	height: 45vh;
}

.col-text-4 {
	width: 18%;
}
.cat-post-image {
	width: 100%;
	height: 20vw;
	object-fit: cover;
	object-position: center;
	margin-bottom: 20px;
}

/* ----------------------------------------------------- Metaslider Styles ---------------------------------------------------------------- */

.slides {
	padding: 0px !important;
}
.ms-image {
	display: block !important;
	height: 80vh !important;
	position: relative !important;
}
.ms-image img {
	height: 100%;
	object-fit: cover;
	object-position: center;
	width: 100%;
	background-color: rgba(0,55,98,0.65);
}

.metaslider .caption-wrap {
    background: none !important;
	opacity: 4 !important;
	width: 100% !important;
	background-image: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.5)) !important;
	height: 100%;
}

.caption-wrap .caption {
	position: absolute;
	top: 25%;
	padding: 20px 5% 35px !important;
	width: 90%;
	font-family: 'Lato', sans-serif;
	color: var(--white) !important;
	font-weight: 700;
	font-size: 28px;
	line-height: initial;
	text-align: left;
}

.caption-wrap .caption h1 {
	font-size: 70px;
	font-weight: 600;

}

.metaslider .flexslider .slides > li img
{
	height: inherit;
}
.overlay {
    padding: 110px 6% 1.5% 6%;
    width: 100%;
    height: 35%;
    background-color: var(--dark-grey);
    display: flex;
    align-items: center;
	border-bottom: solid 6px var(--purple)
}
/* ----------------------------------------------------- Button and A Styles ---------------------------------------------------------------- */

a.button, .tab-content a {
	width: 100%;
	text-align: center;
	border: solid 1px #707070;
	color: white;
	background-color: var(--green);
	border-radius: 10px;
	font-weight: bold;
	font-size: 20px;
	display: block;
	padding: 10px 0;
	text-decoration: none !important;
	margin-top: 5%;
}

button {
    text-align: center;
  border: none;
  color: white;
  background-color: var(--green);
  border-radius: 11px;
  display: block;
  text-decoration: none !important;
  margin-top: 5%;
  padding: 10px;
  font-size: 14px;
}

button:hover {
	text-align: center;
	border: none;
	color: white;
	background-color: black;
	border-radius: 11px;
	display: block;
	text-decoration: none !important;
	margin-top: 5%;
	 padding: 10px;
  font-size: 14px;
}

.wp-block-button__link:hover {
	text-align: center;
	border: none;
	color: white;
	background-color: black !important;
	border-radius: 11px;
	display: block;
	text-decoration: none !important;
	padding: calc(.667em + 2px) calc(1.333em + 2px);
  font-size: 1.125em;
}

.caldera-grid .btn-default {
    color: var(--white) !important;
    background-color: var(--green) !important;
    border: none !important;
}
.caldera-grid .btn-default:hover {
    color: var(--white) !important;
    background-color: var(--orange) !important;
    border: none !important;
}

/* ----------------------------------------------------- WordPress Editor Styles ---------------------------------------------------------------- */
.wp-block-pb-accordion-item {
	padding: 20px 0;
}

/* ----------------------------------------------------- Category Styles ---------------------------------------------------------------- */
.active {
	/*display: flex !important;*/
	display: block !important;
}
.active-btn {
	color: #A30922;
	transition-duration: 0.4s;
}
#all, #reno, #news, #media {
	display: none;
	margin: 0 -10px;
}
a.blog:hover {
	text-decoration: none;
}
a.blog:hover h4 {
	color: var(--brand-green) !important;
	transition-duration: 0.5s;
	transition-delay: 0s;
}
.blog {
	position: relative;
	margin-bottom: 50px;
}
.blog:after {
	content: ""; /* This is necessary for the pseudo element to work. */ 
    display: block; /* This will put the pseudo element on its own line. */
    margin: 0 auto; /* This will center the border. */
    width: 93%; /* Change this to whatever width you want. */
    padding-top: 20px; /* This creates some space between the element and the border. */
    border-bottom: 1px solid var(--light-green); /* This creates the border. Replace black with whatever color you want. */
	position: absolute;
	bottom: 0;
}
.border-bottom {
	/*position: absolute;*/
	bottom: 0;
	width: 95%;
	border-color: #abc14d !important;
	margin-bottom: 50px;
}
.filter-btn {
	margin: 20px 15px 0 5px;
	cursor: pointer;
	transition-duration: 0.4s;
	font-size: 17px;
	color: var(--dark-green);
	border-bottom: solid 2px var(--light-green);
}

.cat-post-image {
	width: 100%;
	height: 20vw;
	object-fit: cover;
	object-position: center;
	margin-bottom: 20px;
}

.addtoany_content {
    margin-top: 50px !important;
    color: #fff !important;
}
.a2a_menu a {
	color: #000 !important;
}
/* ----------------------------------------------------- Contact Form --------------------------------------------------------- */
.nf-form-content input[type="submit"] {
	width: 100% !important;
	background: black !important;
	color: white !important;
}

/* testimonial plugin styles */
#sp-testimonial-free-wrapper-267 .sp-testimonial-free-section .sp-testimonial-client-name {
	color: #fff !important;
}
.sp-testimonial-free-section .sp-testimonial-item {
	padding: 0 5%;
}

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

footer {
}
footer p, footer a {
	color: var(--dark-grey);
}
.footer-lower {
	background-colour: black;
	color: white !important;
}
.footer-lower p, .footer-lower a {
	font-size: 15px;
}



/* ----------------------------------------------------- 2200px + ---------------------------------------------------------------- */

@media only screen and (min-width : 2200px) {
}


/* ----------------------------------------------------- Smaller than 2200px ----------------------------------------------------- */

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


/* ----------------------------------------------------- Smaller than 1800px ----------------------------------------------------- */

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


/* ----------------------------------------------------- Smaller than 1750px ----------------------------------------------------- */

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


/* ----------------------------------------------------- Smaller than 1650px ----------------------------------------------------- */

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


/* ----------------------------------------------------- Smaller than 1550px ----------------------------------------------------- */

@media only screen and (max-width : 1550px) {
	.boxes-min-height {
		height: 30vw;
	}
}


/* ----------------------------------------------------- Smaller than 1450px ----------------------------------------------------- */

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


/* ----------------------------------------------------- Smaller than 1350px ----------------------------------------------------- */

@media only screen and (max-width : 1350px) {
	.slider-image {
		width: calc(50% - 10px);
		min-width: calc(50% - 10px);
	}
	.boxes-min-height {
		height: 33vw;
	}
    
    .overlay-boxes {
        position: absolute;
        bottom: -3%;
    }
}


/* ----------------------------------------------------- Smaller than 1250px ----------------------------------------------------- */

@media only screen and (max-width : 1250px) {
	.boxes-min-height {
		height: 40vw;
	}
} 


/* ----------------------------------------------------- Smaller than 1125px ----------------------------------------------------- */

@media only screen and (max-width : 1125px) {
	.boxes-min-height {
		height: 40vw;
	}
	
}


/* ----------------------------------------------------- Smaller than 1080px ----------------------------------------------------- */
@media only screen and (max-width : 1080px) {
	.caption-wrap .caption {
 	   font-size: 30px;
	}
	.boxes-min-height {
		height: 40vw;
	}
    .overlay-boxes {
    position: absolute;
    bottom: 5%;
}

}


/* ----------------------------------------------------- Smaller than 1024px - iPad landscape ----------------------------------------------------- */

@media only screen and (max-width : 1024px) {	
	.testimonial {
		margin-bottom: 40px;
		padding: 18px;
	}
	.bg-orange img {
    	max-width: 50px;
	}
	.boxes-min-height {
		height: 26vw;
	}
    
    .overlay-boxes {
        position: relative;
        bottom: 0;
}
    
	.boxes-min-height {
		height: 30vw;
        margin-bottom: 5%;
	}

}


/* ----------------------------------------------------- Smaller than 991px ------------------------------------------------------ */

@media only screen and (max-width : 991px) {
	.caption-wrap .caption {
 	   	font-size: 25px;
	}
	.menu li {
		padding: 1px 12px 2px 12px;
	}
	.boxes-min-height {
		height: 45vw;
	}
    
.boxes-width {
    width: 100%;
}


}

/* ----------------------------------------------------- Smaller than 870px ------------------------------------------------------ */

@media only screen and (max-width : 870px) {	
	.mobile-hidden {
		  display: none !important;
}
.col-text-4 {
  width: 100%;
	margin-bottom: 20px;
}
    
    .overlay-boxes {
        position: relative;
        bottom: 0;
}
    
	.boxes-min-height {
		height: 55vw;
        margin-bottom: 5%;
	}


}

/* ----------------------------------------------------- Smaller than 800px ------------------------------------------------------ */

@media only screen and (max-width : 800px) {	
	.cat-post-image {
		height: 80vw;
	}
	
}


/* ----------------------------------------------------- Smaller than 768px - iPad portrait ------------------------------------------------------ */

@media only screen and (max-width : 768px) {
	.mobile-center {
		text-align: center !important;
	}
	.mobile-left {
		text-align: left !important;
	}
	.metaslider .caption-wrap {
	    width: 100% !important;
	}
	.bg-orange img {
    	max-width: 40px;
	}
	.psac-post-short-content {
		font-size: 14px !important;
    	line-height: 19px !important;
	}

.boxes-width {
    width: 100%;
}
    
    .client-logo {
        margin-bottom: 10%;
    }
    
    
.header-caption h1 {
	font-size: 40px;
	font-weight: 600;

}
    
.logo {
        
    min-width: 300px;        
    
}


/* ----------------------------------------------------- Smaller than 700px ------------------------------------------------------ */

@media only screen and (max-width : 700px) {
    
	.boxes-min-height {
		height: 65vw;
	}

    
}



/* ----------------------------------------------------- Smaller than Mobile ----------------------------------------------------- */

@media only screen and (max-width : 650px) {
	.psac-slider-and-carousel .owl-nav {
		width: 118% !important;
		left: -9%;
	}
	
	.psac-slider-and-carousel .owl-nav .owl-next, .psac-slider-and-carousel .owl-nav .owl-prev {
    	background: rgba(255,255,255,1) !important;
	}
}


/* ----------------------------------------------------- Smaller than 540px ------------------------------------------------------ */

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

	.boxes-min-height {
		height: 85vw;
	}

}


/* ----------------------------------------------------- Smaller than 500px ------------------------------------------------------ */

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

}