* button {
    position: relative;
    border-radius: 30px;
    z-index: 2;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

* button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    transition: all .35s ease-in-out;
}

* button:hover::before {
    opacity: 1;
    width: 100%;
}

.noScroll {
    overflow: hidden;
}

.hamburguer {
    display: none;
}

.nav_large {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 50;
    display: flex;
    justify-content: center;
    color: var(--white);
    padding: 15px 0;
    background: linear-gradient(var(--orange) 30%, transparent 55%);
    /* border-bottom: 1px solid rgba(255, 255, 255, .5); */
    transition: all .2s ease;
}

.fixed {
    position: fixed;
    background: linear-gradient(var(--orange) 100%, transparent 0%);
    padding: 10px 0;
    border-bottom: none;
}

.nav_large>div {
    display: grid;
    /* grid-template-columns: 19% 81%; */
    grid-template-columns: 15% 85%;
    justify-content: center;
    align-items: center;
    width: 68em;
}

.nav_large img {
    /* width: 4em; */
    width: 60px;
}

.nav_large .listnav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav_large .listnav>li {
    margin: 0 27px;
}

.nav_large .listnav>li:first-child {
    margin-left: 0;
}

.nav_large .listnav>li:last-child {
    margin-right: 0;
}

.nav_large .listnav>li a {
    position: relative;
    /***/
    font-size: 14px;
}

/* .nav_large .listnav>li .navoption::before {
    content: '';
    position: absolute;
    bottom: -8px;
    width: 0%;
    height: 2px;
    background-color: var(--white);
    transition: all .2s ease;
} */

.nav_large .listnav>li .navoption:hover {
    color: var(--black);
}

/* .nav_large .listnav>li .navoption:hover::before {
    width: 100%;
} */

.nav_large .listnav>li button {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 5px 15px;
}

.nav_large .listnav>li button::before {
    background-color: var(--white);
    height: 100%;
    width: 150px;
    background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, transparent 50%);
    top: 0;
    bottom: 0;
    transform: skew(-45deg);
    left: -150px;
    z-index: 1;
    opacity: 1;
    transition: 1s;
}

.nav_large .listnav>li button:hover::before {
    left: 150px;
}

.dropdown-menu {
    display: block;
    border-radius: 0px 15px 15px 15px;
    border: none;
    background: rgba(255, 255, 255, .3);
    padding: 15px;
    opacity: 0;
    transition: all .5s ease;
    visibility: hidden;
}

.dropfixed {
    background: var(--orange);
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
}

.dropdown-menu>li {
    margin: 5px;
    font-size: 14px;
}

.dropdown-menu>li>a {
    color: var(--white);
    border-radius: 5px;
    padding: 8px 10px;
}

.dropdown-menu>li>a:hover, .dropdown-menu>li>a:focus {
    background: var(--nocolor);
    color: var(--white);
    box-shadow: 0px 0 10px rgba(0, 0, 0, .3);
}

.dropdown-menu>li b {
    color: var(--orange);
}

/**nav responsive**/

.nav_resp {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    color: var(--white);
    z-index: 15;
    display: none;
    justify-content: center;
    align-items: center;
    text-align: center;
    transform-origin: top;
    transform: rotateX(90deg);
    transition: all .3s ease-in-out;
}

.navopen {
    transform: rotateX(0deg);
}

/************************/

@media screen and (max-width:1199px) {
    .nav_large>div {
        width: 61em;
        grid-template-columns: 12% 86%;
    }
    .nav_large .listnav>li {
        margin: 0 20px;
    }
    .nav_large .listnav {
        justify-content: flex-end;
    }
}

@media screen and (max-width:991px) {
    .nav_large .listnav {
        display: none;
    }
    .nav_large>div {
        width: 100%;
        grid-template-columns: 15% 85%;
        padding: 0 5%;
    }
    .hamburguer {
        width: 45px!important;
        height: 45px;
        position: relative;
        right: 0;
        top: 0;
        z-index: 10;
        justify-self: end;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }
    .hamburguer>div {
        position: relative;
        width: 35px;
        height: 4px;
        border-radius: 30px;
        background-color: var(--white);
        transition: all .3s ease-in-out;
    }
    .hamburguer>div::before {
        content: '';
        position: absolute;
        width: 35px;
        height: 4px;
        border-radius: 30px;
        top: 10px;
        background-color: var(--white);
        transition: all .3s ease-in-out;
    }
    .hamburguer>div::after {
        content: '';
        position: absolute;
        width: 35px;
        height: 4px;
        border-radius: 30px;
        top: -10px;
        background-color: var(--white);
        transition: all .3s ease-in-out;
    }
    .hamb_on>div {
        background-color: var(--nocolor);
    }
    .hamb_on>div::before {
        top: 0;
        transform: rotate(45deg);
    }
    .hamb_on>div::after {
        top: 0;
        transform: rotate(-45deg);
    }
    .nav_resp {
        display: flex;
    }
    .listnav {
        font-size: 25px;
    }
    .listnav li {
        margin: 15px 0;
        font-family: "g_regular";
    }
    .listnav li button {
        border: 1px solid var(--white);
        color: var(--white);
        background: transparent;
        padding: 5px 10px;
    }
}

@media screen and (max-width:767px) {}

@media screen and (max-width:575px) {}

@media screen and (max-width:400px) {}