:root {
    --primary-color: #6d8d23; /* Green*/
    --primary-color-hover: #aebf83; /*Green Light*/
    --secondary-color: #9fcbed; /*light blue*/
      --bdBackground: #f1f4e9; /*lighter green*/
    --transition3s: .3s linear;
}

/* MENU TOGGLE 
==================*/
.hamburger-menu {
    width: 50px;
    height: 28px;
    position: relative;
}
@media (max-width: 480px){
    .hamburger-menu {
        font-size: 14px;
    }
}
#menu__toggle {
  opacity: 0;
}
#menu__toggle:checked ~ .menu__btn > span {
  transform: rotate(45deg);
    background-color: var(--white);
}
#menu__toggle:checked ~ .menu__btn > span::before {
  top: 0;
  transform: rotate(0);
  display:none;
  background-color: var(--white);
}
#menu__toggle:checked ~ .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
  background-color: var(--white);
}
#menu__toggle:checked ~ .menu__box {
  visibility: visible;
  left: 0%;
}
.menu__btn {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0px;
  left: 0px;
  cursor: pointer;
  z-index: 2;
  padding:14px 8px 14px 40px;
  color: var(--primary-color);
}
.menu__btn > span {
    margin-left:8px;
}
.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  display: block;
  position: absolute;
  left:0px;
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
  font-size: 0px;
  transition-duration: .25s;
}
.menu__btn > span::before {
  content: '';
  top: -10px;
}
.menu__btn > span::after {
  content: '';
  top: 10px;
}
.menu__box {
    position: fixed;
    visibility: hidden;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 80px 0;
    color:#fff;
    z-index: 1;
    box-shadow: 1px 0px 6px rgba(0, 0, 0, .2);
    transition-duration: .55s;
    background: var(--primary-color) url("/images/logo-icon-opacity.svg") no-repeat;
    background-position: right 30px bottom 15px;
    background-size: 25%;
    overflow-x: hidden;
    overflow-y: auto;
}
@media screen and (max-width:767px) {
  .menu__box {
        padding: 50px 0;
        background-position: right 20px bottom 55px;
  }
}

.menu-ul {
   list-style: none; 
    margin: 0;
    overflow-x: auto;
}
@media screen and (min-width:768px) {
    .menu-ul {
        display: block;
        columns: 2;
        column-gap: 20px;
    }  
}
@media screen and (min-width:1200px) {
    .menu-ul {
        display: block;
        columns: 3;
        column-gap: 15px;
    }  
}
@media screen and (min-width:1400px) {
    .menu-ul {
        display: block;
        columns: 3;
        column-gap: 20px;
    }  
}
.menu-ul li {
    break-inside: avoid;
}

.menu__item {
  padding: 12px 24px;
  text-align: left;
  font-size: 26px;
  font-weight: 400;
  text-decoration: none;
  transition-duration: .25s;
}
@media (max-width: 991x){
    .menu__item {
        text-align: center; 
        font-size: 24px;
    }
}

@media (max-width: 767px){
    .menu__item {
        text-align: center; 
        font-size: 22px;
        position: relative;
    }
    .menu__item:not(:first-child):before{
        content:"";
        width:80px;
        position:absolute;
        top:0;
        left: calc(50% - 40px);
        height:1px;
        background:var(--white);
    }
}
.menu__item a {
    color:var(--white);
}
.menu__item a:hover,
.menu__item .active{
  text-decoration: none;
      color:  var(--bdBackground);
}

.menu-ul .sub-menu {
    font-size: 22px;
    list-style: none;
    padding: 0;
    margin: 0 0 0 15px;
    font-weight: 300;
}

@media (max-width: 767px){
  .hamburger-menu {
    margin-right: 0px;
  }
  .menu-ul .sub-menu {
    font-size: 20px;
    margin: 6px 0 0 0;
  }
}

.menu-contact {
    font-size: 20px;
    text-align: left;
    line-height: 1.5;
    border-left: 1px solid var(--white);
    color: var(--white);
}
.menu-contact a{
    color:var(--white);
    text-decoration:underline;
}
.menu-contact ul img {
    height:30px;
    margin-right:15px;
    filter: brightness(0) invert(1);
}

@media screen and (max-width:480px) {
    .menu__btn {
        padding: 14px 5px 14px 35px;
    }
    .menu__btn > span, .menu__btn > span::before, .menu__btn > span::after {
            width: 22px;
    }
    #menu__toggle:checked ~ .menu__btn > span {
        width: 26px;
    }
    
    .hamburger-menu {
        width: 30px;
        
    }
  /*  .menu__item {
        font-size: 18px;
    }*/

}