/* COLORS */

:root {
    --color-text-primary: rgba(77, 77, 77, 1);
    --color-light: rgba(255, 255, 255, 1);
    --color-white: rgba(255, 255, 255, 1);
    --color-dark: rgba(0, 0, 0, 1);
    --color-gray-dark: rgba(89, 89, 89, 1);
    --color-gray-light: rgba(203, 203, 203, 1);
    --color-yellow-dark: rgba(250, 187, 0);
    --color-yellow-transparent: rgba(250, 187, 0, .06);
    --color-orange-dark: rgba(236, 116, 5, 1);
    --color-orange-transparent: rgba(236, 116, 5, .06);
    --color-petrol-dark: rgba(152, 197, 209, 1);
    --color-petrol-light: rgba(218, 232, 237, 1);
    --color-petrol-transparent: rgba(152, 197, 209, .06);
    --color-lilac-dark: rgba(104, 58, 139, 1);
    --color-lilac-transparent: rgba(104, 58, 139, .06);

    --color-red: rgba(255, 0, 0, 1);

    --swiper-navigation-color: #DEDCDD;
    --column-gap: 40px;
}


/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
      list-style-type: none;
}

html {
    height: 100%;
}

body {
    font-family: 'Lato', sans-serif;
    color: #797979!important;
    background-color: #f8f9fa;
    min-height: 100vh; /* Statt height: 100% */
}


body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

h1 {
    color: black;
    font-weight: 900;
    line-height: 1.1;
    padding-bottom: 40px;
    padding-top: 40px;
}

h2 {
    color: black;
    font-weight: 700;
    line-height: 1;
    padding-bottom: 40px;
    padding-top: 40px;
}
h3 {
    color: black;
    font-weight: 100;
    line-height: 1.1;
}
h4 {
    color: black;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 2px; 
    border-bottom: 1px dotted #000; 
    font-size: 14px; 
    padding-top: 20px;
}
h5 {
    color: black;
    font-weight: 700;
    line-height: 1.5;
}
h6 {
    color: black;
    font-weight: 700;
    line-height: 1.5;
}

strong {
    color: black;
    font-weight: 700; 
}

/* Main Content Section */
.layout {
    background-color: #FFFFFF;
    padding: 20px;
}

/* Stile für den Footer */
footer {
    margin-top: auto; /* Drückt den Footer nach unten */
    padding-top: 20px !important;
    width: 100%;
    color: #fff;
    background-color: #000; /* Hintergrundfarbe anpassen */
    z-index: 100; /* Optional: Z-Index festlegen, um sicherzustellen, dass der Footer über anderen Inhalten liegt */
}
footer hr {
    margin-top: 1px !important;
    margin-bottom: 1px !important;
}
footer h3 {
    margin-bottom:0;
}
/* Stile für Links im Footer */
footer a,
footer a:active {
    color: grey; /* Schriftfarbe auf Weiß setzen */
    text-decoration: none; /* Textdekoration (Unterstrich) entfernen */
}

footer a:hover{
    color: grey; /* Schriftfarbe auf Weiß setzen */
    text-decoration: none; /* Textdekoration (Unterstrich) entfernen */
}

footer p {
    color:rgba(122,122,122,1);
}

footer .col-sm-12 h3 {
  color: white;
}

.blocks ul li p {
    margin-bottom: 0!important;
} 
 
.blocks ul li {
  position: relative;
  padding-left: 20px; /* Abstand zwischen Text und Listenzeichen anpassen */
}

.blocks ul li:before {
  content: "\25B6"; /* Unicode-Zeichen für ein Dreieck */
  position: absolute;
  left: 0;
  font-size: 0.6rem;
    top: 50%; /* Verschiebe das Zeichen um 50% nach unten */
  transform: translateY(-50%); /* Zentriere das Zeichen vertikal */
}

/* Module Download */
.block.module.download {
  margin-top: 20px;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  background-color: var(--color-gray-light);
  color: var(--color-white);
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.block.module.download:hover {
  background-color: var(--color-gray-dark);
}

.block.module.download a {
  color: var(--color-white);
  text-decoration: none;
}

.block.module.download a:hover {
  text-decoration: underline;
}

.block.module.download::before {
  content: "\2193"; /* Pfeil nach unten als Unicode-Zeichen */
  margin-right: 5px;
}




/* Module ZITAT */
blockquote {
  background-color: var(--color-petrol-transparent);
  border-left: 4px solid var(--color-petrol-dark);
  padding: 20px;
  margin: 0;
}
blockquote  {
  font-size: 2rem;
  margin: 0;
}
.blockquote {
  margin-top: 2px;
  font-style: italic;
  font-size: 1rem;
  color: var(--color-petrol-dark);
}

/* MODULE.BUTTON */
.button a,
.button .btn {
    display: inline-block;
    border:  2px solid var(--color-gray-dark);
    background-color: var(--color-white);
    color: var(--color-dark);
    border-radius: 4px;
    padding: 10px 20px;
    text-decoration: none;
    transition: background-color .3s, color .3s;
    font-weight: 700;
}
.button a:hover,
.button .btn:hover {
    background-color: var(--color-gray-dark);
    color: var(--color-white);
    text-decoration: none;
}
.button {
    padding-top: 5px;
    padding-bottom: 15px;
    display: inline-block;
}
.button .icon {
    margin-right: 8px;
    display: inline-block;
}

/* MODULE.AKKORDEON */

.module.akkordeon {
    margin-bottom: 100px;
}
.module.akkordeon .headline h2 {
    color: var(--color-gray-dark);
}
.module.akkordeon .items {
    border-bottom: 1px solid var(--color-dark);
}
.module.akkordeon .item {
    position: relative;
    min-height: 40px;
    padding: 0 50px 18px 4px;
    border-top: 1px solid var(--color-dark);
}
.module.akkordeon .item .headline {
    font-size: 20px;
    font-weight: 600;
    padding-top: 8px;
}
.module.akkordeon .item .text-more {
    padding-top: 8px;
    font-size: 17.5px;
}
.module.akkordeon .item .more {
    position: absolute;
    top: 3px;
    right: 0;
    width: 40px;
    height: 40px;
    font-size: 26px;
    -webkit-transition: color .3s;
    -moz-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}
.module.akkordeon .item .more:hover {
    color: var(--color-gray-dark);
}
.module.akkordeon .item .more i::before {
    margin: 0;
    transition: transform .3s;
}
.module.akkordeon .item .more.active i::before {
    transform: rotate(90deg);
}


/* Responsive Grid */
@media (max-width: 768px) {
    /* Add responsive styles here */
.footer {
  position: relative; /* Footer wird relativ zur normalen Flusspositioniert */
  margin-top: 20px; /* Hier können Sie den Abstand nach unten anpassen */
}

}

/* Additional Custom Styles */
/* Add more custom styles as needed */
