/* New Hero */
.new_hero_container {
  position: relative;
  padding: 5rem 0 0 0;
  color: #fff;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
.new_hero_container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #233b62;
    opacity: 0.7;
}
@media (min-width: 992px) {
  .new_hero_container {
    padding: 10rem 0 0 0;
  }
}
.new_hero_container .new_hero_content_container {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-end;
}
@media (min-width: 992px) {
  .new_hero_container .new_hero_content_container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
/* NH Left */
.new_hero_image_one, .new_hero_image_two {
  display: none;
  padding: 0 .5rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (min-width: 992px) {
  .new_hero_image_one, .new_hero_image_two {
    display: block;
    width: 250px;
  }
}
@media (min-width: 1200px) {
  .new_hero_image_one, .new_hero_image_two {
    display: block;
    width: 370px;
  }
}
.new_hero_image_one img, .new_hero_image_two img {
  width: 100%;
  height: auto;
}
/* NH Mid */
.new_hero_container .hero_content {
  text-shadow: 2px 2px 16px rgba(0, 0, 0, .35);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: .5rem;
}
.new_hero_container .hero_content {
  margin-bottom: 80px;
}
@media(max-width:992px){
	.new_hero_container .hero_content{
		margin-bottom: 0px;
	}
}
/* NH Mid IMG */
.homepage-inserted-img {
	display: none;
  max-width: 220px;
  margin: auto;
  padding-bottom: 15px;
  margin-top: 15px;
}
.home .homepage-inserted-img,
.page-id-1640 .homepage-inserted-img {
	display: block;
}
.homepage-inserted-img img {
  width: 100%;
	height: auto;
}
/* NH Mid H2 */
.new_hero_container h2{
  font-size: 0.875rem;
  font-weight: 400;
  font-family: var(--body-font);
  text-transform: uppercase;
  letter-spacing: 3px;
}
/* NH Mid H1 */
.new_hero_container .hero_content h1 {
  font-size: 3.125rem;
  margin: 1rem 0;
}
@media (min-width: 992px) {
  .new_hero_container .hero_content h1 {
    font-size: 3.125rem;
  }
}
@media (min-width: 1200px) {
  .new_hero_container .hero_content h1 {
/* font-size: 4.375rem; */
		font-size: 3.375rem;
  }
}
/* NH Mid H1 span */
.new_hero_container .hero_content h1 span {
  display: inline-block;
  position: relative;
}
/* NH Mid H1 span after */
.new_hero_container .hero_content h1 span:after {
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  background: url(/wp-content/uploads/2026/04/line.svg);
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
/* NH Mid P */
.new_hero_container .hero_content p {
  font-size: 1rem;
  font-weight: 600;
  padding: 0 2rem;
}
@media (min-width: 1200px) {
  .new_hero_container .hero_content p {
    font-size: 1.125rem;
  }
}
/* NH Mid Right */
@media (min-width: 1200px) {
  .new_hero_image_one, .new_hero_image_two {
    display: block;
    width: 370px;
  }
}
/* NH Mobile IMG */
.new_hero_image_three {
  display: block;
/* margin: 2rem 0 0 0; */
  width: 100%;
	max-width: 550px;
	margin: auto;
}
@media (min-width: 992px) {
  .new_hero_image_three {
    display: none;
  }
}
.new_hero_image_three img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}