
div.menu {
    position: absolute;
    min-width: 800px;
    left: 0px;
    margin-left: 0px;
    width: 100%;
    top: 0px;
    height: 128px;
    background-color: rgba(0, 0, 0, 0.7);
    font-family: "Helvetica", "Arial", "sans-serif";
}

div.logo-container {
    position: absolute;
    height: 108px;
    top: 10px;
    left: 20px;
    width: 128px;
}

div.company-name {
    position: absolute;
    left: 148px;
    width: 35%;
    top: 60%;
    transform: translateY(-50%);
    /* background-color: pink; */
}

div.company-name p {
    text-decoration: none;
    font-size: 180%;
    color: white;
}

div.company-name p b {
    font-size: 200%;
}

div.tab-menu {
    position: absolute;
    right: 15%;
    width: 40%;
    height: 100%;
    top: 60%;
    transform: translateY(-50%);
    font-weight: bold;
    font-size: 120%;
    /* background-color: pink; */
}

ol.tab-menu {
    list-style-type: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /* background-color: grey; */
    right: 0px;
}

ol.tab-menu li{
    float: left;
}

ol.tab-menu li a {
    text-decoration: none;
    color: white;
    padding: 0px 10px;
}
  
ol.tab-menu li.active a {
    color: #f2eb30;
}
div.tab-menu img {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
}

/* Scroll bar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #888; 
}
::-webkit-scrollbar-thumb {
    background: #f1f1f1; 
}
::-webkit-scrollbar-thumb:hover {
    background: #f2eb30; 
}