.Header {
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 999;
  background: #fff;
}
.Header .top_headers_holder {
  width: 100%;
}

.Header .top_header {
  width: 100%;
  background: #02542f;
  color: #fff;
}

.Header .top_header_bar {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.Header .top_header_col1 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.Header .top_header_col1 p {
  margin: 0;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
}

.Header .top_header_col1 p span {
  font-weight: 700;
}

.Header .login-holder {
  gap: 9px;
}

.Header .login-holder p {
  cursor: pointer;
  transition: 0.25s ease;
}

.Header .login-holder p:hover {
  color: #f3c65d;
}

.Header .middle_header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eeeeee;
}

.Header .middle_header > .container {
  width: 100%;
}

.Header .all_divs_holder {
  width: 100%;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.Header .logo_div {
  width: 105px;

  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.Header .logo_img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.Header .box1 {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.Header .box1 .navbar {
  padding: 0;
}

.Header .box1 .navbar-collapse {
  display: flex !important;
  align-items: center;
}

.Header .box1 .navbar-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.Header .box1 .nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 11px !important;
  margin: 0;
  color: #222;

  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.Header .box1 .nav-link::after {
  display: none;
}

.Header .box1 .nav-link::before {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 0;
  height: 2px;
  border-radius: 10px;
  background: #02542f;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.Header .box1 .nav-link:hover,
.Header .box1 .nav-link.active {
  color: #02542f;
}

.Header .box1 .nav-link:hover::before,
.Header .box1 .nav-link.active::before {
  transform: scaleX(1);
}

.Header .category_dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.Header .category_dropdown > .nav-link {
  display: flex !important;
  align-items: center;
}

.Header .category_dropdown > .nav-link span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  transition: transform 0.25s ease;
}

.Header .category_dropdown:hover > .nav-link span {
  transform: rotate(180deg);
}

.Header .mega_menu {
  position: absolute;
  top: calc(100% + 0px);
  left: 0;
  width: 255px;
  min-width: 255px;
  padding: 7px 0;
  background: #fff;
  border: 1px solid #e6e6e6;

  border-radius: 0 0 4px 4px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: all 0.25s ease;
  z-index: 9999;
}

.Header .category_dropdown:hover .mega_menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.Header .menu_item {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.Header .menu_link {
  flex: 1;
  display: block;
  padding: 11px 16px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  transition: all 0.2s ease;
}

.Header .menu_item > span {
  width: 35px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 18px;
  transition: all 0.2s ease;
}

.Header .menu_item:hover > .menu_link {
  color: #02542f;
  background: #f4f8f6;
  padding-left: 20px;
}

.Header .menu_item:hover > span {
  color: #02542f;
}

.Header .submenu {
  position: absolute;
  top: -7px;
  left: calc(100% + 1px);
  width: 255px;
  padding: 7px 0;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.14);
  z-index: 10000;
}

.Header .child_menu {
  position: absolute;
  top: -7px;
  left: calc(100% + 1px);
  width: 255px;
  max-height: 350px;
  overflow-y: auto;
  padding: 7px 0;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.14);
  z-index: 10001;
}

.Header .child_menu a {
  display: block;
  padding: 10px 16px;
  color: #333;
  text-decoration: none;

  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.Header .child_menu a:hover {
  padding-left: 20px;
  color: #02542f;
  background: #f4f8f6;
}

.Header .search_input_div {
  position: relative;
}

.Header .desktop-search {
  flex: 1;
  min-width: 180px;
  max-width: 330px;
  margin-left: auto;
}

.Header .search_input_div .input-group {
  height: 40px;
}

.Header .search_input_div .form-control {
  height: 40px;
  padding: 0 14px;
  border: 1px solid #dedede;
  border-right: 0;
  border-radius: 7px 0 0 7px !important;
  background: #fafafa;
  color: #222;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  box-shadow: none;
}

.Header .search_input_div .form-control::placeholder {
  color: #999;
}

.Header .search_input_div .form-control:focus {
  border-color: #02542f;
  background: #fff;
  box-shadow: none;
}

.Header .search_input_div .input-group-text {
  height: 40px;
  min-width: 40px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid #0a7a55;
  border-radius: 0 7px 7px 0;
  background: #0a7652;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}
.Header .search_input_div .input-group-text:hover {
  background: #82c458;
  border-color: #82c458;
}

.Header .recent-search-list {
  position: absolute;
  top: calc(100% + 7px);
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.14);
  z-index: 99999;
}

.Header .list-wrapper {
  width: 100%;
  max-height: 280px;
  overflow-y: auto;
}

.Header .recent-search-item {
  padding: 11px 14px;
  border-bottom: 1px solid #eeeeee;
  color: #333;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.Header .recent-search-item:last-child {
  border-bottom: 0;
}

.Header .recent-search-item:hover {
  padding-left: 19px;
  color: #02542f;
  background: #f4f8f6;
}

.Header .three_box_div {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.Header .three_box_div .box_div {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Header .icon-holder {
  width: 40px;
  height: 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e4e4e4;
  border-radius: 50%;
  background: #fff;
  color: #222;
  cursor: pointer;
  transition: all 0.25s ease;
}

.Header .icon-holder:hover {
  color: #fff;
  background: #92ba57;
  border-color: #92ba57;
  transform: translateY(-2px);
}

.Header .common_icon {
  font-size: 20px;
  transition: all 0.25s ease;
}

.Header .count_div {
  position: absolute;
  top: -6px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #e53935;
  color: #fff;
  z-index: 2;
}

.Header .count_text {
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
}

.Header .mobile-search {
  display: none;
}

.Header .bottom_header {
  display: none;
}

.Header .menu_offcanvas {
  width: 300px !important;
}

.Header .menu_offcanvas .offcanvas-header {
  border-bottom: 1px solid #eeeeee;
}

.Header .menu_offcanvas .offcanvas-body {
  padding: 15px 20px;
}

.Header .menu_offcanvas .nav {
  display: flex;
  flex-direction: column;
}

.Header .menu_offcanvas .nav-link {
  padding: 13px 5px;
  border-bottom: 1px solid #eeeeee;
  color: #222;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.Header .menu_offcanvas .nav-link:hover,
.Header .menu_offcanvas .nav-link.active {
  color: #02542f;
}

.Header .navbar-toggler {
  width: 40px;
  height: 40px;
  padding: 7px;
  border: 1px solid #02542f;
  border-radius: 7px;
  background: #fff;
  box-shadow: none !important;
}

.Header .navbar-toggler-icon {
  width: 22px;
  height: 22px;
}

.header_login_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 7px 11px;
  border: 1px solid #02542f;
  border-radius: 30px;
  background: #02542f;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.header_login_btn svg {
  font-size: 13px;
}

.header_login_btn:hover {
  background: #fff;
  color: #222;
  border-color: #222;
  transform: translateY(-1px);
}

.header_login_btn:active {
  transform: translateY(0);
}

@media (max-width: 575px) {
  .header_login_btn {
    padding: 6px 14px;
    font-size: 13px;
  }
}

@media (max-width: 1200px) {
  .Header .all_divs_holder {
    gap: 12px;
  }

  .Header .logo_div {
    width: 90px;
  }

  .Header .box1 .nav-link {
    padding-left: 7px !important;
    padding-right: 7px !important;
    font-size: 15px;
  }

  .Header .desktop-search {
    max-width: 270px;
  }

  .Header .three_box_div {
    gap: 5px;
  }
}

@media (max-width: 991px) {
  .Header .top_header_bar {
    min-height: 32px;
  }

  .Header .top_header_col1:first-child {
    display: none;
  }

  .Header .top_header_bar {
    justify-content: flex-end;
  }

  .Header .middle_header {
    padding: 0;
  }

  .Header .all_divs_holder {
    min-height: 65px;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .Header .logo_div {
    width: 85px;
  }

  .Header .box1 .navbar {
    padding: 0;
  }

  .Header .box1 .navbar-collapse {
    display: none !important;
  }

  .Header .box1 .navbar-toggler {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .Header .desktop-search {
    display: none;
  }

  .Header .mobile-search {
    display: block;
    width: 100%;
    margin: 7px 0 10px;
  }

  .Header .three_box_div {
    order: 2;
    margin-left: auto;
  }

  .Header .box1 {
    order: 3;
  }
}

@media (min-width: 992px) {
  .Header .box1 .navbar-toggler {
    display: none;
  }

  .Header .box1 .navbar-collapse {
    display: flex !important;
  }

  .Header .desktop-search {
    display: block !important;
  }

  .Header .mobile-search {
    display: none !important;
  }
}

@media (max-width: 575px) {
  .Header .top_header_col1 p {
    font-size: 10px;
  }

  .Header .all_divs_holder {
    min-height: 60px;
  }

  .Header .logo_div {
    width: 65px;
  }

  .Header .icon-holder {
    width: 35px;
    height: 35px;
  }

  .Header .common_icon {
    font-size: 13px;
  }

  .Header .count_div {
    min-width: 16px;
    height: 16px;
    top: -5px;
    right: -5px;
  }

  .Header .count_text {
    font-size: 7px;
  }

  .Header .navbar-toggler {
    width: 35px;
    height: 35px;
  }

  .Header .mobile-search .input-group,
  .Header .mobile-search .form-control,
  .Header .mobile-search .input-group-text {
    height: 37px;
  }

  .Header .mobile-search .input-group-text {
    min-width: 42px;
    padding: 0 10px;
    font-size: 0;
  }

  .Header .mobile-search .input-group-text svg {
    font-size: 13px;
  }

  .Header .menu_offcanvas {
    width: 285px !important;
  }

  .Header .login-holder {
    gap: 6px;
  }
}
