/*
* Main theme css file
*/
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800&display=swap');

/*
* Base theme styles
*/

html, body {
	font-size: 1rem;
}
html {
	background-color: #3f8e8f;
	background-image: url('../img/bg-image.png');
}
body {
	background-color: transparent;
}
/*
* Headline styles
*/
h1, h2, h3, h4, h5 {
	font-family: 'Barlow Condensed';
	font-style: normal;
	font-weight: 600;
}
/*
* Link styles
*/
a {
	transition: color 0.25s linear;
}
.main-footer a,
.main-footer a:visited {
	color: #3c3b3b;
}
.main-footer a:hover {
	color: #dd993d;
	text-decoration: none;
}

/* Branding styles */
.branding {
	text-align: center;
}
.branding img {
	max-width: 360px;
	height: auto;
}

.main-outer {
}
.main-footer {
	margin-top: 30px;
	text-align: center;
	color: #3c3b3b;
}
/*
* Offline page
*/
.offline-outer {
	color: #dd993d;
}
/*
* Objects
*/
.boxed {
	background-color: rgba(255,255,255,0.5);
	border: 1px solid #11706e;
	color: #000;
}
.pager-bg {
	background-color: #f7f7f7;
	background-image: url('../img/bg-paper.png');
}
.shadow-xs {
	-webkit-box-shadow: 3px 3px 0px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: 3px 3px 0px 0px rgba(0,0,0,0.25);
	box-shadow: 3px 3px 0px 0px rgba(0,0,0,0.25);
}
.text-shadow {
	filter: drop-shadow(2px 2px 0 rgba(0,0,0,0.2));
	/*
	text-shadow: 2px 2px 0px rgba(0,0,0,0.2);
	*/
}
/*
* Typography
*/