/*
 * Basics
 */
p, div, h1, h2, h3, h4, h5, h6 {
	font-family: 'LatoLatin', sans-serif;
}

a {
	color: #00CC00;
}

a:hover {
	color: #3399CC;
}


/* Webfont: LatoLatin-Regular */
@font-face {
	font-family: 'LatoLatin';
	font-display: swap;
	src: local('LatoLatin'),
	url('../fonts/LatoLatin-Regular-5702cb20.woff2') format('woff2'),
	url('../fonts/LatoLatin-Regular-14372426.woff') format('woff'),
	url('../fonts/LatoLatin-Regular-f13867f4.ttf') format('truetype');
	font-style: normal;
	font-weight: normal;
	text-rendering: optimizeLegibility;
}


/*
 * Navbar styling
 */

/* darki & non-JS background */
.navbar {
	background-color: #333333;
	z-index: 999;
	opacity: 0.9;
	width: 100%;
}

/* transparent background */
.navbar.transparent {
	background-color: transparent;
	background: transparent;
	width: 100%;
	transition: all 0.1s ease-out;
}

.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
	color: #3399CC;
}

.navbar-dark .navbar-nav .nav-link {
	color: white;
}

.nav-item > .active {
	text-decoration: underline;
}


/*
 * Jumbotron
 */

.frame {
	min-height:305px;
	width: 100%;
	position: fixed;
	z-index: -1;
	background-color: #23373B;
	justify-content: center;
	align-items: center;
}

.pic {
	height: 100%;
	min-height: 305px;
	object-fit: cover;
}


/* for small device sizes */
.jumbotron {
	height: 305px;
	color: white;
	padding-top: 50px;
	text-align: center;
	background-color: transparent;
	background: transparent;
}

/* restore old jumbotron height for big sizes */
@media (min-width: 721px) {
	.frame {
		min-height: 500px;
	}
	.jumbotron {
		height: 500px;
		padding-top: 150px;
	}
}

/* restore old boostrap Jumbo font size */
.jumbotron > h1 {
	font-size: 63px;
}


.jumbotron > h3 {
	text-transform: uppercase;
}


/*
 * Main content
 */
blockquote {
	border-left: none;
	font-size: 17px;
}

.whitebg {
	background: white none;
	overflow: auto;
}

.pagespacer {
	padding-bottom: 60px;
}


/*
 * Footer
 */
footer {
	color: white;
	background-color: #474747;
	z-index: 999;
	width: 100%;
	position: absolute;
	padding-bottom: 0;
}

.popover {
	max-width: 400px;
	width: auto;
}

.firstrow {
	padding-top: 10px;
}

.doublefontsize {
	font-size: 200%;
}


/*
 * reference styling
 */
.references {
	padding-right: 15px;
	padding-left: 15px;
}

.references .col-lg-4 {
  	  margin-bottom: 20px;
  	  text-align: center;
}
.references .col-lg-4 p {
	margin-top: 5px;
	margin-right: 10px;
	margin-left: 10px;
}

.refimg {
 	margin-left: auto;
	margin-right: auto;

	width:298px;
	height:98px;

	position: relative;
}

.refimg > a > img {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-right: -50%;
	transform: translate(-50%, -50%);
}

/* introduce missing pull-right class from awesome.min oO */
.pull-right {
	float: right;
}


/*
 * SVG handling
 */

/* SVGs use default font size and align in the middle */
svg {
	width: 1em;
	height: 1em;
	display: inline-flex;
	vertical-align: middle
}

/*
 * Style SVGs in links as links.  FIXME color code dublication, but we don't have variables
 */
a > svg {
	fill: #00CC00;
}

a > svg:hover {
	fill: #3399CC;
}

.brand-icons {
	font-size: 133%;
}
