/* Custom CSS */


/* Color Definitions */
:root {
    --primary-color: #0075be;
    --secondary-color: #009dff;
    --tertiary-color: #f0f0f0;
    --quaternary-color: #262626;
}



/* Body */

.container {
    max-width: 60rem;
    min-width: 10rem;
    background-color: var(--tertiary-color);
}

body {
    padding-top: 70px; /* Adjust based on the height of your navbar */
}

.body-row {
    padding-left: 1.5rem;
    padding-right:1.5rem;
}

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

a.footer-link, a.footer-link:visited, a.footer-link:hover, a.footer-link:active {
    color: var(--tertiary-color);
    text-decoration: none;
}

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

h1 {
    font-size: 1.5em;
    font-weight: 350;
    padding-top: 1.4rem;
    margin-bottom: 1rem;
    text-align: center;
    text-transform: uppercase;
}

h1.datenschutz {
    font-size: 1.8em;
    font-weight: 700;
}

h2 {
    font-size: 1.3em;
    font-weight: 350;
    margin-bottom: 1rem;
    text-align: center;
}

h2.datenschutz {
    font-size: 1.7em;
    font-weight: 600;
}

h3 {
    font-size: 1.2em;
    font-weight: 350;
    margin-bottom: 1rem;
    text-align: center;
}

h3.datenschutz {
    font-size: 1.4em;
    font-weight: 500;
}

h4 {
    font-size: 1.2em;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 1rem;
    text-align: center;
}




.body-text {
    font-size: 1.1em;
    font-weight: 300;
    margin-bottom: 1rem;
    text-align: justify;
    hyphens: auto;
}

.card-body {
    background-color: var(--tertiary-color);
}


li{
    font-size: 1.1em;
    font-weight: 300;
    margin-left: 1.5em;
    hyphens: auto;
}


.logo-canvas-company {
    background-color: var(--primary-color);
}

.logo-img-company, .logo-img-company-disy {
    max-width: 14rem;
    background-color: white;
    padding: 1rem;
}

.logo-img-company-disy {
    max-width: 10rem;
    min-width: 8rem;
}



/* Navbar */

.fixed-top { /* override bootstrap properties */
    max-width: 60rem;
    min-width: 10rem;
}

.custom-navbar {
    background-color: var(--primary-color);
    border-bottom: 1px solid #e5e5e5;
    min-height: 5rem;
    padding: 0;
}


.nav-link{
    font-size: 1.2em;
    font-weight: 350;
    color: var(--tertiary-color);
}

.navbar-brand{
    font-size: 1.7em;
    font-weight: 300;
    color: var(--tertiary-color);

}


/* Footer */
.footer {
    background-color: var(--primary-color);
    border-top: 1px solid #e5e5e5;
    padding-top: 1rem;
    padding-bottom: 1rem;
    min-height: 3rem;
}



