nav {
    position: absolute;
    top: 0;
    width: 100%;
    margin: 0 auto;
    z-index: 10;
    background: rgba(0, 0, 0, .60);
}

nav .t96-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 1rem 0;
}

nav .t96-logo img {
    width: 220px;
}

nav .t96-menu {
    display: flex;
    
    justify-content: space-between;
    flex-wrap: wrap;
}

nav .t96-item {
    margin-left: 5rem;
}

nav .t96-item img {
    width: 16px;
    height: 16px;
    overflow: hidden;
    display: none;
    object-fit: cover;
    vertical-align: middle;
    margin-top: -3px;
}

nav .t96-item a {
    display: inline-block;
    font-size: 1.5rem;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 0.2rem;
    color: var(--vtWhite);
    font-weight: 700;
}

nav .t96-item a:hover:before {
    right: 0;
}

nav .t96-item a:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 100%;
    bottom: -2px;
    background: var(--vtcolorlink);
    height: 2px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.t96-active-menu {
    color: var(--vtcolorlink) !important;
    position: relative;
    
}

.t96-active-menu:hover:before {
    right: 100% !important;
}

menu .icon-nav {
    display: none;
}

.t96-change .t96-bar1 {
    -webkit-transform: rotate(-41deg) translate(-8px, 5px);
    transform: rotate(-41deg) translate(-8px, 5px)
}

.t96-change .t96-bar2 {
    opacity: 0;
}

.t96-change .t96-bar3 {
    -webkit-transform: rotate(40deg) translate(-8px, -7px);
    transform: rotate(40deg) translate(-8px, -7px);
}

@media only screen and (max-width: 1230px) {
    nav .t96-container {
        padding: 1.5rem;
    }
}

@media only screen and (max-width: 1200px) {
    .t96-show-menu {
        position: fixed;
        top: 0;
        height: 100%;
        z-index: 999;
        background: #fff;
        flex-flow: column;
    }

    nav {
        padding: 0;
    }

    nav .t96-container {
        padding: 0;
    }

    nav .t96-item {
        margin-left: 0;
    }

    nav .t96-logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        z-index: 100;
        padding: 1.5rem;
    }

    nav .t96-icon-nav {
        display: inline-block;
        cursor: pointer;
    }

    .t96-bar1, .t96-bar2, .t96-bar3 {
        width: 35px;
        height: 4px;
        background: var(--vtyellow);
        margin: 0.6rem 0;
        transition: 0.4s;
    }

    nav .t96-container .t96-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        justify-content: flex-start;
        flex: 1;
        z-index: 999;
        overflow: auto;
    }

    nav .t96-container .t96-menu li {
        padding: 4rem 0;
    }

    .t96-active-menu-mb-t {
        background: var(--vtbgmenu);
    }

    .t96-active-menu-mb-b {
        background: var(--vtbackground);
    }
    nav .t96-item a
    {
        padding-left: 0.5em;
    }
    nav .t96-item img {
        width: 16px;
        height: 16px;
        
        display: inline;
       
    }
    nav .t96-container .t96-menu li {
        
        padding-left: 1em;
        border-bottom: 1px solid #121212;
        text-align: left;
    }
}

@media only screen and (max-width: 768px) {
    nav .t96-container .t96-menu li {
        padding: 3rem 0;
        padding-left: 1em;
        border-bottom: 1px solid #121212;
        text-align: left;
    }
}



