.HeroSection {
  position: relative;
  min-height: 40vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 5%;
  overflow: hidden;
}
.HeroSP1CO {
  position: relative;
}
.overlayH {
  position: absolute;
  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;
}
.HeroSP1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: var(--color_white);
}

.HeroSP1ImgWeb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background-color: var(--color_white);
  border-bottom-left-radius: 48px;
  border-bottom-right-radius: 48px;
}

.HeroSP1ImgMob {
  display: none;
}

.HeroSP2 {
  position: absolute;
  bottom: 26%;
  left: 3%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: var(--PMGR_8px);
}

.HeroSP2T {
  font-size: var(--font_40px);
  color: var(--color_white);
  width: 40vw;
}
.HeroSP2T span {
  color: var(--color_med_green);
}

.HeroSP2P {
  font-size: var(--font_16px);
  color: var(--color_white);
  text-transform: capitalize;
  width: 38vw;
}

.HeroSP3 {
  position: absolute;
  right: 5%;
  bottom: 10%;
  z-index: 2;
  display: flex;
  gap: var(--PMGR_128px);
}

.HeroSP3B1 {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.HeroSP3B1T {
  font-size: var(--font_12px);
  color: var(--color_white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--PMGR_8px);
  font-weight: 500;
}

.HeroSP3B1p {
  font-size: var(--font_40px);
  color: var(--color_white);
}

.HeroSP4 {
  position: absolute;
  bottom: 6.5%;
  z-index: 2;
  left: 42%;
  left: 50%;
  transform: translateX(-52%);
}

.HeroSP4 a {
  display: inline-block;
  color: var(--color_med_green);
  padding: var(--PMGR_16px);
  border-radius: var(--PMGR_16px);
  text-decoration: none;
  font-size: var(--font_18px);
  transition: all 0.3s ease;
  text-transform: capitalize;
  border: none;
}

.HeroSP4 a:hover {
  color: var(--color_white);
  background: var(--color_med_green);
}

@media (max-width: 768px) {
  .HeroSection {
    min-height: auto;
    padding: 0 0;
    text-align: center;
    justify-content: center;
    align-items: center;
    background-color: #0053bf;
    gap: var(--PMGR_16px);
  }

  .HeroSP1 {
    width: 100%;
    height: 100%;
    right: 0;
    position: relative;
  }

  .HeroSP1ImgWeb {
    display: none;
  }

  .HeroSP1ImgMob {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .HeroSP2 {
    width: 100%;
    max-width: 100%;
    text-align: center;
    margin-top: 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    left: auto;
  }

  .HeroSP2T {
    font-size: var(--font_18px);
    width: 60vw;
  }
  .HeroSP2T span {
    color: var(--color_white);
  }
  .HeroSP2P {
    width: 90vw;
    padding: 5vw 0;
  }

  .HeroSP3 {
    display: none;
  }

  .HeroSP4 {
    position: relative;
    left: 25%;
  }
  .HeroSP4 a {
    color: var(--color_white);
    background: var(--color_med_green);
    margin-bottom: 60px;
  }

  .HeroSection::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.7) 100%);
  }
  .HeroSP1 {
    order: 1;
  }
  .Ab.HeroSP3 {
    display: flex;
    flex-direction: column;
    position: relative;
    order: 2;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: -5vw;
    padding: 5vw 0;
    right: 0;
    background-color: #fff;
    gap: var(--PMGR_16px);
  }
  .Ab.HeroSP3B1T {
    color: #0053bf !important;
    font-size: var(--font_20px);
  }
  .Ab.HeroSP3B1p {
    color: #000;
    font-size: var(--font_20px);
  }
  .HeroSP2 {
    order: 3;
  }
  .HeroSP4 {
    order: 4;
  }
}
