.container-nav > ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #003543;
    height: 60px;
    list-style: none;
    margin-bottom: 0px;
}
.container-nav > ul > li:nth-of-type(1) {
    margin-left: 50px;
}
.container-nav > ul > li:nth-of-type(7) {
    margin-right: 50px;
}
.container-nav ul li{
    padding: 16px;
    margin: 0px 8px
}
.container-nav ul li:hover {
    background-color: #F3F3F3;
}
.container-nav > ul > li:hover > a {
    color: #003543;
    border-bottom: 2px solid #003543;
    padding-bottom: 2px;
}
.container-nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 17px;
    
}
.content-menu-nav {
    width: 100%;
    position: relative;
}
.container-sublist {
    position: absolute;
    width: 100%;
    left: 0px;
    right: 0px;
    top: 0px;
}
.main-sublist {
    height: 430px;
    position: absolute;
    top: 60px;
    right: 0px;
    left: 0px;
    padding-top: 15px;
    padding-left: 60px;
    background-color: #F3F3F3;
    display: flex;
    justify-content: space-between;
    visibility: hidden;
    
}
.main-sublist ul {
    list-style: none;
    width: 30%;
}
.main-sublist ul li {
    padding: 8px;
    
}
.main-sublist ul li:hover {
    padding: 8px;
    background-color: var(--defect);
    border-radius: 3px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,.1);
    
}
.main-sublist ul li:hover a {
    color: #fff;
    
}
.main-sublist ul li a {
    text-decoration: none;
    color: #626262;
}
.main-sublist ul li:nth-of-type(1) a {
    color: #003543;
    font-weight: bold;
    padding-bottom: 2px;
}
.main-sublist ul li:nth-of-type(1):hover a {
    color: #fff;
}
/*.main-sublist ul li:nth-of-type(1) {
    padding-bottom: 0px;
    background-color: transparent;
    box-shadow: 0 0 0 0 transparent;
}*/
#two-menu ul:nth-of-type(2) li:nth-of-type(1) a,
#three-menu ul:nth-of-type(2) li:nth-of-type(1) a {
    color: #626262;
    font-weight: bold;
    border: none;
}
#two-menu ul:nth-of-type(2) li:nth-of-type(1):hover,
#three-menu ul:nth-of-type(2) li:nth-of-type(1):hover { 
    background-color: var(--defect);
    border-radius: 3px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,.1);
    padding: 8px;
}
#two-menu ul:nth-of-type(2) li:nth-of-type(1):hover a,
#three-menu ul:nth-of-type(2) li:nth-of-type(1):hover a { 
    color: #fff;
}
#three-menu {
    display: flex;
    justify-content: left;
}
#two:hover #first-menu,
#three:hover #two-menu,
#four:hover #three-menu,
#five:hover #four-menu,
#six:hover #five-menu,
#seven:hover #six-menu {
    visibility: visible;
}
