/*#region NAVBAR*/

/*      NAVBAR     */
.navbar{
    /* background: #eeeeee; */
    background: #b9dda1;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    top: 0;
    z-index: 20;
    width: 100%;
    user-select: none;

    position: fixed;

    /* overflow-y: visible; */
    border-bottom: #d7e5ce 2px solid;
}
.navbar-container{
    display: flex;
    justify-content: space-between;
    height: 70px;

    max-height: 70px;
    z-index: 10;
    width: 100%;
    max-width: 1800px;

    /* animation: a linear 5s forwards;
    animation-timeline: scroll(); */
}
.navbar__logo {
    align-items: center;
    cursor: pointer;
    display: flex;
    width: fit-content;
    height: inherit;
    position: relative;
    z-index: 10;
    margin-left: 5%;
}
#navbarLogo{
    /* color: #80986c; */
    color: #292929;
    cursor: pointer;
    text-decoration: none;
    font-size: 25px;
    display: flex;
    align-items: center;
    text-align: center;
    position: absolute;
    z-index: 10;
    user-select: none;

    white-space: nowrap;

    height: inherit;
    padding: 10px 0;

    font-weight: 550;

    font-family: "Libre Franklin", sans-serif;
}

.fa-gem{
    margin-right: 0.5rem;
}
.navbar__menu{
   display: flex;
   align-items: center;
   list-style: none;
   margin-right: 40px;
}
.navbar__item{
    display: flex;
    height: 80px;
    text-align: center;
    white-space: nowrap;
}
.navbarText{
    align-self: center;
    height: inherit;
}
.navbar__links{
    color: #292929;
    text-decoration: none;
    display: flex;
    padding: 0 1rem;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;

    font-family: "Libre Franklin", sans-serif;
}
.navbar__btn{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
    width: 30%;
}


.navbar__links:hover {
    color: #80986c;
    transition: all 0.2s ease;
}
.navbar__toggle{
    position: relative;
    z-index: 999;
    user-select: none;
}

a:link { text-decoration: none; }
a:visited { text-decoration: none; }
a:hover { text-decoration: none; }
a:active { text-decoration: none; }

/* 960 PX */
@media screen and (max-width: 960px){

    .navbar{
        justify-content:left;
        min-width: 100%;
        position: fixed;
        z-index: 999;
        top: 0;
    }
    .navbar-container{
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 80px;
        z-index: 999;
        width: 100%;
        max-width: 1700px; 
        padding: 0;
    }

    .navbar__menu{
        display: block;
        margin: 0;
        width: 250px;
        position: fixed;
        right: -250px;
        top: 0;
        opacity: 0;
        transition: all 0.3s ease;
        height: 100%;
        z-index: -1;
        background: #272727;

        padding-top: 200px;
    }

    .navbar__menu.active{
        background: #c4d9b6         ;
        right: 0%;
        top: 0;
        opacity: 1;
        z-index: 998;
        height: 100%;


        font-size: 1.6rem;  

        /* overflow-y: visible; */
    }

    .navbar__logo{margin-left: 3rem; display: flex; position: static;}

    #navbarLogo{
        text-align: center;
        position: static;
        display: flex;
        z-index: -1;
        text-decoration: none;
    }

    .navbar__toggle .bar{
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background: #80986c;
        position: relative;
        z-index: 999;
    }

    .navbar__item{
        display: block;
        width: 100%;
        z-index: 999;
        height: 60px;
        border-bottom: #949494 solid 1px;
    }

    .navbar__links{
        text-align: left;
        width: 100%;

        font-size: 12px;

        height: 10px;

        color: #545454;

        padding-top: 20px;
        padding-bottom: 20px;

        display: table;
        justify-content: center;
        align-items: center;

    }
    .navbarText{
        height: 59px;
        display: flex;
        align-items: center;
    }

    .navbar__item :hover{
        background-color: #d7e5ce;
    }

    #mobile-menu {
        position: absolute;
        top: 55%;
        right: 5%;
        transform: translate(0, -50%);
        z-index: 999;

        transition: transform 0.3s ease;
    }

    .navbar__btn{
        padding: 0 0;
        transform: translateY(-10px);
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }

    .button{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 80px;
        margin: 0;
    }

    #mobile-menu.is-active{
        transform: translate(0, -50%) rotate(360deg);
    }

    .navbar__toggle .bar  {
        display: block;
        cursor: pointer;
        text-align: center;
    }

    #mobile-menu.is-active .bar:nth-child(2){
        opacity: 0;
    }

    #mobile-menu.is-active .bar:nth-child(1){
        transform: translateY(8px) rotate(-45deg);
    }

    #mobile-menu.is-active .bar:nth-child(3){
        transform: translateY(-8px) rotate(45deg);
    }

    .firstCont{
        margin-top: 0px !important;
    }
}

@media (max-width: 420px){
    .navbar__logo{
        margin-left: 10px;
    }

    #navbarLogo{
        font-size: 25px;
    }
}

/*#endregion*/
