/* 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 ========================== */
/*GENERAL CSS*/
.box-shadow-section {
	box-shadow: 0px 5px 6px #00000014;
	z-index: 0;
}
.bg-green-xlight {
    background-color: #ECF0ED;
	z-index: -1;
}
blockquote {
    border: none;
    margin: 0;
}

/*LISTS*/
.checklist {
    margin-left: 4em !important;
}
.checklist li {
    padding-bottom: 10px;
}
.checklist .fa-li {
    color: #77B130;
    font-size: 40px;
    left: -1.5em;
    top: -10px;
    width: unset;
}
.box-shadow-section.position-relative .checklist .fa-li {
	color: #185C33;
}
.checklist h4, .checklist h3 {
    color: #000;
    font-weight: bold;
    font-size: 22px;
}

/*BUTTONS AND LINKS*/
.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;
}

/*COMPANY LOGOS*/
.company-logos .transform-grid-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 20px;
    padding-top: 20px;
}

/*ACCORDIONS*/
details summary h4 {
    font-size: 20px !important;
    font-weight: 600 !important;
}
.accordion-content ul li {
    padding: 0;
}

/*End mobile and up styles*/
/* ====================== Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 768px) {
	.width-50 {
		width: 75%;
	}
	/*COMPANY LOGOS*/
	.company-logos .transform-grid-cell {
		padding: 20px;
	}
	
}

/*end media query*/
/*End tablet and up styles*/
/* ====================== Landscape Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 992px) {
	.width-50 {
		width: 50%;
	}
	
	.checklist .fa-li  {
		font-size: 50px;
	}
	
	/************SPACING FIXES*************/	
	[data-uvu-section="3"] [data-uvu-region="2"] {
		margin-top: 20px;
	}
	
	/*ACCORDIONS*/
	details {
		width: 75%;
	}
	
}

/*end media query*/
/*End landscape tablet and up styles*/
/* ====================== Desktop Only (Overrides Mobile and Tablet Styles) ========================== */
@media only screen and (min-width: 1200px) {
	/************SPACING FIXES*************/	
	[data-uvu-section="3"] [data-uvu-region="2"] {
		margin-top: 30px;
	}
	[data-uvu-section="6"] [data-uvu-region="2"] {
		margin-top: 20px;
	}
	
}

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