.cont-header {
    max-width: 70%;
    margin: auto;
}

.cont-siteLogo {
    display: flex;
    justify-content: end;
}

.header-menu {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 9999999;
}

.header-menu-ul {
    display: flex;
    justify-content: start;
    align-items: center;
    width: 100%;
    gap: 20px;
    padding: 0;
    list-style: none;
}

.close-menu {
    font-size: 25px;
    color: #fff;
    padding: 5px 10px;
    background-color: #2a313d;
    width: 100%;
    cursor: pointer;
}

.menu-bars {
    font-size: 20px;
    color: #fff;
    cursor: pointer;
}

.header-menu-ul > li > a {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    cursor: pointer;
}

.header-menu-ul > li > div {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    cursor: pointer;
}

.header-menu-ul > li {
    position: relative;
}

.header-menu-ul > li:last-child {
    margin-right: auto;
}

.header-menu-ul > li:hover .cont-submenu-header {
    visibility: visible;
    opacity: 2;
}

.cont-submenu-header {
    position: absolute;
    width: 210px;
    right: auto;
    left: 50%;
    top: auto;
    background-color: #f5f7fa;
    transform: translate(-50%,0%);
    border-radius: .25rem;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
}

.cont-submenu-header > ul {
    padding: 0;
    list-style: none;
} 

.cont-submenu-header > ul > li {
    font-weight: 500;
    padding: 8px 10px;
    border-bottom: solid 1px #ccc;
    font-size: 14px;
    cursor: pointer;
}


.cont-submenu-header > ul > li:last-child {
    border-bottom: none;
}

.cont-submenu-header > ul > li > a {
    display: block;
    color: #000;
}

.cont-submenu-header > ul > li:hover {
    background-color: #ddd;
}

/* HEader */