*{
    padding: 0;
    margin: 0;
}

.menu{
    display: flex;
    width: 90%;
    margin: auto;
    margin-top: 15px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.menu_items{
    display: flex;
    list-style: none;
    margin-right: 5px;
}

.menu_items li{
    margin: 0px 15px;
}

.menu_items li:hover{
    color: #fff;
    transition: color .2s;
}

.menu_items li a{
    font-family: 'Montserrat';
    text-decoration: none;
    margin-right: 5px;
    font-size: 20px;
    color: rgb(131 175 67);
    display: block;
}

.btn_menu{
    margin-right: 30px;
    font-size: 25px;
    color: #6AC52B;
    cursor: pointer;
    display: none;
}

ul.show{
    left: 0;
    top: 65px;
}

.vibrador{
    animation-name: vibrate;
    animation-duration: 5s;
    animation-iteration-count: infinite;
}

@keyframes vibrate{
    5% {
        transform: rotate(2deg) scale(1.1);
    }

    10%{
        transform: rotate(-2deg);
    }

    15%{
        transform: rotate(2deg);
    }
    20%{
        transform: rotate(-2deg);
    }
    25%{
        transform: rotate(2deg);
    }
    25%{
        transform: rotate(0deg);
    }
}

@media screen and (min-width:960px) and (max-width: 1024px){
    .logo{
        width:210px;
        height: auto;
        margin-right: 40px;
    }

    
    .menu_items li a{
        font-size: 15px;
    }

}

@media screen and (min-width:1025px){
    .logo{
        width:250px;
        height: auto;
        margin-right: 20px;
    }

    
    .menu_items li a{
        font-size: 20px;
    }

}

@media screen and (min-width: 320px) and (max-width: 960px){
    .logo{
        width: 200px;
        margin-right: 0px;
    }
    
    .menu {
        height: 65px;
    }

    .btn_menu{
        display: inline-flex;
    }

    .menu_items{
        z-index: 20;
        position: fixed;
        width: 100%;
        height: calc(100% - 65px);
        background: #fff;
        top:-100%;
        text-align: center;
        transition: all .4s;
        flex-direction: column;
    }

    .menu_items li{
        margin:30px 50px 0px 0px;
        line-height: 30px;
    }

    .menu_items li:hover{
        background: none;
    }

    .menu_items li a{
        font-size: 15px;
        font-weight: bold;
    }

}

@media only screen and (max-width:858px) and (orientation:landscape){
    .menu_items li{
        margin-top:50px;
    }

    .menu_items{
        overflow:scroll;
        height: calc(100%-65px);
    }
}

