/* Department CSS Document */
/*For mobile first adaptive design place styles for mobile and up in the mobile and up area.
Place styles for tablet and up inside the media query in the tablet and up area.
Place styles for desktop only inside the media query in the desktop only area.

For questions or media query training contact Web Development Services.
*/
/* ====================== Mobile and Up ========================== */
/************************GENERIC CSS -BUTTONS, BGS, HEADING STYLES, ETC-***************************/
/*so white is visible when editting*/
.ou-justedit-region .text-white {
    color: #185c33;
}
.bg-green-xlight {
    background-color: #ECF0ED;
}

ul.long-list {
	padding-top: 15px;
}
ul.long-list li {
    margin: 0;
    padding: 5px 0;
}

.button-solid {
    font-weight: bold;
    text-transform: none;
	display: flex;
    justify-content: space-between;
	border-radius: 8px;
	transition: all 300ms;
}
.button-solid:hover {
	text-decoration: none;
}
.button-solid:after {
	color: #fff;
}
.button-solid:hover:after, .button-solid:focus:after {
	color: #000;
}
.button-solid:after {
    content: "\f061";
    font-family: "Font Awesome 5 Solid", "Font Awesome 5 Pro";
    color: #fff;
}
.button-shadow {
	color: #275d38;
	display: flex;
    justify-content: space-between;
	border-radius: 8px;
	font-weight: bold;
	text-transform: capitalize;
	transition: all 300ms;
	box-shadow: none;
}
.button-shadow:after, .button-solid-inverted:after {
    content: "\f061";
    font-family: "Font Awesome 5 Solid", "Font Awesome 5 Pro";
    color: #275d38;
}
.button-shadow:hover, .button-shadow:focus {
	border: 2px solid #fff;
	text-decoration: none;
}
.button-shadow:hover:after, .button-shadow:focus:after, .button-solid-inverted:hover:after, .button-solid-inverted:focus:after {
	color: #fff;
}
.button-solid-inverted {
	background-color: transparent;
    color: #275D38;
    font-weight: bold;
    text-transform: capitalize;
	display: flex;
    justify-content: space-between;
	border-radius: 8px;
	transition: all 300ms;
}
.button-solid-inverted:hover, .button-solid-inverted:focus {
	color: #fff;
    text-decoration: none;
    background-color: #275D38;
	border: 2px solid #fff;
}

/*ICON BANNER ON GREY BGS*/
.bg-grey-xlight hr.section-divider-icon:before {
	background-color: #f9f9f9;
}

/*********************PICTURE CARDS***********************/
.card-picture-custom {
	border-radius: 8px;
	transition: all 300ms;
	box-shadow: 0px 0px 6px rgb(0 0 0 / 16%);
	overflow: hidden;
}
.card-picture-custom .card-picture-img {
    order: -1;
    height: 100%;
	max-height: 130px;
}
.card-picture-custom .card-picture-button {
    overflow: hidden;
    height: 0;
}
.card-picture-custom .card-picture-content {
	padding: 10px 20px 30px;
    height: 100%;
    color: #000;
    display: block;
}
.card-picture-custom .card-picture-title {
	font-size: 24px;
    font-weight: bold;
    color: #185c33;
    position: relative;
    padding: 0 50px 0px 20px;
    display: flex;
    align-items: center;
}
.card-picture-custom .card-picture-title:before {
    content: "\f0a9";
    display: inline-block;
    color: #185c33;
    font-size: 34px;
    position: absolute;
    font-family: "Font Awesome 5 Pro";
    right: 20px;
}
.card-picture-custom:hover {
    background-color: #185c33;
}
.card-picture-custom:hover .card-picture-title, .card-picture-custom:hover .card-picture-title:before, .card-picture-custom:hover .card-picture-content {
	color: #fff;
}


/*********************FULL CONTAINER IMAGE CONTENT SECTION***********************/
.image-content-section .image {
    padding: 0;
	z-index: 3;
}
.image-content-section .image p {
	height: 100%;
}
.image-content-section .image img {
	object-fit: cover;
	height: 200px;
}
.image-content-section .content {
    padding-top: 40px;
    padding-bottom: 40px;
}


/*End mobile and up styles*/
/* ====================== Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 768px) {
	
	/************************GENERIC CSS -BUTTONS, BGS, HEADING STYLES, ETC-***************************/
	ul.long-list {
		column-count: 2;
	}
	
	/*********************FULL CONTAINER IMAGE CONTENT SECTION***********************/
	.image-content-section .content {
		padding: 0;
		margin: 40px 0;
		padding-left: 15px;
		padding-right: 50px;
	}
	.image-content-section .image img {
		height: 100%;
	}
	
}

/*end media query*/
/*End tablet and up styles*/
/* ====================== Landscape Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 992px) {
	/************************GENERIC CSS -BUTTONS, BGS, HEADING STYLES, ETC-***************************/
	.page-header {
		min-height: 350px;
	}
	
	/*********************FULL CONTAINER IMAGE CONTENT SECTION***********************/
	.image-content-section .content {
		padding: 0;
		margin: 40px 0;
        padding-left: 15px;
        padding-right: 50px;
	}
	
}

/*end media query*/
/*End landscape tablet and up styles*/
/* ====================== Desktop Only (Overrides Mobile and Tablet Styles) ========================== */
@media only screen and (min-width: 1200px) {
	/*********************FULL CONTAINER IMAGE CONTENT SECTION***********************/
	.image-content-section, .image-content-section .image img {
		max-height: 450px;
	}
	.image-content-section .content {
		display: flex;
		max-width: 600px;
		flex-direction: column;
		justify-content: center;
		margin: 0 0 0 auto;
		padding-right: 100px;
	}
	.image-content-section .content.right {
		margin-left: unset;
		padding: 0 50px;
	}
	.image-content-section .content h2 {
		margin-top: 0;
	}
	
}

/*end media query*/
/* ====================== Desktop Only (Overrides Mobile and Tablet Styles) ========================== */
@media only screen and (min-width: 1500px) {
	/************************GENERIC CSS -BUTTONS, BGS, HEADING STYLES, ETC-***************************/
	.page-header {
		min-height: 400px;
	}
	
}

/*end media query*/
/*End desktop only styles*/
/*END OF DOCUMENT*/