/* 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 ========================== */
/*so white is visible when editting*/
.ou-justedit-region .text-white {
    color: #275d38; /*or whatever color, as long as it's opaque*/
}
.text-valley-rise {
	color: #78be3f;
}
.border-valley-rise {
	border-color: #78be3f;
}

/*CARDS CSS*/
.speaker-card {
    min-height: 300px;
}

/*LINK CSS*/
.library-button {
	transition: all 300ms;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: flex;
    border-radius: 0;
    justify-content: space-between;
}
.library-button:after {
	content: '\f178';
    font-family: "Font Awesome 5 Solid", "Font Awesome 5 Pro";
    margin-inline-start: 4px;
}
.library-button:hover, .library-button:focus, .library-button.active {
	background-color: #000;
	border-color: #000;
	color: #fff;
}
.library-button:hover:after, .library-button:focus:after, .library-button.active:after {
	color: #fff;
}


/*HEADER CSS*/
.page-header.home-header {
    padding: 0;
	display: flex;
	align-items: center;
    height: 300px;
}
.page-header.home-header h1 {
	margin-top: 0;
    font-size: 22px !important;
}
.page-header.home-header h2 {
    font-size: 36px;
}
.page-header.home-header .second-heading {
	font-size: 24px;
    font-weight: 600;
    color: #78be3f;
	margin-bottom: 20px;
}
.page-header.home-header h3 {
	border: 1px solid #78be3f;
    padding: 5px;
    display: inline;
}



/*LISTS*/
.fa-ul .fa-li {
    color: #78be3f;
    font-size: 30px;
    left: -1.8em;
    top: -5px;
}
ul.sponsors {
	margin-top: 30px;
}
ul.sponsors li {
    margin-top: 0;
    margin-bottom: 10px;
}

/*SCROLL CARD*/
.scroll-card {
    padding: 0;
}
.scroll-card div:first-child {
    padding: 0;
}
.scroll-card div:first-child p {
    margin: 0;
}
.scroll-card div:nth-child(2) {
    padding: 20px;
}


/*End mobile and up styles*/
/* ====================== Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 768px) {
	/*HEADER CSS*/
	.page-header.home-header header {
		display: grid;
		grid-template-columns: 2fr 1fr;
		grid-gap: 20px;
		padding: 0;
		padding-bottom: 20px;
	}
	.page-header.home-header {
		background-image: url(/philhum/herculaneum/images/headers/tablet-header.jpg) !important;
	}
	.page-header.home-header h1 {
		font-size: 28px !important;
		text-align: right;
		order: 1;
	}
	.page-header.home-header header div {
		order: -1;
	}
	.page-header.home-header h2 {
		font-size: 44px;
	}
	.page-header.home-header .second-heading {
		font-size: 36px;
		margin-bottom: 25px;
		margin-top: 15px;
	}
	.page-header.home-header h3 {
		font-size: 30px;
	}
	
	/*LISTS*/
	ul.sponsors {
		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) {
	
	/*SCROLL CARD*/
	.scroll-card div:nth-child(2) {
		padding: 0px 20px;
	}
	
}
/*end media query*/
/*End landscape tablet and up styles*/
/* ====================== Desktop Only (Overrides Mobile and Tablet Styles) ========================== */
@media only screen and (min-width: 1200px) {
	/*HEADER CSS*/
	.page-header.home-header {
		    background-image: url(/philhum/herculaneum/images/headers/web-header.jpg) !important;
	}
	.page-header.home-header h1 {
		font-size: 32px !important;
		margin-top: 0;
	}
	.page-header.home-header h2 {
		font-size: 54px;
	}
	.page-header.home-header h3 {
		font-size: 34px;
	}
	
	/*SCROLL CARD*/
	.scroll-card div:nth-child(2) {
		padding: 20px 30px 30px;
	}

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