/* 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 ========================== */
/************CONTACT SECTION************/
.contact-section {
	position: relative;
	background-image: url(/ce/images/professional-education/contact-new.jpg);
    background-size: cover;
    background-position: top;
    padding-bottom: 80px;
    padding-top: 40px;
	z-index: 0;
}
.contact-blurb {
    color: #fff;
    background-color: rgba(0, 132, 61, 0.9);
    padding: 30px;
    position: relative;
}
.contact-blurb .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;
}
.contact-blurb .button-shadow:hover, .button-shadow:focus {
    border: 2px solid #fff;
	color: #fff;
    text-decoration: none;
}
.contact-blurb .button-shadow:hover:after, .button-shadow:focus:after {
	color: #fff;
}

/*********************THREE CARD*********************/
.three-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
	padding: 40px 15px;
}
.three-card:first-child, .three-card:nth-child(2) {
    border-bottom: 4px solid #2D9A51;
}

/* ====================== HOVER CARD CSS ========================== */
.card-hover {
	background-color: #275D38;
	border-radius: 8px;
	min-height: 330px !important;
}
.card-hover-img {
	opacity: 0.3;
}
.card-hover-container {
	background-color: rgba(0, 0, 0, 0.0);
}

/*icons on hover cards*/
.card-hover-title, .card-hover-back {
    position: relative;
}

.card-hover-back:before {
   content: "\f0d7";
    font-family: "Font Awesome 5 Solid", "Font Awesome 5 Pro";
    position: absolute;
    top: -25px;
    font-weight: bold;
    text-align: center;
    left: 0;
    right: 0;
    color: #fff;
    font-size: 32px;
}
.card-hover-back {
    padding-top: 15px;
}

/*links*/
.hover-link {
	position: relative;
	color: #fff;
    text-decoration: underline;
	text-align: center;
}
.hover-link:hover {
	color: #fff;
}
.hover-link:after {
	content: "\f054";
    font-family: "Font Awesome 5 Pro";
    margin-left: 10px;
    position: absolute;
    font-size: 12px;
    bottom: 1px;
}

.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;
}
.button-solid-inverted:after {
    content: "\f061";
    font-family: "Font Awesome 5 Solid", "Font Awesome 5 Pro";
    color: #275d38;
}
.button-solid-inverted:hover:after, .button-solid-inverted:focus:after {
	color: #fff;
}

/*End mobile and up styles*/
/* ====================== Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 768px) {
	/*****************CONTACT SECTION*****************/
	.contact-section {
		padding-top: 50px;
	}
	.contact-blurb:before {
		content: "";
        position: absolute;
        background: url(/ce/images/professional-education/ladder-circle.png) no-repeat;
        background-size: 100px;
        width: 100px;
        left: -65px;
        bottom: -80px;
        z-index: 5;
        height: 100px;
	}
	
	/*********************THREE CARD*********************/
	.three-card:first-child, .three-card:nth-child(2) {
		border-bottom: 0;
	}
	.three-card:first-child, .three-card:last-child {
		border-right: 4px solid #2D9A51;
	}
	.three-card {
		margin: 20px 0;
		padding; 5px 40px;
	}
		
}/*end media query*/
/*End tablet and up styles*/
/* ====================== Landscape Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 992px) {
	[data-uvu-section="7"] [data-uvu-region="2"] {
		margin-top: 30px;
	}
	[data-uvu-section="6"] [data-uvu-region="3"] {
		margin-top: 20px;
	}
	
	/*****************CONTACT SECTION*****************/
	.contact-section {
        height: 500px;
    }
	.contact-blurb {
        margin: 0 15px;
    }
	
	/*********************THREE CARD*********************/
	.three-card {
		padding: 10px 20px;
	}
	.three-card:nth-child(2) {
		border-right: 4px solid #2D9A51;
	}
	.three-card:last-child {
		border-right: 0;
	}
	
	/* ====================== HOVER CARD CSS ========================== */
	/*icons on hover cards*/
	.card-hover-title {
		font-size: 30px !important;
	}
	.card-hover-title:after {
		content: "\f067";
		font-family: "Font Awesome 5 Solid", "Font Awesome 5 Pro";
		position: absolute;
		bottom: -60px;
		left: 0;
		right: 0;
		color: #fff;
		font-size: 24px;
	}
	.card-hover-back {
		padding-top: 0;
		background-color: #275D38;
	}
	
	.card-hover-back:before {
		top: 0;
		font-size: 40px;
	}
	
}/*end media query*/
/*End landscape tablet and up styles*/
/* ====================== Desktop Only (Overrides Mobile and Tablet Styles) ========================== */
@media only screen and (min-width: 1200px) {
	[data-uvu-section="7"] [data-uvu-region="2"] {
		margin-top: 50px;
	}
	[data-uvu-section="6"] [data-uvu-region="1"] {
		margin-top: 50px;
	}
	
	/* ====================== HOVER CARD CSS ========================== */
	/*changing container fluid on card hover section*/
	.card-hover {
		min-height: 370px !important;
	}
	
	/*****************CONTACT SECTION*****************/
	.contact-section {
		padding-top: 60px;
	}
	.contact-blurb:before {
        background-size: 120px;
        width: 120px;
        left: -80px;
    }
		
}/*end media query*/
/* ====================== Desktop Only (Overrides Mobile and Tablet Styles) ========================== */
@media only screen and (min-width: 1600px) {
	
	/* ====================== HOVER CARD CSS ========================== */
	[data-uvu-section="3"] .container-fluid {
		max-width: 1500px;
	}
		
}/*end media query*/
/*End desktop only styles*/
/*END OF DOCUMENT*/
