/* 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 ========================== */
/*TOP BANNER*/
.page-header header {
    display: flex;
    flex-direction: column-reverse;
}
.page-header header h2 {
    color: #fff;
    font-weight: 500;
    margin: 0;
    font-size: 24px;
}
.page-header header h1 {
    font-weight: 700;
}
/*QUOTE*/
blockquote {
	margin: 0;
    border-left: none;
    font-size: 24px;
}

/*******CONTAINER FULL SECTIONS*******/
.container-full .image {
    padding: 0;
	z-index: 3;
}
.container-full.content p {
    margin: 0;
}
.container-full .image p {
	height: 100%;
}
.container-full .image img {
	object-fit: cover;
	height: 100%;
}
.container-full .content {
    padding-top: 40px;
    padding-bottom: 40px;
}

/*read more accordion*/
.read-more details summary {
    background-color: #fff !important;
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    padding: 0 !important;
    display: flex;
    justify-content: start;
    font-weight: 400;
    border-top: none !important;
}
.read-more details summary:after {
    background-color: transparent !important;
    color: #285d39 !important;
    position: relative !important;
    margin-left: 10px !important;
    display: inline !important;
    font-size: 80% !important;
}
.read-more details .accordion-content {
	padding: 0 !important;
}

/*End mobile and up styles*/
/* ====================== Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 768px) {
	.page-header header h2 {
		font-size: 32px;
	}
	
	/*FEDERALISM BASICS SECTION*/
	h2#federalism-basics {
		font-size: 36px;
	}
	/*******CONTAINER FULL SECTIONS*******/
	.container-full .content {
		padding: 0;
		margin: 50px 0;
		padding-left: 15px;
		padding-right: 50px;
	}
}
/*end media query*/
/*End tablet and up styles*/
/* ====================== Landscape Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 992px) {
	.page-header header {
		width: 80%;
	}
	/*******CONTAINER FULL SECTIONS*******/
	.container-full .content {
		padding: 0;
        padding-left: 15px;
        padding-right: 50px;
	}

}
/*end media query*/
/*End landscape tablet and up styles*/
/* ====================== Desktop Only (Overrides Mobile and Tablet Styles) ========================== */
@media only screen and (min-width: 1200px) {
	.page-header header {
		width: 70%;
	}
	
	/*******CONTAINER FULL SECTIONS*******/
	.container-full .content {
		display: flex;
		max-width: 600px;
		flex-direction: column;
		justify-content: center;
		margin: 40px 0 40px auto;
		padding-right: 100px;
	}
	.container-full .content.right {
		margin-left: unset;
		padding: 0 50px;
	}
	.container-full .content h2 {
		margin-top: 0;
	}
}
/*end media query*/
/* ====================== Desktop Only (Overrides Mobile and Tablet Styles) ========================== */
@media only screen and (min-width: 1500px) {
	.page-header {
		height: 650px;
	}
	.page-header header h1 {
		font-size: 68px;
	}    
	.page-header header {
		padding-top: 80px;
	}
	.page-header header h2 {
        font-size: 38px;
    }
	
}
/*end media query*/
/*End desktop only styles*/
/*END OF DOCUMENT*/
