.hide-scrollbar ::-webkit-scrollbar {
    display: block;
    width: 10px;
    background-color: silver;
}

.hide-scrollbar ::-webkit-scrollbar-track {
    background-color: silver;
}

.hide-scrollbar ::-webkit-scrollbar-thumb {
    background-color: #437353;
}

@font-face {
    font-family: Montserrat; 
    src: url('../fonts/Montserrat.ttf');
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
@media screen and (min-width: 1080px) {
    #all_content {
        display: none;
        font-family: Montserrat, sans-serif;
    }
    #header {
        height: 63px;
        box-sizing: border-box;
        background: #ffffff;
        padding-left: 50px;
        display: table;
        width: 100%;
        position: fixed;
        z-index: 99;
        transition: top 0.8s;
        box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 15%);
    }

    #header .logo a img {
        width: 85px;
        max-width: 85px;
        position: absolute;
        right: 79.5%;
        top: 10px;
        transition: 1.3s ease;
    }

    #header .logo a img:hover {
        transition: 1.3s ease;
        transform: rotate(10deg);
    }

    .menu {
        position: absolute;
        left: 20%;
        top: 5px;
        right: 15%;
    }

    .menu .active {
        color: #437353;
    }

    .menu ul {
        text-align: right;
    }
    .menu ul li {
        display: inline-block;
        vertical-align: top;
    }

    .menu a{
        font-family: Montserrat, sans-serif;
        font-size: 16px;
        font-weight: bold;
        text-transform: uppercase;
        color: #000000;
        padding: 0px 10px 0px 10px;
        text-decoration-color: #ffffff;
    }

    #language_li {
        padding-left: 50px;
    }

    #language {
        color: #7a7a7a;
        font-family: Montserrat, sans-serif;
    }

    #language:hover {
        color: #437353;
        text-decoration-color: #ffffff;
    }

    .menu a:hover {
        color: #437353;
        text-decoration-color: #437353;
        transition: 0.3s ease;
        text-transform: none;
    }
    .menu_about a:hover{
        text-decoration-color: #ffffff;
    }
    .menu .menu_active_a {
        text-decoration-color: #000000;
    }
}