/*hier kommt das custom css rein*/
:root {
    --comdirect-dark-blue: #06181f;
    --comdirect-medium-blue: #27343a;
    --comdirect-light-blue: #3f4b50;
    --comdirect-yellow: #fff500;
    --text-color-light: #ffffff;
    --text-color-gray: #d0d0d0;
    --link-hover-color: #fff500;

    --spacing-xxs: 2px;
    --spacing-xs: 5px;
    --spacing-sm: 8px;
    --spacing-md: 12px;
    --spacing-lg: 18px;
    --spacing-xl: 25px;
    --spacing-xxl: 40px;
    --spacing-xxxl: 60px;
}

@font-face {
  font-family: 'Gotham';
  src: url('/web-files/Gotham400book') format('woff');

}
@font-face {
  font-family: 'Gotham500';
  src: url('/Gotham500medium');
}
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
a,
table,
thead,
tbody,
th,
tr,
td,
span,
div,
button,
input,
article,
label
{
font-family:'Gotham' , sans-serif !important;
color:#0B1E25  !important;
}
 

body {
    margin: 0;
  /*  font-family: 'Gotham500';*/
    line-height: 1.5;
    background-color: #f8f8f8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.footer {
    background-color: var(--comdirect-dark-blue);
    color: var(--text-color-light);
    position: relative;
    overflow: hidden;
    padding-bottom: var(--spacing-sm); /* Reduzierter Abstand unten */
    max-height: 450px; /* Maximale Höhe des Footers verringert */
}

.footer * {
    color: var(--text-color-light) !important; /* Erzwingt weiße Schrift für alle Elemente im Footer */
}

.footer__container {
    margin: 0 auto;
    max-width: 63.75rem;
    padding: var(--spacing-sm) 24px 0 24px; /* Weniger Abstand oben und seitlich */
    position: relative;
    z-index: 78;
    box-sizing: border-box;
    height: 100%;
}

.flex-layout {
    display: flex;
    flex-wrap: wrap;
    margin-left: -4px; /* Weniger negativer Rand */
    margin-right: -4px;
}

.flex-layout > div {
    padding-left: 4px; /* Weniger Innenabstand */
    padding-right: 4px;
    box-sizing: border-box;
}

.flex-layout__basis--medium--100 {
    flex: 0 0 auto;
    width: 33.333333%;
}

.flex-layout__basis--small--100 {
    width: 100%;
}

.outer-spacing--6xlarge-top-md {
    margin-top: var(--spacing-xxl);
}

.outer-spacing--small-bottom-md {
    margin-bottom: var(--spacing-md);
}

.outer-spacing--small-top-md {
    margin-top: var(--spacing-md);
}

@media (max-width: 767.98px) {
    .flex-layout__basis--medium--100,
    .flex-layout__basis--small--100 {
        width: 100%;
    }

    .outer-spacing--6xlarge-top-sm {
        margin-top: var(--spacing-lg);
    }
    .outer-spacing--small-bottom-sm {
        margin-bottom: var(--spacing-md);
    }
    .outer-spacing--small-top-sm {
        margin-top: var(--spacing-md);
    }

    .footer__container .flex-layout > div {
        text-align: center;
        margin-bottom: var(--spacing-lg);
    }
    .footer__container .flex-layout > div:last-of-type {
        margin-bottom: 0;
    }
    .footer__logo {
        align-items: center;
    }
    .social-icon-bar {
        justify-content: center;
    }
}

@media (min-width: 768px) {
    .flex-layout__basis--medium--100 {
        width: 33.333333%;
        margin-bottom: 0;
    }
    .flex-layout__basis--small--100 {
        width: auto;
    }
    .text-align--center-md { text-align: center; }
    .text-align--center-sm { text-align: center; }
    .text-align--center { text-align: center; }
}

.footer__logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    color: var(--text-color-light);
    margin-bottom: var(--spacing-md); /* Abstand unter dem Logo reduziert */
}

.comdirect-logo-svg {
    width: 200px;
    height: 84px;
    margin-bottom: var(--spacing-xxs);
}

.comdirect-slogan {
    font-size: 11px; /* Slogan-Schriftgröße reduziert */
    line-height: 1.1;
    color: var(--text-color-gray);
    margin-top: 0;
}

.footer-link-list {
    padding-left: 0;
    margin-bottom: 0;
}

.footer-link-list li {
    margin-bottom: var(--spacing-xs); /* Abstand zwischen Links reduziert */
}

.footer__link {
    color: var(--text-color-light) !important;
    text-decoration: none;
    font-size: 0.8rem; /* Schriftgröße der Links leicht reduziert */
    transition: color 0.2s ease-in-out;
    display: block;
    margin-bottom: var(--spacing-xs); /* Abstand zwischen Links reduziert */
}

.footer__link:last-of-type {
    margin-bottom: 0;
}

.footer__copyright {
    font-size: 0.75rem; /* Copyright-Text kleiner gemacht */
    display: block;
    margin-top: var(--spacing-sm); /* Abstand über dem Copyright-Text reduziert */
}

.social-icon-bar {
    display: flex;
    gap: var(--spacing-md); /* Abstand zwischen Social Icons reduziert */
    justify-content: center;
    align-items: center;
    margin-top: var(--spacing-md); /* Abstand über den Icons reduziert */
}

@media (min-width: 768px) {
    .social-icon-bar {
        justify-content: flex-end;
        margin-top: 0;
    }
}

.icon {
    display: flex;
    width: 20px;
    height: 20px;
    color: var(--text-color-light);
    transition: color 0.2s ease-in-out;
}

.icon:hover {
    color: var(--link-hover-color);
}

.icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.footer__shape {
    position: absolute;
    top: 0;
    left: 50%;
    height: 80%; /* Höhe der Form reduziert */
    min-width: 100rem; /* Breite der Form reduziert */
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
}

.footer__shape svg {
    width: 100%;
    height: 100%;
    display: block;
}
.contact-section h4 {
  margin: 0;
  padding-left: 10px;
  flex: 1;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  font-weight: normal;
}

.contact-section button {
  margin-left: 15px;
  padding: 8px 16px;
  border: none;
  background-color: transparent;
  color: black;
  cursor: pointer;
  font-weight: 600;
  border-radius: 0px;
  transition: background-color 0.3s ease;
}

.contact-section button:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.footer {
  position: relative;
  padding-top: 80px;
}

.button1 {
  font-weight: normal !important;
  color:#0b1e25 !important;
  background-color:#fff500 !important;
  border-radius: 32px !important;
}
.button1:hover{
  color:#0b1e25 !important;
  background-color:white !important;
  border:black 1px solid !important;
}

.footer-links a {
  text-decoration: none;
  color: white;
}
.footer-link:hover {
    color: white !important;
}
.footer-links a:hover {
  text-decoration: underline;
  color: white !important;
}

.social-media a svg {
  fill: white;
  transition: fill 0.3s;
}
.social-media a  {
  color: white;
}
.social-media a:hover  {
  color: white !important;
}
.social-media a:hover svg {
  fill: white;
}
a:hover{
  color:black !important;
  font-weight: bold !important;
  text-decoration: none !important;
}
#aboutSection{

  color:white;
}
.description {
  color: white !important;
}
.nav-link.headerSignInButton{
  color:white !important;
}
.navbar-dark .navbar-nav > li > a, .navbar-dark .navbar-nav > li.dropdown > a {
  color: white !important;
  font-family: 'Gotham500';
  font-weight: 400;
  font-size: 16px;
 }
  .static-top.navbar .menu-bar > .navbar-nav > li > a {
  font-family: 'Gotham500';
  font-weight: normal;
  font-size: 16px !important;
  border: 1px solid transparent; 
}  
  #pills-tabContent .ck-content p {
  font-size: 16px !important;
}