HTML, body {
    font-family: 'PT Sans', serif;
    margin: 0;
    padding: 0;
    border: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
}
main {
    flex: 1;
}

/* Footer */
.image {
    width: 13em;
    height: auto;
    margin: auto auto 2em auto;

}
.footer_line {
    width: 100%;
    height: 11px;
    background: #657B89;
    box-shadow: inset 0px 3px 6px #00000029, 0px 3px 6px #00000029;
    opacity: 1;
    margin-top: 0;
}
footer {
    font-size: 10px;
    background-color: #6C8494;
    text-align: center;
    color: white;
    margin-top: 5%;
}
.contact {
    padding: 2.5% 3%;
    color: #033375;
    font-size: 22px;
    font-family: 'PT Sans', serif;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.footbox{
    display: inline-block;
    width: 30%;
    margin-right: 3%;
    box-sizing: border-box;
    vertical-align: top;


}
.m-contact {
    padding: 0 10px 25px 10px;
    color: #033375;
    font-size: 22px;
    text-align: left;
    margin-left: 50px;
    font-family: 'PT Sans', serif;
}
#contact_txt {
    text-decoration: none;
    margin-bottom: 0;
    font-family: 'PT Sans', serif;



}
.contact_link_b{

    width: 40%;
    margin: auto auto 1em auto;
    border-radius: 21px;
    height: auto;
    vertical-align: middle;
    padding: 2%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid black;

}

/* Navbar Mobile/Desktop */
.desktop-navbar li a,
.mobile-navbar li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #6C8494;
    text-decoration: none;
}

.desktop-navbar li a .counter {
    background-color: #F3C60A;
    position: absolute;
    top: 8px;
    right: 11%;
    height: 24px;
    width: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    border-radius: 50%;
}

.mobile-navbar li a {
    font-size: 150%;
    padding: 0.5em 0;
}

.mobile-navbar li a .counter {
    background-color: #F3C60A;
    position: absolute;
    top: 8px;
    right: 10px;
    height: 24px;
    width: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    border-radius: 50%;
    z-index: 3;
}

.mobile-navbar,
.desktop-navbar {
    font-family: 'PT Sans', serif;
    box-shadow: 0em 0.3125em 0.375em #00000029;
    position: fixed;
    top: 1%; /* Abstand von oben */
    display: flex;
    background: #F6F6F6;
    width: 50%; /* Standardbreite */
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    z-index: 20;
    border-radius: 25px; /* Runden Ecken für die Navbar */
}

.mobile-navbar ul,
.desktop-navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    width: 100%;
}

.mobile-navbar li,
.desktop-navbar li {
    flex: 1; /* Alle Listenelemente gleich groß */
    text-align: center;
    transition: 0.3s;
    padding: 0;
    border-right: 2px solid #e3e3e4;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.desktop-navbar li:last-child,
.mobile-navbar li:last-child {
    border-right: none;
}

.desktop-navbar li:first-child,
.mobile-navbar li:first-child {
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
}

.desktop-navbar li:last-child,
.mobile-navbar li:last-child {
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
}

.mobile-navbar a,
.desktop-navbar a {
    display: block;
    color: #6C8494;
    text-decoration: none;
    font-size: 175%;
    line-height: 3;
}

.mobile-navbar a img,
.desktop-navbar a img {
    height: 2em; /* Anpassung der Höhe der Icons */
    width: auto;
    vertical-align: middle;
}

.mobile-navbar li:hover,
.desktop-navbar li:hover {
    background: #dce5ec;
}

/* Responsive */
@media (min-width: 320px) {
    .mobile-navbar li a {
        padding: 0.5em 0;
    }
    .mobile-navbar,
    .desktop-navbar {
        width: 100%; /* Anpassung der Breite */
    }
    .desktop-navbar {
        display: none;
    }
    .mobile-navbar {
        display: flex;
    }
    .m-contact{
        display: block;
    }
    .contact{
        display: none;
    }
}

@media (min-width: 481px) {
    .mobile-navbar,
    .desktop-navbar {
        width: 75%; /* Anpassung der Breite */
    }
    .desktop-navbar {
        display: none;
    }
    .mobile-navbar {
        display: flex;
    }
    .m-contact{
        display: block;
    }
    .contact{
        display: none;
    }
}

@media (min-width: 681px) {
    .mobile-navbar,
    .desktop-navbar {
        width: 60%; /* Anpassung der Breite */
    }
    .desktop-navbar {
        display: flex;
    }
    .mobile-navbar {
        display: none;
    }
    .m-contact{
        display: block;
    }
    .contact{
        display: none;
    }
}

@media (min-width: 961px) {
    .mobile-navbar,
    .desktop-navbar {
        width: 50%; /* Anpassung der Breite */
    }
    .desktop-navbar {
        display: flex;
    }
    .mobile-navbar {
        display: none;
    }
    .m-contact{
        display: block;
    }
    .contact{
        display: none;
    }
}

@media (min-width: 1025px) {
    .mobile-navbar,
    .desktop-navbar {
        width: 50%; /* Anpassung der Breite */
    }
    .desktop-navbar {
        display: flex;
    }
    .mobile-navbar {
        display: none;
    }
    .m-contact{
        display: none;
    }
    .contact{
        display: block;
    }
}

@media (min-width: 2925px) {
    .mobile-navbar,
    .desktop-navbar {
        width: 50%; /* Anpassung der Breite */
    }
    .desktop-navbar {
        display: flex;
    }
    .mobile-navbar {
        display: none;
    }
    .m-contact{
        display: none;
    }
    .contact{
        display: block;
    }
}
