/* 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 ========================== */
.image-text-header {
	display: flex;
	justify-content: center;
	gap: 30px;
	padding: 30px 0px;
}

.small-margin {
	margin-top: -20px;
}

h1 {
	color: #c5e86c;
	font-size: 50px !important;
}

.bigger-text {
	font-size: 30px !important;
}

.header-text {
	align-content: center;
}

.button-solid {
	text-transform: none;
    font-weight: bold;
}

.green-box {
	border-left: 4px solid green;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	border-radius: 0 4px 4px 0;
	padding: 30px;
}

.all-boxes {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.numbered-boxes {
/* 	display: flex; */
    align-items: baseline;
    gap: 20px;
    background-color: white;
    border: 1px solid #e1e3e1;
    padding: 24px 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    border-radius: 8px;
}

.all-lists {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.list-boxes {
	background-color: #f2f3f2;
	border: 1px solid #e1e3e1;
	border-radius: 8px;
	padding: 32px 28px;
	margin-bottom: 24px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}




/*End mobile and up styles*/
/* ====================== Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (max-width: 768px) {
	.all-boxes {
		grid-template-columns: 1fr;
	}
	.all-lists {
		grid-template-columns: 1fr;
	}
	.image-text-header {
		display: block;
		justify-self: center;
	}
	
}

@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) {
	
	
}

/*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*/