.content {
	width: 100%;
	display: flex;
	flex-direction: column;
	margin-top: 90px;
	min-height: calc(100vh - 90px);
}

.page-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 2rem 3rem;
}

.page-container a {
	font-size: 100%;
	text-decoration: underline;
}

.page-container a:hover {
	color: var(--text-secondary);
}

.page-container ul {
	margin-left: 1.5rem;
}

.featuredtopic img {
	margin: 1rem 2rem;
	max-width: calc(90vw - 4rem);
}

.title {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 4rem 0rem;
}

.title div{
	margin: 0 2rem;
}

.page-title {
	max-width: 100%;
	background-repeat: no-repeat;
	background-size: cover;
}

.page-title-overlay {
	min-height: 15vh;
	background: rgba(128, 128, 128, 0.5);
	overflow: hidden;
	padding: 2rem;
}

.page-title-box {
	overflow: hidden;
	padding: 3rem 2rem;
	background-color: var(--background-secondary);
}

.list {
	list-style: none;
}

.list a:hover {
	background-color: var(--background-secondary);
	transform: scale(1.025);
	transition: background .8s ease-in-out, transform .8s ease-in-out;
}

.list a {
	display: inline-block;
	width: 100%;
	padding: .5rem 1rem;
	font-size: 120%;
	text-decoration: none;
	transition: background .8s ease-in-out, transform .8s ease-in-out;
}

.content ol {
  padding: .5rem;
}

/*----Index Pages----*/

.index-info {
	border-bottom: solid 1px #333A56;
	color: #333A56;
}

.index-info p {
	padding: .25rem 1rem;
}

.index-info img {
	width: 100%;
	border-radius: 5px;
}

.index-nav {
	display: flex;
	flex-direction: column;
	margin: 1rem;
	width: 100%;
}

.index-nav a {
	max-width: 100%;
	text-decoration: none;
	background-color: #E8E8E8;
	color: #2A3047;
	padding: 1rem;
	transition: color .8s ease-in-out, background .8s ease-in-out;
}

.index-nav a:hover {
	background-color: #333A56;
	transition: color .5s ease-in-out, background .8s ease-in-out;
	color: #FEFEFE;
}

.index-nav a:hover t2{
	color: #FEFEFE !important;
	transition: color .5s ease-in-out;
}

/*----About Us----*/

.square {
	background-color: #E8E8E8;
	min-width: 35%;
	margin: 1rem;
	padding: 2rem;
	flex: 1;
}

.staff {
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
}

.staff div {
	display: flex;
	width: 200px;
	height: 200px;
	margin-bottom: 1rem;
	justify-content: center;
	align-items: center;
}

.staff picture, .staff img {
	width: 100%;
	height: 100%;
}

.boardmeetings {
	margin-top: 0.5rem;
	width: auto;
	padding: 0 1rem;
}

.boardmeetings li a {
	font-size: 20px;
	width: auto;
	text-decoration-line: none;
}

.boardmeetings li a:hover {
	cursor: pointer;
}

/*----Covid----*/

.navBoxContainer {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	justify-content: space-around;
  }
  .navBox {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: .5rem;
	text-align: center;
	width: 100px;
	height: 100px;
	margin: 10px;
	font-size: 100%;
	background-color: var(--brand-primary);
	color: #FEFEFE;
	text-decoration: none !important;
	cursor: pointer;
	transition: background .2s ease-in-out;
  }
  
  .navBox:hover {
	color: #FEFEFE !important;
	background-color: #585D74;
	transition: background .2s;
  }

/*----Resources----*/

.media, .media ul {
	list-style: none;
	margin: 0 !important;
}

.media a {
	display: inline-block;
	width: 100%;
	padding: .5rem;
	color:#2A3047;
	font-size: 95%;
	transition: transform 0.25s ease-in-out;
}

.media a:hover {
	color: #333A56;
	transition: color 0.5s ease-in-out, background 0.5s ease-in-out;
	background-color: #E8E8E8;
}

.search-result {
	width: 100%;
}

@media only screen and (min-width : 600px){
	.page-container {
		padding: 2rem 5%;
	}

	.navBox {
		padding: .5rem;
		width: 25%;
		height: 125px;
		margin: 10px;
		font-size: 100%;
  }
}

@media only screen and (min-width: 768px) {
	.page-container {
		padding: 2rem 10%;
	}
}

@media only screen and (min-width: 1160px) {
	.content {
		margin-top: 0;
		min-height: calc(100vh - 120px);
	}

	.index-info {
		flex: 3;
		border-bottom: none;
	}

	.index-info img {
		margin-top: 2rem;
	}

	.index-nav {
		flex: 2;
		margin: 2rem 0 2rem 15%;
	}

	.index-nav div {
		flex: 1;
	}
}

@media only screen and (min-width: 1364px) {
	.page-container {
		padding: 2rem 12.5%;
	}
}

@media only screen and (min-width: 1920px) {
	.page-container {
		padding: 2rem 17.5%;
	}
}

@media only screen and (min-width: 2200px) {
	.page-container {
		padding: 2rem 17.5%;
	}
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    #featuredmedia, .media, .media a {
        width: 100%;
    }
}