html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  --swiper-theme-color: #907a5f;
}

@font-face {
  font-family: BeautiqueDisplay-Regular;
  src: url(fonts/BeautiqueDisplay-Regular.otf);
  src: url(fonts/BeautiqueDisplay-Regular.otf) format("embedded-opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: BeautiqueDisplay-Bold;
  src: url(fonts/BeautiqueDisplay-Bold.otf);
  src: url(fonts/BeautiqueDisplay-Bold.otf) format("embedded-opentype");
  font-weight: 900;
  font-style: bold;
  font-display: swap;
}

body {
  background: #1e3e32;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7;
  font-family: "BeautiqueDisplay-Regular", sans-serif;
  color: #ccc;
}

#logo {
  margin-left: 20px;
}

@media (max-width: 767px) {
  #logo {
    margin-left: 0px;
  }
}

header.header.sticky {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-bottom: 1px solid #907a5f;
  background-color: #1e3e32;
}

@media only screen and (max-width: 991px)
#header_menu {
    display: block;
    text-align: center;
    position: relative;
    padding: 30px 0 25px 0;
    background-color: #1e3e32;
}

header.sticky .main-menu>ul>li>a,
header.header_in .main-menu>ul>li>a {
  color: #907a5f;
}

ul#banners_grid {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

ul#banners_grid li {
  position: relative;
  width: 33.33%;
  float: left;
  border-top: 5px solid #907a5f;
  border-right: 5px solid #907a5f;
  border-bottom: 5px solid #907a5f;
}

ul#banners_grid li:last-child {
  border-right: none;
}

.about h2,
h4 {
  color: #fff;
}

.about p {
  color: #ccccc;
}

.nav-tabs {
  border: none;
  border-bottom: 0;
}

@media (max-width: 767px) {
  ul#banners_grid li {
    width: 100%;
    float: none;
    border-right: none;
  }
}

ul#banners_grid li a.img_container {
  position: relative;
  overflow: hidden;
  z-index: 0;
  display: block;
  width: 100%;
  height: 250px;
}

@media (max-width: 767px) {
  ul#banners_grid li a.img_container {
    width: 100%;
    float: none;
    height: 150px;
  }
}

.pattern_3 {
  border-bottom: 1px solid #907a5f;
}

.pattern_7 {
  border-top: 1px solid #907a5f;
}

.modal {
  align-items: center;
  bottom: 0;
  display: none;
  justify-content: center;
  left: 0;
  opacity: 0;
  overflow: hidden; /* nicht sichtbar */
  padding: .4rem;
  position: fixed;
  right: 0;
  top: 0;
}
 
/* zeige div wenn target selector angesprungen wird  */
.modal:target {
  display: flex; /* anzeigen */
  opacity: 1;
  z-index: 400;
}
 
/* Animation einblenden der Box  */
.modal:target .modal-container {
  animation: slide-down .2s ease 1;
  z-index: 1;
}
 
/* Die eigentliche box mit weißem Hintergrund und Schatten  */
.modal-container {
  background: rgba(0,0,0,0.5);
  border-radius: .1rem;
  box-shadow: 0 .2rem .5rem rgba(48, 55, 66, .3);
  display: flex;
  flex-direction: column;
  max-height: auto;
  max-width: 700px;
  padding: .8em;
  width: 100%;
}

 a.btn_2.outline, .btn_2.outline {
    border: 2px solid white;
    color: white;
    padding: 6px 15px;
    background: none;
    border-radius: 5px;
}


.d-none .d-xs-block {
  display: block;
}

#menu .main-title h2 {
  color: #907a5f;
}

#menu p,
a.btn_1.outline,
.btn_1.outline {
  /*border: 2px solid gray;*/
  color: #fff;
  padding: 6px 15px;
  background: none;
  border-radius: 5px;
}


swiper-container {
  width: 100%;
  height: auto;
}

swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


footer {
  background-color: #262626;
  padding: 60px 0 10px 0;
  color: rgba(255, 255, 255, 0.6);
  position: relative;
}

.impressum {
  color: #000;
}