/* 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 ========================== */
.jumbo:before {
    background: unset;
}
p {
    max-width: unset;
    margin: unset;
}

.registration-heading {
    font-size: 2.5em;
    margin-bottom: 25px;
}

.traditions a.alumni-button {
    background-color: #00843d;
    border: 2px solid #00843d;
    color: #fff;
}

/*COLLEGES AND SCHOOLS LIST*/
.colleges-list {
    font-family: 'Raleway', sans-serif;
    font-size: 1.2em;
    color: #214B2A;
}

/*SCHEDULE LIST*/
.schedule {
	font-family: 'Raleway', sans-serif;
    font-size: 1.2em;
    color: #214B2A;
	padding-left: 0;
}
.schedule li {
    padding: 15px;
    margin: 0;
    border-bottom: 1px solid #275d38;
}
.schedule li:first-child {
	border-top: 1px solid #275d38;
}

/*CHECKLIST*/
.checklist {
    font-family: 'Rajdhani', sans-serif;
    font-weight: bold;
    font-size: 1.8em;
}
.checklist .fa-li {
	color: #214B2A;
}



/*End mobile and up styles*/
/* ====================== Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 768px) {
	.registration-heading {
		margin-top: 120px;
	}
	/*COLLEGES AND SCHOOLS LIST*/
	.colleges-list {
		column-count: 2;
	}

	
}/*end media query*/
/*End tablet and up styles*/
/* ====================== Landscape Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 992px) {
	.registration-heading {
		margin-top: 80px;
	}
	
	[data-uvu-section="2"] [data-uvu-region="1"] {
		margin-top: 30px;
	}
	[data-uvu-section="4"] [data-uvu-region="1"] {
		margin-top: 50px;
	}
	
}/*end media query*/
/*End landscape tablet and up styles*/
/* ====================== Desktop Only (Overrides Mobile and Tablet Styles) ========================== */
@media only screen and (min-width: 1200px) {
	.registration-heading {
		margin-top: 60px;
	}
	
}/*end media query*/
/*End desktop only styles*/
/*END OF DOCUMENT*/