body>header {
    background: #eeeeeef7;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
    padding: 10px;
    box-shadow: 0px 1px 4px #bcbbbb;

    nav {
        display: flex;
        height: 60px;

        .logo-img-desktop {
            max-width: 200px;
            margin-left: 20px;
                        max-width: 200px;
            margin-left: 20px;
            position: absolute;
            top: 2px;
            left: -7px;
        }

        .logo-img-mobile {
            display: none;
        }

        #burguer-menu,
        label[for="burguer-menu"] {
            display: none;
        }

        ul {
            flex-grow: 1;
            display: flex;
            justify-content: center;
            gap: 50px;
            list-style: none;

            li a {
                color: black;
                font-weight: 400;

                &.active {
                    font-weight: 700;
                    color: var(--color-dark);
                }
            }
        }
    }
}

footer {
    padding: 15px 20px;
    text-align: center;
    border-top: 1px solid #ccc;
    font-size: 12px;
    justify-content: space-around;
    display: flex;
    flex-direction: column;
    align-items: center;

    >* {
        max-width: var(--max-width-main);
    }

    .footer-top {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
            text-align: left;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        font-size: 10px;

        div:first-child {
            display: flex;
            flex-direction: column;

            img {
                width: 60px;
                height: 60px;
            }
        }

        div:nth-child(2) {
            column-count: 2;

            ul {
                margin-top: 0
            }
        }
    }

    ul {
        gap: 10px;
        display: flex;
        flex-direction: column;
    }
}

@media(max-width:1024px) {
    body>header nav {
        width: 100%;
        justify-content: space-between;
        max-width: 100%;
        flex-direction: row-reverse;
        align-items: center;

        label[for="burguer-menu"] {
            display: block;
            cursor:pointer;
        }

        .logo-img-desktop {
            display: none;
        }

        .logo-img-mobile {
            display: flex;
            margin-right: 15px;
        }

        .burger-label {
            transition: ease .5s;
            width: 40px;
            height: 40px;
        }

        .burger-label.turnRound {
            transform: rotate(90deg);
        }

        ul {
            flex-direction: column;
            position: absolute;
            top: 60px;
            background-color: #eeeeeef7;
            width: 100%;
            left: 0;
            padding: 30px;
            gap: 35px;
            display: none;
        }

        input:checked+ul {
            display: flex;
        }
    }
}