/** General Styles **/
:root {
    --blue-light: #3BA7D0;
    --blue-light-1: #307da7;
    --blue-light-2: #eaf7ff;
    --blue-dark: #203249;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
}

p, ul {
    line-height: 28px;
}

ul {
    list-style-type: square;
}

#layout-content ul li {
    margin-bottom: 5px;
    padding-left: 10px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 26px;
}

h4 {
    font-size: 20px;
}

h1, h2, h3, h4 {
    color: var(--blue-light);
}

.btn-primary {
    background: var(--blue-light);
    border-color: var(--blue-light-2);
}
.btn-primary:hover {
    background: var(--blue-light-1);
    border-color: var(--blue-dark);
}

a {
    color: var(--blue-light);
}

a:hover {
    color: var(--blue-light-1);
    text-decoration: none;
}

.container-fluid {
    max-width: 1280px;
}

/** Navbar Styles **/
.navbar {
    padding: .3rem 1rem;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.4);
    font-weight: bold;
}

.navbar .navbar-brand {
    padding: 0;
}

.navbar .nav-item {
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
}

@media (min-width: 992px) {
    .navbar .nav-item:not(:last-of-type):after {
        position: absolute;
        content: "";
        height: 15px;
        right: 0;
        top: 13px;
        border-right: 1px solid #e2e2e2;
    }
}

.navbar-light .navbar-nav .nav-link {
    color: var(--blue-dark);
    transition: 0.5s;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--blue-light);
    transition: 0.3s;
}

.navbar-light .dropdown-menu {
    border: none;
    background: #f8f9fa !important;
}

.dropdown-item:hover {
    background-color: var(--blue-light);
    color: white;
}
.dropdown-item.active, .dropdown-item:active {
    background-color: var(--blue-light-1);
    color: white;
}

.carousel-custom-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 1;
}

.carousel-custom-content p, .carousel-custom-content h3 {
    text-shadow: 2px 2px 8px #FFFFFF, -2px -2px 8px #FFFFFF, 2px -2px 8px #FFFFFF, -2px 2px 8px #FFFFFF;
}

.carousel-custom-content .container-fluid, .carousel-custom-content .row {
    height: 100%;
}

/** Footer Styles **/
footer {
    background: var(--blue-dark);
    color: white;
}

footer h4 {
    color: var(--blue-light);
    text-transform: uppercase;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 15px;
}

footer ul {
    list-style-type: none;
    padding-left: 0;
    line-height: 26px;
    margin-bottom: 0;
    font-size: 14px;
}

footer a {
    color: #dfdfdf;
}

footer .footer-bottom {
    border-top: 1px solid #3f3f3f;
    font-size: 12px;
    color: gray;
}

footer .img-fluid {
    max-width: 500px;
    width:100%;
}

/** Startseite **/
.news-container {
    border: 2px solid var(--blue-dark);
    padding: 20px;
    background: var(--blue-light-2);
}

.news {
    background: var(--blue-light-2);
}

.news p:last-of-type {
    margin-bottom: 0;
}

/** Leistungen **/
.icon-container {
    display: inline-block;
    max-width: 80px;
    max-height: 80px;
    width: 100%;
    height: 80px;
    margin: auto;
}

.icon-container img {
    max-width: 80px
}

/** Team **/
.team h3 {
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 0;
    color: var(--blue-light-1)
}

.team small {
    display: block;
    font-style: italic;
    margin-bottom: 10px;
}

.team .team-member {
    min-width: 260px;
}

/** Karriere **/
.jobs .card {
    border-color: black;
}
.jobs .card-header {
    background: var(--blue-dark);
}
.jobs .card-header .btn {
    color: white !important;
}
