body {
  padding-bottom: 40px;
  color: #5a5a5a;
  font-family: "proximanova", Arial, sans-serif; font-weight:300;
}

h1, h2{
	font-family: "proximanova", Arial, sans-serif; font-weight:400; font-style: italic;
}
h1{
	
}
.fst-italic {
	font-size: 20px;
}
.link-body-emphasis:hover {
	color: #ba0c2f !important;
}
.navbar-brand {
	background-color: black;
	font-size:18px;
}
.navbar {
	background-color: #ba0c2f;
}
.navbar-nav .nav-item {
	padding-left:1.5em;
}
.navbar-nav .nav-item .nav-link {
	color: white;
}
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
	text-decoration: underline 2px solid white;
}

	.navbar-nav .nav-item .nav-link:hover {
		background-color: black;
	}

/* Branding */
.osu-logo img {
	margin-bottom: .7em;
	width: 210px;
	height: 40px;
	margin-left:10%;
	margin-top:1em;
}

.skip-link {
	background: #ba0c2f;
	color: #fff;
	font-weight: 700;
	left: 50%;
	padding: 4px;
	position: absolute;
	z-index: 1;
	transform: translateY(-150%);
}

	.skip-link:focus {
		transform: translateY(0%);
		color: #fff;
	}

.skip-link {
	/* Same as  before */
	transition: transform 0.3s;
}
.btn-default {
	background-color: #ba0c2f;
	color: white;
	outline:solid 1px white;
}
.btn-default:hover {
	background-color: black;
}
.btn-light {
	outline: solid 1px #ba0c2f;
}
.btn-light:hover {
	background-color: black;
	color: white;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
	margin-bottom: 20px;
	overflow: hidden;
	border-radius: 4px;
	background: #fff;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.10);
}

	.team .member .member-img {
		position: relative;
		overflow: hidden;
	}

	.team .member .social {
		position: absolute;
		left: 0;
		bottom: 30px;
		right: 0;
		opacity: 0;
		transition: ease-in-out 0.3s;
		display: flex;
		justify-content: center;
		align-items: center;
	}

		.team .member .social a {
			transition: color 0.3s;
			color: #150517;
			margin: 0 3px;
			border-radius: 4px;
			width: 56px;
			height: 36px;
			background: #ba0c2f;
			display: flex;
			justify-content: center;
			align-items: center;
			transition: ease-in-out 0.3s;
			color: #fff;
		}

			.team .member .social a i {
				line-height: 0;
			}

			.team .member .social a:hover {
				background: black;
			}

		.team .member .social i {
			font-size: 28px;
		}

	.team .member .member-info {
		padding: 25px 15px;
	}

		.team .member .member-info h4 {
			font-weight: 700;
			margin-bottom: 5px;
			font-size: 18px;
			color: #150517;
		}

		.team .member .member-info span {
			display: block;
			font-size: 14px;
			font-weight: 400;
			color: #ba0c2f;
		}

		.team .member .member-info p {
			font-style: italic;
			line-height: 26px;
		}

	.team .member:hover .social {
		opacity: 1;
		bottom: 15px;
	}
.role {
	color: #3f4443 !important;
}
/*--------------------------------------------------------------
# Publications
--------------------------------------------------------------*/

.papers ul li {
	padding-top: 1em;
	list-style-type: circle;
	color: #3f4443;
}

.publications .nav-link {
	color: #ba0c2f;
}

.publications .nav-link:hover {
	color: black;
}

/*--------------------------------------------------------------
# Equipment
--------------------------------------------------------------*/

.cardheader {
	background-color: #ba0c2f;
	height: 9px;
}

.cardfooter {
	background-color: black;
	height: 9px;
}


/*--------------------------------------------------------------
# News
--------------------------------------------------------------*/
.table th {
	font-weight:500;
}
.table tr {
	line-height: 25px;
}

.table tr td {
	font-size: 16px;
	padding:15px;
}

.table a {
	color: #ba0c2f;
}

.table a:hover {
	color: black;
}


/*--------------------------------------------------------------
# Back to Top
--------------------------------------------------------------*/

#backToTop {
	display: none; /* Hidden by default */
	position: fixed; /* Fixed position */
	bottom: 100px; /* 20px from the bottom */
	right: 30px; /* 30px from the right */
	z-index: 99; /* Ensure it appears above other elements */
	border: none;
	outline: none;
	background-color: #ba0c2f;
	color: white;
	cursor: pointer;
	padding: 10px 15px;
	border-radius: 5px;
}

	#backToTop:hover {
		background-color: black;
	}