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;
}

.invisible {
    display: none;
}

.svg-wrapper {
    display: inline-block;
    position: relative;
    height: 40px;
    width: 120px;
}

.svg-wrapper-icon{
    display: inline-block;
    position: relative;
    height: 40px;
    width: 80px;
}

.shape {
    stroke-dasharray: 140 540;
    stroke-dashoffset: -474;
    stroke-width: 8px;
    fill: transparent;
    stroke: #ff6d3c;
    border-bottom: 5px solid black;
    transition: stroke-width 1s, stroke-dashoffset 1s, stroke-dasharray 1s;
}

.shape-icon {
    stroke-dasharray: 140 540;
    stroke-dashoffset: -474;
    stroke-width: 8px;
    fill: transparent;
    stroke: #ff6d3c;
    border-bottom: 5px solid black;
    transition: stroke-width 1s, stroke-dashoffset 1s, stroke-dasharray 1s;
}

.shape-inverted {
    stroke: white;
}

.shape-icon-inverted {
    stroke: white;
}

.text-inverted {
    color: white !important;
}

.text-icon-inverted {
    color: white !important;
}

.nav-bar-large-text {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    font-family: 'Roboto' , sans-serif;
    font-size: 1.1em;
}

.nav-bar-large-text-icon{
    top: 3px;
}

.svg-wrapper:hover .shape {
    stroke-width: 2px;
    stroke-dashoffset: 0;
    stroke-dasharray: 760;
}

.svg-wrapper-icon:hover .shape-icon{
    stroke-width: 2px;
    stroke-dashoffset: 0;
    stroke-dasharray: 760;
}
  
  
.nav-menu-large-container{
    position: absolute;
    right: 1%;
    display: inline-block;
    font-family: 'Roboto' , sans-serif;
    color: black;
    cursor: pointer;
    font-size: 1.1em;
}

.large-nav_item{
    display: inline;
    text-decoration: none;
    color: #121212 ;
}

.dropbtn {
    background-color: transparent;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
}

.dropdown {
    position: absolute;
    display: inline-block;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.dropdown_contentIn {
    display: none;
    position: absolute;
    background-color: #eeeeee99;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown_contentIn a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown_contentIn a:hover {background-color: #ff6d3c;}

.dropdown:hover .dropdown_contentIn {display: block;

}

.dropdown:hover .dropbtn {background-color: #3e8e41;}

.dropdown:hover{
padding-top: 40px;

}


.nav-toggle-button{
    display: none;
}

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