nav a {
    display: block;
    height: 20px;
    width: 100%;
    text-align: center;
    list-style: none;
    color: #FFFFFF;
    font-size: 1.1em;
    padding-top:7.2vh;
    padding-bottom: 8.5vh;
}
nav a:hover, nav a.select{
    color: #67686a;
    transform: scale(1.2);
    cursor: pointer;
}
nav a[title] {
    position: relative;
}
nav a[title]::before,
nav a[title]::after {
    position: absolute;
    display: none;
    opacity: 0.85;
    top: 50px;
    left: 10px;
    transition: all .3s ease-in-out;
}
nav a[title]::before {
    content: attr(title);
    background: #000;
    color: #fff;
    font-size: 10px;
    padding: 5px;
    border-radius: 5px;
    white-space: nowrap;
    text-decoration: none;
}
nav a[title]::after {
    width: 0;
    height: 0;
    border: 6px solid transparent;
    content: '';
}

nav a[title]:hover::before,
nav a[title]:hover::after {
    display: block;
}
.yataymenu nav {
    text-align: center;
}
.yataymenu nav a {
    display: inline-block !important;
    width: 15%;
    padding: 6px 0!important;
}
.yataymenu nav a[title]::before,
.yataymenu nav a[title]::after {
    position: absolute;
    /*display: none;*/
    opacity: 0.85;
    left: 50px;
}


