.header-1 {
  /* [100924TIN] Change color to black */
  color: #666;
  /* [100924TIN] Change background color to white */
  background-color: white;
  /* background-color: #F0D7CE; */
  /* [100824TIN] Change font family */
  font-family: 'Poppins', Helvetica, Arial, Lucida, sans-serif;
}

/* [121724TIN] Add css for top header */
.happyhands-top-header {
  display: block;
  box-sizing: border-box;
  width: 100%;
  background-color: #1d1d1d;
  color: white;
  font-family: 'Poppins', Helvetica, Arial, Lucida, sans-serif;
}

.happyhands-top-header .happyhands-top-header__wrap {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  padding: 12px 30px;
  box-sizing: border-box;
  max-width: 1480px;
  margin: 0 auto;
  gap: 30px;
}

/* [121824TIN] Add css selector to fix override css of Divi */
.happyhands-top-header .happyhands-top-header__item,
.et-db #et-boc .et-l .happyhands-top-header a.happyhands-top-header__item {
  font-size: 16px;
  font-weight: 400;
  color: inherit;
  text-decoration: none;
  transition: all .2s;
}

/* [121824TIN] Add css selector to fix override css of Divi */
.happyhands-top-header .happyhands-top-header__item:hover,
.et-db #et-boc .et-l .happyhands-top-header a.happyhands-top-header__item:hover {
  color: #fe9f3a;
}

/* [121724TIN] Add css for top header - end */

/* [102824TIN] Update breakpoint */
@media (min-width: 480px) and (max-width: 1023px) {
  .header-1 {
    display: none;
  }
	/* [121724TIN] Add css for top header */
  .happyhands-top-header {
    display: none;
  }
}

/* [082224TIN] Update breakpoint */
@media (max-width: 479px) {
  .header-1 {
    display: none;
  }
	
	/* [121724TIN] Add css for top header */
  .happyhands-top-header {
    display: none;
  }
}

/* Override defualt css for link */
.et-db #et-boc .et-l .header-1 .header-menu__item a,
.et-db #et-boc .et-l .header-1 a.header-menu__item {
  /* [100924TIN] Change color to black */
  color: #666;
}

.et-db #et-boc .et-l .header-1 .header-menu__item a:hover,
.et-db #et-boc .et-l .header-1 a.header-menu__item:hover,
.et-db #et-boc .et-l .header-1 a.header-menu__item--active {
  /* color: #9C6E5E; */
  /* [100924TIN] Change color to orange */
  color: #fe9f3a;
}

.et-db #et-boc .et-l .header-1 a.header-dropdown__item,
.et-db #et-boc .et-l .header-1 .header-dropdown__item a.header-sub-dropdown__item,
.et-db #et-boc .et-l .header-1 a.header-dropdown__item:hover,
.et-db #et-boc .et-l .header-1 .header-dropdown__item a.header-sub-dropdown__item:hover,
.et-db #et-boc .et-l .header-mobile-1 .header-menu__item a,
.et-db #et-boc .et-l .header-mobile-1 a.header-menu__item {
  /* color: white; */
  /* [100924TIN] Change color to black */
  color: #666;
}

.header-1 a {
  text-decoration: none;
  color: inherit;
}

.header-1__wrap {
  max-width: 1480px;
  /* padding: 55px 20px; */
  /* [121724TIN] Redurce vertical padding */
  padding: 20px;
  width: 100%;
  display: flex;
  gap: 20px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

/* [100824TIN] Turn off override */
/* // override max width for my-account page (.page-id-298) */
/* .page-id-298 .header-1__wrap {
  padding: 20px;
  max-width: 1240px;
} */

.header-1__logo {
  width: 75px;
  height: auto;
  object-fit: cover;
	/* [121724TIN] Remove line-height space for logo */
  display: flex;
}

.header-1__menu {
  flex: 1;
  display: flex;
  gap: 38px;
  margin-left: auto;
  justify-content: flex-end;
}

/* [100924TIN] Update breakpoint for hd desktop */
@media (min-width: 1024px) and (max-width: 1439px) {
  .header-1__menu {
    gap: 18px;
  }
}

/* [082224TIN] Update breakpoint */
@media (min-width: 786px) and (max-width: 1023px) {
  .header-1__menu {
    gap: 14px;
  }
}

.header-1 .header-menu__item {
  /* [100824TIN] Change font family */
  /* font-family: "Segoe UI", system-ui, sans-serif; */
  font-size: 16px;
  /* [100824TIN] Change font weight to bolder */
  font-weight: 600;
  line-height: 26px;
  display: flex;
  padding: 6px;
  box-sizing: border-box;
  gap: 4px;
  justify-content: center;
  align-items: center;
  transition: all 0.2s;
  /* prevent change text postion when hover */
  border-bottom: 1px solid transparent;
}

.header-1 .header-menu__item--active,
.header-1 .header-menu__item:hover {
  /* color: #9C6E5E; */
  /* border-bottom: 1px solid #9C6E5E; */
  /* prevent change text postion when hover */
  /* border-bottom-color: #9C6E5E; */
  /* [100924TIN] Change color to orange */
  color: #fe9f3a;
  border-bottom-color: #fe9f3a;

}

/* [092024TIN] Css for item no underline on hover */
.header-1 .header-menu__item--no-underline:hover {
  border-bottom-color: transparent;
}

.header-1 .header-dropdown {
  position: relative;
  display: block;
  /* [092024TIN] Align dropdown label to center */
  align-content: center;
}

.header-1 .header-dropdown__label {
  user-select: none;
}

.header-1 .header-dropdown__wrap {
  display: none;
  padding: 16px;
  box-sizing: border-box;
  /* [100924TIN] Change color to white */
  background-color: white;
  /* background-color: #9C6E5E; */
  position: absolute;
  left: 0;
  top: 100%;
  width: max-content;
  flex-direction: column;
  gap: 0px;

  /* [100924TIN] Change radius and shadow */
  border-radius: 8px;
  box-shadow: 0 4px 14px 2px #1111;
}

/* [092024TIN] Add right align for dropdown at right side to avoid hide content */
.header-1 .header-dropdown__wrap.header-dropdown__wrap--right-align {
  left: unset;
  right: 0;
}


.header-1 .header-dropdown__wrap a:hover {
  text-decoration: underline;
}

/* #2212 [website] Update menu button in header menu */
.header-1 .header-dropdown:hover .header-dropdown__wrap, .header-1 .header-dropdown.active .header-dropdown__wrap {
  display: flex;
}

.header-1 .header-dropdown__item {
  color: white;
  /* [100824TIN] Change font family */
  /* font-family: "Segoe UI", system-ui, sans-serif; */
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  display: flex;
  gap: 10px;
  box-sizing: border-box;
  padding: 8px;
  transition: all 0.2s;
}

.header-1 .header-dropdown__item .header-sub-dropdown {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.header-1 .header-dropdown__item .header-sub-dropdown__title {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}

.header-1 .header-dropdown__item .header-sub-dropdown__title label {
  transition: all 0.4s;
  user-select: none;
  height: 28px;
  width: 28px;
}

.header-1 .header-dropdown__item .header-sub-dropdown__item {
  padding: 8px 8px 8px 12px;
  transition: all 0.2s;
}

.header-1 .header-dropdown__item .header-sub-dropdown__item:hover {
  text-decoration: underline;
}

.header-1 .header-dropdown__item .header-sub-dropdown__item:first-child {
  padding-top: 12px;
}

.header-1 .header-dropdown__item .header-sub-dropdown__wrap {
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow-y: hidden;
  transition: all 0.4s;
}

.header-1 .header-dropdown__item .header-sub-dropdown:has(input:checked) .header-sub-dropdown__title label {
  transform: rotate(180deg);
}

.header-1 .header-dropdown__item .header-sub-dropdown:has(input:checked) .header-sub-dropdown__wrap {
  max-height: 100vh;
}

.header-1 .header-sub-dropdown {
  position: relative;
}

/* [102824TIN] Update breakpoint */
@media (min-width: 1024px) {
  .header-mobile-1 {
    display: none;
  }
}

.header-mobile-1__head {
  display: flex;
  padding: 9px 13px;
  box-sizing: border-box;
  /* [100924TIN] Change color to white */
  background-color: white;
	  /* [121024TIN] Decsrease gap */
  gap: 8px;
  /* [082224TIN] Align items in mobile header */
  justify-content: flex-start;
  align-items: center;
  /* [100924TIN] Add shadow */
  box-shadow: 0 4px 10px 0 #0002;
}

/* [121024TIN] Increase padding and size of menu icon */
.header-mobile-1__hamburger {
  padding: 8px;
  box-sizing: border-box;
	width: 48px;
  height: auto;
  /* [082224TIN] Align menu icon */
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-mobile-1__logo {
  display: block;
  /* height: 37px;
  width: 37px; */
  /* [101024TIN] Make logo bigger */
  height: 54px;
  width: 54px;
  object-fit: cover;
}

.header-mobile-1__menu-top {
  padding: 9px 13px;
  box-sizing: border-box;
  display: flex;
  /* [101024TIN] Align close button to right */
  justify-content: flex-end;
  align-items: center;
  /* justify-content: space-between; */
  /* background-color: #EBC4B7; */
  /* [100924TIN] Change color to white */
  background-color: white;
}

.header-mobile-1__menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100dvw;
  height: 100dvh;
  /* background-color: #EBC4B7; */
  /* [082824TIN] Change to transparent bg */
  background-color: transparent;
  z-index: 99999;
}

/* [121024TIN] Add css to increase target size of close hamburger menu button */
.header-mobile-1__hamburger--close {
  display: flex;
  padding: 12px;
  box-sizing: border-box;
}

/* [082924TIN] Fix humburger menu don't close when inside dropdown don't close */
.header-mobile-1__menu:has(input:checked#mobiledmenuwrap) {
  display: flex;
  flex-direction: column;
}

.header-mobile-1__menu a {
  color: inherit;
  text-decoration: none;
}

.header-mobile-1__menu .header-menu {
  flex: 1;
  display: flex;
  padding: 38px 29px;
  box-sizing: border-box;
  flex-direction: column;
  /* background-color: #9C6E5E; */
  /* [082824TIN] Change to transparent bg */
  /* background-color: rgb(156 110 94 / 90%); */
  /* [100924TIN] Change color to white */
  background-color: white;
  gap: 21px;
  overflow-y: auto;
}

.header-mobile-1__menu .header-menu__item {
  /* color: white; */
  /* [100924TIN] Change color to black */
  color: #666;
  /* [100824TIN] Change font family */
  /* font-family: "Segoe UI", system-ui, sans-serif; */
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
}

.header-mobile-1__menu .header-dropdown__title {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}

.header-mobile-1__menu .header-dropdown__label {
  transition: all 0.4s;
  user-select: none;
  height: 28px;
  width: 28px;
}

.header-mobile-1__menu .header-dropdown__wrap {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 21px;
  overflow-y: hidden;
  max-height: 0;
  transition: max-height 0.4s;
  padding: 0;
}

.header-mobile-1__menu .header-dropdown:has(input:checked) .header-dropdown__label {
  transform: rotate(180deg);
}

.header-mobile-1__menu .header-dropdown:has(input:checked) .header-dropdown__wrap {
  max-height: 100vh;
}

.header-mobile-1__menu .header-dropdown__item {
  text-transform: capitalize;
  /* color: white; */
  /* [100924TIN] Change color to black */
  color: #666;
  /* [100824TIN] Change font family */
  /* font-family: "Segoe UI", system-ui, sans-serif; */
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  padding: 0 20px;
}

.header-mobile-1__menu .header-dropdown__item:first-child {
  padding-top: 17px;
}

/* [090424TIN] Add hover style on focus, hover for menu item on mobile */
.header-mobile-1__menu .header-dropdown__item:first-child:hover {
  text-decoration: underline;
}

/* [070124TIN] add style for header with serch box */
.header-with-search {
  background-color: #F0D7CE;
}

@media (max-width: 479px) {
  .header-with-search {
    display: none;
  }
}

/* [120624TIN] Update breakpoint mini pc for header with search */
@media (min-width: 480px) and (max-width: 1023px) {
  .header-with-search {
    display: none;
  }
}

.header-with-search__wrap {
  display: flex;
  gap: 56px;
  padding: 18px 24px;
  box-sizing: border-box;
	/* [120624TIN] Update align-items */
  align-items: center;
}

.header-with-search__logo {
  display: block;
  width: 75px;
  height: auto;
  object-fit: contain;
}

.header-with-search .search-box {
  flex: 1;
}

.header-with-search .search-box__form {
  display: flex;
  gap: 10px;
  padding: 0;
  box-sizing: border-box;
  border-radius: 6px;
  background: white;
  height: 100%;
  box-shadow: 0px 4px 56px 0px rgba(171, 171, 171, 0.25);
}

/* [120624TIN] Adjust padding, font size to smaller */
.header-with-search .search-box__input {
/*   height: 100%; */
  flex: 1;
  box-sizing: border-box;
/*   padding: 20px; */
	  padding: 16px;
  padding-left: 30px;
  box-sizing: border-box;
  outline: none;
  border: none;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: #9C6E5E;
  background-color: transparent;
}

.header-with-search .search-box__input::placeholder {
  color: #DBD0CC;
}

.header-with-search .search-box__submit {
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
  box-sizing: border-box;
  /* padding: 20px; */
  /* [120624TIN] Adjust padding to smaller */
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.2s;
  border-radius: 8px;
  outline: none;
}

.mobile-search-box {
  padding: 19px 14px;
  box-sizing: border-box;
}

/* [120624TIN] Show search box on mobile for mini pc */
/* @media (min-width: 786px) and (max-width: 1023px) {
  .mobile-search-box {
    display: none;
  }
} */

@media (min-width: 1024px) {
  .mobile-search-box {
    display: none;
  }
}

.mobile-search-box__form {
  display: flex;
  gap: 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 0;
}

/* [070124TIN] Prevent override css for input[type="text"] in wp */
input[type="text"].mobile-search-box__input,
.mobile-search-box__input {
  flex: 1;
  padding: 10px 15px;
  box-sizing: border-box;
  background-color: transparent;
  border: none;
  outline: none;
  color: #3D3D3D;
	/* [120624TIN] Adjust font to smaller */
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  min-width: 150px;
}

.mobile-search-box__input::placeholder {
  color: #AAA;
}

.mobile-search-box__submit {
  padding: 13px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border: none;
  outline: none;
}

/* [070124TIN] add style for header with serch box - end*/

/* [070424TIN] add style for account item in desktop header */
.header-1 .header-menu .header-account {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  color: rgba(26, 26, 26, 0.61);
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  line-height: 22.5px;
  position: relative;
}

.header-1 .header-menu .header-account__avatar {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  box-sizing: border-box;
  border: 3px solid #B2B2B2;
}

.header-1 .header-menu .header-account__menu-wrap {
  display: none;
  position: absolute;
  /* width: 100%; */
  /* [100924TIN] Change to fit content */
  width: fit-content;
  /* left: 0; */
  /* [100724TIN] Align menu to right */
  right: 0;
  top: 100%;
  background-color: transparent;
  padding-top: 16px;
}

.header-1 .header-menu .header-account__menu {
  /* background-color: #9C6E5E; */
  /* [100924TIN] Change to white */
  background-color: white;
  padding: 16px;
  box-sizing: border-box;
  /* [100924TIN] Change to black */
  /* color: white; */
  color: #666;
  text-align: left;
  /* [100724TIN] Change to flexbox and sort items by column */
  display: flex;
  flex-direction: column;
  width: fit-content;
  /* [100924TIN] Add box shadow and border radius */
  box-shadow: 0px 4px 56px 0px rgba(171, 171, 171, 0.25);
  border-radius: 6px;
}

.header-1 .header-menu .header-account__menu:hover {
  /* [100724TIN] Change to flexbox */
  display: flex;
}

/* [100724TIN] Add padding for menu account items */
.header-1 .header-menu .header-account__menu-wrap .header-account__link {
  padding: 8px;
  box-sizing: border-box;
}

.header-1 .header-menu .header-account:hover .header-account__menu-wrap {
  display: block;
}

.header-1 .header-menu .header-account__name,
/* [092624TIN] Override css selector of Divi */
.et-db #et-boc .et-l .header-1 .header-menu a.header-account__name {
  /* [100824TIN] Change font family */
  /* font-family: "Segoe UI", system-ui, sans-serif; */
  font-size: 16px;
  /* [100824TIN] Change font weight to bolder */
  font-weight: 600;
  line-height: 26px;
  transition: all 0.2s;
  /* [100924TIN] Change color to black */
  color: #666;
}

.header-1 .header-menu .header-account__name:hover,
/* [092624TIN] Override css selector of Divi */
.et-db #et-boc .et-l .header-1 .header-menu a.header-account__name:hover {
  /* color: #9C6E5E; */
  /* [100924TIN] Change color to orange */
  color: #fe9f3a;
}


/* override css of divi for header-account__link */
.et-db #et-boc .et-l .header-1 .header-menu a.header-account__link,
.header-1 .header-menu .header-account__link {
  /* color: white; */
  /* [100924TIN] Change color to black */
  color: #666;
  /* [100824TIN] Change font family */
  /* font-family: "Segoe UI", system-ui, sans-serif; */
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
}

/* override css of divi for header-account__link */
.et-db #et-boc .et-l .header-1 .header-menu a.header-account__link:hover,
.header-1 .header-menu .header-account__link:hover {
  text-decoration: underline;
}

/* [070424TIN] add style for account item in desktop header - end */

/* [121024TIN] Increase search button size and padding */
/* [082224TIN] Add css for search button on mobile */
#mobile-search-btn {
  padding: 8px;
  margin: 0;
  box-sizing: border-box;
	height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  background-color: transparent;
  color: #3D3D3D;
}

#mobile-search-btn svg {
  width: auto;
  height: 100%;
  display: block;
}

/* [082224TIN] Add css for search button on mobile - end */

/* [042925TIN] Update css for mobile header */
.header-mobile-1 {
  font-family: "Inter", sans-serif;
}

@media (min-width: 786px) and (max-width: 1023px) {
  .header-mobile-1 {
    display: none;
  }
}

@media (min-width: 1024px) {
  .header-mobile-1 {
    display: none;
  }
}

.header-mobile-1__head {
  display: flex;
  padding: 9px 13px;
  box-sizing: border-box;
  /* [100924TIN] Change color to white */
  background-color: white;
  /* [121024TIN] Decsrease gap */
  gap: 8px;
  /* [082224TIN] Align items in mobile header */
  justify-content: flex-start;
  align-items: center;
  /* [100924TIN] Add shadow */
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1333333333);
}

.header-mobile-1__hamburger {
  padding: 8px;
  box-sizing: border-box;
  width: 48px;
  height: auto;
  /* [082224TIN] Align menu icon */
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-mobile-1__hamburger__close {
  height: 48px;
  width: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  color: #96634F;
}

.header-mobile-1__logo {
  display: block;
  /* height: 37px;
  width: 37px; */
  /* [101024TIN] Make logo bigger */
  height: 54px;
  width: 54px;
  object-fit: cover;
}

.header-mobile-1__menu-top {
  padding: 37px 24px 11px;
  box-sizing: border-box;
  display: flex;
  /* [101024TIN] Align close button to right */
  justify-content: flex-end;
  align-items: center;
  /* justify-content: space-between; */
  /* background-color: #EBC4B7; */
  /* [100924TIN] Change color to white */
  background-color: white;
}

.header-mobile-1__menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100dvw;
  height: 100dvh;
  overflow-y: auto;
  /* background-color: #EBC4B7; */
  /* [082824TIN] Change to transparent bg */
  background-color: white;
  z-index: 99999;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.4s ease, display 0.4s ease allow-discrete;
}

.header-mobile-1__menu:has(input:checked#mobiledmenuwrap) {
  display: flex;
  opacity: 1;
}

.header-mobile-1__menu:has(input:checked#mobiledmenuwrap) .header-menu__logo {
  animation: logo-moving 0.4s ease;
}

.header-mobile-1__menu a {
  color: inherit;
  text-decoration: none;
}

.header-mobile-1__menu .header-menu {
  flex: 1;
  display: flex;
  padding: 0 24px 52px;
  box-sizing: border-box;
  flex-direction: column;
  background-color: white;
  gap: 24px;
  overflow-y: unset;
}

.header-mobile-1__menu .header-menu__logo {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  animation: logo-moving-reverse 0.4s ease;
}

@keyframes logo-moving {
  from {
    transform: translate(calc(35px - 50%), -87px) scale(0.7714285714);
  }

  to {
    transform: translate(0, 0) scale(1);
  }
}

@keyframes logo-moving-reverse {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(calc(35px - 50%), -87px) scale(0.7714285714);
  }
}

.header-mobile-1__menu .header-menu__logo__link {
  display: flex;
  text-decoration: none;
}

.header-mobile-1__menu .header-menu__logo__img {
  display: block;
  height: 70px;
  width: 70px;
  object-fit: cover;
}

.header-mobile-1__menu .header-menu__primary {
  display: flex;
  flex-direction: column;
  width: fit-content;
  min-width: 260px;
  margin: 0 auto;
  gap: 20px;
}

.header-mobile-1__menu .header-menu__primary__item {
  display: block;
  box-sizing: border-box;
  padding: 8px;
  font-size: 24px;
  font-weight: 500;
  border: 2px solid #96634F;
  border-radius: 32px;
  color: #96634F;
  text-align: center;
  transition: all 0.2s;
  outline: none;
  line-height: 1.2;
  align-content: center;
}

.header-mobile-1__menu .header-menu__primary__item:hover,
.header-mobile-1__menu .header-menu__primary__item:focus {
  background-color: #96634F;
  color: white;
}

.header-mobile-1__menu .header-menu__secondary {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.header-mobile-1__menu .header-menu__secondary__item {
  flex-basis: calc(50% - 6px);
  max-width: calc(50% - 6px);
  display: block;
  box-sizing: border-box;
  padding: 8px;
  font-size: 24px;
  font-weight: 500;
  border: 2px solid transparent;
  border-radius: 32px;
  color: #96634F;
  text-align: center;
  outline: none;
  line-height: 1.2;
  align-content: center;
}

.header-mobile-1__menu .header-menu__secondary__item:hover,
.header-mobile-1__menu .header-menu__secondary__item:focus {
  background-color: #96634F;
  color: white;
  border-color: #96634F;
}

.header-mobile-1__menu .header-menu__item {
  color: #96634F;
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
}

.header-mobile-1__menu .header-menu__divider {
  border-bottom: 1px solid #96634F;
  height: 0;
  width: 100%;
  max-width: 187.5px;
  margin: 0 auto;
}

.header-mobile-1__menu .header-menu__social-links {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  margin: 12px 0;
  box-sizing: border-box;
}

.header-mobile-1__menu .header-menu__social-links__link {
  height: 42px;
  width: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.header-mobile-1__menu .header-menu__social-links__link svg {
  color: black;
}

.header-mobile-1__menu .header-dropdown__title {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}

.header-mobile-1__menu .header-dropdown__label {
  transition: all 0.4s;
  user-select: none;
  height: 28px;
  width: 28px;
}

.header-mobile-1__menu .header-dropdown__wrap {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 21px;
  overflow-y: hidden;
  max-height: 0;
  transition: max-height 0.4s;
  padding: 0;
}

.header-mobile-1__menu .header-dropdown:has(input:checked) .header-dropdown__label {
  transform: rotate(180deg);
}

.header-mobile-1__menu .header-dropdown:has(input:checked) .header-dropdown__wrap {
  max-height: 100vh;
}

.header-mobile-1__menu .header-dropdown__item {
  text-transform: capitalize;
  color: white;
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  padding: 0 20px;
}

.header-mobile-1__menu .header-dropdown__item:first-child {
  padding-top: 17px;
}

/* [042925TIN] Update css for mobile header - end */