.headerHomeC {
  display: flex;
  position: fixed;
  top: 5%;
  left: 10%;
  padding: var(--PMGR_8px) var(--PMGR_32px);
  align-items: center;
  gap: var(--PMGR_32px);
  width: 80vw;
  z-index: 1;
  border-radius: 50px;
  background: rgba(191, 191, 191, 0.3);
  z-index: 100000;
}
.HeadHomeLogo {
  width: 10vw;
  margin-top: 0.4vw;
}
.NavLinks {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--PMGR_16px);
  width: 100%;
}
.HeadP2,
.HeadP2:active,
.HeadP2:visited {
  padding: var(--PMGR_8px) var(--PMGR_20px);
  font-size: var(--font_14px);
  color: var(--color_black);
  text-decoration: none;
  border-radius: 30px;
  background-color: #fff;
}
.HeadP2.active,
.HeadP2:active .active,
.HeadP2:visited .active {
  background-color: green !important;
  color: #fff !important;
}
.menuBtn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}
.MobileMenu {
  display: flex;
}
.HeadHomeLogoMob {
  display: none;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 9;
}
.HeaderP1B3B a,
.HeaderP1B3B a:active,
.HeaderP1B3B a:visited {
  display: none;
  padding: var(--PMGR_16px) var(--PMGR_12px);
  font-size: var(--font_16px);
  background-color: var(--color_med_green);
  color: var(--color_white);
  border-radius: var(--PMGR_16px);
  text-decoration: none;
  margin-left: -0.5vw;
  cursor: pointer;
}
@media (max-width: 768px) {
  .headerHomeC {
    display: flex;
    position: absolute;
    justify-content: space-between;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    padding: var(--PMGR_32px);
    background: transparent;
    z-index: 20;
    border-radius: 0;
  }
  .HeadHomeLogoMob {
    display: inline;
    width: 15vw;
  }
  .HeadHomeLogo {
    display: none;
  }
  .menuBtn {
    display: block;
  }
  .menuBtnT {
    width: 10vw;
  }
  .MobileMenu {
    position: fixed;
    top: 25vw;
    left: 5%;
    width: 90%;
    height: auto;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transform: translateY(-200%);
    transition: transform 0.8s ease;
    overflow: hidden;
    padding: var(--PMGR_24px);
    border-radius: var(--PMGR_8px);
  }
  .NavLinks {
    flex-direction: column;
    gap: var(--PMGR_24px);
    text-align: center;
  }
  .HeadP2 {
    font-size: var(--font_20px) !important;
    font-weight: 500 !important;
    font-family: SF500 !important;
    background: none;
    border: none;
    border-bottom: 1px solid #e6f1ff;
    border-radius: 0;
    width: 100%;
    font-size: var(--PMGR_18px);
  }
  .HeadP2.active,
  .HeadP2:active .active,
  .HeadP2:visited .active {
    background-color: transparent !important;
    color: #000 !important;
  }
  .HeaderP1B3B a,
  .HeaderP1B3B a:active,
  .HeaderP1B3B a:visited {
    display: block;
    font-size: var(--font_20px);
    padding: var(--PMGR_16px) var(--PMGR_32px);
  }
}
