nav {
    position: fixed;
    z-index: 4;
    padding: 0 1%;
    width: 98%;
    height: 100px;
    background-color: transparent;
    transition: 750ms linear;
    pointer-events: auto;
  
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.scrolled {
    background-color: #f86f41 !important;
    transition: 750ms linear;
}

.bar-scrolled {
    background-color: white !important;
}

.nav-bar-small-text {
    display: block;
    text-align: center;
    padding: 20px 0;
    margin: 0 20%;
    font-family: 'Roboto' , sans-serif;
    font-size: 1.1em;
    border-bottom: solid;
    border-width: 1px;;
    border-color: #fffeee;
    box-sizing: border-box;
    color: white;
}
    
.nav-bar-small-text-icon{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    font-family: 'Roboto' , sans-serif;
    font-size: 1.1em;
    box-sizing: border-box;
    color: white;
}

.nav-menu-small-container{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    font-family: 'Roboto' , sans-serif;
    color: white;
    background-color: #e34331;
    cursor: pointer;
    font-size: 1.1em;
    width: 100%;
    padding-top: 100px;
    padding-bottom: 20px;
    box-sizing: border-box;
}

.invisible {
    display: none;
}   

.small_nav{
    display: none;
}
    
.nav-toggle-button {
    position: absolute;
    display: flex;
    right: .5rem;
    padding: 14px;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 23px;
    z-index: 10;
    cursor: pointer;
    overflow: hidden;
    
}
    
.nav-toggle-button .bar {
    height: 4px;
    width: 100%;
    background-color: black;
    border-radius: 10px;
    transition: 0.5s;
} 

.active {
    transform: translateX(-10px);
    transition: transform 0.5s;
}

.active1 {
    transition: transform 0.5s;
    transform: rotate(45deg);
}

.active2 {
    transform: translateX(-100px);
    transition: transform 0.5s;
}

.active3 {
    transition: transform 0.5s;
    transform: rotate(-45deg);
}

.bars-inverted{
    background-color: white !important;
}

.products-dropdown ul {
    text-decoration: none;
    list-style: none;
}

.small-nav_item{
    display: inline-block;
    text-align: center;
    text-decoration: none;
    color: white; ;
}

.small-nav_icon{
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 10px;
}

.small_nav.active {
    display: flex;
    flex-direction: column;
    align-items: center;
}  

.nav-menu-large-container {
    display: none;
}