@import "../vendor/font-awesome/css/fontawesome-all.min.css";
@import "hamburgers.min.css";

a {
	color: #e63323;
}

a:focus {
	text-decoration: none;
	outline: none;
	
}

a:hover {
	color: #333;
}

body {
	background: #f2f2f2;
	font-weight: 400;
	font-size: 16px;
	color: #333;
	padding-top: 50px;
}


/****** MENU *****/

#menu {
	height: 50px;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10000;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	border-bottom: 3px solid #3D3D3D;
	background: #fff;
}

#menu_placeholder {
	height: 50px;
}

#menu .logo {
	height: 50px;
}

#menu .logo img {
    width: 100px;
    height: 100px;
    margin: 5px 0 5px;
}

#menu.over .logo {
	overflow-y: hidden;
}

#menu.over .logo img {
	display: block;
	margin: -5px 0 5px;
	width: 60px;
    height: 60px;
}

#menu a {
    font-weight: 400;
    font-size: 14px;
    color: #333;
    display: block;
    padding: 13px 1em 0;
    height: 50px;
    box-sizing: border-box;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.8), 0 0 3px rgba(0,0,0,0.2);
}

#menu.over a {
	text-shadow: none;
	border-bottom: 3px solid transparent;
}

#menu.over li.active, #menu.over li:hover {
	border-top: 0;
}

#menu li.active a, #menu a:hover {
	border-bottom: 1px solid #e63323;
	text-decoration: none;
}

#menu.over a.active {
	border-bottom: 3px solid #fff;
}

#menu.over a:hover {
	border-bottom: 3px solid #f23524;
}



#menu ul {
	list-style: none;
	margin-right: -1em;
	float: right;
	margin-bottom: 0;
}

#menu ul li {
	display: block;
	position: relative;
	float: left;
}

#menu ul li.parent > a {
	padding-left: 32px;
}

#menu ul li a i {
    font-size: 12px;
    display: inline-block;
    position: absolute;
    top: 22px;
    left: 12px;
    opacity: 0.7;
    text-shadow: none;
}



/****** SUBMENU *****/

#menu ul li ul {
    display: none;
    background-color: #fff;
    position: absolute;
    padding: 0;
    text-align: right;
    opacity: 0;
    transition: opacity .35s ease 0s;
    padding: 3px;
    border: 1px solid #eee;
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

#menu ul li ul li {
	width: 100%;
	border: 0;
}

#menu ul li ul li.active, #menu ul li ul li:hover {
	border: 0;
}

#menu ul li ul li a:hover, #menu.over ul li ul li a:hover {
	border: 0;
	color: #fff;
	background-color: #82bb28;
}

#menu ul li ul a {
    color: #333;
    border: 0;
    white-space: nowrap;
    text-transform: none;
    text-shadow: none;
    font-family: "Raleway";
    font-size: 14px;
    letter-spacing: 0;
    text-align: center;
    padding: 8px 30px;
    height: auto;
    line-height: 1.7em;
}



#menu ul li:hover ul {
	display: block;
	opacity: 1;
	transition: opacity .35s ease 0s;
	
}



.navbar-toggle {
	margin-right: 0;
}

.navbar-toggle .icon-bar {
	background: #fff;
}

#menu .logo a {
    padding: 0;
    height: auto;
    display: inline-block;
    border: 0;
}

#menu .logo a:hover {
    border: 0;
}



.hamburger {
    position: relative;
    float: right;
    padding: 9px 10px;
    margin-top: 8px;
    margin-right: 0;
    margin-bottom: 8px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    display: none;
}

.hamburger:focus {
	outline: none;
}

.hamburger-box {
    width: 22px;
    height: 20px;
}

.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
    position: absolute;
    width: 22px;
    height: 1px;
    border-radius: 2px;
    background-color: #fff;
}

.hamburger:hover {
	opacity: 1;
}


.hamburger-inner:before {
    top: -6px;
}

.hamburger-inner:after {
    bottom: -6px;
}





p, ol, ul {
	line-height: 1.8em;
	margin-bottom: 1em;
}



.banner {
	padding: 7em 0;
	text-align: center;
	color: #fff;
	text-shadow: 0px 3px 0px rgba(0, 0, 0, 0.3), 0 0 4px rgba(0,0,0,0.3);
	font-size: 2em;
	font-family: 'Gnuolane', 'Raleway', sans-serif;
	text-transform: uppercase;
	background-size: cover;
	background-position: center center;
	letter-spacing: 4px;
}

.banner h1 {
	font-size: 1.1em;
	margin: 0;
	font-family: "Gnuolane", sans-serif;
	font-weight: normal;
}

.banner h2 {
	font-size: 4em;
	margin: 0;
}



.button {
	display: table;
	background-color: #e63323;
	border: 1px solid #e63323;
	color: #fff;
	text-decoration: none;
	margin: 3em auto 3em;
	padding: 15px 35px;
	border-radius: 3px;
	font-weight: 400;
	line-height: 0.9em;
	transition: background .35s ease 0s, color .35s ease 0s;
	-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Chrome/Safari/Opera */
     -khtml-user-select: none; /* Konqueror */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none;
}

.button:hover {
	color: #e63323 !important;
	background: transparent;
}


.teaser, .teaser2 {
	background-size: cover;
	background-position: center center;
}


.feature {
	padding: 70px 0;
}

.feature.half {
	padding-bottom: 0;
}

.feature.dark {
	background-color: #f4f4f4;
	border: 1px solid #e8e8e8;
    border-width: 1px 0;
}

.feature h2 {
	font-weight: 200;
	margin-top: 2em;
	margin-bottom: 0.7em;
	font-size: 30px;
}

.feature h2 em {
	color: #82bb28;
}





h1 {
	font-weight: 200;
	font-size: 2.4em;
	margin-bottom: 1.1em;
}

h2 {
    font-weight: 500;
    margin-top: 3em;
    margin-bottom: 2em;
    font-size: 1.4em;
}

h3 {
	font-size: 1.1em;
	font-weight: 400;
	margin-top: 2em;
	margin-bottom: 1.5em;
}


.content {
	padding-top: 3em;
	padding-bottom: 6em;
}

.content a, .sidebar a {
	color: #82bb28;
}

.content img {
	max-width: 100%;
	margin: auto;
}

.content {
	
	float: right;
}

.content hr {
	width: 25em;
	margin: auto;
	margin: 3em auto;
	border-top: 1px solid #ddd;
	max-width: 80%;
}

.content h1 {
	font-weight: 200;
	font-size: 2.4em;
}

.content h2 {
    font-weight: 600;
    font-size: 1em;
    margin-bottom: 1.3em;
    margin-top: 3em;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.content h3 {
	font-size: 1em;
	font-weight: 500;
	margin-bottom: 0.8em;
	margin-top: 3.5em;
}

.content ul {
	padding: 0;
	margin-bottom: 45px;
	margin-top: 25px;
}

.content li {
	padding: 3px 0 3px 30px;
	border-left: 5px solid #82bb28;
	list-style: none;
	margin-bottom: 14px;
}

.content li:after {
    content: '';
    position: relative;
    border-bottom: 1px solid #e7e7e7;
    display: block;
    bottom: -9px;
}

.content li:last-child:after {
	border: 0;
}





.sidebar {
	font-size: 13px;
    padding-top: 7.4em;
    padding-bottom: 6em;
}

.sidebar h3 {
	font-size: 1em;
	margin-bottom: 2em;
	margin-top: 5em;
	text-transform: uppercase;
	font-weight: 600;
}

.sidebar h4 {
	font-size: 1em;
	margin-bottom: 0.5em;
	margin-top: 3em;
}


.sidebar i {
	color: #82bb28;
	width: 12px;
	text-align: center;
}


.right {
	float: right;
}

.background {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}






.contact {
	padding: 3em 0 1em;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #333;
	border-bottom: 1px solid #383838;
	text-align: center;
	color: #fff;
	font-weight: 200;
	position: relative;
}

.contact h3 {
	font-size: 2.1em;
	font-weight: 200;
	margin-bottom: 0.3em;
	margin-top: 1em;
}

.contact p {
	font-size: 1em;
}



/* CODE HIGHLIGHT */

.hljs {
	background: transparent;
}

pre {
    border: 0;
    padding: 10px 20px;
    background: #f7f7f7;
    margin-bottom: 45px;
}

code {
	background: #f7f7f7;
	font-size: 13px;
}

pre code {
	display: block;
    padding: 0.5em;
    color: #333333;
    overflow-x: auto;
    font-size: 13px;
}





footer {
	padding: 3em 0 2em;
	background-color: #e63323;
	color: #fff;
	font-size: 13px;
}

footer h4 {
	padding-top: 0px;
	margin: 0 0 20px;
    line-height: 1.2;
    font-weight: 600;
    text-transform: uppercase;
    color: #c5cbcc;
    font-size: 13px;
}

footer ul {
	list-style: none;
	padding: 0;
}

footer li {
	margin: 0 0 12px;
    line-height: 1.3em;
}

footer li i {
    width: 12px;
    text-align: center;
    margin-right: 5px;
}

footer a {
	color: #fff;
}

footer a:hover {
	color: #c5cbcc;
	text-decoration: none;
}

footer a:focus {
	outline: 0;
	color: #82bb28;
	text-decoration: none;
}

footer .last {
	text-align: center;
	font-size: 1em;
	margin-top: 5em;
}

footer .last i {
	color: #82bb28;
	display: inline-block;
	margin: 0 0.4em;
}

footer .footer-col {
	padding-bottom: 3em;
}

footer .logo {
	text-align: right;
}

footer .logo img {
	max-width: 100%;
	width: 100px;
}

.headline {
    padding-top: 3em;
    padding-bottom: 0;
    z-index: 55;
}

.content {
	padding-top: 0;
	float: left;
}

.content.with-space {
	padding-right: 45px;
}

.content img {
    max-width: 80%;
    margin: auto;
    display: table;
    margin-bottom: 0.5em;
}

h2 i {
    display: inline-block;
    color: #82bb28;
    font-size: 1.6em !important;
    margin-right: 5px;
    width: 30px;
    text-align: center;
    position: relative;
    top: 3px;
}

.content h2:first-child {
	margin-top: 0;
}


.box-container {
	margin-top: 30px;
}

.box {
	border: 1px solid #82bb28;
	border-radius: 4px;
	text-align: center;
	padding: 35px 0;
	box-sizing: border-box;
}

.box .icon {
	font-size: 80px;
	color: #82bb28;
}

.box h3 {
	margin-top: 35px;
	text-transform: uppercase;
}

@media (max-width: 768px) {
	
	.content.with-space {
		padding-right: 15px;
	}

}

.footer-col-2 {
	text-align: center;
}

.footer-col-3 {
	text-align: right;
}

.footer-col a {
	display: inline-block;
    text-decoration: none;
    border-radius: 3px;
    line-height: 0.9em;
    transition: background .35s ease 0s, color .35s ease 0s;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    font-weight: 300;
    padding: 10px 25px;
}

.footer-col a:hover {
	background: #fff;
	color: #e63323;
}


.shadow-box {
    background: #fff;
    box-shadow: 0 1px 8px 0 rgba(0,0,0,.05), 0 1px 4px 0 rgba(0,0,0,.14), 0 3px 3px -2px rgba(0,0,0,.12);
    border-radius: 5px;
}



































