/*
	Miniport by HTML5 UP (Modernized)
	html5up.net | @ajlkn
	Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
*/

/* Imports */
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,300italic,600,600italic,700,800,900");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");

/* VCU Color Palette & Modern Defaults */
:root {
	--color-primary: #FFB300; /* VCU Gold */
	--color-dark: #000000;    /* VCU Black */
	--color-light: #FFFFFF;   /* VCU White */
	--color-text: #5c5c5c;
	--color-text-light: #aaa;
	--color-bg-gray: #f2f2f2;
}

html {
	box-sizing: border-box;
	scroll-behavior: smooth; /* Modern CSS smooth scrolling */
}

*, *:before, *:after {
	box-sizing: inherit;
}

/* Reset */
html, body, div, span, h1, h2, h3, p, a, img, strong, ul, li, article, footer, header, nav, section {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article, footer, header, nav, section {
	display: block;
}

body {
	line-height: 1;
	-webkit-text-size-adjust: none;
}

ul {
	list-style: none;
}

/* Base Styles */
body {
	background: var(--color-light);
}

body.is-preload *, body.is-preload *:before, body.is-preload *:after {
	animation: none !important;
	transition: none !important;
}

body, input, textarea, select {
	font-family: 'Open Sans', sans-serif;
	line-height: 1.85em;
	color: var(--color-text);
	font-weight: 300;
	font-size: 14pt;
}

a {
	transition: color .2s ease-in-out;
	color: var(--color-primary);
	text-decoration: underline;
}

a:hover {
	color: var(--color-dark) !important;
}

strong, b {
	font-weight: 700;
	color: var(--color-dark);
}

h1, h2, h3 {
	color: var(--color-dark);
	margin: 0 0 0.75em 0;
	font-weight: 800;
}

h1 a, h2 a, h3 a {
	text-decoration: none;
	color: inherit;
}

h1 {
	font-size: 3.25em;
	letter-spacing: -0.025em;
}

h2 {
	font-size: 2em;
	letter-spacing: -0.015em;
}

h3 {
	font-size: 1.5em;
	letter-spacing: -0.015em;
}

p {
	margin: 0 0 2em 0;
}

header {
	margin: 0 0 3em 0;
}
header > p {
	font-size: 1.25em;
	margin: 0;
}

footer {
	margin: 3em 0 0 0;
}
footer > p {
	font-size: 1.25em;
}

hr {
	border: 0;
	border-top: solid 1px var(--color-dark);
	opacity: 0.3;
	margin: 3em 0;
}


/* Container */
.container {
	margin: 0 auto;
	max-width: calc(100% - 50px);
	width: 1200px;
}
.container.medium {
	width: 900px;
}

@media screen and (max-width: 1680px) {
	.container {
		width: 1200px;
	}
}

@media screen and (max-width: 1280px) {
	.container {
		width: 960px;
	}
	.container.medium {
		width: 720px;
	}
}

@media screen and (max-width: 980px) {
	.container {
		width: 100%;
	}
	.container.medium {
		width: 75%;
	}
}

@media screen and (max-width: 736px) {
	.container {
		max-width: calc(100% - 30px);
	}
	.container.medium {
		width: 100%;
	}
}


/* Row */
.row {
	display: flex;
	flex-wrap: wrap;
	box-sizing: border-box;
	align-items: stretch;
	margin: -25px 0 -1px -25px; /* Default Gutter */
}
.row > * {
	box-sizing: border-box;
	padding: 25px 0 0 25px;
}
.row.aln-center {
	justify-content: center;
}

/* Column Widths */
.row > .col-4 { width: 33.33333%; }
.row > .col-8 { width: 66.66667%; }
.row > .col-12 { width: 100%; }

@media screen and (max-width: 980px) {
	.row > .col-5-large { width: 41.66667%; }
	.row > .col-7-large { width: 58.33333%; }
	.row > .col-12-medium { width: 100%; }
}

@media screen and (max-width: 736px) {
	.row { margin: -15px 0 -1px -15px; }
	.row > * { padding: 15px 0 0 15px; }
	.row > .col-6-medium { width: 50%; }
	.row > .col-12-small { width: 100%; }
}

/* Forms (Visual Only) */
input[type=text],
input[type=email],
textarea {
	display: block;
	border: 0;
	padding: 0.75em;
	font-size: 1em;
	border-radius: 4px;
	border: solid 1px #ddd;
	background: var(--color-light);
	color: var(--color-text);
	box-shadow: inset 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
	width: 100%;
}
textarea {
	height: 15em;
}

/* Image */
.image {
	display: inline-block;
	position: relative;
}
.image img {
	display: block;
	width: 100%;
}
.image.fit {
	display: block;
	width: 100%;
	border-radius: 4px;
	overflow: hidden;
}
.image.featured {
	display: block;
	width: 100%;
	margin: 0 0 2em 0;
}


/* Button */
input[type="submit"],
input[type="reset"],
.button {
	position: relative;
	display: inline-block;
	background: var(--color-primary);
	color: var(--color-dark) !important;
	text-align: center;
	border-radius: 4px;
	padding: 0.8em 2em;
	font-weight: 700;
	text-decoration: none;
	transition: background-color .2s ease-in-out, color .2s ease-in-out;
	cursor: pointer;
	border: 0;
	font-size: 1.1em;
}

.button:hover {
	background: var(--color-dark);
	color: var(--color-light) !important;
}

.button.large {
	font-size: 1.5em;
}

input[type="reset"], .button.alt {
	background: #444;
	color: var(--color-light) !important;
}
input[type="reset"]:hover, .button.alt:hover {
	background: #555;
}


/* Social Icons */
ul.social {
	cursor: default;
	margin: 0;
	list-style: none;
	padding-left: 0;
}
ul.social li {
	display: inline-block;
	margin: 0 0.25em;
	padding-left: 0;
}
ul.social li a {
	display: block;
	width: 48px;
	height: 48px;
	border-radius: 6px;
	color: var(--color-light) !important;
	transition: background-color .2s ease-in-out;
}
ul.social li a:before {
	font-size: 26px;
	height: 48px;
	line-height: 48px;
	display: block;
	text-align: center;
}
ul.social li a.fa-twitter { background-color: #2DAAE4; }
ul.social li a.fa-facebook-f { background-color: #3C5A98; }
ul.social li a.fa-dribbble { background-color: #C4376B; }
ul.social li a.fa-linkedin-in { background-color: #006599; }
ul.social li a.fa-tumblr { background-color: #51718A; }
ul.social li a.fa-google-plus { background-color: #DA2713; }
ul.social li a.fa-github { background-color: #444; }
ul.social li a:hover { background-color: var(--color-primary); }


/* Actions */
ul.actions {
	list-style: none;
	padding-left: 0;
	cursor: default;
}
ul.actions li {
	display: inline-block;
	margin: 0 0 0 1em;
	padding-left: 0;
}
ul.actions li:first-child {
	margin-left: 0;
}

/* Box */
.box {
	background: var(--color-light);
	box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.1);
	border: 1px solid #ddd;
	text-align: center;
	padding: 2em;
	border-radius: 4px;
}
.box.style1 {
	padding: 3em 2em;
}
.box.style1 h3 {
	margin-bottom: 0.5em;
}
.box.style2 h3 {
	margin-bottom: 0.25em;
}
.box.style2 .image.featured {
	position: relative;
	left: 2em;
	top: 2em;
	margin: -4em 0 4em -4em;
	width: calc(100% + 4em);
	border-radius: 4px 4px 0 0;
}


/* Icons */
.icon:before {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	text-transform: none !important;
	font-family: 'Font Awesome 5 Free';
	font-weight: 400;
	font-size: 1.25em;
}
.icon > .label {
	display: none;
}
.icon.solid:before {
	font-weight: 900;
}
.icon.brands:before {
	font-family: 'Font Awesome 5 Brands';
}
.icon.featured {
	color: var(--color-primary);
	display: block;
	margin: 0 0 1em 0;
	cursor: default;
}
.icon.featured:before {
	font-size: 6em;
}

/* Wrappers */
.wrapper {
	padding: 6em 0;
	text-align: center;
}
.wrapper.style1 {
	background-color: var(--color-light);
}
.wrapper.style2 {
	background-color: var(--color-bg-gray);
}
.wrapper.style3 {
	background-color: var(--color-primary);
	color: var(--color-dark);
}
.wrapper.style3 h2, .wrapper.style3 h3 {
	color: var(--color-dark);
}
.wrapper.style3 p {
	color: var(--color-dark);
	opacity: 0.9;
}
.wrapper.style3 .button {
	background: var(--color-light);
	color: var(--color-dark) !important;
}
.wrapper.style3 .button:hover {
	background: var(--color-dark);
	color: var(--color-light) !important;
}
.wrapper.style4 {
	background-color: var(--color-dark);
	color: var(--color-text-light);
}
.wrapper.style4 h2, .wrapper.style4 h3 {
	color: var(--color-light);
}
.wrapper.style4 input[type=text], .wrapper.style4 textarea {
	border: none;
	background: #282828;
	color: var(--color-light);
}

/* Nav */
#nav {
	background-color: rgba(0,0,0,0.85);
	backdrop-filter: blur(5px);
	text-align: center;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 10000;
	cursor: default;
	height: 3.5em;
	line-height: 3.5em;
	transition: opacity 0.3s ease;
	opacity: 0;
}
#nav.visible {
	opacity: 1;
}
#nav ul {
	margin-bottom: 0;
	list-style: none;
	padding-left: 0;
}
#nav li {
	display: inline-block;
	padding-left: 0;
	margin: 0 0.25em;
}
#nav a {
	transition: background-color .2s ease-in-out;
	position: relative;
	display: block;
	color: var(--color-light);
	text-decoration: none;
	outline: 0;
	font-weight: 600;
	border-radius: 4px;
	height: 2.5em;
	line-height: 2.5em;
	padding: 0 1em;
}
#nav a:hover {
	color: var(--color-light) !important;
	background: rgba(255, 255, 255, 0.1);
}
#nav a.active {
	background: var(--color-primary);
	color: var(--color-dark) !important;
}
#nav a.active:hover {
	background: var(--color-primary);
}


/* Home Section */
#top {
	text-align: left;
}

/* Contact Section */
#contact footer {
	font-size: 0.9em;
	margin-top: 3em;
}

/* Copyright */
#copyright {
	color: #666;
	font-size: 1em;
	line-height: 1em;
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}
#copyright li {
	display: inline-block;
	border-left: solid 1px rgba(255, 255, 255, 0.2);
	padding: 0 0 0 1em;
	margin: 0 0 0 1em;
}
#copyright li:first-child {
	border: 0;
	padding-left: 0;
	margin-left: 0;
}

/* Responsive Overrides: Large Screens */
@media screen and (max-width: 1280px) {
	body, input, textarea, select {
		font-size: 12pt;
	}
	.wrapper {
		padding: 5em 0;
	}
}

/* Responsive Overrides: Medium Screens */
@media screen and (max-width: 980px) {
	#top {
		text-align: center;
	}
	#top .image {
		margin: 0 auto 2em auto;
	}
}

/* Responsive Overrides: Small Screens */
@media screen and (max-width: 736px) {
	body, input, textarea, select {
		line-height: 1.75em;
		font-size: 11pt;
		letter-spacing: 0;
	}
	h1 { font-size: 2.25em; line-height: 1.25em; }
	h2 { font-size: 1.5em; }
	h3 { font-size: 1.25em; }
	header { margin: 0 0 2em 0; }
	footer { margin: 2.5em 0 0 0; }
	
	input[type="submit"], input[type="reset"], .button {
		width: 100%;
		font-size: 1.2em;
	}
	ul.actions li {
		display: block;
		margin: 15px 0 0 0;
	}
	ul.actions li:first-child {
		margin-top: 0;
	}

	.box { padding: 30px 20px; }
	.box .image.featured {
		position: relative;
		left: 20px;
		top: 20px;
		margin: -50px 0 50px -40px;
		width: calc(100% + 40px);
	}

	.wrapper {
		padding: 3em 15px;
	}

	#nav {
		height: 44px;
		line-height: 44px;
	}
	#nav a {
		padding: 0 0.75em;
		height: inherit;
		line-height: inherit;
		border-radius: 0;
	}
	#nav a:hover {
		background-color: transparent;
	}
	#nav a.active {
		background-color: var(--color-primary);
	}

	#contact footer {
		margin: 2em 0 0 0;
	}
	#copyright li {
		display: block;
		margin: 1em 0 0 0;
		padding: 0;
		border-left: 0;
	}
	#copyright li:first-child {
		margin-top: 0;
	}
}