:root {
  scroll-behavior: smooth;
  --primary: #582000;
  --secondary: #D94E00;
  --absatzschrift: "Open Sans", sans-serif;
  --überschrift: "Amatic SC", "Roboto", sans-serif;
}

@font-face {
    font-family: 'Open Sans';
    src: url('OpenSans-Regular.woff2') format('woff2'),
        url('OpenSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('OpenSans-Italic.woff2') format('woff2'),
        url('OpenSans-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Amatic SC';
    src: url('AmaticSC-Bold.woff2') format('woff2'),
        url('AmaticSC-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-size: 24px;
    font-display: swap;
}

@font-face {
    font-family: 'Amatic SC';
    src: url('AmaticSC-Regular.woff2') format('woff2'),
        url('AmaticSC-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    font-display: swap;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #444;
}

a {
  color: #3387b4;
  text-decoration: none;
}

a:hover {
  color: #fff;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-primary {
  font-family: var(--überschrift);
  font-weight: bold;
}

.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #68A4C4;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #85b6cf;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* Header */
#header {
  height: 120px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: #1e4356;
}

#header.header-transparent {
  background: rgba(23, 33, 35, 0.8);
}

#header.header-scrolled {
  background: rgba(23, 33, 35, 0.8);
  height: 40px;
}

#header .logo h1 {
  font-size: 42px;
  margin: 0;
  padding: 4px 0;
  line-height: 1;
  font-weight: bold;
  letter-spacing: 3px;
  transition: all 0.5s;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 100px;
  transition: 0.4s;
}

#header.header-scrolled .logo img {
  max-height: 0;
}

#main {
  margin-top: 0px;
  display: flex;
}

@media (max-width: 991px) {
  #main {
    display: block;
  }

  .sticky {
    display: flex;
  }
}

#main .inner {
  flex: 4;
}

side {
  display: block;
  flex: 1;
  background: rgba(43, 51, 56, 0.9);
  color: #fff;
}

.sticky {
  padding: 2em 5px;
  position: sticky;
  top: 40px;
  padding-right: calc(var(--bs-gutter-x)* .5);
  padding-left: calc(var(--bs-gutter-x)* .5);
}

side li {
  list-style-type: '+';
  padding-inline-start: 1ch;
}

side li:last-of-type {
  list-style-type: '=';
}

side .col-center {
  text-align: center;
  flex-grow: 1;
}

.full-width {
  width: 100%;
  position: absolute;
  bottom: 13vh;
  background: rgba(23, 33, 35, 0.8);
}

/* Desktop Navigation */
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: var(--überschrift);
  font-weight: bold;
  font-size: 28px;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #a2cce3;
}

.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(17, 38, 48, 0.9);
  transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #B6CED4;;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 36px;
  color: #000;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #68A4C4;
}

#hero-no-slider {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  text-align: center;
}

#hero-no-slider::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: url("../img/golden-times.jpg") center top no-repeat;
  background-size: cover;
}

#hero-no-slider h2 {
  color: #fff;
  margin: 15px;
  font-size: 60px;
  font-weight: bold;
}

#hero-no-slider p {
  color: #fff;
}

#hero-no-slider .btn-get-started {
  font-family: var(--überschrift);
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  animation-delay: 0.8s;
  border: 2px solid #68A4C4;
}

#hero-no-slider .btn-get-started:hover {
  background: #68A4C4;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 575px) {
  #hero-no-slider h2 {
    font-size: 48px;
  }
}

section {
  padding: 40px 0 0 0;
  min-height: 100vh;
}

.section-title {
  text-align: center;
  padding: 30px 0;
}

.section-title h2 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.row.center {
  align-items: center;
}

.row.bottom {
  align-items: end;
}

section .separator::before,
.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 50%;
  height: 1px;
  background: #ddd;
  background-image: linear-gradient(to right, #b6ced4, #6e9cca, #b6ced4);
  bottom: 1px;
  left: 25%;
}

.separator {
  margin-bottom: 3em;
  padding-bottom: 3em;
  position: relative;
}

.section-title p {
  margin-bottom: 0;
}


section img {
  max-width: 100%;
  width: 100%;
  height: auto;
  margin: 0 auto 1rem auto;
  display: block;
  box-shadow: 0.3em 0.3em 1em 0.3em rgba(50, 50, 50, 0.1);
  padding: 10px;
  background: #fff;
}

section img.video {
  cursor: pointer;
}

section .autor {
  display: inline-block;
  width: 100%;
  text-align: right;
}

.footer-contact img.full,
section img.full {
  width: 100%;
}

.footer-contact img {
  margin-top: 0.4em;
}

section ul {
  margin-bottom: 0;
}


section.bilder {
  background: #DDD;
}

section.installationen {
  background: #B6CED4;
}

section.person {
  background: #EEDCA9;
}

section.datenschutz {
  padding-top: 140px;
  background: #DDD;
}

section h2 {
  font-size: 40px;
}

#videoPlayer {
  position: fixed;
  overflow: hidden;
  top: 0;
  width: 100vw;
  height: 0;
  display: block;
  opacity: 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 1s, height 1s;
}

#videoPlayer.playing {
  height: 100vh;
  opacity: 1;
}

#videoPlayer video {
  max-height: calc(100vh - 40px);
  max-width: 100vw;
  margin-top: 40px;
  box-shadow: 0.3em 0.3em 1em 0.3em rgba(0, 0, 0, 0.5);
}

h2 .mobil {
  display: inline-block;
  margin-left: -0.7em;
}

h2 .mobil::before {
  content: "∞";
  font-size: 48px;
  position: relative;
  left: 50%;
  top: -0.4em;
}

#footer {
  background: #0b212d;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #0d2735;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #a2cce3;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  margin: 3px;
  background: #68A4C4;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #468db3;
}

#footer .footer-top {
  background: #0d2735;
  border-top: 1px solid #17455e;
  border-bottom: 1px solid #123649;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 18px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  color: #a2cce3;
  font-weight: 600;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #1e4356;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #68A4C4;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 36px;
  font-weight: 600;
  color: #a2cce3;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #a2cce3;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #a2cce3;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

#footer a:hover {
  color: #82bfe0;
}

#footer .credits a {
  color: #a2cce3;
}
