

 :root {
  --font-primary: "Roboto", sans-serif;
  --font-secondary: "Playfair Display", serif;
  --color-accent-primary-1: #FCC300;
  --color-accent-primary-2: #ebe6dd;
  --color-accent-primary-3: #f4eee7;
  --color-accent-primary-4: #09444B;
  --color-accent-secondary-1: #628ab2;
  --color-accent-secondary-2: #3c556e;
  --color-accent-secondary-3: #283847;
  --color-accent-secondary-4: #09444B;
  --distance-max-xsmall: 60;
  --distance-max-small: 100;
  --distance-max-normal: 200;
  --distance-max-large: 300;
  --distance-max-xlarge: 400;
  --distance-min-xsmall: 40;
  --distance-min-small: 40;
  --distance-min-normal: 60;
  --distance-min-large: 100;
  --distance-min-xlarge: 160;
  --xxl-max-font-size: 167;
  --xxl-min-font-size: 58;
  --xxl-line-height: 1;
  --xl-max-font-size: 107;
  --xl-min-font-size: 58;
  --xl-line-height: 1;
  --h1-max-font-size: 65;
  --h1-min-font-size: 34;
  --h1-line-height: 1.28;
  --h2-max-font-size: 52;
  --h2-min-font-size: 30;
  --h2-line-height: 1.38;
  --h3-max-font-size: 42;
  --h3-min-font-size: 26;
  --h3-line-height: 1.57;
  --h4-max-font-size: 33;
  --h4-min-font-size: 22;
  --h4-line-height: 1.61;
  --h5-max-font-size: 20;
  --h5-min-font-size: 18;
  --h5-line-height: 1.7;
  --h6-max-font-size: 18;
  --h6-min-font-size: 16;
  --h6-line-height: 1.81;
  --subheading-max-font-size: 13;
  --subheading-min-font-size: 11;
  --subheading-line-height: 1.75;
  --blockquote-max-font-size: 20;
  --blockquote-min-font-size: 16;
  --blockquote-line-height: 1.7;
  --paragraph-max-font-size: 16;
  --paragraph-min-font-size: 16;
  --paragraph-line-height: 1.75;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-kerning: none;
}

body {
  position: relative;
  width: 100%;
  min-width: 320px;
  color: #444444;
  background-color: #f8f8f8;
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 100%;
  line-height: 1.75;
  word-wrap: break-word;
}

a {
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  color: var(--color-accent-primary-4);
  text-decoration: none!important;
}

a:hover, a:focus {
  text-decoration: none;
  color: var(--color-accent-primary-1);
}

a.breadcrumbs {
  color: var(--color-accent-primary-3)!important;
}
a.breadcrumbs:hover {
  color: var(--color-accent-primary-1)!important;
}


.page-wrapper__content {
  overflow-x: hidden;
}

#js-webgl {
  display: none;
}

/*!========================================================================
 * 2. Backgrounds
 * ======================================================================!*/

.bg-dark {
  background-color: #181818;
}

.bg-1 {
  background-color: #09444B;
  clip-path: polygon(0 10%, 100% 0%, 100% 90%, 0% 100%);
}

.bg-dark-2 {
  background-color: #222222;
}

.bg-dark-3 {
  background-color: #333333;
}

.bg-accent-primary-1 {
  background-color: var(--color-accent-primary-1);
}

/*!========================================================================
 * 3. Bootstrap Layout
 * ======================================================================!*/
.container-fluid {
  padding-left: 120px;
  padding-right: 120px;
}

.row {
  margin-left: -20px;
  margin-right: -20px;
}

.col, [class*=col-], [class*=col-] {
  padding-left: 20px;
  padding-right: 20px;
}

@media screen and (max-width: 1400px) {
  .container-fluid {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media screen and (max-width: 1280px) {
  .container-fluid {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media screen and (max-width: 991px) {
  .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/*!========================================================================
 * 4. Button
 * ======================================================================!*/

 .btn-outline-green {
  text-decoration:none;
  font-size: 14px;
  padding: 12px 30px;
  border-radius: 2px;
  cursor: pointer;
  font-weight: 400;
  color: #09444B;
  text-transform: uppercase;
  background-color: none;
  border: 1px solid #09444B;
  position: relative;
  display: inline-block;
  z-index: 1; 
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  }
  
  .btn-outline-green:hover {
    color: #fff;
    background: #09444B;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out; 
    transform: translateY(-2px);
  }

  .btn-outline-white {
    text-decoration:none;
    font-size: 14px;
    padding: 12px 30px;
    border-radius: 2px;
    cursor: pointer;
    font-weight: 400;
    color: hsl(0, 0%, 100%);
    text-transform: uppercase;
    background-color: none;
    border: 1px solid #ffffff;
    position: relative;
    display: inline-block;
    z-index: 1; 
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    }
    
    .btn-outline-white:hover {
      color: #09444B;
      background: #ffffff;
      box-shadow: 0 6px 22px rgba(0, 0, 0, 0.1);
      text-decoration: none;
      transition: all .2s ease-in-out;
      -webkit-transition: all .2s ease-in-out; 
      transform: translateY(-2px);
    }

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

 .custom-header {
  background: transparent !important; /* Sicherstellen, dass kein Weiß überschreibt */
  padding: 20px 0;
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}

.logo {
  color: #e7c18f;
  font-weight: bold;
  font-size: 20px;
  text-decoration: none;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: white !important;
  text-decoration: none;
  font-size: 16px;
}

.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons a {
  color: white !important;
  font-size: 16px;
  text-decoration: none;
}

.nav-link{
  color: #fff!important;
}

a.nav-link:hover {
  color: var(--color-accent-primary-1) !important;
}

.navbar-nav .nav-link:hover {
  color: var(--color-accent-primary-1) !important;
}

.navbar-toggler{
border: none!important;
}

.navbar.navbar-toggler-icon{
  color: red!important;
}

@media (max-width: 991px) {
  .navbar-collapse {
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    padding: 0 20px 20px;
  }
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}


/*!========================================================================
 * 9. Colors
 * ======================================================================!*/
.color-white {
  color: #ffffff;
}

/*!========================================================================
 * 29. Header
 * ======================================================================!*/
.header {
  padding: 75px 0 0;
}

.header_fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 500;
}

.header__burger-line {
  width: 100%;
  height: 2px;
  background-color: #888888;
  margin-top: 3px;
  margin-bottom: 3px;
  transform: rotate(0deg) translateY(0px);
  will-change: transform;
  transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.header__wrapper-overlay-menu {
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 500;
  background: none !important;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
}

.header__burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  width: 30px;
  height: 20px;
  cursor: pointer;
  vertical-align: middle;
}

.header__wrapper-menu {
  position: relative;
  width: 100%;
  max-width: calc(50vw - 300px);
}

.header__curtain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}

.header__wrapper-overlay-widgets {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding-bottom: 64px;
}
.header__wrapper-overlay-widgets .social {
  margin-top: 1em;
  margin-bottom: 1em;
}

.header__overlay-menu-back {
  position: absolute;
  top: 0;
  cursor: pointer;
  font-size: 32px !important;
  color: #888888 !important;
  opacity: 0;
  visibility: hidden;
}

.header__controls {
  position: relative;
  z-index: 600;
}

.header__circle-letters {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 300px;
  height: 300px;
  border: 2px solid rgba(136, 136, 136, 0.3);
  border-radius: 100%;
}
.header__circle-letters svg {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border-radius: 100%;
  stroke-width: 1px;
  z-index: 50;
}
.header__circle-letters svg .circle {
  stroke: var(--color-accent-primary-1);
}

.header__circle-letters-inner {
  width: 100%;
  height: 100%;
  position: relative;
}

@media screen and (max-width: 1400px) {
  .header {
    padding-top: 50px;
  }
  .header__wrapper-overlay-widgets {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 1280px) {
  .header {
    padding-top: 40px;
  }
  .header__wrapper-overlay-widgets {
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 991px) {
  .header {
    padding-top: 20px;
  }
  .header__circle-letters {
    display: none;
  }
  .header__wrapper-menu {
    max-width: 100%;
    margin-top: auto;
    margin-bottom: auto;
  }
  .header__wrapper-overlay-menu {
    text-align: center;
    flex-direction: column;
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .header__wrapper-overlay-widgets {
    text-align: center;
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: auto;
  }
  .header__wrapper-overlay-widgets .text-left, .header__wrapper-overlay-widgets .text-right {
    text-align: center !important;
  }
}
@media screen and (max-height: 800px) and (min-width: 991px) {
  .header {
    padding-top: 40px;
  }
  .header__wrapper-overlay-widgets {
    padding-bottom: 30px;
  }
}


/* The hero image */
.hero-image {
background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4)), url("../img/hero.png");
height: 60vh;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
}

.hero-text {
  position: absolute;
  top: 65%;
  left: 0;
  transform: translateY(-50%);
  color: white;
  text-align: left;
  padding-left: 80px; /* oder je nach Wunsch mehr/weniger Abstand vom Rand */
}


/*!========================================================================
 * 30. Header Colors
 * ======================================================================!*/
.header_color-white .header__burger-line {
  background-color: #ffffff;
}
.header_color-white .header__controls .social__item a {
  color: #ffffff;
}

/*!========================================================================
 * 31. Header Overlay Themes
 * ======================================================================!*/
.header__wrapper-overlay-menu.bg-dark-2 .header__curtain {
  background-color: #222222;
}
.header__wrapper-overlay-menu.bg-dark-2 .menu-overlay li a {
  color: var(--color-accent-primary-3);
}
.header__wrapper-overlay-menu.bg-dark-2 .menu-overlay li a:hover {
  color: var(--color-accent-primary-1);
}
.header__wrapper-overlay-menu.bg-dark-2 .vector-letter {
  fill: #ffffff;
}

/*!========================================================================
 * 32. Header Sticky
 * ======================================================================!*/
.js-sticky-header {
  transition: all 0.6s ease;
  box-shadow: 0px 0px 30px 0px rgba(24, 24, 24, 0);
  will-change: padding, box-shadow;
}

/*!========================================================================
 * 37. Link
 * ======================================================================!*/
.link-arrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-primary);
  font-size: calc(var(--subheading-min-font-size) * 1px);
  font-weight: bold;
  line-height: var(--subheading-line-height);
  letter-spacing: 2px;
  color: #888888;
  text-transform: uppercase;
  color: var(--color-accent-primary-1);
  font-weight: bold;
  text-decoration: none!important;
}
@media screen and (min-width: 320px) {
  .link-arrow {
    font-size: calc(var(--subheading-min-font-size) * 1px + (var(--subheading-max-font-size) - var(--subheading-min-font-size)) * ((100vw - 320px) / 1600));
  }
}
@media screen and (min-width: 1920px) {
  .link-arrow {
    font-size: calc(var(--subheading-max-font-size) * 1px);
  }
}

.link-arrow__label {
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
}

.link-arrow__icon {
  display: inline-block;
  font-size: 20px !important;
  margin-bottom: 1px;
  margin-left: 10px;
  vertical-align: middle;
}

/*!========================================================================
 * 38. Logo
 * ======================================================================!*/
.logo {
  position: relative;
  color: var(--color-accent-primary-1);
  font-weight: bold;
  display: inline-flex;
}

/*!========================================================================
 * 40. Overlay
 * ======================================================================!*/
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1;
}

.overlay_dark {
  background-color: #181818;
  opacity: 0.8;
  mix-blend-mode: multiply;
}

/*!========================================================================
 * 41. Menu Overlay
 * ======================================================================!*/
.menu-overlay {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.menu-overlay > li {
  display: block;
}
.menu-overlay > li > a {
  display: block;
  font-family: var(--font-secondary);
  font-size: calc(28 * 1px);
  font-weight: bold;
}
@media screen and (min-width: 320px) {
  .menu-overlay > li > a {
    font-size: calc(28 * 1px + (42 - 28) * ((100vw - 320px) / 1600));
  }
}
@media screen and (min-width: 1920px) {
  .menu-overlay > li > a {
    font-size: calc(42 * 1px);
  }
}

.menu-overlay__item-wrapper {
  width: 100%;
  height: 100%;
  font-family: var(--font-secondary);
}

.menu-overlay .sub-menu {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  list-style-type: none;
  padding: 0;
  margin: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
}
.menu-overlay .sub-menu > li {
  display: block;
  margin-top: 0.25em;
  margin-bottom: 0.25em;
}
.menu-overlay .sub-menu > li > a {
  display: block;
  font-family: var(--font-secondary);
  font-size: 20px;
  font-size: calc(20 * 1px);
  font-weight: bold;
  line-height: 1.2;
  padding: 8px 0;
}
@media screen and (min-width: 320px) {
  .menu-overlay .sub-menu > li > a {
    font-size: calc(20 * 1px + (26 - 20) * ((100vw - 320px) / 1600));
  }
}
@media screen and (min-width: 1920px) {
  .menu-overlay .sub-menu > li > a {
    font-size: calc(26 * 1px);
  }
}

@media screen and (max-width: 991px) {
  .menu-overlay > li > a {
    margin-top: 0.25em;
    margin-bottom: 0.25em;
  }
}

/*!========================================================================
 * 45. Preloader
 * ======================================================================!*/
.preloader {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
}

.preloader__curtain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
}

.preloader__content {
  position: relative;
  width: 160px;
  height: 160px;
  z-index: 50;
  overflow: hidden;
}

.preloader__wrapper-logo {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 2px solid rgba(136, 136, 136, 0.3);
}

.preloader__curtain_inner {
  top: 99%;
  -webkit-animation-name: preloader-load;
          animation-name: preloader-load;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-duration: 25s;
          animation-duration: 25s;
  transform-origin: left center;
}

@-webkit-keyframes preloader-load {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes preloader-load {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

/*!========================================================================
 * 47. Scroll
 * ======================================================================!*/

[data-os-animation] {
  opacity: 0;
  visibility: hidden;
}

/*!========================================================================
 * 49. Section
 * ======================================================================!*/
.section {
  position: relative;
  z-index: 50;
}

.section-fullheight {
  display: flex;
}

.section-fullheight__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
}

/*!========================================================================
 * 64. Section Fullscreen Slider
 * ======================================================================!*/

.section-fullscreen-slider__inner {
  padding-top: 0;
  padding-bottom: 0;
  min-height: calc(var(--fix-bar-vh, 1vh) * 100);
}
/*!========================================================================
 * 83. Slider
 * ======================================================================!*/
.slider:not(.container) {
  max-width: 100%;
}

.slider__bg {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.slider__images-slide-inner {
  transition: transform 2.4s ease;
  transform: scale(1.05);
  width: 100%;
  height: 100%;
}

.slider__images-slide {
  overflow: hidden;
}

.slider__counter {
  font-family: var(--font-primary);
  font-size: calc(var(--subheading-min-font-size) * 1px);
  font-weight: bold;
  line-height: var(--subheading-line-height);
  letter-spacing: 2px;
  color: #888888;
  text-transform: uppercase;
  height: 24px;
}
@media screen and (min-width: 320px) {
  .slider__counter {
    font-size: calc(var(--subheading-min-font-size) * 1px + (var(--subheading-max-font-size) - var(--subheading-min-font-size)) * ((100vw - 320px) / 1600));
  }
}
@media screen and (min-width: 1920px) {
  .slider__counter {
    font-size: calc(var(--subheading-max-font-size) * 1px);
  }
}

.slider__counter_current {
  color: var(--color-accent-primary-3);
}

.slider__counter_total {
  color: #888888;
}

.slider__link {
  display: block;
}

.slider__progress {
  display: inline-flex;
  align-items: center;
}

.slider__dot {
  position: relative;
  width: 14px;
  height: 14px;
  margin: 0 8px;
  cursor: pointer;
  outline: none;
  display: inline-block;
  border: 2px solid rgba(136, 136, 136, 0.3);
  border-radius: 100%;
  vertical-align: middle;
  z-index: 50;
}
.slider__dot svg {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
  width: 14px;
  height: 14px;
  border-radius: 100%;
  stroke-width: 42px;
  z-index: 50;
}
.slider__dot svg .circle {
  stroke: var(--color-accent-primary-1);
}

.slider__dots {
  display: inline-flex;
  height: 24px;
}

.slider__arrows {
  display: inline-flex;
  align-items: center;
}

.slider__arrows-divider, .slider__counter-divider {
  width: 1px;
  height: 18px;
  background-color: rgba(136, 136, 136, 0.3);
  transform: rotate(45deg);
  margin-left: 40px;
  margin-right: 40px;
}

.slider__arrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  outline: none;
  width: 24px;
  height: 24px;
  color: #888888;
}
.slider__arrow i {
  font-size: 24px;
}
.slider__arrow:hover {
  color: var(--color-accent-primary-3);
}

.slider__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding-bottom: 80px;
  padding-left: 0;
  padding-right: 0;
  z-index: 50;
}

.swiper-lazy {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease;
}

.slider__overlay {
  z-index: 1;
}

.slider__progress {
  vertical-align: top;
}

@media screen and (max-width: 1400px) {
  .slider__footer {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 1280px) {
  .slider__footer {
    padding-bottom: 40px;
  }
}
@media screen and (max-height: 800px) and (min-width: 991px) {
  .slider__footer {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 991px) {
  .slider__footer {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .slider__footer-col {
    padding-top: 10px;
  }
  .slider__footer-col.text-left, .slider__footer-col.text-center, .slider__footer-col.text-right {
    text-align: center !important;
  }
  .slider__arrows-divider, .slider__counter-divider {
    margin-left: 20px;
    margin-right: 20px;
  }
  .slider__counter {
    height: 18px;
  }
  .slider__arrow {
    width: 18px;
    height: 18px;
  }
  .slider__arrow i {
    font-size: 18px;
  }
  .slider__progress, .slider__arrows, .slider__dots {
    vertical-align: top;
  }
  .slider__dots {
    height: 18px;
  }
}
/*!========================================================================
 * 84. Slider Fullscreen
 * ======================================================================!*/
.slider-fullscreen {
  position: relative;
  height: calc(var(--fix-bar-vh, 1vh) * 100);
}

.slider-fullscreen__header h1 {
  display: inline-block;
  margin-top: 0;
  margin-bottom: 0;
}

.slider-fullscreen__images {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider-fullscreen__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding-bottom: 80px;
  z-index: 60;
}

.slider-fullscreen__content_centered {
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  padding-bottom: 0;
}

.slider-fullscreen__wrapper-button {
  margin-top: calc(1 * (20 * 1px));
}
@media screen and (min-width: 320px) {
  .slider-fullscreen__wrapper-button {
    margin-top: calc(1 * (20 * 1px + (40 - 20) * ((100vw - 320px) / 1600)));
  }
}
@media screen and (min-width: 1920px) {
  .slider-fullscreen__wrapper-button {
    margin-top: calc(1 * (40 * 1px));
  }
}

@media screen and (max-width: 1400px) {
  .slider-fullscreen__content {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 1280px) {
  .slider-fullscreen__content {
    padding-bottom: 25px;
  }
}
/*!========================================================================
 * 87. Slider Letters
 * ======================================================================!*/

.vector-letter:not(:first-child) {
  visibility: hidden;
}

svg.vector-letters {
  height: 130px;
}

/*!========================================================================
 * 89. Social
 * ======================================================================!*/
.social {
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-left: -16px;
  margin-right: -16px;
}

.social__item {
  display: inline-block;
  margin: 0 8px;
}
.social__item a {
  color: #888888;
  font-size: 13px;
  padding: 8px;
}
.social__item a:hover {
  color: var(--color-accent-primary-1);
}

/*!========================================================================
 * 92. Transition Curtain
 * ======================================================================!*/
.transition-curtain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 400;
  display: none;
  transition: background-color 0.6s ease-in-out;
  will-change: background-color;
}

/*!========================================================================
 * 93. Typography
 * ======================================================================!*/
h1,h2 {
  font-family: var(--font-secondary);
  color: var(--color-accent-secondary-2);
  font-weight: bold;
}

h1 {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

h1 {
  font-size: calc(var(--h1-min-font-size) * 1px);
  font-weight: bold;
  line-height: var(--h1-line-height);
  margin-top: 0;
}
@media screen and (min-width: 320px) {
  h1 {
    font-size: calc(var(--h1-min-font-size) * 1px + (var(--h1-max-font-size) - var(--h1-min-font-size)) * ((100vw - 320px) / 1600));
  }
}
@media screen and (min-width: 1920px) {
  h1 {
    font-size: calc(var(--h1-max-font-size) * 1px);
  }
}

h4{
  font-family: var(--font-secondary);
}

p {
  margin-top: 1em;
  margin-bottom: 1em;
  font-size: calc(var(--paragraph-min-font-size) * 1px);
  line-height: var(--paragraph-line-height);
}
@media screen and (min-width: 320px) {
  p {
    font-size: calc(var(--paragraph-min-font-size) * 1px + (var(--paragraph-max-font-size) - var(--paragraph-min-font-size)) * ((100vw - 320px) / 1600));
  }
}
@media screen and (min-width: 1920px) {
  p {
    font-size: calc(var(--paragraph-max-font-size) * 1px);
  }
}

@media only screen and (max-width: 991px) {
  h1 {
    margin-bottom: 1em;
  }
}

/*!========================================================================
 * 95. Typography Dark Adjustments
 * ======================================================================!*/

.bg-dark-2 h1 {
  color: var(--color-accent-primary-3);
}

.bg-dark-3 h1 {
  color: var(--color-accent-primary-3);
}

/*!========================================================================
 * 96. Utilities
 * ======================================================================!*/
.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.bg-ornament {
  background-image: url("../img/general/bg-ornament.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}


/*!========================================================================
Bilder-Gallerie
 * ======================================================================!*/

 .gallery{
  margin-bottom: -100px;
 }


 @media (max-width: 768px) {
  .gallery {
    margin-bottom: -130px;
  }
}


 .gallery-title {
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
}

.gallery-selector {
  display: none;
}

.gallery-featured {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  max-width: 900px;
  margin: 0 auto 20px auto;
  border: none;
}

.gallery-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
 
#img1:checked ~ .gallery-featured .img1,
#img2:checked ~ .gallery-featured .img2,
#img3:checked ~ .gallery-featured .img3,
#img4:checked ~ .gallery-featured .img4,
#img5:checked ~ .gallery-featured .img5,
#img6:checked ~ .gallery-featured .img6,
#img7:checked ~ .gallery-featured .img7 {
  opacity: 1;
  z-index: 1;
}

.gallery-thumbs-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  margin: 0 auto;
  max-width: 900px;
  padding-bottom: 10px;
  width: 100%;
}

.gallery-thumbs {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  padding: 5px;
  min-width: fit-content;
}

.thumb {
  flex: 0 0 auto;
  width: 120px;
  height: 80px;
  border: 2px solid transparent;
  cursor: pointer;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 2px;
  transition: border 0.3s ease;
}

.thumb:hover img {
  border: 2px solid white;
}

/* Optional: Scrollbar schöner machen */
.gallery-thumbs-scroll::-webkit-scrollbar {
  height: 8px;
}
.gallery-thumbs-scroll::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}
.gallery-thumbs-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.gallery-scaler {
  max-width: 900px;
  width: 100%;
}


/* Responsive Anpassungen */
@media (max-width: 768px) {
  .gallery-title {
    font-size: 2rem;
  }

  .thumb {
    width: 100px;
    height: 70px;
  }
}

@media (max-width: 480px) {
  .gallery-title {
    font-size: 1.5rem;
  }

  .thumb {
    width: 80px;
    height: 60px;
  }

  .gallery-thumbs {
    gap: 6px;
    padding: 0;
  }

  .gallery-thumbs-scroll {
    padding: 0 5px 10px;
  }
}

/*
--------------------
CONTACT FORM
--------------------
*/


.formular{
	padding: 60px !important;
	box-shadow: rgba(149, 157, 165, 0.3) 0px 8px 24px;
	font-size: 0.9em;
    font-family: 'Bellota Text';
  }
  
  .form-control{
	background-color: #f7f7f7 !important;
	border: none !important;
  }
  
  .form-control::placeholder{
	font-size: 0.85em;
  }


/*
--------------------
FOOTER
--------------------
*/

.footer a,
#footer-area a {
color: #333333 !important;
text-decoration: none !important;
font-size: 1em;
}

.footer a:hover,
#footer-area a:hover {
color: #09444B !important;
}

.footer p{
	font-size: 0.8em !important;
}

.footer{
	background-color:#f3f5f8;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
}

.footer-social{
	margin-top:90px;
	margin-bottom:25px;
}
.footer-social a{
	text-transform:uppercase;
	letter-spacing:0.3em;
	font-weight:400;
	border-bottom:1px solid transparent;
	text-decoration: none;
}
.footer-social a:hover, .footer-social a:focus{
	padding-bottom:7px;
	border-color:#d5d5d5;
}
.social-icons{
	margin:0;
}
.footer-social li{
	padding:0 15px;
	margin-bottom: 15px;
}
.separator.footer-sep{
	width:25px;
}
.separator.footer-sep .sep_line{
	border-color:#000;
}
.footer-colophon{
	margin-bottom:50px;
}
.footer-colophon p{
	color:#999;
	margin-top:5px;
}
