@import url('bootstrap-icons.css');
@import url('fontawesome.css');
@import url('vegas.min.css');
@import url('lightbox.min.css');
@import url('datepicker.min.css');

:root {
  --primary: #936d1f;
  --primary2: #cc972e;
  --secondary: #333333;
  --tertiary: #f4f0e8;
  --white: #ffffff;
}

html, body {
  font-family: 'Poppins', sans-serif;
  font-size: 16.5px;
  font-weight: 300;
  line-height: 1.8;
  background-color: var(--white);
  color: var(--secondary);
}
body {
  padding-top: 200px;
}

/* TYPOGRAPHY */
h1, .h1, h2, .h3, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  margin: 30px 0;
  font-weight: 300;
  color: var(--primary);
}
h2, h3, h4, h5, h6 {
  color: var(--secondary);
}
h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
  margin-top: 15px;
}

p {
  margin: 30px 0;
  text-align: justify;
  -moz-hyphens: auto; 
  -o-hyphens: auto; 
  -webkit-hyphens: auto; 
  -ms-hyphens: auto; 
  hyphens: auto;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: .25s;
}
a:hover {
  color: var(--primary2);
  text-decoration: none;
}

small {
  display: block;
  font-size: 75%;
  font-weight: 300;
  text-transform: none;
  color: var(--secondary);
}

strong {
  font-weight: 800;
}

/* LIST */
ul.ul {
  list-style: none;
  padding-left: 35px;
}
ul.ul li {
  position: relative;
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  transition: all .25s;
}
ul.ul li::before {
  content: '';
  position: absolute;
  top: 12px;
  left: -35px;
  width: 15px;
  height: 1px;
  background-color: var(--secondary);
  transition: all .25s;
}
ul.ul li:hover::before {
  width: 20px;
  background-color: var(--primary);
}

ul.leistungen li::before {
  transform: none;
  top: 12px;
}
ul.leistungen li {
  margin-bottom: 30px;
  line-height: 1.25;
}

ul.ul-lg li {
  font-size: 22px;
}

.bg-primary ul.ul li::before,
.bg-primary ul.ul li:hover::before {
  background-color: var(--white);
}

.bg-gradient {
  background: #F2DC98;
  background: -webkit-linear-gradient(210deg, rgba(242, 220, 152, 1) 0%, rgba(147, 109, 31, 1) 100%);
  background: -moz-linear-gradient(210deg, rgba(242, 220, 152, 1) 0%, rgba(147, 109, 31, 1) 100%);
  background: linear-gradient(210deg, rgba(242, 220, 152, 1) 0%, rgba(147, 109, 31, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F2DC98", endColorstr="#936D1F", GradientType=0);
}

/* TWO COLS */
.two-cols {
  -moz-column-width: 240px;
  -moz-column-gap: 30px;
  -webkit-column-width: 240px;
  -webkit-column-gap: 30px;
  column-width: 240px;
  column-gap: 30px;
}
.two-cols-lg {
  -moz-column-width: 600px;
  -moz-column-gap: 30px;
  -webkit-column-width: 600px;
  -webkit-column-gap: 30px;
  column-width: 600px;
  column-gap: 30px;
}

/* SPECIALS */
.special-font {
  font-family: 'Caveat', sans-serif;
}
.special-content {
  display: block;
  padding: 30px 60px;
  width: 100%;
  max-width: 900px;
  background-color: var(--primary);
  color: var(--white);
  margin: -115px auto 45px auto;
  position: relative;
  font-size: 25px;
  line-height: 1.25;
  text-align: center;
  font-weight: 600;
  border-radius: 75px;
}
.special-content.w-100 {
  max-width: 100%;
}
.special-content small {
  color: var(--white);
  font-size: 16px;
  font-weight: 300;
  margin-top: 5px;
}
.special-content:hover {
  color: var(--white);
  background-color: var(--secondary);
}

/* IMAGE */
.img-content {
  position: relative;
  display: block;
}
.img-content::before {
  content: '';
  width: 0; 
  position: absolute; 
  top: 0; 
  right: 0; 
  border-top: 50px solid var(--white); 
  border-left: 50px solid transparent;
  z-index: 1;
}
.bg-primary .img-content::before {
  border-top-color: var(--primary);
}

/* BACKGROUND */
.bg-primary {
  background-color: var(--primary) !important;
  color: var(--white);
}
.bg-primary h1,
.bg-primary h2,
.bg-primary h3,
.bg-primary h4,
.bg-primary h5,
.bg-primary h6,
.bg-primary a {
  color: var(--white);
}

/* BUTTONS */
.btn {
  border-radius: 100px;
  box-shadow: none !important;
  font-size: 16px;
  padding: 15px 20px;
  border: none;
  transition: all 0s;
}

.btn-sm {
  font-size: 14px;
  padding: 5px 10px;
}
.btn-lg {
  font-size: 18px;
  padding: 15px 20px;
}

.btn-primary {
  background: #CC972E;
  background: -webkit-linear-gradient(210deg, rgba(204, 151, 46, 1) 0%, rgba(147, 109, 31, 1) 100%);
  background: -moz-linear-gradient(210deg, rgba(204, 151, 46, 1) 0%, rgba(147, 109, 31, 1) 100%);
  background: linear-gradient(210deg, rgba(204, 151, 46, 1) 0%, rgba(147, 109, 31, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#CC972E", endColorstr="#936D1F", GradientType=0);
  color: var(--white) !important;
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--primary) !important;
  color: var(--white) !important;
}

.btn-light {
  background-color: var(--white) !important;
  color: var(--secondary) !important;
}
.btn-light:hover,
.btn-light:focus {
  background-color: var(--secondary) !important;
  color: var(--white) !important;
}

/* INFOLINE */
.infoline {
  padding: 30px 0;
  background-color: var(--secondary);
  background-image: url('../img/map2.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
  color: var(--white);
  font-size: 14px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.infoline a {
  color: var(--white);
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid #ccc;
  opacity: 1 !important;
}
.infoline a:hover {
  color: var(--white);
  opacity: 0.5;
}
.infoline a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}
.infoline i {
  display: inline-block;
  min-width: 20px;
}
.infoline .logo {
  width: 100%;
  max-width: 160px;
}

/* HEADER */
.header {
  min-height: 400px;
}

/* NAV */
.navbar {
  background-color: rgba(33,33,33,0.5) !important;
  position: absolute;
  top: auto;
  left: 0;
  right: 0;
  transition: all .25s;
  z-index: 1000;
}
.navbar .navbar-nav {
	width: 100%;
}
.navbar .nav-item {
	max-width: 100%;
	flex-grow: 1;
	flex-basis: 0;
	text-align: center;
}
.navbar .nav-item .nav-link {
  padding: 12.5px 15px;
  color: var(--white);
  transition: .25s;
  font-size: 18px;
}
.navbar .nav-item .nav-link:hover,
.navbar .nav-item .nav-link:focus,
.navbar .nav-item .nav-link.active {
  color: var(--white);
  opacity: 0.5;
}
.navbar-brand {
  display: none;
}
.navbar-brand img {
  width: 100%;
  max-width: 60px;
}
.navbar-toggler {
  border: none;
  border-radius: 0;
  font-size: 38px;
  color: var(--white) !important;
  box-shadow: none !important;
  padding: 0;
}
.navbar.fixed {
  position: fixed;
  top: 0;
  z-index: 1500;
  background-color: var(--primary) !important;
  box-shadow: 0 0 15px 0 rgba(33,33,33,0.5);
}

/* MENU */
.btn-menu {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  width: 60px;
  height: 50px;
  margin-left: auto;
  cursor: pointer;
}
.btn-menu-line {
  display: block;
  height: 5px;
  width: 100%;
  background-color: var(--primary);
  transition: all .25s;
}
.btn-menu:hover .btn-menu-line:nth-child(1) {
  width:75%;
}
.btn-menu:hover .btn-menu-line:nth-child(2) {
  width: 55%;
}

/* SUBNAV */
.subnav {
  display: block;
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 500;
}
.subnav a {
  display: flex;
  height: 45px;
  width: 45px;
  border-radius: 10px;
  align-items: center;
  justify-content: space-around;
  font-size: 22px;
  background-color: var(--primary);
  color: var(--white);
  margin-top: 10px;
}
.subnav a:hover {
  background-color: var(--secondary);
}

/* SECTION */
.section {
  padding: 60px 0;
}

/* PARALLAX */
.parallax {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 120px 0;
  color: var(--white);
}
.parallax h1,
.parallax h2,
.parallax h3,
.parallax h4,
.parallax h5,
.parallax h6,
.parallax p,
.parallax a {
  color: var(--white);
}

/* CONTAINER */
.container-special {
  padding: 45px;
  position: relative;
  margin: 30px 0;
  background: url("../img/bg_content.png") 50% top repeat-y;
  margin-left: -45px;
}

/* FOOTER */
.footer {
  padding: 60px 0;
  background-color: var(--secondary);
  color: var(--white);
  
}
.footer a,
.footer2 a {
  color: var(--white);
}
.footer a:hover,
.footer2 a:hover {
  color: var(--white);
  opacity: 0.5;
}
.footer a.btn:hover {
  opacity: 1;
}
.footer i {
  display: inline-block;
  width: 25px;
}

.footer-title {
  color: var(--white);
  margin-top: 0;
}

.footer-nav {
  text-align: center;
  font-size: 16px;
  margin-bottom: 15px;
}
.footer-nav a {
  display: inline-block;
  margin-right: 15px;
}
.footer-nav a:last-child {
  margin-right: 0;
}

.copyright {
  margin: 0;
  display: inline-block;
  vertical-align: middle;
  text-align: end;
  font-size: 25px;
  line-height: 1.25;
}
.copyright small {
  font-size: 12px;
}

.footer-logo {
  width: 100%;
  max-width: 120px;
  margin-right: 15px;
  display: inline-block;
  vertical-align: middle;
}

.footer2 {
  padding: 75px 0;
  background-color: #222;
  color: var(--white);
  background-image: url('../img/bg_footer.png');
  background-position: top right;
  background-repeat: no-repeat;
  background-size: auto;
}

/* CARD */
.card {
  border-radius: 0;
  border: none;
  margin-bottom: 30px;
  transition: all .25s;
}
.card::before {
  content: '';
  width: 0; 
  position: absolute; 
  top: 0; 
  right: 0; 
  border-top: 50px solid var(--primary); 
  border-left: 50px solid transparent;
  z-index: 1;
}
.card:hover {
  transform: scale(1.05);
}
.card-img-top {
  border-radius: 0;
}
.card-title,
.card-body {
  color: var(--secondary) !important;
}
.card-title {
  margin: 0;
}
.card-text {
  margin: 0;
  padding: 0;
}
.card-text small {
  font-weight: 600;
}

.card-inline {
  padding: 0;
}
.card-inline .card-img-inline {
  display: block;
  min-width: 280px;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.card-inline .card-title {
  margin-bottom: 15px;
}
.card-inline .card-text {
  margin-bottom: 15px;
  font-size: 14px;
}
.card-inline .card-date {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.75;
  margin: 0;
}

/* GALERIE */
.galerie-item {
  position: relative;
  min-height: 300px;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 30px;
  transition: all .25s;
}
.galerie-item::before {
  content: '';
  width: 0; 
  position: absolute; 
  top: 0; 
  right: 0; 
  border-top: 50px solid var(--white); 
  border-left: 50px solid transparent;
  z-index: 1;
}
a.galerie-item:hover {
  transform: scale(.95);
}
.galerie-item .galerie-item-caption {
  position: absolute;
  top: auto;
  right: 15px;
  bottom: 15px;
  left: 15px;
  background-color: var(--primary);
  color: var(--white);
  font-size: 25px;
  font-weight: 300;
  text-shadow: 0 0 5px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: space-around;
  transition: all .25s;
  padding: 15px;
}
.galerie-item .galerie-item-caption.on-hover {
  transform: scale(0) rotate(25deg);
  opacity: 0;
}
.galerie-item:hover .galerie-item-caption.on-hover {
  transform: scale(1) rotate(0deg);
  opacity: 1;
}

.bg-primary .galerie-item::before {
  border-top-color: var(--primary);
}

/* ACCORDION */
.accordion-item {
  border: none;
  margin-bottom: 10px;
}
.accordion-button {
  border-radius: 50px !important;
  background-color: var(--secondary);
  color: var(--white);
  box-shadow: none !important;
  padding: 20px 25px;
  font-size: 18px;
}
.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary);
  color: var(--white);
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-header {
  margin: 0;
}
.accordion-body {
  color: var(--secondary);
}

/* FORM */
.form-group {
  margin-bottom: 15px;
}
.form-label {
  font-weight: 400;
}
.form-control,
.form-select {
  border-radius: 0px;
  padding: 15px 20px;
  border-color: var(--primary);
  transition: .25s;
}
.form-control:focus,
.form-select:focus {
  box-shadow: none;
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.form-control:focus::placeholder,
.form-select:focus::placeholder {
  color: var(--white);
  opacity: 1;
}
.form-control:focus:-ms-input-placeholder,
.form-select:focus:-ms-input-placeholder { 
  color: var(--white);
}
.form-control:focus::-ms-input-placeholder,
.form-select:focus::-ms-input-placeholder {
  color: var(--white);
}

.form-check-input {
  background-color: var(--white);
  border-color: var(--secondary);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23ffffff'/%3e%3c/svg%3e") !important;
}
.form-check-input:checked {
	border-color: var(--primary);
	background-color: var(--primary);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23ffffff'/%3e%3c/svg%3e") !important;
}
.form-check-input:checked:focus {
  box-shadow: none !important;
  border-color: var(--primary);
}
.form-check-input:focus {
  box-shadow: none !important;
  border-color: var(--secondary);
}


.has-error .form-control,
.has-error .form-select {
  border-color: var(--bs-danger);
}

.has-error label,
.has-error .form-label,
.has-error .help-block {
  color: var(--bs-danger);
}

#danke {
  display: none;
}

/* ACCORD */
.accord {
  display: none;
  padding: 15px 0;
}
.accord p:first-child {
  margin-top: 0;
}
.accord p:last-child {
  margin-bottom: 0;
}

/* BLOCKQUOTE */
.blockquote {
  font-size: 16px;
  font-weight: 400;
} 
.blockquote-lg {
  font-size: 22px;
}

/* LIGHTBOX */
.lb-outerContainer {
  border-radius: 0;
}
.lightbox .lb-image {
  border: none;
  border-radius: 0;
}
.lb-dataContainer {
  padding-top: 15px;
}

/* SERVICE */
.service-item {
  display: flex;
  align-items: center;
  flex-direction: row;
  margin-top: 30px;
}
.service-item i {
  font-size: 42px;
}
.service-item .service-item-text {
  line-height: 1.25;
  margin-left: 15px;
}

/* SLICK */
.slick-dots li button::before,
.slick-dots li.slick-active button::before {
  color: white;
}

/* MODAL */
.modal#modal-menu .modal-content {
  background-color: rgba(0,0,0,0.5);
  backdrop-filter: blur(5px);
  text-align: center;
}
.modal#modal-menu .modal-content .modal-body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.modal#modal-menu .modal-content .nav {
  align-items: center;
  margin-bottom: 30px;
}
.modal#modal-menu .modal-content .nav .nav-link {
  font-size: 32px;
  color: var(--white);
  padding: 0;
  opacity: 0.5;
  transition: all .25s;
}
.modal#modal-menu .modal-content .nav .nav-link:hover,
.modal#modal-menu .modal-content .nav .nav-link:focus,
.modal#modal-menu .modal-content .nav .nav-link.active {
  opacity: 1;
  color: var(--white);
}

/* MOBIL */
@media (max-width: 1399.98px) {  }
@media (max-width: 1199.98px) {  
  body {
    padding-top: 165px;
  }

  /* HEADER */
  .header {
    min-height: 350px;
  }

  /* NAV */
  .navbar .nav-item .nav-link {
    font-size: 16px;
  }

  /* INFOLINE */
  .infoline .logo {
    max-width: 120px;
  }

  .modal#modal-menu .modal-content .nav .nav-link {
    font-size: 28px;
  }
}
@media (max-width: 991.98px) { 
  /* HEADER */
  .header {
    min-height: 300px;
  }
  
   /* NAV */
  .navbar .nav-item {
    text-align: left;
  }
  .navbar .nav-item .nav-link {
    padding: 7.5px 0;
    font-size: 18px;
  }
  .navbar-brand {
    display: block !important;
  }
  
  /* CONTAINER */
  .container-special {
    padding: 30px;
    background: var(--tertiary);
    margin-left: 0;
    padding-right: 30px !important;
  }
  .container-special  .img-content::before {
    border-top-color: var(--tertiary);
  }

  .modal#modal-menu .modal-content .nav .nav-link {
    font-size: 22px;
  }

  /* PARALLAX */
  .parallax {
    padding: 60px 0;
  }
}
@media (max-width: 767.98px) { 
  /* HEADER */
  .header {
    min-height: 200px;
  }

  /* INFOLINE */
  .infoline {
    background-size: 400px;
  }

  /* FOOTER */
  .footer2 {
    background-position: left -120px top;
  }
  .copyright {
    display: block;
    text-align: center;
    font-size: 22px;
  }
  .footer-logo {
    display: block;
    margin: 0 auto 15px auto;
    width: 100px;
  }

  .special-content {
    font-size: 18px;
  }
}
@media (max-width: 575.98px) {  }













