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

:root {
  --primary-color: #FDD722;
  --secondary-color: #BFBAB7;
  --text-color: #262523;
  --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
  font-family: 'Saira Condensed', sans-serif;
  position: relative;
  width: 100%;
  height: 100%;
  color: var(--text-color);
  font-size: 20px;
  font-weight: 400;
}

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

@media (min-width: 1600px) {
.container {
    max-width: 1420px!important;
}
.col-xxl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.666667%;
            flex: 0 0 41.666667%;
    max-width: 41.666667%;
}
}

.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: -128px;
    padding-top: 128px;
}

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

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

.hero {
    width: 100%;
    height: calc(100vh - 128px);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-home {
    background-image: url(../dmxDaten/bg/hero-home.jpg);
}

.hero-dienstleistungen {
    background-image: url(../dmxDaten/bg/hero-dienstleistungen.jpg);
}

.hero-ueber-uns {
    background-image: url(../dmxDaten/bg/hero-ueber-uns.jpg);
}

.hero a:focus, .hero a:hover {
  color: var(--white);
}

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

@media (max-width: 991px) {
.hero {
    padding-top: 80px;
    padding-bottom: 80px;
    height: 100%;
    background: none;
    background-color: var(--text-color);
}
.hero-home {
    background: none;
    background-color: var(--text-color);
}
.hero-dienstleistungen {
    background: none;
    background-color: var(--text-color);
}
.hero-ueber-uns {
    background: none;
    background-color: var(--text-color);
}
}

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

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

.bg-geschichte {
    width: 100%;
    height: 100%;
    background: url(../dmxDaten/ueber-uns/bg-geschichte.png) center center no-repeat;
    background-size: cover;
}

.bg-team-geschichte {
    width: 100%;
    height: 100%;
    background: url(../dmxDaten/home/home-content-03.jpg) center center no-repeat;
    background-size: cover;
}

@media (max-width: 767px) {
.bg-team-geschichte .abstandmd {
  margin-bottom: 160px;
}
.bg-team-geschichte {
    width: 100%;
    height: 100%;
    background: url(../dmxDaten/home/home-content-03-sm.jpg) center center no-repeat;
    background-size: cover;
}
.bg-geschichte {
    width: 100%;
    height: 100%;
    background: url(../dmxDaten/ueber-uns/bg-geschichte-sm.png) center center no-repeat;
    background-size: cover;
}
}

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

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

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

a.link-reversed {
  color: var(--text-color);
}

a.link-reversed:focus, a.link-reversed:hover {
  color: var(--primary-color);
}

a.link-reversed-white {
  color: var(--white);
}

a.link-reversed-white:focus, a.link-reversed-white:hover {
  color: var(--primary-color);
}

h1 {
  font-size: 46px;
  font-weight: 700;
}

h2 {
  font-size: 40px;
  font-weight: 700;
}

h3 {
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
}

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

@media (max-width: 1200px) {
h1 {
  font-size: 40px;
}
h2 {
  font-size: 36px;
}
}

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

a.link-arrow {
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.link-arrow::after {
  content: "";
  display: inline-block;
  width: 60px;
  height: 18px;
  margin-left: 15px;
  background-image: url('../dmxDaten/icons/arrow-image.svg');
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.link-arrow-black {
  color: var(--text-color)!important;
}

.link-arrow-white {
  color: var(--white)!important;
}

.link-arrow-black::after {
  background-image: url('../dmxDaten/icons/arrow-image-black.svg');
}

.link-arrow-white::after {
  background-image: url('../dmxDaten/icons/arrow-image-white.svg');
}

.link-arrow-plus::after {
  background-image: url('../dmxDaten/icons/arrow-image-plus.svg');
  width: 22px;
  height: 22px;
}

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

.btn {
    padding: 0.5rem 1.25rem!important;
    border-radius: 0;
}

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

.btn-primary:hover,
.btn-primary:focus {
  color: var(--primary-color)!important;
  background-color: var(--text-color)!important;
  border-color: var(--text-color)!important;
  -webkit-box-shadow: none!important;
          box-shadow: none!important;
}

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

.usp-icon {
  width: 240px;
}

.link-icons {
  position: relative;
  display: inline-block;
}

.icons {
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  height: 30px;
  width: 30px;
}

.link-icons:hover .icons {
  -webkit-animation: shake 0.7s ease-in-out;
          animation: shake 0.7s ease-in-out;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(-1px);
            transform: translateX(-1px);
  }
  30%, 50%, 70% {
    -webkit-transform: translateX(1px);
            transform: translateX(1px);
  }
}

@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(-1px);
            transform: translateX(-1px);
  }
  30%, 50%, 70% {
    -webkit-transform: translateX(1px);
            transform: translateX(1px);
  }
}


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

#navigation {
  z-index: 997;
  padding-top: 6px;
  padding-bottom: 6px;
  background: var(--white);
}

.navbar-logo {
  height: 90px;
}

.navbar-nav .nav-link, .nav-item {
  color: var(--text-color);
  font-size: 20px;
}

.nav-tel p {
    margin-bottom: 0;
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}
}

@media (max-width: 991px) {
.navbar-logo {
  height: 70px;
}
.navbar-nav .nav-link, .nav-item {
  font-size: 18px;
  text-align: center;
}
#main-menu {
    margin-top: 16px;
    margin-bottom: 16px;
}
.nav-tel p {
    margin-bottom: 16px;
    text-align: center;
}
}

.navbar-nav .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);
}

.notactive .nav-link {
  color: var(--text-color)!important;
}

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

.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(--text-color);
}

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

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


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

.footer {
  color: var(--text-color);
  background: url(../dmxDaten/bg/background-footer.png) center center no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
}

@media (max-width: 991px) {
.footer {
  background: url(../dmxDaten/bg/bg-footer-md.jpg) center center no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
}
.footer .abstandlg {
  margin-bottom: 120px;
}
}

@media (max-width: 767px) {
.footer {
  background: url(../dmxDaten/bg/bg-footer-sm.jpg) center center no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
}
}

@media (max-width: 400px) {
.footer {
  background: url(../dmxDaten/bg/bg-footer-xs.jpg) center center no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
}
}

.footer-logo {
  height: 180px;
}

@media (max-width: 991px) {
.footer-logo {
  height: 100px;
}
}

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

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

.disclaimer-footer a {
  color: var(--text-color)!important;
}

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


        .cookie-consent-banner {
            display: none;
            bottom: 20px;
            left: 20px;
            position: fixed;
            padding: 15px 20px 15px 20px;
            width: 300px;
            text-align: left;
            max-height: 85%;
            overflow-y: auto;
            max-width: calc(100% - 40px);
            z-index: 999997;
            opacity: 1;
            font-size: 14px;
            -webkit-box-shadow: 1px 2px 8px 0 rgba(0, 0, 0, 0.35);
                    box-shadow: 1px 2px 8px 0 rgba(0, 0, 0, 0.35);
            color: var(--text-color);
            background-color: #ffffff;
            -webkit-box-sizing: border-box;
                    box-sizing: border-box;
        }

        .cookie-consent-button {
            border: none;
            padding: 8px 16px;
            text-align: center;
            text-decoration: none;
            display: inline-block;
            font-size: 14px;
            margin: 4px 2px;
            cursor: pointer;
            border-radius: 4px;
        }

        .cookie-consent-options label {
            margin: 0 10px;
            font-size: 14px;
        }

        .cookie-consent-options input {
            margin-right: 5px;
        }

        @media (max-width: 414px) {
            .cookie-consent-banner {
                bottom: 0;
                left: 0;
                width: 100%;
                padding: 15px;
                border-radius: 0;
                max-width: 100%;
                font-size: 12px;
                background-color: #ffffff;
                text-align: center;
            }
        }

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

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