.p-home * {
  box-sizing: border-box;
}

.p-home h1,
.p-home h2,
.p-home h3 {
  font-family: var(--font-family-heading);
  line-height: 1;
  text-align: center;
}

.p-home h1 {
  font-size: 32px;
}

.p-home h2 {
  font-size: 48px;
  position: relative;
  text-indent: 0.7em;
}

.p-home h3 {
  font-size: 32px;
}

.p-home img {
  display: block;
  padding: 0;
  max-width: 100%;
}

.p-home p {
  line-height: 1.5;
}

.p-home-hero {
  border: 1px #e6e6e6 solid;
  display: grid;
  grid-template-columns: 45% 55%;
  margin: 50px 0 0;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;

}

.p-home-hero-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.p-home-hero-txt {
  background-color: #f1f1f1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 35px;
}

.p-home-hero-txt h3 {
  font-weight: 500;
  margin-bottom: 0.5em;
  text-align: left;
}

.p-home-hero-txt p {
  font-size: 1.25rem;
  /* text-align: center; */
}

.p-home-hero-txt .btn {
  padding-left: 1.5em;
  padding-right: 1.5em;
  /* margin: auto; */
}

.p-home-intro h2::after {
  aspect-ratio: 323 / 10;
  background-image: url(../img/slash.svg);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
  bottom: -7px;
  content: "";
  display: block;
  left: 26%;
  position: absolute;
  width: 37.5%;
}

.p-home-nav {
  margin: 2px 0 30px;
}

.p-home-nav a,
.p-home-nav a:visited,
.p-home-nav a:hover {
  color: white;
  text-decoration: none;
}

.p-home-nav a {
  background-color: #bbbbbb;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: background-color 0.5s;
  font-size: 1rem;
  font-weight: bold;
  height: 100%;
  padding: 10px;
}

.p-home-nav a:hover {
  background-color: #767373;
}

.p-home-nav li {
  min-height: 7.5em;
  text-align: center;
  padding: 0;
}

.p-home-nav li:not(:first-child) {
  border-left: 2px white solid;
}

.p-home-nav ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.p-home-nav-for {
  display: block;
  font-style: italic;
}

.p-home-promo h3 {
  color: #535353;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0.5em;
  text-align: left;
}

.p-home-promo p {
  line-height: 1.5;
  font-size: 13px;
}

.p-home-promo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.p-home-promo-box {
  background: linear-gradient(180deg, #F0F0F0 0%, #FCFCFC 13%, #F9FBFA 27%, #F5F7F4 51.5%, #ECF2EE 79.5%, #EBF1ED 89%, #E8EEEA 100%);
  border: 2px #f0f0f0 solid;
  border-radius: 10px;
  padding: 15px;
}

.p-home-promo-box:has(img) {
  display: grid;
  gap: 15px;
  grid-template-columns: 140px 1fr;
}

.p-home-promo-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-home-wrap {
  margin-top: 25px;
}



