.menu {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    width: 100%;
    background-color: var(--main-color);
    border-radius: 25px;
}

.menu-items-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    width: 95%;
}

#settings_block {
    z-index: 2;
    position: absolute;
    right: 2rem;
    background-color: #FBFBFB;
    box-shadow: 0px -2px 4px rgba(100, 100, 100, 0.5), 0px 2px 4px rgba(100, 100, 100, 0.5);
    padding-left: 1rem;
    padding-right: 1rem;
    /*padding-top: 0.5rem;
    padding-bottom: 0.5rem;*/
    max-width: 12rem;
    min-width: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    /*row-gap: 1rem;*/
    background-color: antiquewhite;
}

#settings_block a {
    text-transform: capitalize;
    width: 100%;
    border: solid black 1px;
    padding: 1rem;
    color:black;
    text-decoration: none;
}

#search_btn img {
    width: 25px;
}

.menu-items-container #menu_settings_btn,
#mobile_menu_settings_btn {
    cursor: pointer;
    width: 25px;
    height: 25px
}

.menu-items-container #tools_container_desktop {
    display: flex;
    flex-direction: row;
    column-gap: 1rem;
    align-items: center;
}

.menu-items-container #tools_container_desktop a{
    color:black;
}

.sl-nav {
    display: inline;
}

.sl-nav>ul {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    display: inline-block;
}

.sl-nav li {
    cursor: pointer;
}

.lang_drop_visible_hidden {
    display: none;
}

.lang_drop_visible {
    position: absolute;
    top: 29px;
    display: flex;
    flex-direction: column;
    background: #fff;
    width: 75px;
    padding-top: 0px;
    z-index: 1;
    border-radius: 5px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}


#lang_drop {
    background-color: antiquewhite;
}

#lang_drop a {
    padding: 0.5rem;
    border: solid 1px black;
    color: black;
    text-decoration: none;
}

.sl-nav li ul li {
    position: relative;
    text-align: left;
    background: transparent;
    padding: 15px 15px;
    padding-bottom: 0;
    z-index: 2;
    font-size: 15px;
    color: #3c3c3c;
}

.sl-nav li ul li:last-of-type {
    padding-bottom: 15px;
}

.sl-nav li ul li span {
    padding-left: 5px;
}


.menu-items-container #logo-txt {
    margin-left: 5rem;
}

.menu-items-container #tools_container_mobile {
    display: none;
}

#mobile_menu {
    display: flex;
    position: absolute;
    width: 100%;
    min-height: 100%;
    height: 1280px;
    background-color: var(--main-color);
    z-index: 5;
    flex-direction: column;
    align-items: center;
    row-gap: 2rem;
}

#mobile_menu_close_btn {
    width: 100%;
    text-align: end;
    margin-right: 1rem;
    color: white;
    font-size: xxx-large;
    line-height: 36px;
    cursor: pointer;
}

#mobile_menu_pages {
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
}

#mobile_menu_pages a {
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    font-size: x-large;
}

#lang_drop_mobile {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-row-gap: 1rem;
    grid-column-gap: 1rem;
    margin-right: 1rem;
    margin-left: 1rem;
}

#lang_drop_mobile a {
    color: white;
    font-size: x-large;
    text-decoration: none;
}

@media only screen and (max-width: 786px) {

    .menu-items-container #logo_txt {
        /*display: none;*/
        margin-left: 0px;
    }

    .menu-items-container #tools_container_desktop {
        display: none;
    }

    .menu-items-container #tools_container_mobile {
        display: flex;
        column-gap: 0.5rem;
    }
}