:root {
    --bgcolor: #3c9043;
    --bgcolordark: #307636;
    --bgcolorlight: #b6cbc5;
    --bgcolordarker: #26562a;
    --txtcolor: #2f3e4c;
    --txtcolorlight: #f1f9f1;
}
div#head {
        width: 100%;
        height: 70px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        position: relative;
        background-color: var(--bgcolor);
        padding: 0 20px;
}


.head_title {
        flex-grow: 1;
}

#profile {
        position: absolute;
        right: 70px;
        top: 7px;
        height: 55px;
        width: 55px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        user-select: none;
}

.profile img,
#profile img {
        height: 100%;
        width: 100%;
        border-radius: 50%;
}

body {
        background: var(--bgcolorlight);
}

div#contentb {
        height: 70vh;
}

#hamburger {
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
        right: 15px;
        top: 4px;
        background: transparent url('images/menu_w.png') center center no-repeat;
        background-size: auto;
        background-size: contain;
        width: 50px;
        height: 60px;
        z-index: 10;
        cursor: pointer;
}

.langMenupoint {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        align-items: center;
        flex-direction: column;
        width: 100%;
        position: absolute;
        z-index: 100;
        height: 100px;
}

#pop_menu {
        display: none;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 100;
        background: var(--bgcolordark) !important;
        color: #ADB9D8;
        overflow: hidden;
        padding: 0px 0px;
        height: 100%;
        width: 430px;
}

#pop_menu a {
        display: block;
        color: #ADB9D8;
        padding: 10px 15px;
}

#pop_menu .head_logo_wrapper:hover {
        /* background-color: #35415E; */
}

#pop_menu .head_logo_wrapper {
        height: 70px
}

#pop_menu a:hover {
        /* background-color: #35415E60; */
}

#pop_menu_close {
        color: #ffffff;
        position: absolute;
        top: 10px;
        right: 10px;
        display: block;
        width: 35px;
        height: 35px;
        font-weight: bold;
        font-size: 15pt;
        z-index: 105;
        background: transparent url('images/close.png') center center no-repeat;
        background-size: contain;
}

#pop_menu .head_logo_wrapper {
        background-color: var(--bgcolordarker);
        box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.6);
}

#pop_menu .langMenupoint a {
        background-color: var(--bgcolordarker);
        border-radius: 3px;
        width: 60%;
        color: var(--txtcolorlight);
        height: 30px;
        margin: 5px 3px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
        box-shadow: 0px 1px 2px 1px rgba(0, 0, 0, 0.45);
}

#pop_menu .langMenupoint .selected_lang {
        background-color: #ADB9D8;
        border: 1px solid #35415E;
        color: #35415E;
}

#pop_menu .langMenupoint a:hover {
        background-color:rgba(0, 0, 0, 0.5);
}


@media screen and (min-width: 1500px) and (max-width: 1750px) {

        div#head_menu {
                padding-left: 16%;

        }
}

@media screen and (min-width: 1281px) and (max-width: 1500px) {

        div#head_logo {
                width: 150px;
                top: 25px;
        }


}

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

        div#head_logo {
                width: 150px;
                top: 25px;
        }

}