@font-face {
    font-family: 'Nunito Sans';
    src: url('../../fonts/NunitoSans_10pt-Light.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Nunito Sans-Bold';
    src: url('../../fonts/NunitoSans_10pt-Medium.ttf');
    font-weight: bold;
    font-style: normal;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    font-size: 18px;
    font-family: 'Nunito Sans';
    scroll-behavior: smooth;
}

a {
    color: #B1B900;
    text-decoration: none;
}


p {
    font: normal normal normal 18px/28px Nunito Sans;
}

h1, h2, h3 {
    margin: 1em 0;
    font-family: 'Nunito Sans-Bold';
    color: #2E2E2D;
}

.wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.small-font {
    font-size: 16px;
}

.mail-text-underline {
    text-decoration: underline;
}

/*Header with navigation*/
#header {
    background: #2E2E2D;
    width: 100%;
}

.white {
    color: #ffffff;
}

.navigation-bar {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    color: #ffff;
}

.nav-item {
    display: flex;
    gap: 10px;
    align-items: center;
    position: relative;
}

.nav-item img {
    transition: transform 0.3s ease;
}

.nav-item:hover img {
    transform: scale(1.5); /* Increase the scale factor as needed */
}

.nav-item a {
    color: white;
    padding: 3em 0;
    font: normal normal normal 18px/28px Nunito Sans;
}

/*HomeContent*/
.home-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 5em;
    padding: 6em 0;
}

.home-content ul li {
    color: white;
    font: normal normal normal 39px/53px Nunito Sans
}

.home-content ul li::marker {
    color: #B1B900;
    font-size: 42px;
}


.down-icon {
    position: relative;
    top: 0;
    animation: moveDownUp 1.5s infinite alternate;
}

@keyframes moveDownUp {
    0% {
        top: 1em;
    }
    100% {
        top: 4em;
    }
}


.btn {
    background: #B1B900 0% 0% no-repeat padding-box;
    box-shadow: 3px 3px 10px #00000029;
    border-radius: 41px;
    padding: 1.5em 2em;
    font: normal normal bold 18px/24px Nunito Sans;
    color: white;
    cursor: pointer;
    transition: 0.3s ease-out;
}

.btn:hover {
    background: rgb(105, 110, 2);
    transform: translateY(-10px);
}

button {
    border: none;
    outline: none;
}

.p-color {
    color: #2E2E2D;
    font: normal normal normal 20px/33px Nunito Sans;
    max-width: 600px;
}

/***Header-Closed**************************************************************/


/*main-section*/
.main-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 4em;
    padding-top: 4em;
    text-align: center;
}

.p-top-content p {
    font: normal normal bold 30px/42px Nunito Sans-Bold;
    color: #2E2E2D;
}

.main-img {
    width: 95vmin;
    height: auto;
}

/*Footer-Content**/
#footer {
    background: #2E2E2D;
    padding: 3em 0 2em;
}

.footer-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 4em;
}

.footer-logo-bild {
    width: 400px;
}

.footer-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    color: #ffffff;
}

.imprint-nav {
    display: flex;
    gap: 2em;
}

.imprint-nav a:hover {
    color: #B1B900;
}

.mobile-info-content {
    display: none;
}

hr {
    display: none;
}

.align-center {
    text-align: center;
}

.contact-text-mobile {
    display: none;
}

.contact-bold-text {
    font-family: Nunito Sans-Bold;

}

/*media screen */


@media screen and (min-width: 2000px) {
    #header {
        background: #2E2E2D;
        width: 100%;
        height: 100vh;
    }

    .down-icon {
        margin-top: 8em;
        position: relative;
        top: 0;
        animation: moveDownUp 1.2s infinite alternate;
    }

    @keyframes moveDownUp {
        0% {
            top: 1em;
        }
        100% {
            top: 2em; /* Adjust the distance as needed */
        }
    }

}


@media screen and (max-width: 1040px) {
    #header {
        height: auto;
    }

    .home-content {
        padding: 1em 2em;
    }

    .header-icon {
        width: 50%; /* Adjust as needed for smaller screens */
    }

    .navigation-bar {
        display: none;
    }

    .home-content ul {
        padding: 0 2em;
    }

    .home-content ul li {
        font: normal normal normal 20px/32px Nunito Sans;
    }

    .home-content ul li::marker {
        color: #B1B900;
        font-size: 24px;
    }

    .down-icon {
        display: none;
    }

    .mobile-info-content {
        display: flex;
        flex-direction: column;
        gap: 1em;
        margin: 0 auto;
        padding: 2em 25%;
    }

    .mobile-info-content .nav-item {
        min-width: 270px;
    }

    hr {
        display: block;
        border: none;
        border-top: 1px solid #7c7676;
        height: 0;
        margin: 0 1.5em
    }

    .main-content {
        padding: 4em 2em 0;
    }

    .footer-nav {
        flex-direction: column-reverse;
        gap: 5em;
    }

    .footer-logo-bild {
        width: 300px;
    }

    .contact-bold-text {
        display: none;
    }

    .contact-text-mobile {
        display: block;
    }

}


@media screen and (max-width: 780px) {

    .home-content {
        gap: 1em;
    }

    .home-content ul {
        list-style-type: none;
        margin: 2em 0 0 -10px;
        padding: 0 1em;
    }

    .home-content ul li {
        position: relative;
        padding: 0 0 18px 40px;
        font: normal normal normal 25px/34px Nunito Sans;
    }

    .home-content ul li::before {
        content: "\2022";
        color: #B1B900;
        font-size: 42px;
        position: absolute;
        left: 0;
        top: 14px;
        transform: translateY(-50%);
    }


    .header-icon {
        margin-top: 10px;
        width: 100%;
    }

    .main-img {
        width: 100vmin;
        margin-top: 2em;
    }

    .btn {
        padding: 1em 2em;
        font-size: 14px;
    }

    .nav-item img {
        width: 16px;
    }

    .p-top-content p {
        font: normal normal bold 25px/34px Nunito Sans-Bold;
    }

    .main-content {
        padding: 4em 10px 0;
        gap: 1em;
    }

    .mobile-info-content {
        display: flex;
        flex-direction: column;
        gap: 1em;
        margin: 0 14px;
        padding: 2em 2em 3em 2em;
    }

    .mobile-info-content .nav-item {
        gap: 16px;
    }

    .p-color {
        padding: 0 10px;
        font: normal normal normal 18px/28px Nunito Sans;
    }


    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }

    p {
        font-size: 16px;
    }

}