:root {
	--white: #FFF;
	--green: #93A8AC;
	--blue: #70798C;
	--dark-grey: #7C7C7C;
}

html {
  scroll-behavior: smooth;
}

/* ----------------------------------------------------- Background Styles ------------------------------------------------- */
.bg-light-grey {
	background-color: var(--light-grey);
}
.bg-green {
	background-color: var(--green);
}
.bg-blue {
	background-color: var(--blue);
}
.border-top-green {
	border-top: solid 3px var(--green);
}
.border-bottom-green {
	border-bottom: solid 3px var(--green);
}




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

.menu ul {
	padding: 0px;
	margin: 0;
}
.menu li {
	list-style: none;
	display: inline-block;
	padding: 3px 15px;
	margin-left: 10px;
	background-image: none;
	margin-bottom: 10px;
}
.menu a {
	color: var(--dark-grey);
	font-size: 15px;
	font-weight: 400;
}
logo
/* ----------------------------------------------------- Header And Banner Image Styles ---------------------------------------------------------------- */

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

.logo {
	width: 65%;
	/*max-width: 350px;
	min-width: 200px;*/
}

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

.back-button {
	background-color: var(--brand-blue);
	border-radius: 50%;
	width: 70px;
	height: 70px;
	line-height: 70px;
	text-align: center;
	display: block;
	font-size: 50px;
	color: var(--white) !important;
	text-decoration: none !important;
	margin: 40px 0;
	border: none;
	cursor: pointer;
}



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

.content-padding {
	padding: 5%;
}
.content-padding-sm {
	padding-top: 2.5%;
	padding-bottom: 2.5%;
	padding-left: 5%;
	padding-right: 5%;
}
.content-margin {
	margin: 5% 0;
}

.testimonial {
	margin-bottom: 40px;
	padding: 30px;
}


.photo-credit {
	position: absolute;
	bottom: 15px;
	font-size: 13px;
	color: #fff;
}

.partnerships {
	padding-left: 20%;
	padding-right: 20%;
}

/* ----------------------------------------------------- Category Styles ---------------------------------------------------------------- */
.active {
	/*display: flex !important;*/
	display: block !important;
}
.active-btn {
	color: #A30922;
	transition-duration: 0.4s;
}
#all, #blog, #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;
}
.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. */
	position: absolute;
	bottom: 0;
}
.border-bottom {
	/*position: absolute;*/
	bottom: 0;
	width: 95%;
	border-color: #abc14d !important;
}
.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: contain;
	object-position: center;
	margin-bottom: 20px;
}

.painting-of-the-month-post-image {
	width: 100%;
	object-fit: cover;
	object-position: center;
	margin-bottom: 20px;
}

a.gallery-link {
	text-decoration: none;
}
a.gallery-link img:hover {
	opacity: 0.7;
}
.addtoany_content {
    margin-top: 50px !important;
    color: #fff !important;
}
.a2a_menu a {
	color: #000 !important;
}

/* ----------------------------------------------------- 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 {
    bottom: 5% !important;
    background: none !important;
	opacity: 1 !important;
}
.caption-wrap .caption {
	position: absolute;
	bottom: 5%;
	left: 3%;
	padding: 20px 35px !important;
	background-color: var(--orange);
	width: auto;
	font-family: 'IBM Plex Sans', sans-serif;
	color: var(--white);
	font-weight: 400;
	font-size: 35px;
	text-transform: uppercase;
	line-height: initial;
}

.metaslider .flexslider .slides > li img
{
	height: inherit;
}


/* ----------------------------------------------------- Button and A Styles ---------------------------------------------------------------- */

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

button {
	background-color: var(--green);
	border: none;
	color: white; 
	padding: 10px;
}

button:hover {
	background-color: var(--blue);
	border: none;
	color: white; 
	padding: 10px;
	cursor: pointer;
}

.nf-form-content input[type="submit"] {
	background-color: var(--green) !important;
	width: 100% !important;
	font-family: 'Open Sans', sans-serif;
}

.underline {
	border-top: var(--green) solid 3px; 
	width: 100px;
	margin-bottom: 30px;
}
/* ----------------------------------------------------- Footer Styles ---------------------------------------------------------------- */

footer {
	padding: 50px 5%;
	background-color: var(--blue);
}
footer p, footer a {
	color: white;
	font-size: 14px;
}





/* ----------------------------------------------------- 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) {
}


/* ----------------------------------------------------- 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);
	}
}


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

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


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

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


/* ----------------------------------------------------- Smaller than 1080px ----------------------------------------------------- */
@media only screen and (max-width : 1080px) {
	.caption-wrap .caption {
 	   font-size: 30px;
	}
}


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

@media only screen and (max-width : 1024px) {	
	.testimonial {
		margin-bottom: 40px;
		padding: 18px;
	}
	.bg-orange img {
    	max-width: 50px;
	}
.cat-post-image {
	width: 100%;
	height: 60vw;

}
}


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

@media only screen and (max-width : 991px) {
	.caption-wrap .caption {
 	   	font-size: 25px;
		padding: 16px 20px !important;
	}
	.menu li {
		padding: 1px 12px 2px 12px;
	}
}

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

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

}

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

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


/* ----------------------------------------------------- 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: 90% !important;
	}
	.bg-orange img {
    	max-width: 40px;
	}
	.psac-post-short-content {
		font-size: 14px !important;
    	line-height: 19px !important;
	}
	.logo {
		padding: 6% 0;
	}

}


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

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

/* ----------------------------------------------------- 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) {	

}


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

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

}