

/* ********************************* -- navbar MOBILE sl--  *****************************/

@media(max-width:767px) {   .navbar {
    position: fixed;
    bottom: 0px;
    height:40px;
    width: 100%;
    padding: 30px;
   color: rgb(25, 125, 100);
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ebe9e4;
	z-index: 100;
	box-shadow: 0 -2px 10px -4px rgba(0, 0, 0, .34);
    border:1px solid blue;
    
}
.menu {
    display:none;
}
}



/* ********************************* -- Navbar tablet plus --  *****************************/
@media(min-width:768px) {
.navbar {
    position: fixed;
    top: 0;
    height:40px;
    width: 100%;
    padding: 30px;
    background: rgba(0, 0, 0, 0.0); /* Transparent background */
    color: black;
    z-index: 1000;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border:1px solid red;
    
}


.menu {
    font-family:Helvetica, sans-serif; 
    font-size:1em;
    font-weight:400;
    padding-left:20px; 
    color:rgb(25, 125, 100);
}
}
.menu-icon {
    display: flex;
    align-items: center;
    cursor: pointer;
}

/* ********************************* -- Hamburger ALL --  *****************************/


.hamburger {
    width: 30px;
    height: 2px;
    background-color: rgb(25, 125, 100);
    position: relative;
    margin: auto;
    transition: all 0.3s ease-in-out;
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: rgb(25, 125, 100);
    transition: all 0.3s ease-in-out;
    z-index:100;
}

.hamburger:before {
    top: -10px;
}

.hamburger:after {
    bottom: -10px;
}




/* ********************************* -- ARROWS MOBILE --  *****************************/
    .arrow-right {
       display: inline-block;
        border-right: 4px solid #136651;
        border-bottom: 4px solid #136651;
        width: 10px; height: 10px;
        transform: rotate(-45deg);
    }
    .arrow-left {
        display: inline-block;
        border-right: 4px solid #136651;
        border-bottom: 4px solid #136651;
        width: 10px; height: 10px;
        transform: rotate(135deg);
        }

 /* ********************************* -- Full-page menu styles --  *****************************/
.full-page-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:    rgba(235, 233, 228, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.5s ease-in-out;
    z-index: 99;
}

.full-page-menu ul {
    list-style: none;
    text-align: center;
}

.full-page-menu ul li {
    margin: 20px 0;
}

.full-page-menu ul li a {
    color: rgb(135, 107, 66);
    text-decoration: none;
    font-size: 24px;
    transition: color 0.3s ease-in-out;
}

.full-page-menu ul li a:hover {
    color: #f4f4f4;
}

/* *************************************---- Active state for the full-page menu -----****************************** */
.full-page-menu.active {
    transform: translateY(0);
}

/* **************************************--  Rotate the hamburger icon when menu is active -- ************************* */
.menu-icon.active .hamburger {
    transform: rotate(45deg);
}

.menu-icon.active .hamburger:before {
    top: 0;
    transform: rotate(90deg);
}

.menu-icon.active .hamburger:after {
    bottom: 0;
    transform: rotate(90deg);
}
       