/* 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*/
.dots {
    background-image: radial-gradient(#ECF0ED 8%, transparent 30%);
    background-size: 15px 15px;
}
.box-shadow-section {
	box-shadow: 0px 5px 6px #00000014;
	z-index: 0;
}
.bg-green-xlight {
    background-color: #ECF0ED;
	z-index: -1;
}
.bg-grey-xlight {
	position: relative;
	z-index: 0;
}

.checklist, .iconlist {
    margin-left: 4em !important;
}
.checklist .fa-li, .iconlist .fa-li {
    color: #77B130;
    font-size: 35px;
    left: -1.5em;
    top: -10px;
    width: unset;
}
.iconlist .fa-li {
	color: #185C33;
	top: -15px;
}
.checklist li {
	padding-bottom: 10px;
}
.iconlist li {
	padding-bottom: 30px;
}
.iconlist li ul li {
    padding-bottom: 0;
}
.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;
}
.button-solid:after {
    content: "\f061";
    font-family: "Font Awesome 5 Solid", "Font Awesome 5 Pro";
    color: #fff;
}
.button-solid:hover:after, .button-solid:focus:after {
	color: #000;
}

/*BENEFITS CARDS*/
.card-content.card-content-shadow {
	margin-top: 30px;
    display: flex;
    align-items: center;
    position: relative;
	justify-content: center;
    overflow: unset;
    padding-bottom: 30px;
}
p.benefits-image {
    position: absolute;
    margin: 0 auto;
    width: 100px;
    top: -31px;
    right: 0;
}

/*inpage nav*/
.card-content.inpage-nav {
    display: block;
    margin-top: 0 !important;
    padding: 20px !important;
}
.inpage-nav h3 {
    font-weight: bold;
    margin-top: 10px;
}
.inpage-nav p a {
    width: 100%;
    position: relative;
    display: inline-block;
}


/*End mobile and up styles*/
/* ====================== Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 768px) {}

/*end media query*/
/*End tablet and up styles*/
/* ====================== Landscape Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 992px) {
		.page-header {
		height: 350px;
	}
	
	/*LISTS*/
	.iconlist .fa-li  {
		font-size: 45px;
	}
	.checklist .fa-li {
		top: -13px;
	}
	
	/*BENEFITS CARDS*/
	.card-content.card-content-shadow {
		margin-top: 10px;
	}
	
}

/*end media query*/
/*End landscape tablet and up styles*/
/* ====================== Desktop Only (Overrides Mobile and Tablet Styles) ========================== */
@media only screen and (min-width: 1200px) {
	
}

/*end media query*/
/* ====================== Desktop Only (Overrides Mobile and Tablet Styles) ========================== */
@media only screen and (min-width: 1450px) {
	.page-header {
		height: 430px;
	}
}
/*End desktop only styles*/
/*END OF DOCUMENT*/