/*
**
** Font Import */
@font-face {
	font-family:'Roboto';
	font-style:normal;
	font-weight:300;
	font-display:swap;
	src:local('Roboto Light'), local('Roboto-Light'),
		url('/shared/font/roboto-v20-latin-300.woff2') format('woff2'),
		url('/shared/font/roboto-v20-latin-300.woff') format('woff');
}
@font-face {
	font-family:'Roboto';
	font-style:normal;
	font-weight:400;
	font-display:swap;
	src:local('Roboto'), local('Roboto-Regular'),
		url('/shared/font/roboto-v20-latin-regular.woff2') format('woff2'),
		url('/shared/font/roboto-v20-latin-regular.woff') format('woff');
}
@font-face {
	font-family:'Roboto';
	font-style:normal;
	font-weight:700;
	font-display:swap;
	src:local('Roboto Bold'), local('Roboto-Bold'),
		url('/shared/font/roboto-v20-latin-700.woff2') format('woff2'),
		url('/shared/font/roboto-v20-latin-700.woff') format('woff');
}
/*
**
** Global */
body {
	font-family:'Roboto', sans-serif;
	color:#343a40;
	font-weight:300;
}
.text-dark {
	color:#343a40;
}
a, a:visited {
	color:#f6a730;
	text-decoration:none;
}
a:hover, a:focus {
	color:#f6a730;
	text-decoration:none;
}
.btn.btn-primary {
	background:transparent;
	border-color:#6c73b5;
	border-radius:2rem;
	padding:.5rem 1rem;
	font-size:.75rem;
	transition:background .2s, color .2s;
	color:#6c73b5;
}
.btn.btn-primary::before {
	content:"›";
	margin-right:.25rem;
}
.btn.btn-primary:hover, .btn.btn-primary:focus, .btn.btn-primary:not(:disabled):not(.disabled):active {
	background:#6c73b5;
	color:#fff;
	border-color:#6c73b5;
}
.clear {
	clear:both;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
	font-weight:400;
	font-size:2rem;
}
h2, .h2 {
	font-size:1.75rem;
}
h3, .h3 {
	font-size:1.5rem;
}
h4, .h4 {
	font-size:1.25rem;
}
time {
	font-size:.75rem;
}
.lead {
	font-size:1rem;
}
::selection {
	color:#fff;
	background:#f6a730;
}
/*
**
** Warnings */
#noscript {
	background:#f6a730;
	padding:1rem 2rem;
	left:0;
	bottom:0;
	z-index:9999;
}
#outdated {
	display:none;
	top:0;
	left:0;
	z-index:1500;
	background-color:#f6a730;
}
#outdated h6 {
	font-size:2rem;
}
#outdated #btnUpdateBrowser {
	display:inline-block;
	margin:1rem auto;
	color:#fff;
	border-color:#fff;
	text-transform:uppercase;
	border-radius:1.5rem;
}
#outdated .last {
	top:1rem;
	right:1rem;
	width:1rem;
	height:1rem;
}
#outdated #btnCloseUpdateBrowser {
	text-decoration:none;
	line-height:1;
	cursor:pointer;
	font-size:2rem;
	background:none;
}
/*
**
** Loader */
#loader {
	width:100vw;
	height:100vh;
	z-index:9998;
	left:0;
	top:0;
	display:flex;
}
.no-js #loader {
	display:none;
}
#loader:after {
	border:10px solid #fff;
	border-top:10px solid #f6a730;
	border-radius:50%;
	width:60px;
	height:60px;
	animation:spin 1s infinite;
	display:block;
	content:"";
	z-index:9999;
}
@keyframes spin {
	0% { transform:rotate(0deg); }
	100% { transform:rotate(360deg); }
}
/*
**
** Navigation */
#menu {
	background:#fff;
	z-index:2;
	padding:.25rem;
	transition:padding .2s, border .2s;
	border-bottom:1px solid transparent;
}
#menu.scrolled {
	border-color:rgba(0,0,0,.15);
}
#menu img {
	width:240px;
	transition:width .2s;
}
#menu .navbar-toggler-icon {
	background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
#menu a, #menu a.dropdown-item {
	color:#343a40;
	transition:color .2s;
	padding:.5rem;
	font-weight:300;
	font-size:1rem;
}
#menu a:hover, #menu a:focus, #menu .active > a {
	color:#f6a730;
	background:none;
}
#menu ul:last-child > li > a {
	font-size:1.5rem;
}
#menu ul:last-child > li:last-child {
	margin-right:0 !important;
}
#menu .dropdown .active {
	color:#f6a730;
	background:transparent;
}
/*
**
** Header */
header {
	background:#fff;
}
header.start {
	background:#fff;
}
header h1 {
	font-weight:300;
	font-size:2rem;
}
header.start h1 {
	line-height:1.5;
}
header h2, header .h2 {
	font-size:2.5rem;
}
/*
**
** Content */
#teaser {
	background:#eee
}
main p a, main li a {
	border-bottom:1px solid transparent;
	transition:border .2s;
}
main p a:hover, main li a:hover, main p a:focus, main li a:focus {
	border-color:#f6a730;
}
main .lead {
	margin-bottom:2rem;
}
/*
**
** Contact */
#contact {
	background:#fff;
}
#contact h4 {
	line-height:1;
	font-weight:300;
}
#contact p.lead {
	font-size:1.25rem;
}
#contact a {
	color:#343a40;
	font-weight:300;
	line-height:1;
}
#contact svg {
	width:1rem;
	height:1rem;
	fill:#343a40;
}
/*
**
** Footer */
footer {
	padding:3rem 0 6rem 0;
}
footer h6 {
	font-weight:300;
	line-height:1.5;
}
footer a {
	transition:color .2s;
}
footer svg {
	fill:#f6a730;
	width:1rem;
	height:1rem;
	transition:fill .2s;
}
footer a:hover, footer a:focus, footer .active a {
	color:#fff;
}
footer a:hover svg, footer a:focus svg {
	fill:#fff;
}
/*
**
** Media Queries */
@media (min-width:576px) {
	.lead {
		font-size:1.25rem;
	}
	h1 {
		font-size:2.5rem;
	}
	header h2, header .h2 {
		font-size:3rem;
	}
}
@media (min-width:768px) {
	#menu {
		padding:1rem 3rem;
	}
	#menu.scrolled {
		padding:.5rem 3rem;
	}
	#menu img {
		width:360px;
	}
	#menu.scrolled img {
		width:300px;
	}
	main figure.float-left {
		max-width:48%;
		margin:.25rem 4% 0 0;
	}
	main figure.float-right {
		max-width:48%;
		margin:.25rem 0 0 4%;
	}
	main figure.float-left + figure.float-right {
		margin-left:0;
	}
}
@media (min-width:1400px) {
	.container-fluid {
		padding-left:10rem;
		padding-right:10rem;
	}
}