*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    min-height: 100vh;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.3rem 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(89, 128, 63);
    backdrop-filter: blur(50px);
    z-index: -1;
}

.logo {
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.navbar a{
    font-size: 1.15rem;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    margin-left: 2.5rem;
}

#check {
    display: none;
}

.icons {
    padding: 7px;
    position: absolute;
    right: 5%;
    font-size: 2.8rem;
    color: #fff;
    cursor: pointer;
    display: none;
}

.foot-wrap {
    height: 50px;    
    padding-top: 15px;
    background: rgb(89, 128, 63);
    font-weight: 500;
    color: white;
    bottom: 0;
    text-align: center;
    width: 100%;
    display: inline-grid;
    grid-template-columns: auto auto;
}

.footer {
    padding: 3px; 
}

@media (max-width: 1017px){
    .header {
        padding: 1.3rem 5%;
    }
}

@media (max-width: 682px){
    .icons {
        display: inline-flex;
    }

    #check:checked~.icons #menu-icon {
        display: none;
    }

    .icons #close-icon{
        display: none;
    }

    #check:checked~.icons #close-icon {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 0;
        background: rgba(89, 128, 63, .6);
        backdrop-filter: blur(50px);
        overflow: hidden;
        transition: .3s ease;
    }
    
    #check:checked~.navbar {
        height: 17.7rem;

    }

    .navbar a {
        display: block;
        font-size: 1.1rem;
        margin: 1.5rem 0;
        text-align: center;
        transform: translateY(-50px);
        transition: .3s ease;
        padding-top: 16px;
    }

    #check:checked~.navbar a{
        transform: translateY(0);
    }
}

@media (max-width: 458px) {
    .foot-wrap {
        display: grid;
        grid-template-columns: auto;
        height: 100px;
    }
}