.main_menu{
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 5;
    
    -webkit-transition: background-color 1s ease;
    -moz-transition: background-color 1s ease;
    -o-transition: background-color 1s ease;
    transition: background-color 1s ease;
}

.menu_logo{
    transition: all 0.5s ease-in-out;
    max-width:280px;
    /* display: none; */
}
/* .menu_logo_black_leters{
    display: block;
} */

/* .sticky .menu_logo{
    display: block;
}
.sticky .menu_logo_black_leters{
    display: none;
} */

.menu_links{
    cursor: pointer !important;
    color: var(--verydarkgrey) !important;
    font-size: 16px;
    padding: 5px 12px;
}
.menu_links:hover{
    color: var(--lightgrey) !important;
}

.sticky .menu_logo{
    height: 75px !important;
}
.sticky{
    /* background-color: rgb(27, 27, 27, 0.85); */
}
/* .sticky .menu_links{
    color: white !important;
}
.sticky .menu_links:hover{
    color: var(--colorfirst) !important;
} */


@media (max-width: 1020px) {
    .main_menu {
        display: none;
    }
}   