@charset "utf-8";

.menu {
    width: 678px;
    height: 25px;
    background-color: #FFF;
    z-index: 1;
    position: relative;
    float: right;
    list-style: none;
    margin: 0;
    padding: 0;
    padding-top: 30px;
    font-weight: bold;
    font-size: 10px;
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase;
}

.menu ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.menu li {
    float: left;
    position: relative;
    margin-right: 1px;
}

.menu li:last-child {
    margin-right: 0;
}

.menu a, .menu a:visited {
    display: block;
    font-size: 10px;
    text-decoration: none;
    color: #666;
    height: 25px;
    line-height: 25px;
    font-weight: bold;
    text-align: center;
}

.menu a:hover {
    background-color: #53ADEB;
    color: white;
}

.menu ul ul {
    visibility: hidden;
    position: absolute;
    top: 25px;
    left: 0;
    background-color: #53ADEB;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    border-radius: 0 0 5px 5px;
    padding: 5px 0;
}

.menu ul ul li {
    float: none;
    width: 100%;
}

.menu ul ul a,
.menu ul ul a:visited {
    height: auto;
    padding: 10px 15px 10px 25px;
    line-height: 1.4;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: white;
    text-align: left;
    white-space: nowrap;
    position: relative;
}

.menu ul ul a:before {
    content: '▶';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 8px;
    color: white;
}

.menu ul ul li:last-child a {
    border-bottom: none;
}

.menu ul ul a:hover {
    background-color: white;
    color: #53ADEB;
}

.menu ul ul a:hover:before {
    color: #53ADEB;
}

.menu ul li:hover ul {
    visibility: visible;
}

.menu li.nav-home { width: 56px; }
.menu li.nav-about { width: 80px; }
.menu li.nav-products { width: 82px; }
.menu li.nav-infra { width: 119px; }
.menu li.nav-quality { width: 70px; }
.menu li.nav-hr { width: 108px; }
.menu li.nav-clients { width: 67px; }
.menu li.nav-contact { width: 80px; }

.menu ul ul.nav-about-inner { width: 135px; }
.menu ul ul.nav-products-inner { width: 110px; }
.menu ul ul.nav-infra-inner { width: 220px; }
.menu ul ul.nav-quality-inner { width: 137px; }
.menu ul ul.nav-hr-inner { width: 160px; }

.menu li.active a {
    background-color: #53ADEB;
    color: white;
}

.menu li.active ul ul a {
    color: white !important;
}