@font-face {
    font-family: 'courgetteregular';
    src: url('../fonts/courgette-regular-webfont.woff2') format('woff2'),
         url('../fonts/courgette-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'robotobold';
    src: url('../fonts/roboto-bold-webfont.woff2') format('woff2'),
         url('../fonts/roboto-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'robotobold_italic';
    src: url('../fonts/roboto-bolditalic-webfont.woff2') format('woff2'),
         url('../fonts/roboto-bolditalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'robotoitalic';
    src: url('../fonts/roboto-italic-webfont.woff2') format('woff2'),
         url('../fonts/roboto-italic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'robotolight';
    src: url('../fonts/roboto-light-webfont.woff2') format('woff2'),
         url('../fonts/roboto-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'robotolight_italic';
    src: url('../fonts/roboto-lightitalic-webfont.woff2') format('woff2'),
         url('../fonts/roboto-lightitalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'robotoregular';
    src: url('../fonts/roboto-regular-webfont.woff2') format('woff2'),
         url('../fonts/roboto-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}


:root {
    --blue: rgb(55, 96, 128);
	--green: rgb(153,204,204);
	--grey: rgb(150,150,150);
    --white: rgb(255,255,255);
  }

body{
    background-color: var(--blue);
	font-size: 1.2rem;
	font-family: 'robotolight', sans-serif;
}

h1,h2,h3,h4,h5 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-family: 'courgetteregular', cursive;
}

h1{font-size: 2rem;}

h1#titelschrift{
    margin-top: 0;
    padding-top: 3rem;
    color: white;
    font-size: 3.5rem;
	text-shadow: 0 0 10px #000;
}

h2#titelslogan{
	color: var(--green);
    /*background: none repeat scroll 0 0 rgba(255,255,255,0.2);*/
    text-shadow: 0 0 5px #000;
	font-size: 2.5rem;
	padding: 0.5em;
	background-color: rgba(100,100,100, 0.5);
}

img.gallery:hover {
  opacity: 1;
  cursor: pointer;
  border: 3px solid var(--green);
}

a:hover{
  color: black;
}

nav{
    background-color: var(--blue);
}

.nav-link{
    color: var(--white);
}


.nav-link:hover{
  color: var(--green);
}

.nav-link.active{
  color: var(--green);
  border-bottom: 3px solid var(--green);
}

.nav-link.dropdown-toggle.show{
	color: var(--white);
}

.navbar-toggler{
	margin: 0 auto;
	position:relative;
	left: -20px;
	height: auto;
}

.navbar-toggler img{
		width: 50px;
		height: 2rem;
}

.navbar-toggler:focus {
  border: none;
  box-shadow: none;
  margin-bottom: 0.5rem;
}

#menuimage {
    background-color: black;
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    text-align: center;
    height: 250px;
    padding-left: 0;
    padding-right: 0;
}

.container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.whitebackground{
    background-color: var(--white);
    margin-top: 2rem;
    padding: 2rem;
    border-radius: 15px;
}

.gallery {
  cursor: pointer;
}

img {
    width: 100%;
}

footer {
    margin-top: 2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    color: var(--white);
}

footer a {
    text-decoration: none;
    color: var(--white);
}

/* gallery css */
/* Position the image container (needed to position the left and right arrows) */
.gallerycontainer {
    position: relative;
    top: 30px;
    margin: 0 auto;
    width: 99.5%;
    /*max-width: 920px;*/
  }
  
  /* Hide the images by default */
  .slide {
    display: none;
  }
  
  /* Next & previous buttons */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 40%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    user-select: none;
    -webkit-user-select: none;
    text-decoration: none;
  }
  
  .prev {
      border-radius: 0 5px 5px 0;
  }
  
  .next {
    right: 0;
    border-radius: 5px 0 0 5px;
  }
  
  /* On hover, add a blue background color with a see-through */
  .prev:hover, .next:hover {
      background-color: var(--blue);
	  opacity: 0.6;
  }
  
  
  /* Container for image text */
  .caption-container {
    text-align: center;
    background-color: var(--white);
	opacity: 0.7;
    height: 33px;
    position: relative;
    top: -33px;
  }
  
  p#caption {
      color: black;
  }
  
  .zeile{
      position: relative;
      top: -29px;
  }
  
  .zeile:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* 5 - 10 Bildspalten */
  .columns-5 {
    float: left;
    width: 20%;
  }
  .columns-6 {
    float: left;
    width: 16.6667%;
  }
  .columns-7 {
    float: left;
    width: 14.2857%;
  }
  .columns-8 {
    float: left;
    width: 12.5%;
  }
  .columns-9 {
    float: left;
    width: 11.1111%;
  }
  .columns-10 {
    float: left;
    width: 10%;
  }
  
  /* Thumbnails Transparenz */
  .thumb {
    opacity: 0.7;
  }
  
  img.active, .thumb:hover {
    opacity: 1;
    cursor: pointer;
    border: 3px solid var(--green);
  }
  
  .accordion-item{
	 background-color: none;
	 border: none;
  }
  
  .accordion-button{
	  border: 2px solid var(--green);
	  color: var(--blue);
	  opacity: 1;
	  border-radius: 5px;
	  padding: 0em 1em 1em 1em;
  }
  
form{padding: 1em; border: 1px solid #e0e0e0;border-radius: 10px;color(50,50,50);background-color: rgb(240,240,240);}
p.fax{display: none;}
button#senden{background-color: #1a5280;font-size: 1.2em;border-radius: 5px;}
button#senden:hover{opacity: 0.7;}
  
 @media screen and (max-width: 995px) {
	.nav-link.active{
		color: var(--green);
		background-color: rgba(200,200,200,0.1);
		border-bottom: 3px solid var(--green);
		border-top: 3px solid var(--green);
	}
	.whitebackground{
		min-width: 95%;
	}
 }
  
 @media screen and (max-width: 850px) {
	 
	h1#titelschrift{
	font-size: 3rem;
	}
	h2#titelslogan{
	font-size: 2rem;
	}
	footer {
	 font-size: 1rem!important;
	}
}

 @media screen and (max-width: 400px) {
	 
	h1#titelschrift{
	font-size: 2rem;
	}
	h2#titelslogan{
	font-size: 1.7rem;
	}
	
	footer{font-size: 0.8rem;}

}

 @media screen and (max-width: 260px) {
	 
	h2#titelslogan{
	display: none;
	}

}