/*==============================================================
	Common Styles Initials
	==============================================================*/
html {
  -webkit-text-size-adjust: none;
  width: 100%;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: auto !important;
  scrollbar-color: #565656 #bfbfbf;
  scrollbar-width: thin;
}
input[type="submit"] {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  border-radius: 0;
}
*,
*:after,
*:before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scrollbar-width: thin;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Outfit", serif;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  width: 100%;
  min-height: 100%;
  background-color: #FFF;
  color: #525252;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 24px;
}
a {
  outline: none;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  color: #FFFFFF;
}
a:hover,
a:focus {
  outline: none;
  text-decoration: none;
}
input,
textarea,
select {
  outline: none;
  resize: none;
}
a,
input,
button {
  outline: none !important;
}
button::-moz-focus-inner {
  border: 0;
}
img {
  border: 0;
  vertical-align: top;
  max-width: 100%;
  height: auto;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
p {
  font-family: "Outfit", serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #525252;
  margin: 0;
}
.show {
  display: flex !important;
}

.hide {
  display: none;
}

.header-wrap {
  width: 100%;
  position: sticky;
  top: -1px;
  left: 0;
  right: 0;
  z-index: 999;
}
/* .header-active .menu-listing li a.active {
  color: #088C29;  
} */

.current_page_item.menu-item-233 a, .current_page_parent.menu-item-233 a {
  color: #088C29 !important;
}
header {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.3s ease-in-out;
  z-index: 999;
}
.header-content {
  padding: 20px 0;
  transition: all 0.3s ease-in-out;
}
.header-menu {
    display: flex;
  align-items: center;
  gap: 32px;
}
.menu-listing {
  gap: 32px;
}
.menu-listing li a {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: #FFFFFF;
}
.menu-listing li a:hover {
  color: #088C29;
}
.header-active {
  background-color: #b4b3b3;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
/* .header-active .menu-listing li a {
  color: #000;
} */
.header-active .menu-listing li a:hover {
  color: #088C29;
}
.header-active .cta-btn a {
  border: 1px solid #088C29;
}
.close-btn img {
  width: 34px;
  height: 34px;
}
.header-logo {
  position: relative;
  z-index: 1;
}
.header-right {
  position: relative;
}
.header-logo img {
  width: 230px;
  height: 76px;
}
@keyframes slideIn {
  0% {
    left: 100%;
    opacity: 0;
  }
  100% {
    left: 0;
    opacity: 1;
  }
}
@keyframes slideOut {
  0% {
    left: 0;
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}


label.icon {
  position: fixed;
  z-index: 200;
  height: 40px;
  width: 40px;
  right: 1%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 26px;
}

.icon .menu {
  position: relative;
  display: block;
  width: 24px;
  height: 3px;
  background-color: #088C29;
  transition: all 0.3s ease-in-out;
}

.icon .menu::before,
.icon .menu::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 3px;
  background-color: #088C29;
  transition: all 0.3s ease-in-out;
}

.icon .menu::before {
  top: -8px;
}

.icon .menu::after {
  top: 8px;
}


.icon .menu.open-icon {
  background-color: transparent; 
}

.icon .menu.open-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.icon .menu.open-icon::after {
  transform: rotate(-45deg);
  top: 0;
}
.menu-listing li.scroll-section a {
  color: #088C29 !important;
}


@media (max-width: 1400px) {
  .header-logo img {
    width: 200px;
    height: auto;
  }

}

@media (min-width: 1024px) {
  .humberger {
    display: none;
  }
  .header-scroll .header-menu {
    display: none;
  }
  .header-scroll .humberger {
    display: block;
  }
  .header-scroll .humberger label.icon {
    height: auto;
    position: relative;
    top: 0;
    width: 40px;
    height: 40px;
  }
  .header-scroll .header-right {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  .open-menu {
    animation: HeaderslideIn 0.3s ease-in-out forwards;
  }
  .close-menu {
    animation: HeaderslideOut 0.3s ease-in-out forwards;
  }
  
  @keyframes HeaderslideIn {
    0% {
      transform: translateX(10%);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  @keyframes HeaderslideOut {
    0% {
      transform: translateX(0);
      opacity: 1;
    }
    100% {
      transform: translateX(10%);
      opacity: 0;
    }
  }
  
}

@media (max-width: 1024px) {
  .menu-listing li a.active {
    color: #088C29;  
  }
  .header-logo img {
    width: 180px;
  }
  .header-menu {
    display: none;
  }
  .humberger {
    display: block;
  }
  label.icon {
    right: 2%;
  }
  .menu-listing {
    gap: 22px;
  }
  .open-menu {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #b4b3b3;
    padding: 90px 15px 0 15px;
    flex-direction: column;
    row-gap: 22px;
    animation: slideIn 0.8s ease-in-out forwards
  }
  .close-menu {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #b4b3b3;
    padding: 90px 15px 0 15px;
    flex-direction: column;
    row-gap: 22px;
    animation: slideOut 0.8s ease-in-out forwards
  }

  .menu-listing {
    flex-direction: column;
  }

  .header-menu .cta-btn {
    text-align: center;
  }

}

@media (max-width: 992px) {
  .header-logo img {
    width: 150px;
  }
}
