.bottom_menu
{
    margin-top: 12px;
}
.bottom_menu ul
{
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.bottom-submenu
{
    position: absolute;
    display: none;
    z-index: 100;
}

.list-sections-cor{
    flex-wrap: wrap;
    margin: 40px 0 !important;
}

.bottom-link
{
    
    margin-right: 10px;

}

.bottom-link>a
{
    text-decoration: none;
    color:white;
    line-height: 34px;
    /* font-weight: 500; */
    font-size: 16px;
    padding: 10px 10px;
}
.bottom-link>a:hover
{
    color: #FFCC33;
}

.sub-arrow
{
    -webkit-mask-image: url(arrow-menu.svg);
    mask-image: url(arrow-menu.svg);
    background-color: white;
    width: 12px;
    height: 8px;
    display: inline-block;
    margin-left: 3px;
}

.bottom-link:hover .sub-arrow
{
    transform: rotate(180deg);
    background-color: #FFCC33;
   
}

.bottom-link:hover .bottom-submenu
{
    display: block;
    background: white;
    border-radius: 4px;
}

.bottom-submenu ul
{
    display: flex;
    flex-direction: column;
    
}

.bottom-submenu ul a
{
    padding: 12px 12px;
    text-decoration: none;
    color: #1C1B1F;
    font-size: 14px;
    font-weight: 700;
    display: block;

}