/*--------------------------------------------------------------
# Variables
--------------------------------------------------------------*/

:root {
  --primary-color: #FFED38;
  --secondary-color: #FC091B;
  --text-color: #091526;
  --white: #ffffff;
  color-scheme: only light;
}

/*--------------------------------------------------------------
# Body
--------------------------------------------------------------*/

html {
    scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  position: relative;
  width: 100%;
  height: 100%;
  color: var(--primary-color);
  background-color: var(--text-color);
  font-size: 19px;
  font-weight: 300;
}

/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/

@media (min-width: 1600px) {
.container {
    max-width: 1420px!important;
}
}

.abstand {
    margin-top: 120px;
    margin-bottom: 120px;
}

.abstandpadding {
    padding-top: 120px;
    padding-bottom: 120px;
}

@media (max-width: 991px) {
.abstandlg {
    margin-bottom: 40px;
}
.abstand {
    margin-top: 80px;
    margin-bottom: 80px;
}
.abstandpadding {
    padding-top: 80px;
    padding-bottom: 80px;
}
}

@media (max-width: 767px) {
.abstandmd {
    margin-bottom: 40px;
}
}

.slidescroller {
    margin-top: -130px;
    padding-top: 130px;
}

@media (max-width: 991px) {
.slidescroller {
    margin-top: -111px;
    padding-top: 111px;
}
}

/*--------------------------------------------------------------
# Backgrounds
--------------------------------------------------------------*/

.hero {
    width: 100%;
    height: 100vh;
    background: url(../dmxDaten/home/background-template.svg) bottom center no-repeat;
    background-attachment: fixed;
    background-size: cover;
    padding-top: 92px;
}

@media (max-width: 991px) {
.hero {
    padding-top: 187px;
    padding-bottom: 100px;
    height: 100%;
    background-attachment: scroll;
}
}

@media (max-height: 620px) {
.hero {
    padding-top: 187px;
    padding-bottom: 100px;
    height: 100%;
    background-attachment: scroll;
}
}

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

/*--------------------------------------------------------------
# Typografie
--------------------------------------------------------------*/

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

a {
  color: var(--primary-color);
}

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

h1 {
  font-size: 50px;
  font-family: 'Bungee', cursive;
}

h2 {
  font-size: 40px;
  font-family: 'Bungee', cursive;
}

h3 {
  font-size: 28px;
  font-family: 'Bungee', cursive;
}

.marked {
  color: var(--secondary-color);  
}

@media (max-width: 767px) {
h1 {
  font-size: 32px;
}
h2 {
  font-size: 26px;
}
h3 {
  font-size: 22px;
}
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/

.btn {
    padding: 0.5rem 1.25rem;
    border-radius: 0.55rem;
}

.btn-main {
  color: var(--primary-color);
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  font-family: 'Bungee', cursive;
}

.btn-main:hover {
  color: var(--primary-color);
  background-color: var(--text-color);
  border-color: var(--text-color);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  color: var(--white);
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-outline-dark {
  color: var(--text-color);
  border-color: var(--text-color);
}

.btn-outline-dark:hover {
  color: var(--white);
  background-color: var(--text-color);
  border-color: var(--text-color);
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

.card {
  border: none;
  border-radius: 10px;
  -webkit-box-shadow: 0px 2px 20px rgba(2, 104, 115, 0.1);
          box-shadow: 0px 2px 20px rgba(2, 104, 115, 0.1);
}

.card-img-top {
  border-radius: 10px 10px 0 0;
}

.accordion .card {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.accordion .card .card-header {
  background-color: var(--white);
}

.accordion .card .card-header .btn-link {
  color: var(--primary-color);
}

.icon-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.icon-box .icon {
    width: 60px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-right: 30px;
}

@media (max-width: 340px) {
.icon-box {
    display: block;
}

.icon-box .icon {
    width: 60px;
    margin-bottom: 20px;
    margin-top: 20px;
}
}

li.page-item {
    list-style-type: none!important;
}

.page-link {
    position: relative;
    display: block;
    padding: 0;
    font-size: 50px;
    margin-left: -1px;
    line-height: 1.25;
    color: var(--primary-color);
    background: none!important;
    border: none;
}

.page-item.disabled .page-link {
    opacity: 37%;
    pointer-events: none;
    cursor: auto;
    background: none;
    border: none;
}

.page-link:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
}

@media (min-width: 992px) {
.borderright {
  border-right: #FC091B 2px solid;
}
.borderleft {
  border-left: #FC091B 2px solid;
}
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/

#navigation {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 997;
  padding-top: 12px;
  padding-bottom: 12px;
  background-color: var(--text-color);
}

#navigation.header-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
}

.navbar {
  background-image: url(../dmxDaten/seo/nav-background.svg);
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.navbar-logo {
  width: 250px;
}

@media (max-width: 991px) {
.navbar-logo {
  width: 180px;
}
}

@media (max-width: 991px) {
#main-menu {
    margin-top: 20px;
    margin-bottom: 6px;
}
#navigation {
  background-color: var(--text-color);
  padding-top: 16px;
  padding-bottom: 16px;
}
}

.nav-link, .nav-item {
  color: var(--primary-color);
  font-size: 19px;
}

.nav-link:hover, .navbar-nav .nav-link:focus {
  color: var(--primary-color);
}

.navbar-nav .show > .nav-link,
.navbar-nav .active > .nav-link,
.navbar-nav .nav-link.show,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.navbar-toggler {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.dropdown-item:hover, .dropdown-item:focus {
  background-color: var(--primary-color);
  color: var(--white);
}

.dropdown-item.active {
  background-color: var(--primary-color);
  color: var(--white);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


/*--------------------------------------------------------------
# Sidenavigation
--------------------------------------------------------------*/

#collapsesidenav {
	list-style-type: none;
  margin: 0;
  padding: 0;
}

#collapsesidenav ul {
	list-style-type: none;
  margin: 0;
  padding: 0;
}

#collapsesidenav .active a {
  color: var(--white);
}

#collapsesidenav a:hover {
  color: var(--white);
}

#collapsesidenav a {
  color: var(--white);
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.subfooter {
  background-image: url(../dmxDaten/seo/footer-background.svg);
  width: 100%;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
.subfooter a {
  color: var(--text-color)!important;
}

/*--------------------------------------------------------------
# Carousel
--------------------------------------------------------------*/

.carousel-inner > .carousel-item {
    height: 400px;
    position: relative;
}

@media (max-width: 768px) {
.carousel-inner > .carousel-item {
    height: 250px;
    position: relative;
}
}

.carousel-inner img {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
}

/*--------------------------------------------------------------
# Cookies
--------------------------------------------------------------*/

.cookiealert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    border-radius: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    -webkit-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
    color: var(--text-color);
    background-color: #FFED38;
    
}

.cookiealert.show {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    -webkit-transition-delay: 1000ms;
            transition-delay: 1000ms;
}

.cookiealert a {
    text-decoration: underline
}

.cookiealert .acceptcookies {
    margin-top: 10px;
    vertical-align: baseline;
}

.disclaimer-footer {
  text-align: right;
}

@media (max-width: 768px) {
.disclaimer-footer {
  text-align: left;
}
}

/*--------------------------------------------------------------
# Tiny MCE
--------------------------------------------------------------*/

.tox-tinymce {
  top: auto!important;
  bottom: 0!important;
  position: fixed!important;
}