header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
header .header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px 0;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
header .header-nav .logo {
  width: 100%;
  max-width: 85px;
}
@media (min-width: 1200px) {
  header .header-nav .logo {
    max-width: 120px;
  }
}
header .header-nav .logo figure {
  padding-bottom: 52%;
}
header .header-nav .search-field {
  width: 100%;
  border-radius: 30px;
  padding: 1px;
  position: relative;
  background: -webkit-gradient(linear, right top, left top, from(rgba(2, 153, 73, 0)), color-stop(97%, rgba(2, 153, 73, 0.25)));
  background: linear-gradient(270deg, rgba(2, 153, 73, 0) 0%, rgba(2, 153, 73, 0.25) 97%);
  -webkit-box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.07);
  position: relative;
}
header .header-nav .search-field input {
  border-radius: 30px;
  padding: 15px 35px;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 100%;
  border-color: transparent;
  padding-left: 60px;
  font-size: 19px;
  line-height: 1;
  border: 0px;
}
header .header-nav .search-field input::-webkit-input-placeholder {
  font-size: 19px;
  color: rgba(121, 121, 121, 0.5);
}
header .header-nav .search-field input::-moz-placeholder {
  font-size: 19px;
  color: rgba(121, 121, 121, 0.5);
}
header .header-nav .search-field input:-ms-input-placeholder {
  font-size: 19px;
  color: rgba(121, 121, 121, 0.5);
}
header .header-nav .search-field input::-ms-input-placeholder {
  font-size: 19px;
  color: rgba(121, 121, 121, 0.5);
}
header .header-nav .search-field input::placeholder {
  font-size: 19px;
  color: rgba(121, 121, 121, 0.5);
}
header .header-nav .search-field .search-icon {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 22px;
}
header .header-nav .search-field .search-icon img {
  width: 100%;
  height: 100%;
}
header .header-nav .search-field .search-result {
  position: absolute;
  top: calc(100% + 20px);
  left: 0;
  width: calc(100% + 40px);
  margin: 0 -20px;
  background: #fff;
  padding: 30px 30px;
  -webkit-box-shadow: 0 0 2px 0px #ccc;
          box-shadow: 0 0 2px 0px #ccc;
}
@media (min-width: 1200px) {
  header .header-nav .search-field .search-result {
    top: calc(100% + 5px);
    margin: 0;
    width: 100%;
    padding: 20px 30px;
    padding-top: 30px;
    border-radius: 10px;
    overflow: hidden;
  }
}
header .header-nav .search-field .search-result ul {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}
header .header-nav .search-field .search-result ul li {
  color: rgba(121, 121, 121, 0.5);
  font-size: 20px;
  line-height: 1;
}
@media (min-width: 1200px) {
  header .header-nav .search-field .search-result ul li {
    border-bottom: 0;
  }
}
@media (min-width: 1200px) {
  header .header-nav .search-field .search-result ul li {
    font-size: 18px;
  }
}
header .header-nav .search-field .search-result ul li a {
  text-decoration: none;
  color: #000;
  display: block;
  padding: 15px 0;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
@media (min-width: 1200px) {
  header .header-nav .search-field .search-result ul li a {
    padding: 15px 0;
  }
}
@media (hover: hover) {
  header .header-nav .search-field .search-result ul li a:hover {
    color: #029949;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
}
header .header-nav .search-field .search-result ul li:first-child a {
  padding-top: 0;
}
header .header-nav .search-field .search-result ul li:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}
header .header-nav nav {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (min-width: 992px) {
  header .header-nav nav {
    padding-left: 25px;
  }
}
header .header-nav nav .other-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 1200px) {
  header .header-nav nav .other-options {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}
@media (min-width: 1400px) {
  header .header-nav nav .other-options {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}
header .header-nav nav .other-options .header-contact .btn-secondary {
  background: -webkit-gradient(linear, right top, left top, from(rgb(1, 51, 24)), color-stop(50%, rgb(1, 102, 49)), color-stop(98%, rgb(1, 51, 24)));
  background: linear-gradient(270deg, rgb(1, 51, 24) 0%, rgb(1, 102, 49) 50%, rgb(1, 51, 24) 98%);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
header .header-nav nav .other-options .header-contact .btn-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(70deg, rgb(1, 51, 24) 0%, rgb(1, 102, 49) 50%, rgb(6, 140, 68) 98%);
  opacity: 0;
  z-index: -1;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}
header .header-nav nav .other-options .header-contact .btn-secondary:hover::before {
  opacity: 1;
}
header .header-nav nav .mobile-menu {
  display: block;
}
@media (min-width: 1200px) {
  header .header-nav nav .mobile-menu {
    display: none;
  }
}
header .header-nav nav .mobile-menu .selected-value.login {
  display: none;
}
header .header-nav nav .mobile-menu .offcanvas-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5px;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0;
}
header .header-nav nav .mobile-menu .offcanvas-btn span {
  width: 25px;
  height: 2px;
  background-color: #000;
  display: block;
}
header .header-nav nav .mobile-menu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
header .header-nav nav .mobile-menu ul .search-btn {
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0;
}
header .header-nav nav .mobile-menu ul .mobile-card {
  -webkit-filter: brightness(0);
          filter: brightness(0);
}
header .header-nav nav .desktop-menu {
  display: none;
}
@media (min-width: 1200px) {
  header .header-nav nav .desktop-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
header .header-nav nav ul.desktop-menu {
  padding: 0;
  margin: 0;
  list-style-type: none;
  width: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
header .header-nav nav ul.desktop-menu .main-menuHeader {
  padding: 14px 42px;
  border: 1px solid #029949;
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}
header .header-nav nav ul.desktop-menu .main-menuHeader li {
  list-style-type: none;
}
header .header-nav nav ul.desktop-menu .main-menuHeader li a {
  text-decoration: none;
  font-size: 16px;
  line-height: 1.1;
  color: #908a8a;
  font-weight: normal;
}
header .header-nav nav ul.desktop-menu .main-menuHeader li a:hover, header .header-nav nav ul.desktop-menu .main-menuHeader li a:active, header .header-nav nav ul.desktop-menu .main-menuHeader li a.active {
  color: #029949;
}
header .header-nav nav ul.desktop-menu .search_wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1 0;
          flex: 1 0;
  max-width: 45.5%;
  margin-right: 20px;
}
@media (min-width: 1400px) {
  header .header-nav nav ul.desktop-menu .search_wrap {
    margin-right: 50px;
  }
}
header .header-nav nav ul.desktop-menu .cart {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #CECECE;
  border-radius: 50%;
  padding: 2px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media (hover: hover) {
  header .header-nav nav ul.desktop-menu .cart:hover {
    border-color: #999999;
  }
}
header .header-nav nav ul.desktop-menu .cart img {
  width: 24px;
  height: 24px;
}
header .hamburger-menu ul {
  list-style-type: none;
  margin: 0;
  padding-left: 0;
}
header .hamburger-menu ul li a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  font-size: 20px;
  padding: 10px 0;
  display: block;
}
header .hamburger-menu ul li a.active {
  color: #029949;
}
header .hamburger-menu ul li .accordion {
  background-color: transparent;
}
header .hamburger-menu ul li .accordion .accordion-item,
header .hamburger-menu ul li .accordion .accordion-header > .accordion-button {
  background-color: transparent;
  border: 0px;
  padding-inline: 0;
}
header .hamburger-menu ul li .accordion .accordion-item:last-of-type {
  border-radius: 0px;
}
header .hamburger-menu ul li .accordion .accordion-button {
  color: #000;
  padding: 10px 0;
  font-size: 20px;
  font-weight: 500;
}
header .hamburger-menu ul li .accordion .accordion-button:focus-visible, header .hamburger-menu ul li .accordion .accordion-button:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
header .hamburger-menu ul li .accordion .accordion-button::after {
  -webkit-filter: brightness(0);
          filter: brightness(0);
}
header .hamburger-menu ul li .accordion .accordion-button:not(.collapsed) {
  border-bottom: 0px;
  -webkit-box-shadow: none;
          box-shadow: none;
}
header .hamburger-menu ul li .accordion .accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-icon);
}
header .hamburger-menu ul li .accordion .accordion-body {
  padding-inline: 0;
  padding-top: 0;
  padding-left: 20px;
  padding-bottom: 0;
}
header .custom-select-wrapper {
  position: relative;
  /* Essential for positioning the dropdown list */
  display: inline-block;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  /* Prevents text selection on the control */
}
header .custom-select-wrapper.mobile-login {
  max-width: 20px;
}
header .custom-select-wrapper.mobile-login .custom-select-trigger {
  border: 0px;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
header .custom-select-wrapper.mobile-login .custom-options {
  left: unset;
  right: 0;
  top: calc(100% + 10px);
}
header {
  /* 2. The main 'button' or trigger element (e.g., the 'Login' or 'EN' box) */
}
header .custom-select-trigger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 25px;
  /* Generous padding to match the image */
  background-color: #ffffff;
  border: 1px solid #c7c7c7;
  /* Subtle light gray border */
  border-radius: 30px;
  /* Highly rounded corners */
  cursor: pointer;
  font-size: 16px;
  color: #6a6a6a;
  /* Gray text color */
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  min-width: 80px;
  /* Ensures a consistent minimum width */
}
header .custom-select-trigger .selected-value img,
header .custom-select-trigger .icon img {
  width: 100%;
  height: 100%;
}
header {
  /* Hover state for user feedback */
}
header .custom-select-trigger:hover {
  border-color: #999999;
}
header {
  /* 3. Styling the Chevron/Dropdown Arrow */
}
header .chevron {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #6a6a6a;
  /* Downward pointing arrow */
  margin-left: 10px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
header {
  /* State when the dropdown is open (flips the chevron) */
}
header .custom-select-wrapper.open .chevron {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
header {
  /* 4. Styling the Dropdown Options List */
}
header .custom-options {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  opacity: 0;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  background-color: #ffffff;
  border: 1px solid #c7c7c7;
  border-radius: 15px;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  -webkit-transition: max-height 0.3s ease-out, border-color 0.2s;
  transition: max-height 0.3s ease-out, border-color 0.2s;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  scrollbar-width: none;
  padding: 10px 0;
}
header .custom-select-wrapper.open .custom-options {
  max-height: 200px;
  overflow-y: auto;
  opacity: 1;
}
header .custom-options .option {
  padding: 0px 20px;
  cursor: pointer;
  color: #6a6a6a;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-bottom: 10px;
  white-space: nowrap;
}
header .custom-options .option:last-child {
  margin-bottom: 10;
}
header .custom-options .option:hover {
  color: #029949;
}
header .header-offcanvas {
  width: 100% !important;
  max-width: 550px;
}
header .header-offcanvas .btn-close:focus-visible, header .header-offcanvas .btn-close:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
header .search-offcnavas {
  height: -webkit-fit-content !important;
  height: -moz-fit-content !important;
  height: fit-content !important;
}
header .search-offcnavas .offcanvas-body {
  padding-bottom: 20px;
  overflow-y: visible;
}
header .search-offcnavas .btn-close:focus-visible, header .search-offcnavas .btn-close:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
header .new-header-nav {
  background: -webkit-gradient(linear, right top, left top, from(rgb(1, 51, 24)), color-stop(50%, rgb(1, 102, 49)), color-stop(98%, rgb(1, 51, 24)));
  background: linear-gradient(270deg, rgb(1, 51, 24) 0%, rgb(1, 102, 49) 50%, rgb(1, 51, 24) 98%);
}
header .new-header-nav nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .new-header-nav nav ul > li {
  padding: 16px 12px;
  line-height: 1.1;
  text-align: center;
  font-size: 14px;
  position: relative;
}
header .new-header-nav nav ul > li.submenuwrap {
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
header .new-header-nav nav ul > li.submenuwrap:hover .submenu {
  opacity: 1;
  pointer-events: auto;
}
header .new-header-nav nav ul > li a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}
header .new-header-nav nav ul > li .submenu {
  background-color: #000;
  padding: 20px 25px;
  position: absolute;
  top: 100%;
  left: 0;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 3px 0px #ccc;
          box-shadow: 0 0 3px 0px #ccc;
  width: 100%;
  opacity: 0;
  pointer-events: none;
}
header .new-header-nav nav ul > li .submenu ul {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
header .new-header-nav nav ul > li .submenu ul li {
  padding: 0;
}
header .new-header-nav nav ul > li .submenu ul li a {
  color: #fff;
  padding: 0;
  font-size: 16px;
  -webkit-transition: color ease 0.5s;
  transition: color ease 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header .new-header-nav nav ul > li .submenu ul li a:hover {
  color: #029949;
}
header .new-header-nav nav ul > li .submenu ul li a .down-arrow {
  width: 10px;
  height: 10px;
  margin-left: 10px;
}
header .new-header-nav nav ul > li .submenu ul li a .down-arrow svg {
  width: 100%;
  height: 100%;
}
header .new-header-nav nav ul > li .submenu ul li {
  margin-bottom: 20px;
}
header .new-header-nav nav ul > li .submenu ul li:last-child {
  margin-bottom: 0;
}
@media (hover: hover) {
  header .new-header-nav nav ul > li.megamenu-link:hover .megamenu .megamenu-wrapper {
    opacity: 1;
    visibility: visible;
    /* Ensure visibility toggles */
    pointer-events: auto;
  }
}
header .new-header-nav nav .megamenu {
  position: fixed;
  top: 100%;
  left: 0;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #000;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  top: 52px;
  pointer-events: none;
  z-index: 1000;
  /* Ensure it stays on top */
}
header .new-header-nav nav .megamenu ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
header .new-header-nav nav .megamenu ul li {
  text-align: start;
  padding: 0;
}
header .new-header-nav nav .megamenu ul li a {
  color: #000;
}
header .new-header-nav nav .megamenu .megamenu-menu {
  width: 56%;
  padding-right: 30px;
}
header .new-header-nav nav .megamenu .megamenu-menu > ul {
  gap: 30px;
  row-gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  width: 100%;
}
header .new-header-nav nav .megamenu .megamenu-menu > ul > li {
  width: calc(50% - 20px);
  font-family: "Poppins", sans-serif;
}
header .new-header-nav nav .megamenu .megamenu-menu > ul > li:nth-child(1) .title {
  color: #029949;
}
header .new-header-nav nav .megamenu .megamenu-menu > ul > li:nth-child(2) .title {
  color: #0056b3;
}
header .new-header-nav nav .megamenu .megamenu-menu > ul > li:nth-child(3) .title {
  color: #e44d26;
}
header .new-header-nav nav .megamenu .megamenu-menu > ul > li:nth-child(4) .title {
  color: #8e44ad;
}
header .new-header-nav nav .megamenu .megamenu-menu > ul > li:nth-child(5) .title {
  color: #16a085;
}
header .new-header-nav nav .megamenu .megamenu-menu > ul > li:nth-child(6) .title {
  color: #f39c12;
}
header .new-header-nav nav .megamenu .megamenu-menu .megamenu-wrap .title {
  margin-bottom: 15px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1px;
}
header .new-header-nav nav .megamenu .megamenu-menu .megamenu-wrap ul {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
header .new-header-nav nav .megamenu .megamenu-menu .megamenu-wrap ul li {
  margin-bottom: 5px;
  font-size: 14px;
}
header .new-header-nav nav .megamenu .megamenu-menu .megamenu-wrap ul li a {
  font-weight: 500;
  line-height: 1.6;
  font-family: "Poppins", sans-serif;
  -webkit-transition: color ease 0.5s;
  transition: color ease 0.5s;
  font-size: 14px;
}
@media (hover: hover) {
  header .new-header-nav nav .megamenu .megamenu-menu .megamenu-wrap ul li a:hover {
    color: #029949;
  }
}
header .new-header-nav nav .megamenu .megamenu-menu .megamenu-wrap ul li a.active {
  color: #029949;
  /* Active state for sub-links if needed */
}
header .new-header-nav nav .megamenu .megamenu-menu .megamenu-wrap ul li:last-child {
  margin-bottom: 0;
}
header .new-header-nav nav .megamenu .megamenu-wrapper {
  background-color: #Fff;
  -webkit-box-shadow: 0 0 3px 0px #ccc;
          box-shadow: 0 0 3px 0px #ccc;
  padding: 30px;
  border-bottom-right-radius: 30px;
  width: 100%;
  max-width: 1272px;
  margin: 0 auto;
  opacity: 0;
  visibility: hidden;
  /* Start hidden */
  pointer-events: none;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  /* Start slightly lower */
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  /* Smooth transition for opacity, visibility, and transform */
}
header .new-header-nav nav .megamenu .megamenu-image {
  width: 44%;
  max-width: none;
  margin-left: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
header .new-header-nav nav .megamenu .megamenu-image figure {
  position: relative;
  padding-bottom: 94%;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
}
header .new-header-nav nav .megamenu .megamenu-image figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.8s ease;
  transition: -webkit-transform 0.8s ease;
  transition: transform 0.8s ease;
  transition: transform 0.8s ease, -webkit-transform 0.8s ease;
  /* Smooth scale animation */
}
header .new-header-nav nav {
  /* Animation Triggers */
}
@media (hover: hover) {
  header .new-header-nav nav .megamenu-link:hover .megamenu .megamenu-wrapper {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    /* Slide up to original position */
  }
  header .new-header-nav nav .megamenu-link:hover .megamenu {
    /* Trigger scale immediately when menu opens */
  }
  header .new-header-nav nav .megamenu-link:hover .megamenu .megamenu-image img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

.header-shadow {
  -webkit-box-shadow: 0 0 3px 0px #ccc;
          box-shadow: 0 0 3px 0px #ccc;
  background-color: #fff;
  position: relative;
  z-index: 2;
}

.stripheader {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  /* The transition property smooths the movement */
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.new-header-nav {
  /* Default state: visible (0%) */
}

.header-hidden {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  /* Moves the header up by its full height (60px) */
}