@font-face {
    font-family: 'Lato';
    src: url('assets/Lato-Regular.woff2') format('woff2'),
        url('assets/Lato-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: url('assets/Lato-Bold.woff2') format('woff2'),
        url('assets/Lato-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

body {
    margin: 0;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
}

.navbar {
    background-color: #fff;
    color: #00000080;
    display: flex;
    align-items: center;
    padding: 0px 20px;
    max-width: 1030px;
    margin: 0 auto;
    height: 80px; /* Feste Höhe der Navbar */
}

#ibe{
border:0px;

}

.navbar-logo {
    margin-right: 1rem;
    
}

.navbar-logo img {
    width: 185px;
    height: auto;
}

.navbar-nav {
    display: flex;
    align-items: center;
    justify-content: space-around; /* Zentriert die Menüpunkte gleichmäßig */
    flex-grow: 1; /* Nutzt den verfügbaren Platz */
}

.nav-item {
    flex: 1; /* Nutzt den verfügbaren Platz */
    text-align: center; /* Zentriert den Text */
}

.nav-item a {
    display: block;
    padding: 20px 0; /* Feste Höhe, um das Hover-Effekt-Padding auszugleichen */
    text-decoration: none;
    color: #000000;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 300;
    text-transform: uppercase;
    transition: background-color 0.3s, color 0.3s, padding 0.3s, border-radius 0.3s;
}

.nav-item a:hover {
    background-color: #008EBD;
    color: #fff;
    border-radius: 15px;
}

.info-container-rm {
    padding: 15px 10px;
    background-color: #61ca9f;
    text-align: center;
    font-size: 16px;
}

.info-container-rm a {
    color: #fff;
    text-decoration: none;
}

.info-container-rm a:hover {
    text-decoration: underline;
}

.info-content-rm .caret-icon {
    width: 12px;
    height: auto;
    vertical-align: middle;
    margin-left: .5rem;
    margin-bottom: 3px;
    fill: #fff; /* Farbe der caret-icon auf weiß setzen */
    color: #ffffff;
}

.icon {
    width: 24px; /* oder eine andere passende Größe */
    height: auto;
    fill: #008EBD;
}

.nobreak {
    white-space: nowrap;
}

/* Mobile Menu */
.navbar-burger {
    display: none;
    padding: 0.25rem 0.5rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: none;
    border-radius: 0.25rem;
}

.head {
    position: relative;
}

@media (max-width: 992px) {
    .navbar {
        max-width: 100%;
        justify-content: space-between;
    }

    .navbar-nav {
        display: none;
    }

    .nav-item {
        display: block;
        padding: 0.5rem 1rem;
        width: 90%;
    }

    .navbar-burger {
        display: block;
    }

    .navbar-nav.active {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: absolute;
        top: 80px; /* Öffnet das mobile Menü direkt unter dem Header */
        left: 0;
        background-color: #fff;
        width: 100%;
        padding: 10px 0;
        z-index:99;
    }
}

/* Footer */
.footer {
    background-color: #008EBD;
    color: #fff;
    padding: 40px 20px;
}

.footer-content {
    max-width: 1140px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    border-bottom: 1px solid #30a1c7;
    flex-wrap: wrap; /* Ermöglicht das Stapeln auf Mobilgeräten */
}

.footer-logo {
    width: 150px;
    margin-bottom: 20px; /* Abstand unter dem Logo für Mobile */
    text-align: center; /* Zentriert das Logo */
}

.footer-contact {
    display: flex;
    width: 50%; /* Breite auf 50% gesetzt */
    justify-content: space-around; /* Gleichmäßige Verteilung der Elemente */
    gap: 20px;
}

.footer-contact div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-icon {
    width: 1em;
    height: 1em;
    font-size: 22px;
    fill: #008EBD;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Ermöglicht das Stapeln auf Mobilgeräten */
    margin-bottom: 40px;
 
}
.footer-link {
    color: #ffffff;
    text-decoration: none;
}

.footer-column {
    flex: 1;
    padding: 0 10px;
    min-width: 200px; /* Mindestbreite für Spalten auf Mobilgeräten */
}

.footer-column h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 14px;

}

.footer-column ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 400; /* Setze den Text auf fett */
    text-transform: uppercase;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

.footer-column p {
    margin: 5px 0;
    font-size: 16px;
}

.newsletter-button {
    display: block; /* Ändere inline-block zu block, um die gesamte verfügbare Breite zu nutzen */
    width: 80%; /* Setze die Breite auf 80% */
    padding: 10px 20px;
    background-color: #fff;
    color: #008EBD;
    text-decoration: none;
    border-radius: 15px;
    transition: background-color 0.3s, color 0.3s, border 0.3s; /* Füge Übergang für Rahmen hinzu */
    text-align: center; /* Zentriere den Text */
    font-size: 15px;
    margin: 0 auto; /* Zentriere den Button innerhalb des Containers */
    border: 2px solid transparent; /* Transparenter Rahmen standardmäßig */
}

.newsletter-button:hover {
    background-color: #008EBD;
    color: #fff;
    text-decoration: underline;
    border: 2px solid #fff; /* Füge weißen Rahmen beim Hover hinzu */
}

.footer-bottom {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    border-top: 1px solid #30a1c7;
    padding-top: 20px;
    font-size: 14px; /* Setze die Schriftgröße auf 14px */
    flex-wrap: wrap; /* Ermöglicht das Stapeln auf Mobilgeräten */
}

.footer-bottom a {
    text-decoration: none;
    color: #fff;
    font-weight: 300; /* Setze den Text auf fett */
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.footer-phone {
    margin-bottom: 20px; /* Abstand unter der Telefonnummer */
}

/* Mobile Tablet Styles */
@media (max-width: 1024px) {
    .footer-contact {
        width: 70%;
    }

    .newsletter-button {
        display: block; /* Ändere inline-block zu block, um die gesamte verfügbare Breite zu nutzen */
        width: 40%; 
        padding: 10px 20px;
        transition: background-color 0.3s, color 0.3s, border 0.3s; /* Füge Übergang für Rahmen hinzu */
        margin: 0 ; 
    }
}

/* Mobile Styles */
@media (max-width: 600px) {
    .footer-contact {
        width: 100%;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 16px;
    }

    .footer-logo {
        text-align: center; /* Zentriere das Logo auch auf Mobilgeräten */
        width: 100%;
    }

    .footer-column {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-button {
        display: block; /* Ändere inline-block zu block, um die gesamte verfügbare Breite zu nutzen */
        width: 80%; /* Setze die Breite auf 80% */
        padding: 10px 20px;
        text-align: center; /* Zentriere den Text */
        margin: 0 auto; /* Zentriere den Button innerhalb des Containers */
    }

}
