@CHARSET "UTF-8";

/* 1. To have the footer at the bottom, even, when the page is not tall enough */
body {background-color: #1d3618;}

html.flexbox body {
	box-sizing: border-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	min-height: 100vh;
	flex-direction: column;
}

html.flexbox .site-header,
html.flexbox .site-nav,
html.flexbox .site-footer {
 -webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
}

html.flexbox .site-content {
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

/* 2. Header style */

.site-header {
	background-color: #333333;
	color: #FFFFFF;
	padding-top: 30px;
	padding-bottom: 30px;
	font-size: 28px;
}

.site-header a,
.site-header a:hover,
.site-header a:active {
	color: #FFFFFF;
}

/* 3. Nav style */

@media(max-width: 575px) {
	.site-nav.sticky-top {
		position: static;
	}
}

.site-nav.sticky-top {
	transition: background 0.5s, box-shadow 0.5s;
}

.site-nav.sticky-top.sticked {
	background-color: rgba(248, 249, 250, 0.95) !important;
	box-shadow: 0 -3px 5px 6px rgba(0, 0, 0, 0.15);
}

@media(min-width: 576px) {
	.nav-logo {
		width: 0;
		overflow: hidden;
	}

	.site-nav.sticky-top.sticked .nav-logo {
		width: auto;
	}

	.site-nav.sticky-top .nav-logo img {
		display: none;
	}
}

/* 4. Footer style */

.site-footer {
	background-color: #333333;
	color: #FFFFFF;
	padding-top: 30px;
	padding-bottom: 30px;
}

.site-footer a,
.site-footer a:hover,
.site-footer a:active {
	color: #FFFFFF;
}

.footer-header {
	font-size: 18px;
	font-weight: bold;
	border-bottom: 1px solid #FFFFFF;
	margin-bottom: 15px;
}

.site-footer .list-inline > li {
	margin: 10px 0;
}

/* 5. Content style */

.site-content {
	padding: 30px 0;
}

.site-content .breadcrumb-area {
	margin-top: -30px;
}

#infoModal {
	color: black;
}