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

:root {
  --primary-color: #224E98;
  --text-color: #0A1621;
  --white: #ffffff;
  --grey: #F4F5F7;
  color-scheme: only light;
}

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

html {
    scroll-behavior: smooth;
}

body {
  font-family: "Outfit", serif;
  position: relative;
  width: 100%;
  height: 100%;
  color: var(--text-color);
  font-size: 18px;
  font-weight: 400;
}

@media (max-width: 991px) {
body {
  font-size: 17px;
}
}

/*--------------------------------------------------------------
# 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: -127px;
    padding-top: 127px;
}

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

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

.hero {
    width: 100%;
    height: 100vh;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.3))), url(../dmxDaten/backgrounds/bg-home-3.jpg);
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../dmxDaten/backgrounds/bg-home-3.jpg);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.hero.hero-ueber-uns {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.4))), url(../dmxDaten/backgrounds/bg-ueber-uns.jpg);
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../dmxDaten/backgrounds/bg-ueber-uns.jpg);
}

@media (min-width: 992px) and (max-height: 620px) {
.hero {
    height: 620px;
    background-attachment: scroll;
}
}

@media (max-width: 991px) {
.hero {
    margin-top: 93px;
    height: 100%;
    aspect-ratio: 3 / 2;
    background-attachment: scroll;
    min-height: 300px;
}
}

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

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

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

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

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

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

a.link-white:focus, a.link-white:hover {
  color: var(--white);
  opacity: 0.8;
  text-decoration: none;
}

h1 {
  font-size: 64px;
  font-weight: 300;
}

h2 {
  font-size: 48px;
  font-weight: 500;
}

h3 {
  font-size: 32px;
  font-weight: 500;
}

h4 {
  font-size: 24px;
  font-weight: 500;
}

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

strong,.strong {
  font-weight: 550!important;
}

.lead {
  font-weight: 350;
  font-size: 22px;
}

@media (max-width: 991px) {
h1 {
  font-size: 32px;
}
h2 {
  font-size: 26px;
}
h3 {
  font-size: 22px;
}
h4 {
  font-size: 20px;
}
.lead {
    font-size: 20px!important;
}
}

ul.auflistung {
    -webkit-padding-start: 22px;
    padding-inline-start: 22px;
}

ul.auflistung li {
    list-style-type: '― ';
    padding-left: 10px;
    margin-bottom: 2px;
}

.icon-right::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url(../dmxDaten/icons/arrow-right-blue.png);
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 10px;
    margin-top: -4px;
    vertical-align: middle;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.icon-right:hover::after {
    background-image: url(../dmxDaten/icons/arrow-right-black.png);
}

.icon-down::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url(../dmxDaten/icons/arrow-down-blue.png);
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 10px;
    margin-top: -4px;
    vertical-align: middle;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.icon-down:hover::after {
    background-image: url(../dmxDaten/icons/arrow-down-black.png);
}


    /* Dropdowns */

    .faq-hr {
      width: 25%;
      height: 5px;
      background-color: var(--grey);
      border: none;
      border-radius: 3px;
      margin-left: 0;
    }

    .white-hr {
      width: 100%;
      height: 5px;
      background-color: var(--white);
      border: none;
      border-radius: 3px;
    }

    @media (max-width: 767px) {
    .white-hr {
      width: 25%;
      margin-left: 0;
    }
    }

    .accordion-item-dropdown {
        color: var(--text-color) !important;
        font-size: 26px;
        line-height: 36px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-transition: opacity 0.2s ease-in-out;
        transition: opacity 0.2s ease-in-out;
    }

    .accordion-item-dropdown:before {
        content: '';
        position: relative;
        display: inline-block;
        top: 6px;
        margin-left: 0;
        margin-right: 20px;
        width: 22px;
        height: 22px;
        min-width: 22px;
        background-image: url('../dmxDaten/icons/minus.png');
        background-size: contain;
        background-repeat: no-repeat;
    }

    .accordion-item-dropdown.collapsed:before {
        background-image: url('../dmxDaten/icons/plus.png');
    }

    /* Media Queries */
    @media (max-width: 1199px) {
        a.accordion-item-dropdown {
            font-size: 22px;
            line-height: 34px;
        }
    }


    @media (max-width: 767px) {
        a.accordion-item-dropdown {
            font-size: 18px;
            line-height: 24px;
        }
        .accordion-item-dropdown:before {
            top: 2px;
            width: 18px;
            height: 18px;
            min-width: 18px;
        }
    }

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

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

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

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

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

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

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

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

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

.btn-outline-primary:hover {
  color: var(--white);
  background-color: var(--text-color);
  border-color: var(--text-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: 0;
}

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

.card-footer {
  background-color: inherit;
  border: none;
  padding: 0 1.25rem 1.25rem 1.25rem;
  border-radius: 0!important;
}

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

#navigation {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 997;
  padding-top: 12px;
  padding-bottom: 12px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
}

#navigation.header-scrolled {
  background: var(--white);
}

.navbar-logo {
  width: 180px;
}

#navigation .navbar-logo-standard {
  position: absolute;
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

#navigation.header-scrolled .navbar-logo-standard {
  opacity: 1;
}

#navigation .navbar .nav-link, .nav-item {
  color: var(--white);
  font-size: 18px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

#navigation.header-scrolled .navbar .nav-link, .nav-item {
  color: var(--text-color);
}

#navigation .navbar .nav-link:hover, #navigation .navbar .nav-link:focus {
  font-weight: 550;
  letter-spacing: 0.5px;
}

#navigation .navbar .show > .nav-link,
#navigation .navbar .active > .nav-link,
#navigation .navbar .nav-link.show,
#navigation .navbar .nav-link.active {
  font-weight: 550;
  letter-spacing: 0.5px;
}

@media (max-width: 991px) {
.navbar-logo {
  width: 120px;
}
#navigation .navbar .nav-link, .nav-item {
  color: var(--text-color);
  font-size: 17px;
  text-align: center;
}
#main-menu {
    margin-top: 20px;
    margin-bottom: 6px;
}
#navigation {
  background: var(--white);
  padding-top: 8px;
  padding-bottom: 8px;
}
}

.navbar-toggler {
  color: var(--primary-color);
  border: none;
  padding: 0;
  outline: none!important;
}

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

.collapsed .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");
}

.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='M7 4l19 19m0-19L7 23'/%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
--------------------------------------------------------------*/

.footer {
  background-color: var(--primary-color);
  color: var(--white);
}

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

.footer a:hover {
  opacity: 0.8;
}

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

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

.tox-form__group--stretched .tox-label {
  display: none!important;
}

.tox-form__group {
  margin-bottom: 10px!important;
}