/* indie-flower-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Indie Flower';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/indie-flower-v17-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('../fonts/indie-flower-v17-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/indie-flower-v17-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/indie-flower-v17-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/indie-flower-v17-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/indie-flower-v17-latin-regular.svg#IndieFlower') format('svg'); /* Legacy iOS */
}

/* roboto-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-v30-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-v30-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg'); /* Legacy iOS */
}

/* roboto-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/roboto-v30-latin-700.eot'); /* IE9 Compat Modes */
  src: url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v30-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-v30-latin-700.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-v30-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg'); /* Legacy iOS */
}



/* ==========================================================================
   Farben, Settings
   ========================================================================== */

:root {
  --blau: #404D6E;
  --hellblau: #61a0bf;
  --beige: #C7B299;
  --grau: #707070;
}

/*@media (min-width: 2000px) {
  .container, .container-fluid, .container-sm, .container-md, .container-lg, .container-xl {
    max-width: 1800px;
  }
}

@media screen and (max-width: 4000px) {
  .container-fluid {
      padding-right: 200px;
      padding-left: 200px;
  }
}

@media screen and (max-width: 1680px) {
  .container-fluid {
      padding-right: 76px;
      padding-left: 76px;
  }
}

@media screen and (max-width: 1280px) {
  .container-fluid {
      padding-right: 26px;
      padding-left: 26px;
  }
}*/

/* ==========================================================================
   Schriften
   ========================================================================== */

@font-face {
  /* ... */
  font-display: swap;
}

@font-face {
  font-family: 'FontAwesome';
  src: url('../fonts/fontawesome-webfont.eot?v=4.7.0');
  src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), 
    url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), 
    url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), 
    url('../fonts/Font-awesome/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), 
    url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}

/* ==========================================================================
   Standards
   ========================================================================== */

html, body {
	height: 100%;
  font-family: 'Roboto';
}

body {
   background: rgb(199,178,153);
  background: linear-gradient(180deg, rgba(199,178,153,1) 60px, rgba(255,255,255,1) 60px); 
  background-repeat: no-repeat;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
	color: var(--blau);
}

h1 {
  font-size: 4em; 
  color: var(--blau);
  font-weight: bold;
  line-height: 1.2em;
}

@media (max-width: 1170px) {
   h1 {
    font-size: 3em; 
  }
}


h2 {
  font-size: 2em;
  color: var(--grau);
  text-transform: uppercase;
  font-weight: bold;
}

h3 {font-weight: bold;}

/* Linie vor h1 und dahinter */

/*h1::before,
h1::after {
    display: inline-block;
    content: "";
    border-top: .3rem solid #000;
    width: 8rem;
    margin: 0 1rem;
    transform: translateY(-1rem);
}*/

p {
	color: #707070;
  font-size: 1.4em;
}

p.lead {
  font-size: 4em; 
  color: var(--blau);
  font-weight: bold;
  line-height: 1.2em;
}

@media (max-width: 1170px) {
   p.lead {
    font-size: 2.4em; 
    line-height: 1.2em;
  }
}

/* ----------- LINKS ------------- */

a {
	color: var(--blau);
	transition: all 0.4s; /* explorer 10 */
    -webkit-transition: all 0.4s; /* chrome & safari */
    -moz-transition: all 0.4s; /* firefox */
    -o-transition: all 0.4s; /* opera */
}

a:hover {color: var(--hellblau);}

a:focus {
  	outline: none;
  	outline: 0px auto -webkit-focus-ring-color;
}

::selection {
  	background: var(--hellblau); /* WebKit/Blink Browsers */
  	color: #fff;
}

::-moz-selection {
  	background: var(--hellblau); /* Gecko Browsers */
  	color: #fff;
}

.vcenter {
    display: inline-block;
    vertical-align: middle;
    float: none;
}

.ml-200 {margin-left: 200px;}

@media (max-width: 767px) {
 .ml-200 {margin-left: 100px;}
}

/* ----------- LIST BULLETS -> FONT AWESOME ------------- */

/*li:before {    
font-family: 'FontAwesome';
font-family: 'Font Awesome\ 5 Free';
content: '\f067';
margin:0 5px 0 -15px;
color: #f00;
}*/

blockquote {
  font-size: 1.4em;
  width:60%;
  margin:50px auto;
  font-family:Open Sans;
  font-style:italic;
  color: #555555;
  padding:1.2em 30px 1.2em 75px;
  border-left:8px solid #78C0A8 ;
  line-height:1.6;
  position: relative;
  background:#EDEDED;
}

blockquote::before{
  font-family:Arial;
  content: "\201C";
  color:#78C0A8;
  font-size:4em;
  position: absolute;
  left: 10px;
  top:-10px;
}

blockquote::after{
  content: '';
}

blockquote span{
  display:block;
  color:#333333;
  font-style: normal;
  font-weight: bold;
  margin-top:1em;
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.logo {
  margin: 5% 0 0 10%;
  max-width: 700px;
}

@media (max-width: 1440px) {
 .logo {
    margin: 5% 0 0 10%;
    max-width: 600px;
  }
}

@media (max-width: 1170px) {
 .logo {
    margin: 5% 0 0 10%;
    max-width: 500px;
  }
}

@media (max-width: 560px) {
 .logo {
    margin: 5% 0 0 5%;
    max-width: 340px;
  }
}

@media (max-width: 560px) {
 .navbar-nav {background: #fff;}
 .nav-item {padding: 10px 0 !important;}
 .nav-link {
    text-align:center;
    font-size: 1.4em;
    border-right: none !important;
    padding: 40px !important;
  }
}

/* Scrollbar in Mobile Nav entfernen */
.navbar-collapse.in {
    overflow: hidden;
    max-height: none !important;
    height: auto !important;
}

.nav-link {
  font-size: 1.4em;
  color: var(--blau);
  font-weight: bold;
  border-right: 3px solid var(--blau);
  padding: 0 20px !important;
}

.navbar-social .nav-link {padding: 0 6px !important;}

li.nav-item:last-child .nav-link {
  border-right: 0;
}

/*.nav-item {
  border-right: 2px solid var(--blau);
}*/

/* Mobile Nav scrollbar machen */
@media (max-width: 576px){
  nav.navbar{
   max-height: 100vh;
   overflow: auto;
  -webkit-overflow-scrolling: touch;
  }
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 8rem;
    padding: 10px 13px;
    margin: 0;
    font-size: 1.1em;
    color: #000;
    text-align: left;
    list-style: none;
    background-color: #fff;
    border: 0;
    border-radius: 0;
    text-transform: none;
}

.dropdown {list-style: none; background: green; padding: 10px; display: inline-block;}
.dropdown .nav-link {color:#fff; text-decoration: none;}
.dropdown .dropdown-menu a{color: #000; text-decoration: none;}
.dropdown .btn {background: green; color:#fff;}
.dropdown .btn:hover {background: cyan; color:#000;}
.dropdown .btn:active {background: cyan; color:#000;}
.dropdown .btn:focus {background: cyan; color:#000;}
.dropdown-menu .dropdown-item {display: inline-block; width: 100%; padding: 10px 5px;}
.container .dropdown .dropdown-menu a:hover
{
  color: #fff;
  background-color: #b91773;
  border-color: #fff;
}

li.dropdown.active.open > a, 
li.dropdown.active.open > ul.dropdown-menu a:hover,
li.dropdown.open > a, 
li.dropdown.open > ul.dropdown-menu a:hover
{
  color: #fff;
  background-color: #0069a9;
  border-color: #fff;
}

/* Parent Link clickable */
@media only screen and (min-width:769px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
  .dropdown-submenu {
    position: relative !important;
  }
  .dropdown-submenu>.dropdown-menu {
    top: 0 !important;
    left: 100% !important;
    margin-top: -6px !important;
    margin-left: -1px !important;
    border-radius: 0 !important;
  }
  .dropdown-submenu:hover>.dropdown-menu {
    display: block !important;
  }
  .dropdown-submenu>a:after {
    display: block;
    content: "\f105";
    /*font-family: 'FontAwesome';*/
    font-family: 'Font Awesome\ 5 Free';
    margin-top: -18px;
    right: 15px;
    position: absolute;
    font-weight: 300;
  }
}

.caret-up {
    width: 0; 
    height: 0; 
    border-left: 4px solid rgba(0, 0, 0, 0);
    border-right: 4px solid rgba(0, 0, 0, 0);
    border-bottom: 4px solid;
    display: inline-block;
    margin-left: 2px;
    vertical-align: middle;
}

.breadcrumb {
    padding: 0;
    margin-bottom: 1rem;
    background-color: transparent;
    border-radius: 0;
}

/* ==========================================================================
   Submenu / Sidebarmenu
   ========================================================================== */

.list-group-item {
    position: relative;
    display: block;
    padding: .75rem 1.25rem;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.125);
        border-top-color: rgba(0, 0, 0, 0.125);
        border-right-color: rgba(0, 0, 0, 0.125);
        border-bottom-color: rgba(0, 0, 0, 0.125);
        border-left-color: rgba(0, 0, 0, 0.125);
}

.list-group-item.active {
    z-index: 2;
    color: #fff;
    background-color: #006eb7;
    border-color: #006eb7;
}

.list-group-item:first-child {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.list-group-item-action:focus, .list-group-item-action:hover {
    z-index: 1;
    color: #006eb7;
    text-decoration: none;
    background-color: #f8f9fa;
}

a.list-group-item:hover {padding-left: 40px;}

a.list-group-item i {opacity: 0.3;}
a.list-group-item:hover i {opacity: 0.8;}

/* ==========================================================================
   Sections
   ========================================================================== */

header {
  background: url(../img/bg-logo.png) left top no-repeat;
  background-size: 800px;
  min-height: 800px
}

@media (max-width: 1440px) {
   header {
    background-size: 700px;
    min-height: 700px
  }
}

@media (max-width: 1170px) {
   header {
    background-size: 500px;
    min-height: 700px
  }
}

@media (max-width: 767px) {
  header {
    background-attachment: scroll !important; /*mobile fix, Iphone/Safari "background-attachment: fixed" nicht möglich*/
  }
}

.intro {padding-top: 160px;}

.intro ul {list-style-type: none;}

.intro ul li {
  font-size: 2em;
  color: var(--grau);
  text-transform: uppercase;
  font-weight: bold;
}

@media (max-width: 1170px) {
 .intro ul li {
    font-size: 1.4em;
  }
}

section#content {padding: 0 0 160px 0;}

section#content img.icon {max-height: 80px;}

section {
	/*background: url(../img/bg.jpg) center top no-repeat fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;*/
	/*min-height: 400px;
	padding: 60px 0 60px 0;*/
}

.callout-top {
  position: absolute;
  background: url(../img/bg-callout-top.png) no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  padding: 120px 0;
  width: 100%;
  margin: -100px 0;
  z-index: 10
}

.callout-bottom {
  position: absolute;
  background: url(../img/bg-callout-bottom.png) right no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  padding: 120px 0;
  width: 100%;
   margin: -100px 0;
  z-index: 10
}

.callout-bottom p.zitat {color: #fff; font-size: 3.4em; font-family: 'Indie Flower';}
.callout-bottom p.zitat-autor {color: #fff; font-size: 1.4em;}

.video video {
  height: 100%;
    width: 177.77777778vh; /* 100 * 16 / 9 */
    min-width: 100%;
    min-height: 56.25vw; /* 100 * 9 / 16 */
}

.video {
  position: relative;
  overflow: hidden;
/*  min-height: 1200px*/
  height: auto;
}

@media (max-width: 560px) {
   .video {
    min-height: 1420px
  }
}

.video:before {
  content: '';
  position: absolute;
  background: rgba(64, 77, 110, 0.7);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.video-content {
  padding-top: 400px;
}

.video-content h2 {
  color: #fff;
  text-transform: none;
  font-size: 4em;
  margin-bottom: 80px;
}

.video-content p {
  color: #fff;
  margin-bottom: 40px;
}

section#kontakt {
  padding: 420px 0 120px 0;
}

section#kontakt p {
  font-family: 'Indie Flower';
}

section#kontakt h2 {
  color: var(--blau);
  text-transform: none;
  font-size: 3em;
}

.footer-top {
  background: url(../img/bg-footer-top.png) right no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height: 116px;
}

footer {
  background-color: var(--blau);
  padding: 120px 0;
  position: relative;
}

footer p.h3 {font-weight: bold;}

footer a,
footer p {color:#fff;}

footer a {text-decoration:none;}
footer a:hover {color: var(--hellblau);}

.fragen {
  position: absolute;
  right: 50px;
  top: -240px;
}

/* ----------- RGB Overlay ------------- */

section#overlay {
	background: 
    linear-gradient(
      rgba(40, 0, 0, 0.55), 
      rgba(40, 0, 0, 0.55)
    ),
    /* bottom, image */
    /*url(../img/bg.jpg);
    -webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	text-align: center;*/
}

/* ----------- PNG Overlay (für Muster z.B.) ------------- */

section#png-overlay {
  position: relative;
  background: url(../img/bg.jpg) center center;
  background-attachment: fixed;
}

section#png-overlay:before,
section#png-overlay:after {
    content: ''; /* you have to define that to make the pseudo elements work */
    position: absolute;
    top: 0;
}

section#png-overlay:before {
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/dots.png) repeat;
    opacity: 0.8;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

button {
  overflow-wrap: break-word;
  word-wrap: break-word;
  white-space: normal !important;
}

 .btn-primary {
    background-color: var(--blau);
    border-color: var(--blau);
    color: var(--beige);
    overflow-wrap: break-word;
    word-wrap: break-word;
    white-space: normal !important;
    font-weight: bold;
    border-radius: 44px;
    font-size: 2.4em;
    padding: 16px 40px;
 }

 .btn-primary:hover {
  background-color: var(--hellblau) !important;
    border-color: var(--hellblau) !important;
    color: #fff !important;
 }

 #Modal-Datenschutz .btn-primary,
 #Modal-Impressum .btn-primary,
 #kontaktformular .btn-primary {font-size: 1.4em; padding: 6px 30px;}

  .btn-primary-light {
    background-color: #fff;
    border-color: #fff;
    color: var(--blau);
    overflow-wrap: break-word;
    word-wrap: break-word;
    white-space: normal !important;
    font-weight: bold;
    border-radius: 44px;
    font-size: 2.4em;
    padding: 16px 40px;
 }


 .btn-primary-light:hover {
  background-color: var(--hellblau) !important;
    border-color: var(--hellblau) !important;
    color: #fff !important;
 }

.back-to-top {
   background: #004286;
   background: rgba(11,47,85,0.6);
   position: fixed;
   color: #fff;
   bottom: 20px;
   right: 20px;
   padding: 10px 20px 10px 20px;
   transition: all 1s; /* explorer 10 */
  -webkit-transition: all 1s; /* chrome & safari */
  -moz-transition: all 1s; /* firefox */
  -o-transition: all 1s; /* opera */
  font-size: 1.9em;
}

.back-to-top:hover {
  background: #004286;
  background: rgba(11,47,85,1);
}

.back-to-top:hover,
.back-to-top:active,
.back-to-top:focus {color:#fff;}

.btn-down  {
  background: #fff;
  width: 88px; 
  height: 88px; 
  border-radius: 50%;
  margin: 0 auto; 
  display: block; 
  position: absolute; 
  right: 0;
  left: 0; 
  margin-top: -55px;
  padding: 30px 0 0 0;
}

.btn-down a {color: #717070;}
.btn-down a:hover {color: #9f9f9f;}

/* ==========================================================================
   Carousel / Slider
   ========================================================================== */

.carousel-item {
  height: 75vh;
  min-height: 350px;
  background: no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

@media (max-width: 768px) {
 .carousel-item {
    height: 40vh;
    min-height: 250px;
  }
}

.carousel-control-next, .carousel-control-prev {
    color: #fff;
    text-align: center;
    font-size: 2.8em;
}

.carousel-control-next, .carousel-control-prev {
    width: 10%;
}

.carousel-caption-title {
    font-size: 3.4em;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.2em;
}

.carousel-caption-info p {
    font-size: 1.6em;
    color: #fff;
}

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 15%;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: left;
}

/* ==========================================================================
   Akkordeon
   ========================================================================== */

.accordion {
  width: 100%;
}

.accordion .card-header {
  background-color: var(--farbe);
  color: #fff;
}

.accordion .card-header:hover {
  background-color: var(--farbe);
  color: #fff;
}

.accordion .card-header .btn-link {
  color: #fff;
}

.accordion .card-header .btn-link:hover,
.accordion .card-header .btn-link:focus {
  text-decoration: none;
}

.accordion .card-header i {
  margin: 4px 0;
}

.accordion .card-header .btn.focus, 
.accordion .card-header .btn:focus {
    outline: 0;
    box-shadow: none !important;
}

.accordion .card-body p {
  margin: 10px 0 !important;
}

/* ==========================================================================
   Galerie
   ========================================================================== */

.thumb-box {
  display: inline-block !important;
  position: relative !important; 
  overflow: hidden;
}

.thumb-box-overlay {
  visibility:hidden;
  opacity:0;
}

.thumb-box a{
  color: transparent;
}

.thumb-box a:hover .thumb-box-overlay {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
  text-align: center;
  position: absolute;
  background-color: rgba(46, 85, 75, 0.8);
  color: #fff;
  width: 100%;
  height: 100%;  
}

.thumb-box-overlay span {
  margin: auto;
  position: absolute;
  top: 0; left: 0; bottom: 0; right: 0
}

/* ==========================================================================
   Media Queries
   ========================================================================== */

@media (max-width: 768px) {
	/*...*/
}

/*// Extra small devices (portrait phones, less than 576px)
// No media query for `xs` since this is the default in Bootstrap

// Small devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

// Medium devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

// Large devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

// Extra large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }*/


/* ==========================================================================
   Cookie Consent
   ========================================================================== */

/* Cookie Hinweis */
/*.cc-message {font-size: 0.8em;}*/

.cc-window a {text-decoration: none;}

a.cc-dismiss{
  transition: all .25s;
}

a.cc-dismiss:hover{
  color: #ffffff;
  background-color: #b1d60a;
  transition: all 0.5s;
}


/* ==========================================================================
   Modal Center
   ========================================================================== */

 .modal-dialog {
    min-height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: auto;
}
@media(max-width: 768px) {
  .modal-dialog {
    min-height: calc(100vh - 20px);
  }
}

/* ==========================================================================
   Animationen
   ========================================================================== */

.bounce {
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}


/* ==========================================================================
   IE Fixes
   ========================================================================== */

/* SVG correct size */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  img[src*=".svg"] {
    width: 100%; 
  }
}