html {
    scroll-behavior: smooth;
}

body {
    font-family: Open Sans, sans-serif;
    hyphens: auto;
    background-color: #F5FBFC;
}

ul.no-item-marker {
    list-style-type: none;
}

/*
////////////////////////////
SCREEN 3
////////////////////////////
*/
@media (min-width: 1001px) {

    .navbar_mobile {
        display: none;
    }

    .carousel-caption h5 {
        font-size: 3.6em;
    }

    .content_box_company {
        flex-direction: row;
    }

    .c_box1 {
        width: 40%;
        display: flex;
        padding-left: 5%;
        padding-right: 5%;
    }

    .c_box2 {
        width: 60%;
        padding-left: 5%;
        padding-right: 5%;
    }

    .company_logo {
        max-width: 400px !important;
        min-width: 200px;
    }

    .content_box_team {
        flex-direction: row;
    }

    .card-deck {
        margin-left: 50px;
    }

    .t_box1 {
        width: 30%;
        padding: 5%;
    }

    .content_box_contact {
        flex-direction: column;
        align-items: center;
    }

    .contact_wrap {
        flex-direction: row;
    }

    .co_box2 {
        margin-left: 50px;
        padding-left: 50px;
        border-style: solid;
        border-width: 1px;
        border-right: 0;
        border-top: 0;
        border-bottom: 0;
    }
}


/*
/////////////////////////////
SCREEN 2
/////////////////////////////
*/
@media (min-width: 466px) and (max-width: 1000px) {

    .navbar-desktop {
        display: none;
    }

    .carousel-caption h5 {
        font-size: 2.6em;
    }

    .content_box_company {
        flex-direction: column;
    }

    .c_box1 {
        display: none;
        /*
        width: 100%;
        display: flex;
        padding-left: 0%;
        padding-right: 0%;
        padding-bottom: 40px;
        margin-left:-50px;*/
    }

    .c_box2 {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .company_logo {
        max-width: 300px !important;
        min-width: 100px;
        padding-top: 30px;
    }

    .card-deck {
        justify-content: center;
    }

    .t_box1 {
        width: 100%;
    }

    .content_box_team {
        flex-direction: column;
    }

    .content_box_contact {
        flex-direction: column;
    }

    .contact_wrap {
        flex-direction: column;
    }

    .co_box2 {
        padding-top: 30px;
        margin-top: 30px;
        border-style: solid;
        border-width: 1px;
        border-right: 0;
        border-bottom: 0;
        border-left: 0;
    }

}

/*
////////////////////////////
SCREEN 1
////////////////////////////
*/
@media (max-width: 465px) {

    .navbar-desktop {
        display: none;
    }

    .carousel-caption h5 {
        font-size: 1.6em;
    }

    .content_box_company {
        flex-direction: column;
    }


    .c_box1 {
        display: none;
    }

    .c_box2 {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .company_logo {
        max-width: 300px !important;
        min-width: 100px;
        padding-top: 30px;
    }

    .content_box_team {
        flex-direction: column;
    }

    .t_box1 {
        width: 100%;
    }

    .card-deck {
        justify-content: center;
        align-items: center;
    }

    .content_box_contact {
        flex-direction: column;
    }

    .contact_wrap {
        flex-direction: column;
    }

    .co_box2 {
        margin-top: 30px;
        padding-top: 30px;
        border-style: solid;
        border-width: 1px;
        border-right: 0;
        border-bottom: 0;
        border-left: 0;
    }

}


/*NAVIGATIONS*/
.navbar-desktop {
    background-color: #FFFFFF;
    position: fixed;
    padding: 0;
}

.navbar_mobile {
    background-color: #FFFFFF;
}

.navbar-desktop .nav-link:hover {
    color: #1A386E;
    border-bottom: solid 2px;
    border-color: #1A386E;
}


/*carousel */

.carousel {
    height: auto;
}

.carousel-item img {
    max-height: 550px !important;
    object-fit: cover;
    animation-name: img_fade;
    animation-duration: 4s;
}

.carousel-caption {
    right: 0;
    left: 0;
    bottom: 10%;
    text-align: left;
    padding-right: 30px;
}

.carousel-caption h5 {
    padding-left: 2em;
    padding-right: 2em;
    text-shadow: 3px 3px 3px #000;
    animation-name: headline_fade;
    animation-duration: 4s;
}

/*carousel animations*/
@keyframes headline_fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 100%;
    }
}

@keyframes img_fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 100%;
    }
}


/*HEADLINES*/

.headline_blue {
    font-weight: bold;
    color: #1A386E;
    padding-bottom: 1em;
    padding-top: 1em;
}

.headline_white {
    font-weight: bold;
    color: white;
    padding-bottom: 1em;
    padding-top: 1em;
}

/*COMPANY BOX*/

.content_box_company {
    background-color: #1A386E;
    display: flex;
    color: white;
    justify-content: center;
    align-items: center;
    padding: 5% 8%;
}

/* TEAM BOX */

.content_box_team {
    background-color: white;
    display: flex;
    justify-content: center;
    padding: 5% 8% 2%;
}

.card-deck {
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
}

.card-deck .card {
    flex: none;
    margin-bottom: 50px;
}

.card {
    background-color: #1A386E;
    border-style: none;
    color: white;
    max-width: 250px;
    min-width: 250px;
    box-shadow: 6px 7px 4px -2px rgba(0, 0, 0, 0.34);
}

.border-success {
    border-color: white !important;
}

.card-footer {
    font-size: 0.75rem;
    padding-bottom: 50px;
}

.card-footer a {
    color: white;
}

.card-title {
    font-size: 1.00rem;
}

.card p {
    font-size: 0.75rem;
}

/* CONTACT BOX */

.content_box_contact {
    background-color: #1A386E;
    display: flex;
    color: white;
    padding: 7% 8% 5%;
}

.contact_wrap {
    display: flex;
}

.co_box1 a {
    color: white;
}

.co_box1 .headline_white {
    padding-top: 0;
    padding-bottom: 0;
}

.contact_item {
    display: flex;
    flex-direction: row;
    align-items: baseline;
}

.fa {
    padding-right: 10px;
    fill: white;
}

/*/////////////////////////////

STICKY UP

//////////////////////////////
*/

.sticky_up {
    z-index: 2;
    background-color: #1A386E;
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 80px;
    min-height: 80px;
    border-radius: 50px;
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: white solid 3px;
    opacity: 70%;
    font-size: 4rem;
}

.fa-arrow-circle-up {
    padding: 0;
    color: white;
    opacity: 70%;
}

.sticky_up:hover {
    opacity: 100%;
}

.btn-primary:hover {
    background-color: #1A386E;
    border-color: white;
}


/*/////////////////////////////

IMPRESSUM

//////////////////////////////
*/

.Impressum_headline {
    padding: 30px 8%;
    background-color: #1A386E;
}

.Impressum_text_box {
    background-color: white;
    display: flex;
    padding: 30px 8%;
    flex-direction: column;
}

.Impressum_text_box th {
    padding-right: 15px;
    padding-top: 10px;
}

.DPD_text_box {
    background-color: white;
    display: flex;
    padding: 30px 8%;
    flex-direction: column;
}

h5 {
    padding-top: 20px;
    font-weight: bold;
}

h6 {
    padding-top: 20px;
    font-weight: bold;
}

ul {
    padding-top: 20px;
    padding-bottom: 20px;
}

/*
/////////////////////////////

FOOTER

/////////////////////////////
*/

.footer_main {
    background-color: black;
    display: flex;
    padding: 0;
    min-width: 100%;
    justify-content: flex-start;
    flex-direction: column;
    flex-wrap: wrap;
}

.footer_link {
    color: white;
}

.footer_link:hover {
    color: white;
}

.footer_link2 {
    color: white;
    padding-right: 30px;
}

.footer_link2:hover {
    color: white;
}

.footer_sep {
    display: flex;
    width: 100%;
    height: 1px;
    background-color: white;
}

.footer_row_1 {
    display: flex;
    width: 100%;
    flex-direction: column;
}

.footer_row_2 {
    display: flex;
    flex-direction: row;
    color: white;
    flex-wrap: wrap;
}

.footer_row_3 {
    margin: 40px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.footer_column {
    display: flex;
    flex-direction: column;
    margin: 20px 40px 40px;
    min-width: 150px;
}

.footer_headline {
    color: white;
    padding: 30px;
}

.footer_category_headline {
    font-weight: bold;
}

/* Sticky Button*/
.sticky_container {
    z-index: 2;
    position: fixed;
    bottom: 30px;
}


