* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Roboto, "Helvetica Neue", sans-serif;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2%;
}

.logo {
    width: 20%;
}

.img-logo {
    width: 100% !important;
}

header {
    background: #0e2816;
    padding: 10px 0;
}

.header-cont {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*menu desktop*/

.menu-desktop {
    display: flex;
}

.menu-cont {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.menu-cont ul {
    display: flex;
    list-style: none;
}

.menu-cont ul li a {
    color: white;
    font-size: 18px;
    text-decoration: none;
}

.menu-cont ul li a:hover {
    text-decoration: underline;
    cursor: pointer;
}

.menu-cont ul li:not(:last-child) {
    margin-right: 80px;
}

.btn {
    display: none;
    position: absolute;
    top: 2%;
    right: 2%;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.btn span {
    width: 30px;
    height: 2px;
    background-color: white;
    border-radius: 2px;
    transition: all 0s linear;
    position: relative;
}

.btn span:nth-child(1) {
    transform-origin: 0% 0%;
}

.btn span:nth-child(2) {
    opacity: 1;
    transform-origin: 0% 0%;
}

.btn span:nth-child(3) {
    transform-origin: 0% 100%;
}

.btn.active span:nth-child(1) {
    transform: rotate(45deg);
    background-color: white;
}

.btn.active span:nth-child(2) {
    opacity: 0;
}

.btn.active span:nth-child(3) {
    transform: rotate(-45deg);
    background-color: white;
}

.menu-mobile {
    display: none;
}

@media (max-width: 768px) {
    /*menu mobile*/

    .logo {
        width: 40%;
    }

    .img-logo {
        width: 100%;
    }

    .menu-mobile.show {
        display: flex;
        justify-content: center;
        position: absolute;
        width: 100%;
        z-index: 10;
        background: #0e2816;
    }

    .menu-mobile ul {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        list-style: none;
    }

    .menu-mobile ul li {
        width: 100%;
    }

    .menu-mobile ul li a {
        display: inline-block;
        text-decoration: none;
        width: 100%;
        color: white;
        text-align: center;
        padding: 10px 0;
    }

    .menu-mobile ul li a:hover {
        background: #040c07;
    }

    .btn {
        display: flex;
    }

    .menu-desktop {
        display: none;
    }
}