
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Montserrat", sans-serif;
	
}

.bs_logo {
	color: #fff;
	font-size: 1.5rem;
	font-weight: 600;
	width: 100%;
	max-width: 100%;
}

.navbar {
	display: flex;
	justify-content: space-around;
	align-items: center;
	background-color: #ffffff;
	padding: 20px 0;
}

.navbar.sticky {
	padding: 15px 0;
}

.nav_logo {
	color: #fff;
	font-size: 1.5rem;
	font-weight: 600;
}

.nav_logo > span {
	color: #ff6600;
}

.nav_links {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 35%;
}

.nav_links > li {
	list-style: none;
}

.nav_links > li > a {
	position: relative;
	text-decoration: none;
	color: #7f7f7f;
	font-size: 1rem;
	transition: 0.5s;
}

.nav_links > li > a:hover {
	color: #ff6600;
}

.nav_links > li > a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -5px;
	height: 2px;
	width: 0;
	background-color: #ff6600;
	transition: 0.5s;
}

.nav_links > li > a:hover::after {
	width: 100%;
}

.toggle_button {
	display: none;
	cursor: pointer;
}

.toggle_button > .line_one,
.toggle_button > .line_two,
.toggle_button > .line_three
 {
	height: 3px;
	width: 25px;
	background-color: #ff6600;
	margin: 5px 0;
	transition: 0.3s;
}

@media screen and (max-width: 468px) {
	body {
		overflow-x: hidden;
	}

	.navbar {
		justify-content: space-between;
		padding: 0 30px;
		height: 60px;
	}

	.nav_links {
		position: absolute;
		top: 60px;
		right: 0;
		height: calc(100vh - 60px);
		width: 100%;
		justify-content: space-around;
		flex-direction: column;
		background-color: #ffffff;
		transform: translateX(100%);
		transition: 0.5s;
		border-top: 1px solid #7f7f7f;
	}

	.nav_links > li > a {
		font-size: 1.1rem;
	}

	.nav_links > li > a::after,
	.nav_links > li > a:hover::after {
		width: 0;
	}

	.toggle_button {
		display: block;
	}
}

.nav_links.active {
	transform: translateX(0);
}

.toggle_button.toggled > .line_one {
	transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle_button.toggled > .line_two {
	opacity: 0;
}

.toggle_button.toggled > .line_three {
	transform: rotate(45deg) translate(-5px, -6px);
}




* { box-sizing: border-box; }

body { 
  font-family: 'Open Sans', sans-serif;
  color: #666666;
}

/* STRUCTURE */

.wrapper {
	padding: 5px;
	max-width: 980px;
	width: 95%;
	margin: 20px auto;
}
header {
	padding: 0 15px;
}

.columns {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	margin: 5px 0;
}

.column {
	flex: 1;
	border: 0px solid gray;
	margin: 2px;
	padding: 10px;
	&:first-child { margin-left: 0; }
	&:last-child { margin-right: 0; }
	
}

footer {
	padding: 0 15px;
}


@media screen and (max-width: 980px) {
  .columns .column {
		margin-bottom: 5px;
    flex-basis: 40%;
		&:nth-last-child(2) {
			margin-right: 0;
		}
		&:last-child {
			flex-basis: 100%;
			margin: 0;
		}
	}
}

@media screen and (max-width: 680px) {
	.columns .column {
		flex-basis: 100%;
		margin: 0 0 5px 0;
	}
}

.container {
  border-radius: 5px;
  padding: 20px;
  width: 100%;
  max-width: 100%; 
}

.col-75 {
  float: left;
  width: 100%;
  max-width: 100%; 
  margin-top: 6px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

copyschutz 
{
	font-family: 'PT Sans Narrow', sans-serif;
	font-size: 0.7em;
	padding: 10px; 
	text-align: center;
	color: #7f7f7f;
}

@media screen and (max-width: 680px) {
  .col-75, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
}

.bilderanzeige {
  margin: 2rem auto;
}

.gallery {
  display: grid; 
  max-width: 100%;
  margin: 0 auto;
  grid-gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-auto-rows: minmax(150px, auto);
}

.gallery-item {
  max-width: 100%;
  border-radius: 5px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
  transition: all .3s;
  &:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.8);
  }
}

.parent{
 text-align : center;
}

#bscookie { position: fixed; bottom: 0; left: 0; right: 0; padding: 20px; font-size: 14px; font-family: verdana; color: #ffffff; background-color: #ff6600; background-repeat: repeat; background-attachment: scroll; background-position: 0 0; }

    #bscookie a.button {cursor: pointer; background: #7f7f7f; padding: 8px 20px; margin-left: 10px; border-radius: 5px; font-weight: bold; float: right;}

    #bscookie a.button:hover {background-color: #aaaaaa;}

    #bscookie p.cookiemessage {display: block; padding: 0; margin: 0;}
