* {
    margin: 0;
    padding: 0; 
  }
  
  /* Icon 2 */

header{
  position: fixed;
  width: 100%;
  z-index: 10;
  top: 0;
}
header .container-medium{
  position: relative;
}
#nav-icon2 {
    width: 60px;
    height: 45px;
    position: relative;
    margin: 30px 50px 10px auto;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
  }
  

.nav-area{
  display: flex;
  flex-wrap: nowrap;
  justify-content: right;
}
#nav-icon2 {
}

#nav-icon2 span {
  display: block;
  position: absolute;
  height: 5px;
  width: 50%;
  background: #fff;
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav-icon2 span:nth-child(even) {
  left: 50%;
  border-radius: 0 9px 9px 0;
}

#nav-icon2 span:nth-child(odd) {
  left:0px;
  border-radius: 9px 0 0 9px;
}

#nav-icon2 span:nth-child(1), #nav-icon2 span:nth-child(2) {
  top: 0px;
}

#nav-icon2 span:nth-child(3), #nav-icon2 span:nth-child(4) {
  top: 18px;
}

#nav-icon2 span:nth-child(5), #nav-icon2 span:nth-child(6) {
  top: 36px;
}

#nav-icon2.open span:nth-child(1),#nav-icon2.open span:nth-child(6) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon2.open span:nth-child(2),#nav-icon2.open span:nth-child(5) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon2.open span:nth-child(1) {
  left: 5px;
  top: 7px;
}

#nav-icon2.open span:nth-child(2) {
  left: calc(50% - 5px);
  top: 7px;
}

#nav-icon2.open span:nth-child(3) {
  left: -50%;
  opacity: 0;
}

#nav-icon2.open span:nth-child(4) {
  left: 100%;
  opacity: 0;
}

#nav-icon2.open span:nth-child(5) {
  left: 5px;
  top: 29px;
}

#nav-icon2.open span:nth-child(6) {
  left: calc(50% - 5px);
  top: 29px;
}
  
#nav-outer{
  overflow: hidden;
  position: absolute;
  right: 0px;
  top: -20px;
}
header .header-contact-btn{
  position: absolute;
  right: 140px;
  z-index: 100;
  top: 15px;
}
header .header-contact-btn a{
  transition: 0.3s;
  /* background-color: var(--paleGreen) !important; */
}
header .header-contact-btn a:hover{
  background-color: var(--darkGreen) !important; 
  color: #fff !important;
  transition: 0.3s;
}
#nav-outer .wp-block-navigation__container{
  max-width: 300px;
  height: auto;
  background-color: var(--beige);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: right;
  /* opacity: 0; */
  /* display: none; */
  border: 2px solid var(--brown);
  /* margin-right: 100%; */
  transition: 0.3s;
}
#nav-outer.open .wp-block-navigation__container{
  /* opacity: 1; */
  display: block;
  transition: 0.3s;
}
#nav-outer .wp-block-navigation__container li{
  flex-basis: 100%;
}
#nav-outer ul{
  border-radius: 10px;
  overflow: hidden;
}
#nav-outer ul li{
  padding: 10px 20px;
  color: var(--brown);
  font-weight: 500;
  font-size: 20px;
}
#nav-outer ul li a{
  text-decoration: none;
  transition: 0.3s;
}
#nav-outer ul li a:focus,
#nav-outer ul li a:focus-visible{
  outline: none;
}
#nav-outer ul li a:hover{
  color: var(--teal);
  transition: 0.3s;
}
#nav-outer .nav-inner{
  overflow: hidden;
}
#nav-outer .nav-inner nav{
  margin-top: -200%;
  transition: 0.5s;
  width: 300px;
}
#nav-outer.open .nav-inner nav{
  margin-top: 0px;
  transition: 0.5s;
}

.header-area{
  overflow: visible !important;
}

@media screen and (max-width: 781px){
  #nav-icon2{
    margin: 30px 0px 10px auto;
  }
  .custom-logo-link img{
      max-width: 120px;
  }
  #nav-icon2{
    width: 40px;
  }
  #nav-icon2 span:nth-child(3), #nav-icon2 span:nth-child(4){
    top: 11px;
  }
  #nav-icon2 span:nth-child(5), #nav-icon2 span:nth-child(6){
    top: 22px;
  }
  #nav-icon2.open span:nth-child(6),
  #nav-icon2.open span:nth-child(5){
    top: 17px
  }
}

@media screen and (max-width: 500px){
  #nav-outer .nav-inner nav{
    max-width: 500px;
    width: 100%;
  }
  #nav-outer{
    width: 100%;
  }
  #nav-outer.open .wp-block-navigation__container{
    min-width: 100%;
  }
}