
/* Menu */
#top_bar {
	position: fixed;
	top: 0;
	width: 100%;
    box-shadow: 0px 0px 2px 1px rgb(0 0 0 / 16%);
	/* border: solid 1px black; */
}
#navbarToggler {
	background-color: transparent;
}
#navbarToggler ul {
	padding-left: 12px;
}
#navbarToggler ul:first-child {
	padding-top: 15px;
	/* border: solid 1px black; */
}
#navbarToggler ul li {
	/* color: red; */
    transition: all 0.2s;
}
#navbarToggler ul li a {
	color: rgb(0 0 0 / 70%);
}
#logo {
	height: 100px;
}
.nav-link {
    font: 700 22px Open Sans, Arial, Helvetica, sans-serif;
}
.nav-link.current_menu_item {
    color: #777777 !important;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 0.2em;
    text-decoration-color: #777777;
}
.nav-link:not(.current_menu_item):hover {
    /* border-top: solid 0.3em green; */
}
.nav-link {
    /* padding: 1.2em !important; */
}
.current_menu_item {
    color: #108633;
}
.band {
	/* height: 400px; */
	/* border: solid 1px red; */
}
/* Tablet */
@media all and (min-width: 600px) {
	.band {
		margin-top: 40px;
		/* border: solid 1px red; */
	}
}
/* Desktop */
@media all and (min-width: 900px) {
}
/* Desktop */
@media all and (min-width: 975px) {
	.nav-link.current_menu_item {
		color: #000000 !important;
		text-decoration: underline;
		text-decoration-style: solid;
		text-decoration-thickness: 0.2em;
		text-decoration-color: #777777;
	}
	.nav-link:not(.current_menu_item):hover {
		text-decoration: underline;
		/* text-decoration-style: dashed; */
		text-decoration-thickness: 0.2em;
		text-decoration-color: #777777;
	}
	.nav-link {
		padding: 1.2em !important;
	}
	.current_menu_item {
		color: #ffffff;
	}
}

/* home */
#home_content {
	margin-top: 130px;
	background-image: url("/assets/images/background_opacity.png");
	background-repeat: no-repeat;
	background-position: right top;
	background-size: cover;
	display: flex;
	flex-direction: column;
	/* border: solid 1px blue; */
}
#home_content:before {
	
}
#hero {
	/* margin-top: 130px; */
	height: 600px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	/* border: solid 1px green; */
}
#hero_left {
	margin-top: 50px;
	margin-left: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	opacity: none;
	/* border: solid 1px pink; */
}
p {
	font-size: 30px;
	text-align: center;
}

#hero_right {
	/* display: flex; */
	/* flex-direction: column; */
	/* justify-content: center; */
	/* align-items: center; */
	/* border: solid 1px red; */
}
/* Tablet */
@media all and (min-width: 600px) {
}
/* Desktop */
@media all and (min-width: 900px) {
}
/* Desktop */
@media all and (min-width: 975px) {
	#home_content {
		/* margin-top: 100px; */
		display: flex;
		flex-direction: column;
		align-items: stretch;
	}
	#hero {
		flex-direction: row;
	}
	#hero_left {
		margin-top: 100px;
	}
}
#contact_content {
	margin-top: 600px;
	font-size: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* Footer */
#footer {
    width: 100%;
    height: 80px;
    /* margin: 0 auto; */
	display: flex;
	flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background: #1b1b1b;
    text-align: center;
    color: #777777;
}
#copyright_big { display:none; padding-top: 20px;}
#copyright_medium { display:none; }
#copyright_small { display:block; }

/* Tablet */
@media all and (min-width: 600px) {
	#copyright_big { display:none; }
	#copyright_medium { display:block; }
	#copyright_small { display:none; }
}
/* Desktop */
@media all and (min-width: 900px) {
	.copyright {
		height: 60px;
	}
	#copyright_big { display:block; }
	#copyright_medium { display:none; }
	#copyright_small { display:none; }
}