/* 20.02.2024 .intro margin.top entfernt bei Hinzufügen des Banners*/

body {
    width: 100%;
    height: 100%;
    font-family: 'Roboto',sans-serif;
    font-weight: 400;
    color: #fff;
    background-color: #000;
    font-size:20px;
}

html {
    width: 100%;
    height: 100%;
}

h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
    color:#f39200;
}

h1 {
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    font-weight: bold;
    font-size:40px;
    font-family: 'Oswald', sans-serif;  
    color:#f39200;
}

h2 {
    margin: 0;
    padding: 0;
    font-weight: bold;
    font-size:30px;
    font-family: 'Oswald', sans-serif;  
    color:#f39200;
}

h3 {
    margin: 0;
    padding: 0;
    font-weight: bold;
    font-size:24px;
    line-spacing:-0.2em;
    font-family: 'Oswald', sans-serif;  
    color:#f39200;
   /* text-shadow: #000000 0.05em 0.05em 0.05em;/*/
}

#mitgliedschaftinbildern h3 {
    color:#FFFFFF;  
}

a {
    color: #f39200;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #f39200;
}


a.whatsapplink {
    color: #00e676;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

a.whatsapplink:hover,
a.whatsapplink:focus {
    text-decoration: none;
    color: #00e676;
}

.light {
    font-weight: 400;
}

#mitgliedschaftSlider img{
    margin: 0 auto; /* Align slide image horizontally center */
}

#mitgliedschaftSlider h4 {
    color:#FFFFFF;
    font-size:25px;
}

#mitgliedschaftSlider p {
  font-size:16px;
}

#mitgliedschaftSlider {
  background-color: #f6f6f6;
}

#mitgliedschaftSlider .carousel .item{
    min-height: 280px; /* Prevent carousel from being distorted if for some reason image doesn't load */
}

/*===========================
  Adventskalender
============================= */
#adventskalender h3 {
    font-family: 'DSSnowfall', sans-serif;
    margin: 0;
    padding: 0;
    font-size:50px;
    font-style:italic;
    text-transform: none;
    color:#000000;
    text-shadow: none;

}

/*===========================
  Menu and Navigation
============================ */
.navigation  {
  background-color:#000;
  padding:0;
  /*min-height:50px;*/
  border-bottom: 1px solid #000;
  font-size:14px;
}

.navbar-brand img {
  margin:0;
  padding:0;
  width:100%;
  height:auto;
}

.navbar-default .nav {
  padding-top:25px;
  padding-left:25px;
}

.navbar-default .nav li a:hover {
  color: #FFFFFF;
  border-color: #fff #fff #fff;
  border-radius:0;
  transition: all 0.3s ease-in-out;
  background-color:#f39200;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.navbar-default .nav li a:focus,
.navbar-default .nav li.active {
  color: #fff;
  border-radius:0;
  background-color:#FFFFFF;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  background-color: #f39200;
  outline: 0;
}

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  color: #fff;
  text-decoration: none;
  background-color: #f39200;
}

.navbar-collapse {
    max-height: 340px;
    overflow-x: visible;
    padding-right: 15px;
    padding-left: 15px;
    border-top: 1px solid transparent;
    /* box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1); */
    -webkit-overflow-scrolling: touch;
}

.navbar-default .navbar-collapse, .navbar-default .navbar-form {
    border-color: #000;
}

.navbar-default {
    background-color: #000;
    border-color: #000;
}

/* loader */
#preloader {
    background: #ffffff;
    bottom: 0;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 999;
}

#loaderInner {
    background:#ffffff url(../img/spinner.gif) center center no-repeat;
    height: 60px;
    left: 50%;
    margin: -50px 0 0 -50px;
    position: absolute;
    top: 50%;
    width: 60px;
}

@keyframes boxSpin{
  0%{
    transform: translate(-10px, 0px);
  }
  25%{
    transform: translate(10px, 10px);
  }
  50%{
    transform: translate(10px, -10px);
  }
  75%{
    transform: translate(-10px, -10px);
  }
  100%{
    transform: translate(-10px, 10px);
  }
}


@keyframes shadowSpin{
  0%{
    box-shadow: 10px -10px #39CCCC, -10px 10px #FFDC00;
  }
  25%{
    box-shadow: 10px 10px #39CCCC, -10px -10px #FFDC00;
  }
  50%{
    box-shadow: -10px 10px #39CCCC, 10px -10px #FFDC00;
  }
  75%{
    box-shadow: -10px -10px #39CCCC, 10px 10px #FFDC00;
  }
  100%{
    box-shadow: 10px -10px #39CCCC, -10px 10px #FFDC00;
  }
}

/* misc */
hr {
  margin-top: 10px;
}

.boxed-grey {
  border-radius:20px;
}

/* margins */
.marginbot-0{margin-bottom:0 !important;}
.marginbot-10{margin-bottom:10px !important;}
.marginbot-20{margin-bottom:20px !important;}
.marginbot-30{margin-bottom:30px !important;}
.marginbot-40{margin-bottom:40px !important;}
.marginbot-50{margin-bottom:50px !important;}

/* ===========================
--- General sections
============================ */

.home-section {
  padding-top: 100px;
  padding-bottom: 110px;
  padding-left:10px;
  padding-right:10px;
  display:block;
  position:relative;
  z-index:120;
}

.section-heading h2 {
  font-size: 40px;
}
.section-heading i {
  margin-bottom: 20px;
}

/* --- section bg var --- */

.bg-white {
  background: #fff;
}

.bg-gray {
  background: #f8f8f8;
}

.bg-blue {
  background: #e30b13;
}


.bg-dark {
  background: #575757;
}

.bg-black {
  background: #000000;
}

/* --- section color var --- */

.text-light {
  color: #fff;
}

/* ===========================
--- Intro
============================ */

.intro_passau {
  width:100%;
  height:auto;
  background: url(../img/intro.jpg) top center;
  background-size: cover;
}

.intro_untergriesbach {
  width:100%;
  height:auto;
  background: url(../img/AdobeStock_823229986.jpeg) top center;
  background-size: cover;
}

.intro_fuerstenzell {
  width:100%;
  height:auto;
  background: url(../img/intro3.jpg) top center;
  background-size: cover;
}

.intro_muenzkirchen {
  width:100%;
  height:auto;
  background: url(../img/intro_muenzkirchen.jpg) top center;
  background-size: cover;
}

#intro.intro {
  padding:0 0 0 0;
}

.intro .slogan {
  padding-top:21%;
  padding-bottom:21%;
  text-align: center;
}

.intro .page-scroll {
  text-align: center;
}

.page-scroll {
  height:100px;
}

.brand-heading {
    font-size: 40px;
}

.intro-text {
    font-size: 18px;
}

.intro .slogan h2 {
  color: #000000;
  text-shadow: none;
  font-size: 60px;
  line-height: 60px;
  font-weight: 700;
  font-family: Montserrat, sans-serif;
  text-decoration: none;
  /*text-transform: uppercase;*/
  border-width: 0px;
  border-color: #000;
  border-style: none;
}

.intro .slogan h4 {
  color: #000000;
}

.intro .slogan .label {
  background-color: rgba(255, 255, 255, 0.95);
  color:#000;
  border-radius:0;
}

.p_introSloganText {
  font-size:100px;
  color:#FFFFFF;
  text-align:center;
  text-shadow:
    0 1px 0 #828282,
    0 -1px 0 #828282,
    1px 0 0 #828282,
    -1px 0 0 #828282;
  line-height:50px;
}

.p_introSloganQuote {
  font-size:48px;
  color:#FFFFFF;
  font-weight:300;
  text-align:center;
  text-shadow:
    0 1px 0 #828282,
    0 -1px 0 #828282,
    1px 0 0 #828282,
    -1px 0 0 #828282;  
}

.p_introSloganLocation {
  font-size:18px;
  font-weight:bold;
  text-align:center;
  color:#373737;
  margin-left:auto;
  margin-right:auto;
  margin-top:10px;
}

/* ===========================
--- About
============================ */

.boxed-grey {
  background: #f9f9f9;
  padding: 20px;
}

.team h5 {
  margin-bottom: 10px;
}

.team p.subtitle {
  margin-bottom: 10px;
}

.avatar {
  margin-bottom: 20px;
}

/* ===========================
--- Main Container
============================ */

.mainContainer {
  padding-top:40px;
}

/* ===========================
--- Thumbnail / Caption
============================ */

.thumbnail .caption {
  color:#FFF;
}

/* ===========================
--- Header Image
============================ */

.headerImage {
  border-bottom: 1px solid #d6d6d6;
}

/* ===========================
--- Services
============================ */

.service-icon {
  margin-bottom: 20px;
}  

.service-box {
  border: 1px solid #ac2f21;
  border-radius:5px;
  background-color:#fff;
}

.heimo_service_box {
  width: 100%;
  float: left;
  text-align: center;
  margin-bottom: 60px;
  border:5px solid #FFFFFF;
  padding:30px;
  border-radius:75px;
}

.circle-image {
  width: 240px;
  height: 240px;
  margin: 0 auto 15px; /* zentriert + Abstand nach unten */
}

.circle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

  .table-container {
    width: 100%;
    overflow-x: auto; /* macht die Tabelle responsive */
  }

  table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    font-family: Arial, sans-serif;
  }

  td {
    padding: 10px;
    font-size: 18px;
  }

  /* Nur innere Linien */
  tr:not(:last-child) td {
    border-bottom: 1px solid #999;
  }

  td:not(:last-child) {
    border-right: 1px solid #999;
  }

  /* Häkchen */
  .check {
    color: green;
    font-weight: bold;
  }

  /* Kreuz */
  .cross {
    color: red;
    font-weight: bold;
  }

  /* Tarife/Preise */
  .prices {
    color: #f39200;
    font-weight: bold;
  }

/* ===========================
--- movies
============================ */
.col-sm-3 .iframe-container {
  padding-bottom:166.66%
}

/* ===========================
--- Contact
============================ */

.widget-contact-left {
  text-align: left;
}

.widget-contact-right {
  text-align: right;
}

#contactDialog {
  font-size:14px;
}

.close {
  float: right;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  /*text-shadow: 0 1px 0 #fff;
  opacity: .2;
  filter: alpha(opacity = 20); */
  text-shadow:none;
  opacity: unset;
}

.close:hover,
.close:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  /*filter: alpha(opacity=50);
  opacity: .5;*/
  opacity: unset;
}

/* ===========================
--- Google Map
============================ */
.google-map {
  width:100%;
  height:402px;
  border:0;
  border-top: 1px solid #d6d6d6;
}

/* ===========================
--- Footer
============================ */

footer {
  text-align: center;
  padding: 50px 0 ;
}

footer a {
  color:#FFFFFF;
}

footer a:hover {
  color:#000;
} 

footer p {
  color: #f8f8f8;
}

.link-impressum {
  color: #FFF;
}

.link-impressum:hover {
  color: #000;
}

/* ===========================
--- Elements
============================ */

.btn {
  border-radius: 0;
    text-transform: uppercase;
    font-family: Montserrat,sans-serif;
    font-weight: 400;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}


.btn-circle {
    width: 70px;
    height: 70px;
    margin-top: 15px;
    padding: 7px 16px;
    border: 2px solid #fff;
    border-radius: 50%;
    font-size: 40px;
    color: #fff;
    background: 0 0;
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}

.btn-circle.btn-dark {
    border: 2px solid #666;
    color: #666;
}


.btn-circle:hover,
.btn-circle:focus {
    outline: 0;
    color: #fff;
    background: rgba(255,255,255,.1);
}

.btn-circle.btn-dark :hover,
.btn-circle.btn-dark :focus {
    outline: 0;
    color: #999;
    background: #fff;
}

.btn-circle.btn-dark :hover i,
.btn-circle.btn-dark :focus i{
    color: #999;
}

.page-scroll .btn-circle i.animated {
    -webkit-transition-property: -webkit-transform;
    -webkit-transition-duration: 1s;
    -moz-transition-property: -moz-transform;
    -moz-transition-duration: 1s;
}

.page-scroll .btn-circle:hover i.animated {
    -webkit-animation-name: pulse;
    -moz-animation-name: pulse;
    -webkit-animation-duration: 1.5s;
    -moz-animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
}

@-webkit-keyframes pulse {    
    0 {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes pulse {    
    0 {
        -moz-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -moz-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -moz-transform: scale(1);
        transform: scale(1);
    }
}


#text {
    color: #fff;
    background: #ffcc00;
}

#map {
  height: 500px;
}


.btn-skin:hover,
.btn-skin:focus,
.btn-skin:active,
.btn-skin.active {
  color: #fff;
  background-color: #666;
  border-color: #666;
}


.btn-default:hover,
.btn-default:focus {
    border: 1px solid #f39200;
    outline: 0;
    color: #000;
    background-color: #f39200;
}

.btn-huge {
    padding: 25px;
    font-size: 26px;
}

.banner-social-buttons {
    margin-top: 0;
}

/* ===========================
--- Responsive Video
============================ */
.iframe-container { 
  position:relative; 
  margin-bottom: 30px; 
  padding-bottom:56.25%; 
  padding-top:25px; 
  height:0; 
  max-width:100%;

}

.iframe-container video { 
  position:absolute; 
  top:0; 
  left:0; 
  width:100%; 
  height:100%; 
  border:none;
}

/* ============================
--- Termindialog
============================= */
#step-2,
#step-3,
#step-4 {
  display:none;
}

/*progressbar*/
#progressstep {
    margin:0;
    padding:0;
    margin-bottom: 30px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
}

#progressstep li {
    list-style-type: none;
    color: #cccccc;
    text-transform: uppercase;
    font-size: 9px;
    width: 20%;
    float: left;
    position: relative;
    letter-spacing: 1px;
}

#progressstep li:before {
    content: counter(step);
    counter-increment: step;
    width: 24px;
    height: 24px;
    line-height: 26px;
    display: block;
    font-size: 12px;
    color: #4d4d4d;
    background: #cccccc;
    border-radius: 25px;
    margin: 0 auto 10px auto;
}

/*progressbar connectors*/
#progressstep li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: #f39200;
    position: absolute;
    left: -50%;
    top: 9px;
    z-index: -1; /*put it behind the numbers*/
}

#progressstep li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
}

/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressstep li.active:before, #progressstep li.active:after {
    background: #f39200;
    color: white;
}

/* Media queries */
@media (min-width:768px) {
  
  /*.navbar-brand img {
    display:initial;
  } */
  
  .logo_div {
    display:none;
  }

  .navbar {
    padding: 0px 0;
    border-bottom: 0;
    letter-spacing: 1px;
    background: 0 0;
    -webkit-transition: background .5s ease-in-out,padding .5s ease-in-out;
    -moz-transition: background .5s ease-in-out,padding .5s ease-in-out;
    transition: background .5s ease-in-out,padding .5s ease-in-out;
  }

  .top-nav-collapse {
    padding: 0;
    background-color: #000;
  }

  .intro {
    height:100%;
    padding:0;
    /*margin-top:50px;*/
    margin-top:0;
  }
  
  .intro .slogan {
    text-align: center;
    position: relative;
  }  

  .brand-heading {
    font-size: 100px;
  }

  .intro-text {
    font-size: 25px;
  }
}

@media (max-width:800px) {

  .logo_div {
    text-align:center;    
    padding-top:10px;
  }
  
  .logo_div img {
    width:45%; 
    height:auto;
  }
  
  .team.boxed-grey {
    margin-bottom: 30px;
  }
  
  .boxed-grey {
    margin-bottom: 30px;
  }
  
  .intro {
    width:100%;
    height:auto;
    /*margin-top:80px;*/
    margin-top:0;
  }
  
  .intro .slogan {
    text-align: center;
    position: relative;
  }

  .intro .slogan h2 {
    font-weight: 700;
  }

  h3 {
    font-size:32px;
  }

  #intro.intro {
    padding:15% 0 0 0;
  }

  .p_introSloganText {
    font-size:35px;
  }

  .p_introSloganQuote {
      font-size:20px;
  }
   
  .p_introSloganLocation {
      padding-bottom:15%;
  }

  #mitgliedschaftSlider p {
      font-size:14px;
  }

  #mitgliedschaftSlider h4 {
    font-size:22px;
  }
}

@media (min-width:800px) and (max-width:1200px) {

  .navbar-brand img {
    display:none;
  }
  
  .page-scroll {
     height:0px;
  }

  .intro .slogan {
    text-align: center;
    position: relative;
  }

  .intro .slogan h2 {
    font-weight: 700;
  }

  h3 {
    font-size:32px;
  }

  .p_introSloganText {
    font-size:55px;
  }

  .p_introSloganQuote {
      font-size:35px;
  }
   
  .p_introSloganLocation {
      padding-bottom:0%;
  }

  #mitgliedschaftSlider p {
      font-size:14px;
  }
}

@media (max-width:480px) {

  .nav.navbar-nav {
    background-color: rgba(0,0,0,.4);
  }

  .logo_div {
    text-align:center;  
    padding-top:10px;
  }
  
  .logo_div img {
    width:width:25%; 
    height:auto;
  }

  .tp-banner-container {
    padding-top:40px;
  }

  .intro .slogan {
    text-align: center;
    position: relative;
  }

  .intro .slogan h2 {
    font-weight: 700;
  }

  h3 {
    font-size:28px;
  }

  .p_introSloganText {
    font-size:28px;
  }

  .p_introSloganQuote {
      font-size:20px;
  }

  #mitgliedschaftSlider h4 {
      color:#FFFFFF;
      font-size:20px;
  }

  #mitgliedschaftSlider p {
      font-size:12px;
  }
}

/* Custom */
.responsive_image_maxwidth_100 {
  max-width:100%;
  height:auto;
}

.responsive_image {
  width:100%;
  height:auto;
}

.responsive_max_width_image {
  max-width:100%;
  height:auto;
}

.responsive_50_width_image {
  max-width:50%;
  height:auto;
}

.responsive_49_width_image {
  max-width:49%;
  height:auto;
}

.image_txt_left {
  float:left;
  margin-left:5px;
  margin-right:5px
}

.image_txt_right {
  float:right;
  margin-left:5px;
  margin-right:5px;
}

ul.stnd_list_style_type {
  list-style-type:none;
  padding-left:0em;
}

ul.stnd_list_style_type li:before {
  font-weight:bold;
  content: "✓";
}

/* News */
.article .footer {
  font-size:10px;
}

/*****************************
Datepicker
*****************************/
.datepicker td
{
  color:#000000;
}

.datepicker .dow
{
  color:#e30b13;
}

.datepicker th
{
  color:#e30b13;
}

.datepicker th .next
{
  color:#e30b13;
}

/***************************
Captcha
***************************/
#captcha_code
{
  color:#000000;
}

/***************************
bootstrap Customs
***************************/
.btn-danger {
  color: #fff;
  background-color: #f39200;
  border-color: #f39200;
}

.btn-danger:hover {
  color: #f39200;
  background-color: #fff;
  border-color: #fff;
}