/* CSS Document: Programs */

.Frame_Page_Title {
	max-width: 32rem;
	display: flex;
	column-gap: 1rem;
	row-gap: 0;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0 auto 1.5rem;
}

.Explanation_Text {
	font-size: 1.2rem;
	line-height: 1.6rem;
	font-weight: 700;
	color: #333;
	text-align: center;
	margin-bottom: 2rem;
}

.Frame_Programs {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	column-gap: 3rem;
	row-gap: 3rem;
	margin-bottom: 2rem;
}

.Program {
	flex: 1;
	background-color: #FFE;
	min-width: 280px;
	width: calc(50% - 1rem);
	border: 1px solid #CCC;
	border-radius: .4rem;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.Program:hover {
	border: 1px solid #AAA;
	background-color: #FF6;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2),	0 6px 20px 0 rgba(0, 0, 0, 0.19),
				0 6px 20px 0 rgba(0, 0, 0, 0.19),	0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.Program a:hover {
	text-decoration: none;
}

.Program_Image img {
	border-top-left-radius: .4rem;
	border-top-right-radius: .4rem;
}

.Program_Text_Caption {
	font-size: 1.2rem;
	line-height: 1.8rem;
	font-weight: 500;
	color: #333;
	text-align: center;
	padding: .75rem .8rem;
	border-bottom-left-radius: .4rem;
	border-bottom-right-radius: .4rem;
}


.Outer_Frame_Programs {
	margin-bottom: 4rem;
}



.Section_Title_Header {
	background-color: #EEE;
	border: 1px solid #CCC;
	padding: .75rem;
	text-align: center;
	font-size: 2rem;
	font-weight: 700;
	color: #555;
	margin-bottom: 2rem;
}



/* Compare */

.Frame_Compare_Positions {
	text-align: center;
	margin: 2rem auto 4rem;
}





/* Mobile First */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {

}





/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {

}



/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {

	.Program {
		min-width: 400px;
	}

}




/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {

	.Program {
		min-width: 500px;
	}

	.Program_Text_Caption {
		padding: 1rem;
		font-size: 1.4rem;
		line-height: 2rem;
	}

}




/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1440px) {
/* 
	.Program {
		min-width: 240px;
	}
 */
}