/************************************
    Responsive menu
*************************************/
div.menur {
    position: absolute;
    top: 50%;
    right: 20%;
    z-index: 2024;
}

div.menur li {
    /* display: inline-block; */
    text-transform: uppercase;
    font-size: 25px;
    text-align: center;
    line-height: 2;
}

div.menur li a {
    color: #fff;
    transition: 0.2s;
    font-size: 20px;
}

div.menur li a:hover {
    color: #3aaa35;
}


ul#nav img {
    max-width: 180px;
    margin-bottom: 25px;
}





div.menur {
    background-color: rgba(0, 0, 0, .8);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}
div.menur ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transition: all 0.3s ease-in-out;
    transform: translateX(-50%) translateY(-50%);
    width: 100%;
}
div.menur ul li {
    transform: translateY(50px);
    opacity: 0;
}
/* div.menur ul li a {
    display: block;
    font-size: 2em;
    padding: 10px 0;
    text-align: center;
    color: #fff;
    font-weight: bold;
    transition: all 0.2s ease-in-out;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .5);
} */
/* div.menur ul li a:hover {
    color: #e84a5f;
} */
.toggle-btn {
    display: block;
    position: fixed;
    z-index: 2025;
    right: 45px;
    top: 38px;
    cursor: pointer;
}

.toggle-logo {
    display: block;
    position: fixed;
    left: 45px;
    top: 30px;
}

.text-andean {
    color:#3aaa35;
}

.toggle-logo img {
    width: 215px;
}

.toggle-btn .bar {
    width: 30px;
    height: 4px;
    margin: 5px auto;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 3px 1px rgba(0, 0, 0, .3);
}
.toggle-btn .bar:nth-child(2) {
    width: 20px;
}
#toggle:checked ~ div.menur {
    opacity: 1;
    visibility: visible;
}
/* #toggle:checked ~ div.menur ul {
    top: 70px;
} */
#toggle:checked ~ div.menur ul li {
    transform: translateY(0px);
    opacity: 1;
}
#toggle:checked ~ div.menur ul li:nth-child(1) {
    transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.1s;
}
#toggle:checked ~ div.menur ul li:nth-child(2) {
    transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.2s;
}
#toggle:checked ~ div.menur ul li:nth-child(3) {
    transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.3s;
}
#toggle:checked ~ div.menur ul li:nth-child(4) {
    transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.4s;
}
#toggle:checked ~ div.menur ul li:nth-child(5) {
    transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.5s;
}
#toggle:checked ~ div.menur ul li:nth-child(6) {
    transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.6s;
}
#toggle:checked ~ div.menur ul li:nth-child(7) {
    transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.7s;
}
#toggle:checked ~ div.menur ul li:nth-child(8) {
    transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.8s;
}
#toggle:checked ~ div.menur ul li:nth-child(9) {
    transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.9s;
}
#toggle:checked ~ div.menur ul li:nth-child(10) {
    transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.10s;
}
#toggle:checked ~ div.menur ul li:nth-child(11) {
    transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.11s;
}
#toggle:checked + label.toggle-btn .bar {
    background-color: #3aaa35;
}
#toggle:checked + label.toggle-btn .bar:nth-child(2) {
    transform: translateX(50px);
    opacity: 0;
}
#toggle:checked + label.toggle-btn .bar:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}
#toggle:checked + label.toggle-btn .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


@media (max-width: 768px) {
    .toggle-btn,  header.top {
        position: absolute !important;
    }
}