header nav {
    height:100%;
    text-align: center;
}
header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    font-weight: 600;
    height:100%;
}
header nav ul ul {
    display: block;
}
header nav ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    height:100%;
    position: relative;
}
header nav ul li.current{
    text-decoration: underline;
}
header nav ul li.icon img{
    width:25px;
}
header nav ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width:100%;
    height:100%;
    padding:0 2em;
    text-decoration: none;
    transition: all .3s;
}
header nav ul li li a {
    padding: 10px 35px;
}
header nav li.has-child ul {
    position: absolute;
    left: 0;
    top: 62px;
    z-index: 4;
    background: #F3F3F2;
    visibility: hidden;
    opacity: 0;
    transition: all .3s;
}
header nav li.has-child:hover > ul, nav li.has-child ul li:hover > ul, nav li.has-child:active > ul, nav li.has-child ul li:active > ul {
    visibility: visible;
    opacity: 1;
}
header nav li.has-child ul li a {
    border-bottom: solid 1px rgba(255, 255, 255, 0.6);
}
header nav li.has-child ul li:last-child a {
    border-bottom: none;
}
header nav li.has-child ul ul {
    top: 0;
    left: 182px;
}
