* {
    margin: 0;
    padding: 0;
}

body {
    color: #253730;
    background-color: #fdfcee;
}

.toppart {
    background-color: #f1aa7f;
    color: #253730;
    text-align: center;
    padding: 0.5vw;
    font-size: 13px;
}

header {
    background-color: white;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 100;
}

nav {
    border-bottom: 1px #cbcac0 solid;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1d322d;
}

.nav2 a{
    color: #1d322d;
}

.nav1 {
    display: flex;
    align-items: center;
    list-style-type: none;
    height: fit-content;
}

.nav1 li {
    padding: 3vh;
}

.shop {
    border-right: 1px #cbcac0 solid;
    ;
}

.search {
    display: flex;
    align-items: center;
    gap: 2px;
}

.magnifying {
    height: 2.7vh;
}

.nav2 {
    display: flex;
    align-items: center;
    list-style-type: none;
    height: fit-content;
}

.nav2 li {
    margin: 2vh;
}

.kinder {
    background-color: #1d322d;
    border-radius: 32px;
    padding: 1vh;
    height: fit-content;
}

.kinder a{
    color: white;
}

.hamburger {
    display: none;
}

footer {
    display: flex;
}

.nav {
    display: flex;
    justify-content: space-between;
    width: 80%;
}

.left-section {
    width: 50%;
    background-color: #f5f3ed;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
}

.logo {
    width: 120px;
    margin-bottom: 80px;
}

.nav-links {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 18px;
    margin-bottom: auto;
}

.nav-links a {
    color: #1a3a34;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.7;
}

.right-section {
    width: 50%;
}

.awardbtndiv {
    display: flex;
    justify-content: center;
}

.awardbtn {
    color: #1d322d;
    background-color: white;
    padding: 2vh 4vw;
    height: fit-content;
    border: 1px #1d322d solid;
}

.awardbtn:hover {
    background-color: #1d322d;
    color: white;
}


a{
    text-decoration: none;
}


@media screen and (max-width: 991.98px) {
    nav {
        padding: 0 1vw;
    }

    .hiddennav{
        display: none;
    }

    .hiddennav a{
            color: black;
            text-decoration: none;
        }

    .responsive {
        display: none;
    }

    .hamburger {
        display: flex;
        position: absolute;
    }

    .hamburger:hover .hiddennav{
        display: flex;
        flex-direction: column;
        list-style-type: none;
        background-color: white;
        color: black;
        position: relative;
        top: 130px;
    }

    footer {
        flex-direction: column;
    }

    .left-section{
        width: 75%;
    }

    .right-section {
        display: none;
    }

    .nav {
        flex-direction: column;
    }
}