/* 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 ========================== */
.padding-left-50 {
	padding-left: 0;
}
.bg-white {
	background-color: #fff !important;
	color: #285d39 !important;
}
/**************STEP BY STEP TIMELINE*************/
.checklist-item {
    border-radius: 3px;
    background-color: #fff;
	border: 1px solid #e8e8e8;
    margin-bottom: 30px;
}
.checklist-check {
	display: flex;
    align-items: center;
    background-color: #275d38;
    border-radius: 3px 3px 0 0;
    margin-bottom: 0;
    font-family: "Rajdhani", arial, sans-serif;
    color: #fff;
    font-weight: bold;
    position: relative;
    font-size: 22px;
    padding: 15px;
    align-items: center;
}
.checklist-check:before {
    content: "\f058";
    position: relative;
    font-family: "Font Awesome 5 Solid", "Font Awesome 5 Pro";
    width: 30px;
    height: 30px;
    top: -6px;
    margin-right: 20px;
    color: #fff;
    font-size: 30px;
}
.checklist-content {
	position: relative;
    padding: 10px 20px 20px;
}


/**************STAFF CARDS*************/
.card-staff-5 {
    height: 100% !important;
	min-height: 200px;
    border-radius: 8px;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
}
.card-staff-5 .card-staff-portrait {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%) !important;
    width: 35% !important;
    min-height: 100%;
    position: relative;
        background-color: #e8e8e8;
	display: none;
}
.card-staff-5 .card-staff-name {
	text-transform: none !important;
	margin-bottom: 25px !important;
}


/*End mobile and up styles*/
/* ====================== Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 768px) {
	.padding-left-50 {
	padding-left: 50px;
}
	/*CHECKLIST ACCORDION*/
	.checklist-check {
		font-size: 24px;
	}
	
}

/*end media query*/
/*End tablet and up styles*/
/* ====================== Landscape Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 992px) {
/*****************CONTACT CARDS*********************/
	.card-staff-5 {
		flex-direction: row !important;
	}
	.card-staff-5 .card-staff-portrait {
		display: block;
	}
	
}

/*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*/
/*End desktop only styles*/
/*END OF DOCUMENT*/