#nav{
    position: fixed;
    width: 100%;
    min-width: 1200px;
    height: 51px;
    background-color: #070707;
    z-index: 11;
}

#cp{
    display: grid;
    grid-template-columns: 33.33% 66.66%;
}

.nav_left{
    margin: 0;
    width: 30%;
    position: relative;
}

.nav_right{
    position: relative;
    float: right;
    min-width: 378px;
}

.line img{
    margin: 11px 0 12px 40%;
    min-width: 83px;
    min-height: 30px;
}

#nav_section{
    background-color: #070707;
    /*margin-right: 208px;*/
    text-align: center;
    line-height: 52px;
    list-style: none;
    padding-left: 0;
    position: relative;
    height: 51px;
    width: 528px;
    min-width: 378px;
    display: flex;
    flex-direction: row-reverse;
}

#nav_section li{
    width: 50%;
    min-width: 10px;
    font-size: 12px;
    margin-left: 7px;
}

#nav_section li a{
    text-decoration: none;
    color: #CCCCCC;
    transition: color 0.5s ease;
}

.section_invisible{
    height: 42px;
    line-height: 42px;
    font-size: 10px;
    width: 161px;
    display: none;
    background-color: #020202;
    transition: background-color 0.5s ease;
}

.down_icon{
    position: relative;
    left: 7px;
    bottom: 3px;
}

.section_invisible a{
    color: #CCCCCC !important;
}

#nav_section li:hover a{
    color: #FFFFFF;
}

#nav_section li:hover .section_invisible{
    display: block;
    overflow: hidden;
    position: relative;
    right: 40px;
    animation: section_play 0.5s ease;
}

#nav_section li:not(:hover) .section_invisible{
    position: relative;
    right: 40px;
    overflow: hidden;
    animation: section_not_play 0.5s ease;
}

.section_invisible:hover{
    background-color: #1C1D1D;
}

.vertical_divider{
    width: 1px;
    background-color: #000024;
}

@keyframes section_not_play {
    0%{
        height: 42px;
        display: block;
    }
    100%{
        height: 0;
        display: none;
    }
}

@keyframes section_play {
    0%{
        height: 0;
    }
    100%{
        height: 42px;
    }
}

