/* Purple Links */
.iconContainer {
	width:90px;
	height:100%;
	display:flex;
	align-items:center;
	justify-content:center;
	font-size: 36px;
	color: white;
	background-color:#555487;
}
.listItemsContainer{
	margin-bottom: 30px;
	display:grid;
	grid-template-columns:1fr 1fr;
	grid-gap:15px;
}
.listItem {
	display:flex;
	align-items:center;
	justify-content:center;
	box-shadow: 2px 5px 10px #dadada;
	background:#fff;
}
.listItem > :nth-child(2){
	padding:20px 10px;
	width:100%;
}
.listItem > a, div > a {
	font-size: 20px;
}

/* Grid Container */
#AllAreWelcome
{
	margin: 20px auto;
}
#AllAreWelcome h2
{
	margin-bottom: 35px;
}
#AllAreWelcome img
{
	height: 100%;
	width:100%;
	object-fit:cover;
}
#AllAreWelcome .row:nth-child(2) div {
	margin:50px;
}
.row #AllAreWelcome
{
	max-width: 1000px;
	background-color: white;
}
#AllAreWelcome .row:first-child
{
	background-color: transparent;
}

/* 4 blocks */
#block4container {
	padding: 5vh 0;
}
.block4container
{
	display: -ms-flex; display: -webkit-flex; display: flex; 
}
.block4image
{
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
.block4text
{
	margin: 4vw;
	border-left: 8px solid rgba(146, 190, 83, .96);
	padding-left:25px;
}
#blocks4image1
{
	background-image: url('https://www.clark.edu/about/visitors-guide/getting-to-clark/images/ctc-thumb.jpg');
}
#blocks4image2
{
	background-image: url('https://www.clark.edu/about/visitors-guide/getting-to-clark/images/wsu-thumb.jpg');
}
#blocks4image3
{
	background-image: url('https://www.clark.edu/about/visitors-guide/getting-to-clark/images/boschma-farms-resized.jpg');
}

/* new grid containers */
#grid-container {
	display:grid;
	grid-template-areas:
		"a b"
		"c d"
		"e f";
	grid-template-columns:1fr 1fr;
}
#students1
{
	grid-area:d;
}
#students2
{
	grid-area: a;
}
.contentGrid {
	padding:50px;
}
#boschma-img {
	grid-area:e;
}
#boschma-content {
	grid-area:f;
}
/* accordians */
.ui-icon-triangle-1-e::before, .ui-icon-triangle-1-s::before
{
	font-family: "Font Awesome 5 Pro";
	float: left;
	margin-left: 0px;
	top: 33%;
	display: block;
	position: relative;
	color: #0073ae;
}
#ui-id-1 span::before {
	/* 	color: #f46b25; */
	content: "\f615";
}
#ui-id-3 span::before{
	/* 	color: #d2232a; */
	content: "\f207";
}
#ui-id-5 span::before{
	/* 	color: #545488; */
	content: "\f206";
}
#ui-id-7 span::before {
	/* 	color: #4c88a2; */
	content: "\f1b9";
}
.ui-widget-content a:focus, .ui-widget-content a:active {
	color: #fff!important;
}

/* Buttons */
.BorderButton {
	display:inline-block;
	text-align:center;
	padding:12px 25px!important;
}
.ui-widget-content a.BorderButton {
	color:#004881!important;
}
.ui-widget-content a.BorderButton:hover, .ui-widget-content a.BorderButton:focus {
	color:#fff!important;
	background: #004881!important;
}

/* Maps and Location*/
.large-10 .BorderButton:hover, .large-10 .BorderButton:active, .large-10 .BorderButton:focus {
	background-color:#f36b25!important;
}
.dateinfo {
	background-color: #004881;
	color: white!important;
	background-image: url("/registration/images/registration-background.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-position: center top;
	padding: 50px 10px 25px 15px;
	margin-bottom:25px;
}
.dateinfo h2, .dateinfo h3  {
	color: white;
}
.locationsSection {
	text-align:center;
}
.locationsSection h2::after {
	margin: 10px auto;
}

/* Breakpoints */
@media only screen and (min-width:901px){
	#grid-container {
		grid-auto-rows: 400px;
	}
}
@media only screen and (max-width:768px){
	#grid-container {
		grid-template-areas:
			"a a"
			"b b"
			"d d"
			"c c";
	}
	.BorderButton {
		padding:15px!important;
		width:100%;
	}
	.listItemsContainer {
		grid-template-columns:1fr;
	}
	.contentGrid {
		padding:40px 30px;
	}
}