/* navbar */

.autohide {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
}

.offcanvas {
  height: 100%;
  height: 100vh;
}

.scrolled-down {
  /*transform: translateY(-100%);*/
  transition: all 0.3s ease-in-out;
}

.scrolled-up {
  transform: translateY(0);
  transition: all 0.3s ease-in-out;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='white' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  width: 1.5em;
  height: 2.1em;
}

.navbar-toggler {
  border: 2px solid var(--bs-primary) !important;
  margin-right: 5px;
}

.navbar-toggler:focus {
  box-shadow: none;
  border: 2px solid white !important;
  box-sizing: border-box;
}

.logo {
  position: fixed;
  height: auto;
  left: 50%;
  transform: translate(-50%, 0px);
  width: auto;
  max-width: 170px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.scrolled-down .logo {
  max-width: 160px;
  margin-top: -5px;
  opacity: 1;
}

.social-menu a {
  color: white;
}



footer a {
  color: white !important;
  text-decoration: none !important;
}

.container.bg-primary a {
  color: var(--bs-secondary);
}

footer a:hover,
.container.bg-primary a:hover,
.container.bg-primary a:focus {
  color: var(--bs-secondary) !important;
  text-decoration: underline;
}

.social-menu a:hover,
.social-menu a:focus,
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--bs-secondary) !important;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link_focus {
  color: var(--bs-secondary) !important;
}

/* hero */

#hero {
  display: flex;
  height: 100%;
  min-height: 100vh;
}


section {
  min-height: 50vh;
}



/* font styles */


a {
  text-decoration: none;
}

.programm {
  position: relative;
  padding: 0;
  list-style: none;
}

.programm:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40px;
  width: 2px;
  margin-left: -1.5px;
  content: "";
  background-color: #e9ecef;
}

.programm>li {
  position: relative;
  min-height: 50px;
  margin-bottom: 50px;
}

.programm>li:after,
.programm>li:before {
  display: table;
  content: " ";
}

.programm>li:after {
  clear: both;
}

.programm>li .programm-panel {
  position: relative;
  float: right;
  width: 100%;
  padding: 0 20px 0 100px;
  text-align: left;
}

.programm>li .programm-panel:before {
  right: auto;
  left: -15px;
  border-right-width: 15px;
  border-left-width: 0;
}

.programm>li .programm-panel:after {
  right: auto;
  left: -14px;
  border-right-width: 14px;
  border-left-width: 0;
}

.programm>li .programm-image {
  position: absolute;
  z-index: 100;
  left: 0;
  width: 80px;
  height: 80px;
  margin-left: 0;
  text-align: center;
  color: white;
  border: 7px solid var(--bs-primary);
  border-radius: 100%;
  background-color: var(--bs-primary);
}

.programm>li .programm-image h4,
.programm>li .programm-image .h4 {
  font-size: 10px;
  line-height: 14px;
  margin-top: 12px;
}

.programm>li.programm-inverted>.programm-panel {
  float: right;
  padding: 0 20px 0 100px;
  text-align: left;
}

.programm>li.programm-inverted>.programm-panel:before {
  right: auto;
  left: -15px;
  border-right-width: 15px;
  border-left-width: 0;
}

.programm>li.programm-inverted>.programm-panel:after {
  right: auto;
  left: -14px;
  border-right-width: 14px;
  border-left-width: 0;
}

.programm>li:last-child {
  margin-bottom: 0;
}

.programm .programm-heading {
  background-color: var(--bs-primary);
  border-radius: 0.5rem;
  /* entspricht rounded-4 */
  display: inline-block;
  padding: 0.5rem 1rem;
  color: white;
}

.programm .programm-heading h4,
.programm .programm-heading .h4 {
  margin-top: 0;
  color: inherit;
}

.programm .programm-body>ul,
.programm .programm-body>p {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .programm:before {
    left: 50%;
  }

  .programm>li {
    min-height: 100px;
    margin-bottom: 100px;
  }

  .programm>li .programm-panel {
    float: left;
    width: 41%;
    padding: 0 20px 20px 30px;
    text-align: right;
  }

  .programm>li .programm-image {
    left: 50%;
    width: 100px;
    height: 100px;
    margin-left: -50px;
  }

  .programm>li .programm-image h4,
  .programm>li .programm-image .h4 {
    font-size: 13px;
    line-height: 18px;
    margin-top: 16px;
  }

  .programm>li.programm-inverted>.programm-panel {
    float: right;
    padding: 0 30px 20px 20px;
    text-align: left;
  }
}

@media (min-width: 992px) {

  .programm>li {
    min-height: 150px;
  }

  .programm>li .programm-panel {
    padding: 0 20px 20px;
  }

  .programm>li .programm-image {
    width: 150px;
    height: 150px;
    margin-left: -75px;
  }

  .programm>li .programm-image h4,
  .programm>li .programm-image .h4 {
    font-size: 18px;
    line-height: 26px;
    margin-top: 30px;
  }

  .programm>li.programm-inverted>.programm-panel {
    padding: 0 20px 20px;
  }
}

@media (min-width: 1200px) {
  .programm>li {
    min-height: 170px;
  }

  .programm>li .programm-panel {
    padding: 0 20px 20px 100px;
  }

  .programm>li .programm-image {
    width: 170px;
    height: 170px;
    margin-left: -85px;
  }

  .programm>li .programm-image h4,
  .programm>li .programm-image .h4 {
    margin-top: 40px;
  }

  .programm>li.programm-inverted>.programm-panel {
    padding: 0 100px 20px 20px;
  }
}

#sponsoren img {
  transition: all 0.3s ease-in-out;
}

#sponsoren img:hover {
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, .12);
}

footer .card-body {
  background: transparent;
  border: none;
}


.divider {
  width: 60px;
}