/***********
1. Basics
***********/
body {
  background-color: var(--background_color);
  color: var(--text_color);
  font: 1rem "Barlow", sans-serif;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: var(--primary_page_color);
}
a:hover, a:focus {
  color: var(--secondary_page_color);
}
a:hover img, a:focus img {
  filter: brightness(0.8);
  transition: filter 0.5s ease;
}
a[href^="mailto:"], a[href^="tel:"] {
  color: initial;
}
a[href^="mailto:"]:hover, a[href^="mailto:"]:focus, a[href^="tel:"]:hover, a[href^="tel:"]:focus {
  color: var(--secondary_page_color);
}

h1, .h1 {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  -webkit-hyphens: auto;
          hyphens: auto;
}
@media (min-width: 768px) {
  h1, .h1 {
    font-size: 3rem;
  }
}
@media (min-width: 992px) {
  h1, .h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
  }
}

h2, .h2 {
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 1.8rem;
  -webkit-hyphens: auto;
          hyphens: auto;
}
@media (min-width: 992px) {
  h2, .h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
h2 + p, .h2 + p {
  margin-top: -1rem;
}

h3, .h3 {
  font-weight: bold;
  font-size: 1.4rem;
  margin-bottom: 1.4rem;
  -webkit-hyphens: auto;
          hyphens: auto;
}
@media (min-width: 992px) {
  h3, .h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
h3 + p, .h3 + p {
  margin-top: -1rem;
}

h4, .h4 {
  font-weight: bold;
  font-size: 1.2rem;
}

li {
  list-style-type: circle;
  padding: 0.5rem 1rem;
}

::marker {
  content: "\f287";
  color: var(--secondary_page_color);
  font-family: "bootstrap-icons";
  font-size: 0.6rem;
}

p {
  padding: 0.5rem 0;
}

q {
  font-size: 1.6rem;
  color: var(--color_two);
  font-weight: bold;
}

/***********
 2. Template
***********/
/* Navigation */
nav li {
  padding: 0;
  list-style-type: none;
}
nav ::marker {
  content: none;
}

.navbar-toggler {
  display: flex;
  flex-direction: column;
  width: 70px;
  cursor: pointer;
}
.navbar-toggler span {
  background: var(--secondary_page_color);
  border-radius: 10px;
  width: 34px;
  height: 4px;
  margin: 4px 0;
  padding: 2px 0;
  font-size: 1rem;
  color: var(--text_color);
  overflow: hidden;
  transition: 0.4s ease;
}
.navbar-toggler:hover span:nth-of-type(1), .navbar-toggler:focus span:nth-of-type(1) {
  background: none;
  overflow: visible;
}
.navbar-toggler:hover span:nth-of-type(2), .navbar-toggler:focus span:nth-of-type(2) {
  background: none;
}
.navbar-toggler[aria-expanded=true] span {
  background-color: var(--primary_page_color) !important;
  overflow: hidden !important;
}
.navbar-toggler[aria-expanded=true] span:nth-of-type(1) {
  transform-origin: left;
  transform: rotatez(45deg);
}
.navbar-toggler[aria-expanded=true] span:nth-of-type(2) {
  opacity: 0;
}
.navbar-toggler[aria-expanded=true] span:nth-of-type(3) {
  transform-origin: left;
  transform: rotatez(-45deg);
}

#navbarMain .nav-link {
  color: var(--text_color);
  padding: 20px 10px;
  position: relative;
}
@media (min-width: 1400px) {
  #navbarMain .nav-link {
    padding: 40px 20px;
  }
}
#navbarMain .nav-link::after {
  content: "";
  position: absolute;
  width: 20px;
  margin-top: -10px;
  border: 2px solid var(--secondary_page_color);
  border-radius: 2px;
  transition: left 0.5s ease, opacity 0.5s ease;
  opacity: 0;
}
@media (min-width: 1400px) {
  #navbarMain .nav-link::after {
    left: calc(100% - 40px);
  }
}
#navbarMain .nav-link.active {
  font-weight: bold;
}
#navbarMain .nav-link.active::after {
  opacity: 1;
  left: 10px;
}
@media (min-width: 1400px) {
  #navbarMain .nav-link.active::after {
    left: 20px;
  }
}
#navbarMain .nav-link:hover, #navbarMain .nav-link:focus {
  cursor: pointer;
  color: var(--secondary_page_color);
}
@media (min-width: 1400px) {
  #navbarMain .nav-link:hover::after, #navbarMain .nav-link:focus::after {
    opacity: 1;
    left: 20px;
  }
}

#navFooter .nav-link {
  position: relative;
  padding-left: 0;
  color: white;
  font-weight: bold;
}
#navFooter .nav-link::after {
  content: "\f135";
  position: absolute;
  margin-top: -0.2rem;
  font-size: 2rem;
  font-family: "bootstrap-icons";
  transition: margin-left 0.5s ease;
}
#navFooter .nav-link:hover, #navFooter .nav-link:focus {
  cursor: pointer;
}
#navFooter .nav-link:hover::after, #navFooter .nav-link:focus::after {
  margin-left: 1.25rem;
}

#navbarFooter .nav-link {
  color: white;
}
#navbarFooter .nav-link:hover, #navbarFooter .nav-link:focus {
  cursor: pointer;
  color: var(--color_five);
}

/* Header */
.hero-header {
  min-height: 30vh;
  padding: 3vh 0 1vh 0;
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center;
  color: white;
}
.hero-header h1 {
  color: white;
  min-width: 60vw;
  max-width: 980px;
}
.hero-header p {
  font-size: 1.2rem;
  min-width: 60vw;
  max-width: 980px;
}
.hero-header .jumbo, .hero-header .jumbo-multiple {
  line-height: 10rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .hero-header {
    min-height: 40vh;
    padding: 10vh 0;
  }
  .hero-header h1, .hero-header p {
    width: 60%;
  }
}

.hero-studiengaenge {
  margin-top: -12vh;
}

/* Footer */
footer {
  background-color: var(--primary_page_color);
  color: white;
  font-size: 1.25rem;
  padding-bottom: 2rem;
}
footer .social-icons {
  display: flex;
  gap: 16px;
  padding: 4px 0;
}
footer .social-icons .bi {
  background-color: white;
  color: var(--primary_page_color);
  border-radius: 50%;
  padding: 6px 8px;
  aspect-ratio: 1;
}
footer .social-icons .bi:hover, footer .social-icons .bi:focus {
  background-color: var(--color_five);
}

#floatingIcons {
  position: fixed;
  bottom: -4rem;
  right: 2rem;
  transition: 0.5s bottom ease;
}
#floatingIcons.active {
  bottom: 2rem;
}
#floatingIcons a {
  background-color: var(--secondary_page_color);
  border-radius: 50%;
  box-shadow: 0 0 2px black;
  color: white;
  display: inline-block;
  font-size: 2rem;
  text-align: center;
  width: 3rem;
  height: 3rem;
  margin: 0.2rem;
}
#floatingIcons a img {
  width: 1.8rem;
  transform: rotate(-90deg);
  vertical-align: initial;
}

/***********
 3. General Classes
***********/
/* Buttons */
.btn {
  border-radius: 0.3125rem;
  padding: 0.5rem 0.75rem;
  min-width: 120px;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .btn {
    min-width: 180px;
  }
}
.btn-ovgu-primary {
  background-color: var(--secondary_page_color);
  color: white;
  transition: box-shadow 0.5s ease;
}
.btn-ovgu-primary:hover, .btn-ovgu-primary:focus {
  box-shadow: inset 320px 0 0 0 var(--primary_page_color);
  color: white;
}
.btn-vm-primary {
  background-color: var(--color_four);
  color: white;
  transition: box-shadow 0.5s ease, border-color 0.5s ease;
}
.btn-vm-primary:hover, .btn-vm-primary:focus {
  box-shadow: inset 320px 0 0 0 var(--color_two);
  color: white;
  border-color: var(--color_two);
}
.btn-secondary {
  background-color: white;
  border: 1px solid var(--text_color);
  color: var(--text_color);
  transition: box-shadow 0.5s ease;
}
.btn-secondary:hover, .btn-secondary:focus {
  background-color: white;
  box-shadow: 0 0 1rem #cccccc;
  border-color: transparent;
  color: var(--text_color);
}
.btn-more {
  color: var(--primary_page_color);
  text-transform: none;
  position: relative;
  min-width: auto;
  margin-left: -0.5rem;
  padding: 0.5rem 0.25rem;
  border: 2px solid transparent;
  border-radius: 2rem;
  transition: margin-left ease 0.5s;
}
.btn-more::after {
  content: "\f138";
  font-family: "bootstrap-icons" !important;
  text-align: right;
  position: absolute;
  width: 1.75rem;
  height: 1.75rem;
  top: 0.4rem;
  right: -2rem;
  padding-right: 0.25rem;
  border: 2px solid var(--primary_page_color);
  border-radius: 2rem;
  transition: width ease 0.5s, right ease 0.5s, padding-right ease 0.5s;
}
.btn-more:hover, .btn-more:focus {
  color: var(--secondary_page_color);
  margin-left: 1rem;
}
.btn-more:hover::after, .btn-more:focus::after {
  width: calc(100% + 3.25rem);
  right: -2.5rem;
  padding-right: 0.75rem;
  border-color: var(--secondary_page_color);
}

.text-primary-color {
	color: var(--primary_page_color);
}

.text-secondary-color {
	color: var(--secondary_page_color);
}

/* Utilities */
.bg-koralle {
  background-color: var(--color_one) !important;
}

.bg-magenta {
  background-color: var(--color_two) !important;
}

.bg-violett {
  background-color: var(--color_three) !important;
}

.bg-cyan {
  background-color: var(--color_four) !important;
}

.bg-rosa {
  background-color: var(--color_five) !important;
}

.bg-bordeaux {
  background-color: var(--secondary_page_color) !important;
}

.bg-beere {
  background-color: var(--primary_page_color) !important;
}

.bg-grey {
  background-color: var(--color_seven) !important;
}

.bg-lightgrey {
  background-color: var(--color_six) !important;
}

.bg-background {
  background-color: var(--background_color) !important;
}

.text-koralle {
  color: var(--color_one) !important;
}

.text-magenta {
  color: var(--color_two) !important;
}

.text-violett {
  color: var(--color_three) !important;
}

.text-cyan {
  color: var(--color_four) !important;
}

.text-rosa {
  color: var(--color_five) !important;
}

.text-bordeaux {
  color: var(--secondary_page_color) !important;
}

.text-beere {
  color: var(--primary_page_color) !important;
}

.text-grey {
  color: var(--color_seven) !important;
}

.text-lightgrey {
  color: var(--color_six) !important;
}

.text-background {
  color: var(--background_color) !important;
}

.stroke-color-koralle {
  -webkit-text-stroke-color: var(--color_one) !important;
}
.stroke-color-koralle::before {
  -webkit-text-stroke-color: var(--color_one) !important;
}
.stroke-color-koralle::after {
  -webkit-text-stroke-color: var(--color_one) !important;
}

.stroke-color-magenta {
  -webkit-text-stroke-color: var(--color_two) !important;
}
.stroke-color-magenta::before {
  -webkit-text-stroke-color: var(--color_two) !important;
}
.stroke-color-magenta::after {
  -webkit-text-stroke-color: var(--color_two) !important;
}

.stroke-color-violett {
  -webkit-text-stroke-color: var(--color_three) !important;
}
.stroke-color-violett::before {
  -webkit-text-stroke-color: var(--color_three) !important;
}
.stroke-color-violett::after {
  -webkit-text-stroke-color: var(--color_three) !important;
}

.stroke-color-cyan {
  -webkit-text-stroke-color: var(--color_four) !important;
}
.stroke-color-cyan::before {
  -webkit-text-stroke-color: var(--color_four) !important;
}
.stroke-color-cyan::after {
  -webkit-text-stroke-color: var(--color_four) !important;
}

.stroke-color-rosa {
  -webkit-text-stroke-color: var(--color_five) !important;
}
.stroke-color-rosa::before {
  -webkit-text-stroke-color: var(--color_five) !important;
}
.stroke-color-rosa::after {
  -webkit-text-stroke-color: var(--color_five) !important;
}

.stroke-color-bordeaux {
  -webkit-text-stroke-color: var(--secondary_page_color) !important;
}
.stroke-color-bordeaux::before {
  -webkit-text-stroke-color: var(--secondary_page_color) !important;
}
.stroke-color-bordeaux::after {
  -webkit-text-stroke-color: var(--secondary_page_color) !important;
}

.stroke-color-beere {
  -webkit-text-stroke-color: var(--primary_page_color) !important;
}
.stroke-color-beere::before {
  -webkit-text-stroke-color: var(--primary_page_color) !important;
}
.stroke-color-beere::after {
  -webkit-text-stroke-color: var(--primary_page_color) !important;
}

.stroke-color-grey {
  -webkit-text-stroke-color: var(--color_seven) !important;
}
.stroke-color-grey::before {
  -webkit-text-stroke-color: var(--color_seven) !important;
}
.stroke-color-grey::after {
  -webkit-text-stroke-color: var(--color_seven) !important;
}

.stroke-color-lightgrey {
  -webkit-text-stroke-color: var(--color_six) !important;
}
.stroke-color-lightgrey::before {
  -webkit-text-stroke-color: var(--color_six) !important;
}
.stroke-color-lightgrey::after {
  -webkit-text-stroke-color: var(--color_six) !important;
}

.stroke-color-background {
  -webkit-text-stroke-color: var(--background_color) !important;
}
.stroke-color-background::before {
  -webkit-text-stroke-color: var(--background_color) !important;
}
.stroke-color-background::after {
  -webkit-text-stroke-color: var(--background_color) !important;
}

.border-left-circle {
  border-top-left-radius: 10rem;
  border-bottom-left-radius: 10rem;
}

.border-right-circle {
  border-top-right-radius: 10rem;
  border-bottom-right-radius: 10rem;
}

.bg-otto-texture::before, .topic-otto::before {
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  background-image: url("../png/ovg-sw.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 400%;
}

.card {
  border-radius: 0.5rem;
  border: 0;
  word-wrap: normal;
  background-color: white;
  overflow: hidden;
}

.card-img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.card-img-top {
  -o-object-fit: cover;
     object-fit: cover;
  height: 210px;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .card-img-top {
    height: 300px;
  }
}

.card-img-overlay {
  padding: 1rem 2rem;
  width: 50%;
  min-width: 240px;
  height: 320px;
}
.card-img-overlay .card-title {
  color: white;
  text-transform: uppercase;
  font-size: 2.5rem;
}

.card-link, .card-link-circle {
  text-decoration: none;
  position: relative;
  display: block;
  padding-right: 2rem;
}
.card-link .text-center, .card-link-circle .text-center {
  padding-left: 2rem;
}
.card-link::after, .card-link-circle::after {
  content: "\f135";
  position: absolute;
  top: 0;
  right: 1rem;
  font-size: 2rem;
  font-family: "bootstrap-icons";
  transition: right 0.5s ease;
}
.card-link:hover, .card-link-circle:hover, .card-link:focus, .card-link-circle:focus {
  cursor: pointer;
}
.card-link:hover::after, .card-link-circle:hover::after, .card-link:focus::after, .card-link-circle:focus::after {
  right: 0;
}

.card-link-circle::after {
  content: "\f133";
}

.card-subtitle {
  font-weight: normal;
  margin: 1rem 0;
}

.card-body {
  padding: 1rem 2rem;
}
.card-body p {
  -webkit-hyphens: auto;
          hyphens: auto;
}

main .container, .hero-header .container {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (max-width: 767px) {
  main .container, .hero-header .container {
    padding: 2rem 1.2rem;
  }
}

.container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.facts-list ul {
  justify-content: space-around;
}
@media (min-width: 768px) {
  .facts-list ul {
    display: flex;
  }
}
.facts-list ul::marker {
  font-size: 0.8rem;
}
.facts-list li {
  font-size: 1.2rem;
  color: var(--secondary_page_color);
}

.form-control {
  padding: 0.5rem 0.75rem;
  border: 0;
  margin: 1rem 0;
}

.form-select {
  border: 0;
  background-image: url(../svg/select-down.svg);
  background-position: right 0.25rem center;
  background-size: 28px 28px;
  margin: 1rem 0;
}

select:required:invalid {
  color: gray;
}

.form-check-label {
  margin-bottom: 1rem;
}

.form-check-input:checked {
  background-color: var(--secondary_page_color);
  border-color: var(--secondary_page_color);
}

.img-user {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 50% !important;
}

.jumbo, .jumbo-multiple {
  font-size: 10rem;
  line-height: 7rem;
  margin-bottom: 4rem;
  display: inline-block;
  position: relative;
}
@media (min-width: 992px) {
  .jumbo, .jumbo-multiple {
    font-size: 15rem;
    line-height: 10rem;
  }
}
.jumbo sup, .jumbo-multiple sup, .jumbo sub, .jumbo-multiple sub {
  font-size: 1.6rem;
  display: inline-block;
  line-height: 1.3;
  position: absolute;
}
@media (min-width: 992px) {
  .jumbo sup, .jumbo-multiple sup, .jumbo sub, .jumbo-multiple sub {
    font-size: 2rem;
  }
}
.jumbo sup, .jumbo-multiple sup {
  font-weight: bold;
  top: 0;
}
.jumbo sub, .jumbo-multiple sub {
  top: 1.6rem;
}
@media (min-width: 992px) {
  .jumbo sub, .jumbo-multiple sub {
    top: 2rem;
  }
}

.jumbo-multiple {
  font-size: 4rem;
  line-height: 4.5rem;
  margin-bottom: 1rem;
}
.jumbo-multiple sup, .jumbo-multiple sub {
  margin-left: 0.2rem;
  line-height: 1.9;
}
@media (min-width: 678px) {
  .jumbo-multiple {
    font-size: 6rem;
  }
}
@media (min-width: 1200px) {
  .jumbo-multiple {
    font-size: 8rem;
    line-height: 6rem;
  }
}

.line-clamp, .line-clamp-9, .line-clamp-6 {
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding-bottom: 0;
}
.line-clamp-6 {
  line-clamp: 6;
  -webkit-line-clamp: 6;
}
.line-clamp-9 {
  line-clamp: 9;
  -webkit-line-clamp: 9;
}

.rounded {
  border-radius: 0.5rem;
}

.theme-bachelor h3 {
  color: var(--color_four);
}
.theme-bachelor::after {
  color: var(--color_four);
}

.theme-master h3 {
  color: var(--color_two);
}
.theme-master::after {
  color: var(--color_two);
}

/***********
5. Special Classes
***********/
/* Decorations */
.anker:hover .hr-wave-top-bounce::after, .anker:focus .hr-wave-top-bounce::after {
  animation: none;
  transform: scale(1.1);
}

.hr-wave-top {
  background-repeat: no-repeat;
  background-color: white;
  margin: 0;
  padding: 36px 0;
  overflow: visible;
  opacity: 1;
  margin-top: 72px;
  background-image: url(../svg/wave-grey.svg);
  background-position: top center;
}
.hr-wave-top::after {
  content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="65" height="65" viewBox="0 0 65 65"><path fill="%23ar(--color_two)" d="M33.065-.3A32.582,32.582,0,1,0,65.631,32.3,32.585,32.585,0,0,0,33.065-.3ZM53.348,32.664,36.153,48.6a.522.522,0,0,1-.73-.033L32.9,45.843a.522.522,0,0,1,.033-.73l11.32-10.49H13.115a.489.489,0,0,1-.5-.5V30.44a.511.511,0,0,1,.5-.5H44.253L32.933,19.419a.521.521,0,0,1-.033-.73l2.523-2.722a.522.522,0,0,1,.73-.033l17.2,15.934A.541.541,0,0,1,53.348,32.664Z" transform="translate(65 -0.5) rotate(90)"/></svg>');
  position: absolute;
  margin-top: -72px;
  width: 100%;
  text-align: center;
}
.hr-wave-bottom {
  background-repeat: no-repeat;
  background-color: white;
  margin: 0;
  padding: 36px 0;
  overflow: visible;
  opacity: 1;
  margin-bottom: 72px;
  background-image: url("../svg/wave-grey.svg");
  background-position: top center;
  transform: rotate(180deg);
}
.hr-wave-bottom::after {
  content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="65" height="65" viewBox="0 0 65 65"><path fill="%23ar(--color_four)" d="M33.065-.3A32.582,32.582,0,1,0,65.631,32.3,32.585,32.585,0,0,0,33.065-.3ZM53.348,32.664,36.153,48.6a.522.522,0,0,1-.73-.033L32.9,45.843a.522.522,0,0,1,.033-.73l11.32-10.49H13.115a.489.489,0,0,1-.5-.5V30.44a.511.511,0,0,1,.5-.5H44.253L32.933,19.419a.521.521,0,0,1-.033-.73l2.523-2.722a.522.522,0,0,1,.73-.033l17.2,15.934A.541.541,0,0,1,53.348,32.664Z" transform="translate(65 -0.5) rotate(90)"/></svg>');
  transform: rotate(180deg);
  margin-top: -72px;
  position: absolute;
  width: 100%;
  text-align: center;
}
@keyframes bounce {
  0% {
    transform: scale(1, 1) translateY(0);
  }
  10% {
    transform: scale(1.1, 0.9) translateY(0);
  }
  30% {
    transform: scale(0.9, 1.1) translateY(-20px);
  }
  50% {
    transform: scale(1, 1) translateY(0);
  }
  100% {
    transform: scale(1, 1) translateY(0);
  }
}
.hr-wave-bounce::after {
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-name: bounce;
  animation-timing-function: ease;
}

/* Suche */
.search {
  width: 60vw;
  min-width: 380px;
  max-width: 780px;
  min-height: 48px;
}
.search .btn {
  min-width: auto;
  padding: 2px;
  margin: 0;
}
.search .btn i {
  background-color: var(--primary_page_color);
  color: white;
  display: inline-block;
  font-size: 1.2rem;
  padding: 0.4rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  transition: background-color 0.5s ease;
}
.search .btn:hover i {
  background-color: var(--secondary_page_color);
}
.search .form-control {
  margin: 0;
}
.search .form-select {
  padding-left: 2rem;
  flex: 0.2 1 auto !important;
  margin: 0;
}
@media (max-width: 767px) {
  .search .input-group {
    position: absolute;
    left: 0;
  }
  .search .form-select {
    padding-left: 0.5rem;
    flex: 0.3 1 auto !important;
    font-size: 0.9rem;
  }
  .search .form-control {
    font-size: 0.9rem;
  }
}

/* Tiny Slider */
.tns-outer .tns-controls > [data-controls] {
  font-size: 0;
  height: 6vh;
  width: 6vh;
  border-radius: 50%;
  position: absolute;
  z-index: 99;
  border: 0;
  background-image: url(../svg/arrow-circle.svg);
  background-color: white;
  background-size: contain;
  filter: invert(1);
  margin-top: 18vh;
  opacity: 0.5;
}
.tns-outer .tns-controls > [data-controls]:hover {
  opacity: 1;
}
.tns-outer .tns-controls > [data-controls=prev] {
  transform: rotate(180deg);
  left: 2rem;
}
.tns-outer .tns-controls > [data-controls=next] {
  right: 2rem;
}

.tns-inner {
  margin-right: -20px !important;
}

.tns-nav > [aria-controls] {
  width: 1rem;
  height: 1rem;
  margin: 2px;
  padding: 2px;
  border-radius: 50%;
  border: 2px solid var(--primary_page_color);
}
.tns-nav > .tns-nav-active {
  background-image: radial-gradient(var(--secondary_page_color) 50%, transparent 50%);
}

body.lb-disable-scrolling {
  overflow: hidden;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none;
}

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
  outline: none;
}
.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 0.5rem;
}
.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 0.5rem;
  /* Background color behind image.
     This is visible during transitions. */
  background-color: white;
}
.lb-outerContainer::after {
  content: "";
  display: table;
  clear: both;
}

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(../img/loading.gif) no-repeat;
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}
.lb-nav a {
  outline: none;
  background-image: url("data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==");
}
.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  transform: rotate(180deg);
  float: left;
  background: url(../svg/arrow-circle.svg) 80% 52% no-repeat;
  background-size: 3rem;
  filter: invert(1);
  opacity: 0;
  transition: opacity 0.6s;
}
.lb-nav a.lb-prev:hover {
  filter: invert(1);
  opacity: 1;
}
.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(../svg/arrow-circle.svg) 90% 48% no-repeat;
  background-size: 3rem;
  filter: invert(1);
  opacity: 0;
  transition: opacity 0.6s;
}
.lb-nav a.lb-next:hover {
  filter: invert(1);
  opacity: 1;
}

.lb-container > .nav {
  left: 0;
}

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 4px;
  color: white;
}
.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}
.lb-data .lb-caption {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1em;
}
.lb-data .lb-caption a {
  color: white;
}
.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}
.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(../img/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

/* Themenschwerpunkte */
.topic-preview, .vorwaertsmacher-preview {
  background-color: white;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  min-height: 430px;
}
.topic-preview .card-body, .vorwaertsmacher-preview .card-body {
  text-decoration: none;
  color: inherit;
  background-color: rgba(255, 255, 255, 0.8);
  transition: background-color 0.5s ease, background-image 0.5s ease;
}
@media (any-hover: hover) {
  .topic-preview .card-body, .vorwaertsmacher-preview .card-body {
    background-color: white;
  }
}
.topic-preview .card-body h3, .vorwaertsmacher-preview .card-body h3 {
  min-height: 4.2rem;
}
.topic-preview .card-body:hover, .vorwaertsmacher-preview .card-body:hover, .topic-preview .card-body:focus, .vorwaertsmacher-preview .card-body:focus {
  background-color: transparent;
  color: white;
}
.topic-preview .card-body:hover h3, .vorwaertsmacher-preview .card-body:hover h3, .topic-preview .card-body:focus h3, .vorwaertsmacher-preview .card-body:focus h3 {
  color: white;
  transform: translate(10%, 100px) scale(1.2);
}
.topic-preview .card-body:hover h3::before, .vorwaertsmacher-preview .card-body:hover h3::before, .topic-preview .card-body:focus h3::before, .vorwaertsmacher-preview .card-body:focus h3::before {
  -webkit-text-stroke-color: white;
}
.topic-preview .card-body:hover h3::after, .vorwaertsmacher-preview .card-body:hover h3::after, .topic-preview .card-body:focus h3::after, .vorwaertsmacher-preview .card-body:focus h3::after {
  right: 20%;
  opacity: 0.5;
}
.topic-preview .card-body:hover .card-text, .vorwaertsmacher-preview .card-body:hover .card-text, .topic-preview .card-body:focus .card-text, .vorwaertsmacher-preview .card-body:focus .card-text {
  opacity: 0;
}
.topic-preview .card-body:hover .btn-more, .vorwaertsmacher-preview .card-body:hover .btn-more, .topic-preview .card-body:focus .btn-more, .vorwaertsmacher-preview .card-body:focus .btn-more {
  filter: invert(100%) saturate(0%) brightness(100%);
}
.topic-preview .card-footer, .vorwaertsmacher-preview .card-footer {
  padding: 0;
  background-color: var(--primary_page_color);
  color: white;
}
.topic-preview .card-footer .btn-dropup-toggle, .vorwaertsmacher-preview .card-footer .btn-dropup-toggle {
  padding: 0.75rem 2rem;
  color: white;
  text-align: left;
  text-transform: none;
  font-weight: 600;
}
.topic-preview .card-footer .btn-dropup-toggle::after, .vorwaertsmacher-preview .card-footer .btn-dropup-toggle::after {
  content: "\f145";
  position: absolute;
  top: 0;
  right: 2rem;
  font-size: 2rem;
  font-family: "bootstrap-icons";
  transition: margin-left 0.5s ease;
}
.topic-preview h3, .vorwaertsmacher-preview h3 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  transition: transform 0.5s ease;
}
.topic-preview h3::before, .vorwaertsmacher-preview h3::before {
  content: attr(data-text);
  position: absolute;
  margin-top: -0.5rem;
  margin-left: -0.5rem;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke-color: var(--color_seven);
  -webkit-text-stroke-width: 1px;
  opacity: 0.3;
}
.topic-preview h3::after, .vorwaertsmacher-preview h3::after {
  content: url(../svg/arrow-circle.svg);
  position: absolute;
  right: 100%;
  opacity: 0;
  filter: invert(100%) saturate(0%) brightness(100%);
  transition: right 0.5s ease, opacity 0.5s ease;
}

.card-vorwaertsmacher .social-icons {
  position: absolute;
  z-index: 99;
  text-align: center;
  width: 100%;
  margin-top: 290px;
}
.card-vorwaertsmacher .social-icons a {
  background-color: var(--color_one);
  color: white;
  font-size: 1.2rem;
  display: inline-block;
  margin: 0.2rem;
  padding: 0.5rem;
  height: 2.6rem;
  width: 2.6rem;
  border-radius: 50%;
}
.card-vorwaertsmacher .social-icons a:hover, .card-vorwaertsmacher .social-icons a:focus {
  background-color: white;
  color: var(--color_one);
}
.card-vorwaertsmacher a:hover .vorwaertsmacher-preview .card-body, .card-vorwaertsmacher a:focus .vorwaertsmacher-preview .card-body {
  opacity: 1;
}
.card-vorwaertsmacher a:hover .vorwaertsmacher-preview .card-body h3, .card-vorwaertsmacher a:focus .vorwaertsmacher-preview .card-body h3 {
  color: var(--color_two);
  transform: translate(10%, 100px) scale(1.2);
}
.card-vorwaertsmacher a:hover .vorwaertsmacher-preview .card-body h3::before, .card-vorwaertsmacher a:focus .vorwaertsmacher-preview .card-body h3::before {
  -webkit-text-stroke-color: var(--color_four);
}
.card-vorwaertsmacher a:hover .vorwaertsmacher-preview .card-body h3::after, .card-vorwaertsmacher a:focus .vorwaertsmacher-preview .card-body h3::after {
  right: 20%;
  opacity: 0.5;
}

.vorwaertsmacher-preview {
  background-color: transparent;
  min-height: 360px;
}
.vorwaertsmacher-preview .card-body {
  background-color: transparent;
  color: var(--color_two);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.vorwaertsmacher-preview .card-body:hover, .vorwaertsmacher-preview .card-body:focus {
  opacity: 1;
}
.vorwaertsmacher-preview .card-body:hover h3, .vorwaertsmacher-preview .card-body:focus h3 {
  color: var(--color_two);
  transform: translate(10%, 100px) scale(1.2);
}
.vorwaertsmacher-preview .card-body:hover h3::before, .vorwaertsmacher-preview .card-body:focus h3::before {
  -webkit-text-stroke-color: var(--color_four);
}
.vorwaertsmacher-preview .card-body:hover h3::after, .vorwaertsmacher-preview .card-body:focus h3::after {
  right: 20%;
  opacity: 0.5;
}

/* Nav Tabs + Accordion */
.nav-tabs {
  margin-bottom: 1rem;
  border: 0;
}
.nav-tabs .nav-item::marker {
  content: none;
}
.nav-tabs .nav-item .nav-link {
  border: 0;
  color: var(--color_seven);
  font-weight: bold;
}
.nav-tabs .nav-item .nav-link:hover, .nav-tabs .nav-item .nav-link:focus {
  border-bottom: 4px solid var(--secondary_page_color);
}
.nav-tabs .nav-item .nav-link[aria-selected=true] {
  color: var(--text_color);
  border-bottom: 4px solid var(--secondary_page_color);
}

.accordion-item {
  background-color: var(--background_color);
  border: 0;
  margin: 1.5rem 0;
}
.accordion-item .accordion-header .accordion-button {
  box-shadow: none;
  background-color: var(--background_color);
  font-weight: bold;
  color: var(--text_color);
}
.accordion-item .accordion-header .accordion-button::after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus-lg' viewBox='0 0 16 16'> <path fill-rule='evenodd' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2Z'/> </svg>");
}
.accordion-item .accordion-header .accordion-button:not(.collapsed) {
  color: var(--primary_page_color);
}
.accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash-lg' viewBox='0 0 16 16'> <path fill-rule='evenodd' d='M2 8a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11A.5.5 0 0 1 2 8Z'/> </svg>");
}

/* Checklist Slider */
.hr-checklist {
  color: var(--primary_page_color);
  border: 1px solid var(--primary_page_color);
  opacity: 1;
  height: auto;
  margin: 2rem 0;
}
.hr-checklist::before {
  content: attr(data-text);
  position: absolute;
  margin-top: -1.3rem;
  border-radius: 50%;
  background-color: var(--primary_page_color);
  color: white;
  width: 2.6rem;
  height: 2.6rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 0.2rem;
  outline: 4px solid var(--background_color);
}

.card-outline-text::before, .card-outline-text-small::before {
  content: attr(data-text);
  position: absolute;
  bottom: 2rem;
  right: 3rem;
  color: transparent;
  -webkit-text-stroke-color: inherit;
  -webkit-text-stroke-width: 1.5px;
  opacity: 0.8;
  font-size: 7rem;
  font-weight: bold;
  text-transform: none;
  max-height: 220px;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .card-outline-text::before, .card-outline-text-small::before {
    right: 4rem;
    font-size: 9rem;
  }
}
.card-outline-text-small::before {
  font-size: 5rem;
  bottom: 2rem;
  right: 3rem;
  max-height: 150px;
}
@media (min-width: 1200px) {
  .card-outline-text-small::before {
    right: 4rem;
    bottom: 4rem;
    font-size: 6rem;
  }
}

/* Kontakt Card */
.card-kontakt {
  color: white;
  font-size: 1.2rem;
  padding: 2rem 3rem;
  background-image: url("../png/bg-otto-beere.png");
  background-size: cover;
  background-position: bottom right;
  min-height: 40vh;
}
.card-kontakt a {
  color: white;
}
.card-kontakt a:hover, .card-kontakt a:focus {
  color: var(--color_five);
}

/* CTA Card */
.card-cta {
  color: white;
  min-height: 320px;
  background-size: 50%;
  background-image: url("../png/bg-otto-cyan.png");
  background-position: bottom right;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
  background-color: var(--color_two);
  transition: background-size 0.5s ease;
}
.card-cta:hover, .card-cta:focus {
  background-size: 55%;
}
.card-cta .card-body {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 768px) {
  .card-cta .card-body {
    padding: 3rem;
  }
}

/* Event Card */
.card-event {
  position: relative;
  color: white;
  font-size: 1.2rem;
  padding: 1rem 2rem;
  background-size: 100%;
  background-position: bottom right;
  background-repeat: no-repeat;
  background-color: var(--color_two);
  min-height: 40vh;
  transition: background-size 0.5s ease;
}
.card-event:hover, .card-event:focus {
  background-size: 110%;
}
.card-event a {
  color: white;
  transition: color 0.25s ease;
}
.card-event a:hover .jumbo, .card-event a:hover .jumbo-multiple, .card-event a:focus .jumbo, .card-event a:focus .jumbo-multiple {
  color: var(--color_three);
}
@media (min-width: 992px) {
  .card-event .jumbo-multiple {
    font-size: 8rem;
    line-height: 6rem;
  }
}
@media (min-width: 768px) {
  .card-event {
    padding: 2rem 3rem;
  }
}

/* Event Header */
.hero-event {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom;
}

/* Timeline */
.timeline {
  position: relative;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}
.timeline::after {
  content: "";
  position: absolute;
  width: 2px;
  border-left: var(--secondary_page_color) dashed 2px;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}
@media (max-width: 992px) {
  .timeline::after {
    left: 2rem;
  }
}
@media (max-width: 992px) {
  .timeline {
    padding: 1rem 0.25rem 1rem 3rem;
  }
}
@media (max-width: 787px) {
  .timeline {
    padding: 1rem 0.25rem 1rem 2rem;
  }
}
.timeline .card {
  padding-top: 1rem;
  background-color: var(--background_color);
  background-image: url(../png/ovg-cyan.png);
  background-blend-mode: luminosity;
  background-size: 50%;
  background-repeat: no-repeat;
  transition: background-size 0.5s ease-in-out;
}
.timeline .card:hover, .timeline .card:focus {
  background-size: 60%;
}
.timeline .timeline-item::before {
  content: attr(data-text);
  font-size: 1.2rem;
  text-align: center;
  font-weight: bold;
  color: var(--secondary_page_color);
  background-color: var(--background_color);
  position: absolute;
  padding: 0.5rem;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  z-index: 99;
}
.timeline .timeline-item::after {
  content: "";
  position: absolute;
  top: 2.3rem;
  width: 20%;
  border-bottom: var(--background_color) solid 4px;
}
.timeline .timeline-item.left {
  margin-bottom: 10vh;
}
@media (max-width: 992px) {
  .timeline .timeline-item.left {
    margin-bottom: 0;
    margin-top: 2rem;
    margin-left: 1rem;
  }
}
.timeline .timeline-item.left::before {
  left: 119%;
}
@media (max-width: 992px) {
  .timeline .timeline-item.left::before {
    left: initial;
    right: 103%;
  }
}
.timeline .timeline-item.left::after {
  left: 100%;
}
@media (max-width: 992px) {
  .timeline .timeline-item.left::after {
    width: 2rem;
    left: initial;
    right: 100%;
  }
}
.timeline .timeline-item.right {
  margin-top: 10vh;
}
@media (max-width: 992px) {
  .timeline .timeline-item.right {
    margin-top: 2rem;
    margin-left: 1rem;
  }
}
.timeline .timeline-item.right::before {
  right: 119%;
}
@media (max-width: 992px) {
  .timeline .timeline-item.right::before {
    left: initial;
    right: 103%;
  }
}
.timeline .timeline-item.right::after {
  right: 100%;
}
@media (max-width: 992px) {
  .timeline .timeline-item.right::after {
    width: 2rem;
  }
}
.timeline .timeline-item.bg-right-top {
  background-position-x: 150%;
  background-position-y: -6rem;
  padding-right: 2rem;
}
@media (min-width: 768px) {
  .timeline .timeline-item.bg-right-top {
    padding-right: 6rem;
  }
}
.timeline .timeline-item.bg-left-top {
  background-position-x: -50%;
  background-position-y: -6rem;
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .timeline .timeline-item.bg-left-top {
    padding-left: 6rem;
  }
}
.timeline .timeline-item.bg-right-bottom {
  background-position-x: 150%;
  background-position-y: 6rem;
  padding-right: 2rem;
}
@media (min-width: 768px) {
  .timeline .timeline-item.bg-right-bottom {
    padding-right: 6rem;
  }
}
.timeline .timeline-item.bg-left-bottom {
  background-position-x: -50%;
  background-position-y: 6rem;
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .timeline .timeline-item.bg-left-bottom {
    padding-left: 6rem;
  }
}

/***********
 6. Fonts
***********/
/* barlow-regular - latin */
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/barlow-v12-latin-regular.eot"); /* IE9 Compat Modes */
  src: local(""), url("../fonts/barlow-v12-latin-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/barlow-v12-latin-regular.woff2") format("woff2"), url("../fonts/barlow-v12-latin-regular.woff") format("woff"), url("../fonts/barlow-v12-latin-regular.ttf") format("truetype"), url("../fonts/barlow-v12-latin-regular.svg#Barlow") format("svg"); /* Legacy iOS */
}
/* barlow-700 - latin */
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/barlow-v12-latin-700.eot"); /* IE9 Compat Modes */
  src: local(""), url("../fonts/barlow-v12-latin-700.eot?#iefix") format("embedded-opentype"), url("../fonts/barlow-v12-latin-700.woff2") format("woff2"), url("../fonts/barlow-v12-latin-700.woff") format("woff"), url("../fonts/barlow-v12-latin-700.ttf") format("truetype"), url("../fonts/barlow-v12-latin-700.svg#Barlow") format("svg"); /* Legacy iOS */
}