#navbar_frst .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
.logo1 img {
  width: 300px;
}
.navbar_menu ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.navbar_menu ul li{
    float: left;
    margin-left: 10px;
}
.navbar_menu ul li a{
    padding: 7px 20px;
    text-decoration: none;
    color: #000000B2;
    font-size: 17px;
    font-weight: 400;
}
.bg_contact a {
    border: 1px solid #0E5A37;
    border-radius: 5px;
    color: #0E5A37!important;
}
.logo2 {
  margin-left: 40px;
  padding-left: 40px;
  border-left: 1px solid #0e5a37;
}
header {
    position: sticky;
    top: 0px;
    background-color: #0E5A37;
    width: 100%;
    z-index: 1000;
    height: 50px;
}
  
header .container {
    display: flex;
    position: relative;
    justify-content: end;
    align-items: center;
    height: 100%;
}
  .nav-btn {
    flex: 3;
    display: flex;
  }
  
  .nav-links {
    flex: 2;
  }
 
  .nav-links > ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}
  
  .nav-link {
    position: relative;
    padding: 0;
  }
  
  .nav-link > a {
    /* line-height: 0; */
    color: #fff;
    padding: 0 20px;
    letter-spacing: 1px;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .5s;
    text-decoration: none;
    font-weight: 400;
}
.down_arrow {
  width: 16px;
  filter: grayscale(1) invert(1);
  margin-left: 8px;
}
  .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: max-content;
    transform: translateY(10px);
    opacity: 0;
    pointer-events: none;
    transition: .5s;
    background: #0e5a37;
  }
  
  .dropdown ul {
    position: relative;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  
  .dropdown-link > a {
    display: flex;
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    align-items: center;
    justify-content: space-between;
    transition: .3s;
    text-decoration: none;
    font-weight: 400;
  }
  
  .dropdown-link:hover > a {
    background-color: #fff;
    color: #0e5a37;
  }
  
  .dropdown-link:hover img {
    transform: rotate(-90deg);
  }

  
  .dropdown-link {
    position: relative;
  }
  
  .dropdown.second {
    top: 0;
    left: 100%;
    padding-left: .8rem;
    cursor: pointer;
    transform: translateX(10px);
  }
  
  .dropdown.second .arrow {
    top: 10px;
    left: -5.5px;
  }
  
  .nav-link:hover > .dropdown,
  .dropdown-link:hover>.dropdown {
    transform: translate(0, 0);
    opacity: 1;
    pointer-events: auto;
  }
  
  .hamburger-menu-container {
    flex: 1;
    display: none;
    align-items: center;
    justify-content: flex-end;
  }
  
  .hamburger-menu {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  
  .hamburger-menu div {
    width: 1.6rem;
    height: 3px;
    border-radius: 3px;
    background-color: var(--clr-light);
    position: relative;
    z-index: 1001;
    transition: .5s;
  }
  
  .hamburger-menu div:before,
  .hamburger-menu div:after {
    content: '';
    position: absolute;
    width: inherit;
    height: inherit;
    background-color: var(--clr-light);
    border-radius: 3px;
    transition: .5s;
  }
  
  .hamburger-menu div:before {
    transform: translateY(-7px);
  }
  
  .hamburger-menu div:after {
    transform: translateY(7px);
  }
  
  #check {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    z-index: 90000;
    cursor: pointer;
    opacity: 0;
    display: none;
  }
  
  #check:checked ~ .hamburger-menu-container .hamburger-menu div {
    background-color: transparent;
  }
  
  #check:checked ~ .hamburger-menu-container .hamburger-menu div:before {
    transform: translateY(0) rotate(-45deg);
  }
  
  #check:checked ~ .hamburger-menu-container .hamburger-menu div:after {
    transform: translateY(0) rotate(45deg);
  }
  
  @keyframes animation {
    from {
      opacity: 0;
      transform: translateY(15px);
    }
  
    to {
      opacity: 1;
      transform: translateY(0px);
    }
  }
  
  @media (max-width: 920px) {
    .hamburger-menu-container {
      display: flex;
    }
  
    #check {
      display: block;
    }
  
    .nav-btn {
      position: fixed;
      height: calc(100vh - 3rem);
      top: 3rem;
      left: 0;
      width: 100%;
      background-color: var(--clr-btn);
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      overflow-x: hidden;
      overflow-y: auto;
      transform: translateX(100%);
      transition: .65s;
    }
  
    #check:checked ~ .nav-btn {
      transform: translateX(0);
    }
  
    #check:checked ~ .nav-btn .nav-link,
    #check:checked ~ .nav-btn .log-sign {
      animation: animation .5s ease forwards var(--i);
    }
  
    .nav-links {
      flex: initial;
      width: 100%;
    }
  
    .nav-links > ul {
      flex-direction: column;
    }
  
    .nav-link {
      width: 100%;
      opacity: 0;
      transform: translateY(15px);
    }
  
    .nav-link > a {
      line-height: 1;
      padding: 1.6rem 2rem;
    }
  
    .dropdown,
    .dropdown.second {
      position: initial;
      top: initial;
      left: initial;
      transform: initial;
      opacity: 1;
      pointer-events: auto;
      width: 100%;
      padding: 0;
      background-color: var(--clr-dropdown-hov);
      display: none;
    }
  
    .nav-link:hover > .dropdown,
    .dropdown-link:hover>.dropdown {
      display: block;
    }
  
    .nav-link:hover > a > i,
    .dropdown-link:hover>a>i {
      transform: rotate(360deg);
    }
  
    .dropdown-link > a {
      background-color: transparent;
      color: var(--clr-light);
      padding: 1.2rem 2rem;
      line-height: 1;
    }
  
    .dropdown.second .dropdown-link > a {
      padding: 1.2rem 2rem 1.2rem 3rem;
    }
  
    .dropdown.second .dropdown.second .dropdown-link > a {
      padding: 1.2rem 2rem 1.2rem 4rem;
    }
  
    .dropdown-link:not(:nth-last-child(2)) {
      border-bottom: none;
    }
  
    .arrow {
      z-index: 1;
      background-color: var(--clr-btn);
      left: 10%;
      transform: scale(1.1) rotate(45deg);
      transition: .5s;
    }
  
    .nav-link:hover .arrow {
      background-color: var(--clr-nav-hover);
    }
  
    .dropdown .dropdown .arrow {
      display: none;
    }
  
  
    .nav-link > a > i {
      font-size: 1.1rem;
      transform: rotate(-90deg);
      transition: .7s;
    }
  
    .dropdown i {
      font-size: 1rem;
      transition: .7s;
    }
  
    .log-sign {
      flex: initial;
      width: 100%;
      padding: 1.5rem 1.9rem;
      justify-content: flex-start;
      opacity: 0;
      transform: translateY(15px);
    }
  }
  .logo-hide {
    display: none;
}
.nav_social_media a {
    color: #fff;
    margin-left: 15px;
    font-size: 20px;
	text-decoration: none;
}
.nav_social_media a img {
  width: 20px;
  filter: grayscale(1) invert(1);
}
.bg_contact a:hover{
    background: #0E5A37;
    color: #fff!important;
    transition: all .5s linear;
}
.navbar_logo a {
  text-decoration: none;
}


#site-header {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    z-index: 9;
    background: #ffffff;
	display:none;
}
#site-header .fixed {
  position: fixed;
  top: 0;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 900;
  color: #fff;
}
.logo a {
    display: inline-flex;
}
.nav-wrap ul {
  padding: 0;
}
.nav-wrap ul.top_nav {
  display: block;
}
.nav-wrap ul li {
  list-style: none;
  display: inline-block;
  position: relative;
}
.nav-wrap ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  padding: 28px 5px 28px 5px;
  position: relative;
  display: inline-block;
}
.nav-wrap ul.sub-nav {
  display: none;
}
@media screen and (min-width: 919px) {
  .nav-wrap ul.sub-nav {
    display: none;
    width: 220px;
    color: #fff;
    right: 0;
    padding: 0px 0px;
    margin: 0px;
    position: absolute;
    left: 0px;
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.3);
  }
  .nav-wrap ul.sub-nav ul.sub-nav {
    left: 100%;
    top: 0;
    z-index: 1;
  }
  .nav-wrap li:hover > ul.sub-nav,
  .nav-wrap ul.sub-nav li {
    display: block;
  }
  .nav-wrap ul.sub-nav li a {
    padding: 12px;
    color: #333;
    display: block;
    border-bottom: 1px solid #eee;
    margin: 0;
    background: #fff;
  }
  .nav-wrap ul.sub-nav ul.sub-nav li a {
    padding-right: 25px;
  }
  .nav-wrap ul.sub-nav li:hover > a {
    opacity: 0.8;
  }
  .nav-wrap li:hover > ul {
    display: block;
    -moz-animation: fadeInUp 0.3s ease-in;
    -webkit-animation: fadeInUp 0.3s ease-in;
    animation: fadeInUp 0.3s ease-in;
  }
  .nav-wrap > ul > li:not(:last-child) {
    margin-right: 30px;
  }
  .nav-wrap ul ul li:hover > ul {
    display: block;
    -moz-animation: fadeInRight 0.3s ease-in;
    -webkit-animation: fadeInRight 0.3s ease-in;
    animation: fadeInRight 0.3s ease-in;
  }
  .nav-wrap ul li.has-submenu:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f078";
    font-size: 16px;
    color: #fff;
    padding-right: 5px;
  }
  .nav-wrap ul ul li.has-submenu:after {
    color: #333;
    transform: rotate(-90deg);
    position: absolute;
    right: 8px;
    top: 50%;
    padding: 0;
    margin-top: -7px;
  }
  .nav-wrap ul li.submenu-active > ul.sub-nav {
    display: none !important;
  }
  .nav-wrap ul li.submenu-active:hover > ul.sub-nav {
    display: block !important;
  }
  /*Hover Effect*/
  .nav-wrap > ul > li:before {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #fff;
    transform-origin: bottom right;
    transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  }
  .nav-wrap > ul > li.active:before,
  .nav-wrap > ul > li:hover:before {
    transform: scaleX(1);
    transform-origin: bottom left;
  }
  /*Hover Effect*/
}

/*Res Button*/
.nav-button {
  height: 27px;
  width: 36px;
  margin-left: 30px;
  display: none;
}
.nav-button a {
  height: 27px;
  width: 36px;
  display: inline-block;
  cursor: pointer;
}
.nav-button span, .nav-button span:before, .nav-button span:after {
    cursor: pointer;
    border-radius: 50px;
    height: 2px;
    width: 30px;
    background: #0e5a37;
    position: absolute;
    display: block;
    content: "";
    transition: all 300ms ease-in-out;
}
.nav-button span {
  margin: 10px 0 0 0;
}
.nav-button span:before {
  top: -10px;
}
.nav-button span:after {
  top: 10px;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

/*leftnav*/
.leftnav {
  width: 300px;
  margin: 0;
  display: inline-block;
  top: 120px;
  position: absolute;
  left: 10px;
}
ul.leftnav-listing {
  display: inline-block;
  padding: 20px 0;
  width: 58px;
  border: 3px solid #fff;
  border-radius: 40px;
}
ul.leftnav-listing.leftnav-fixed {
  position: fixed;
  top: 120px;
  max-width: 300px;
}
ul.leftnav-listing li {
  display: block;
  border-radius: 50%; /* overflow:hidden; */
  text-align: center;
  max-width: 25px;
  margin: 0 auto 20px auto;
  font-size: 0;
  position: relative;
}
ul.leftnav-listing li:last-child {
  margin-bottom: 0;
}
ul.leftnav-listing li a {
  padding: 7px;
  display: inline-block;
  font-size: 16px;
  color: #fff;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #fff;
}
ul.leftnav-listing li.is_visiable_section a {
  background: #fff;
}
ul.leftnav-listing li:not(:last-child):after {
  content: "";
  height: 100%;
  position: absolute;
  background: #fff;
  left: 50%;
  z-index: 0;
  bottom: -100%;
  width: 2px;
  margin-left: -1px;
}


.vh {
  height: 100vh;
  background: #010a43;
  display: flex;
  align-items: center;
  font-size: 5vw;
  color: #ffff;
  justify-content: center;
  text-transform: uppercase;
}
.vh.aqua {
  background: #9f50dc;
}
.vh.pink {
  background: #a80874;
}
.vh.yellow {
  background: #ffc400;
}
.vh span {
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.02em;
  -webkit-text-stroke-color: #fff;
  -webkit-text-stroke-width: 0.02em;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-repeat: no-repeat;
  transition: background-size 0.5s cubic-bezier(0.67, 0.01, 0.15, 0.98);
  background-image: linear-gradient(
    135deg,
    #fff 0%,
    #fff 50%,
    transparent 50.1%
  );
  background-size: 0% 100%;
}
.vh span:hover {
  background-size: 220% 100%;
}

/*Res Button*/
@media screen and (max-width: 919px) {
  .nav-button {
    display: block;
  }
  .show_menu #nav-toggle span:after {
    transform: translate3d(0, -10px, 0) rotate(-91deg);
  }
  .show_menu #nav-toggle span {
    transform: translate3d(0, 0px, 0) rotate(45deg);
  }
  .show_menu #nav-toggle span:before {
    transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
    opacity: 0;
  }
}

@media screen and (max-width: 919px) {
/*   nav {
    padding: 20px 0;
  } */
.nav-wrap ul.top_nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #0E5A37;
    height: calc(100vh - 40px);
    overflow-y: scroll;
}
  .nav-wrap > ul li {
    width: 100%;
    border-top: 1px solid #ffffff21;
    position: relative;
  }
  .nav-wrap > ul > li:last-child {
    border-bottom: 0;
  }
  .nav-wrap > ul > li a {
    width: 100%;
    margin: 0;
    font-size: 20px;
    width: 100%;
    display: block;
    padding: 20px 6% 21px 6%;
    color: #fff;
  }
ul li span.down-arrow {
    position: absolute;
    height: 20px;
    width: 20px;
    top: 12px;
    right: 15px;
    z-index: 2;
    cursor: pointer;
    user-select: none;
    background: url(https://api.iconify.design/ep/arrow-down.svg?color=white) no-repeat center center / contain;
}
  .nav-wrap ul li a:not(:only-child) {
    width: auto;
    display: inline-block;
  }

  .nav-wrap ul ul a {
    padding-left: 9%;
	  background:#203129;
  }
}
.nav-wrap {
   float:right;
}
/*Nav*/
