.pp-banner {
  background-image: url(/img/created/PressurePaveTrain.jpg);
  background-size: cover; /* Adjust to your liking */
  background-position: center; /* Adjust to your liking */
  margin-top: 10px;
  height: calc(65vh - 100px); /* Adjust to your liking */
  display: flex;
  justify-content: center;
  align-items: center;
}

.pp-banner h2 {
  color: #fff; /* Set the color of your title */
  font-size: 5.5rem; /* Adjust to your liking */
  text-align: center;
  text-shadow: 2px 2px #000; /* Add a shadow to your title */
}

.pp-banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-shadow: 2px 2px 5px #000000;
}

.pressurepave {
  padding-bottom: 10px;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.pp-about {
  width: 100%;
  padding: 85px 0;
  background-color: #242424;
}

.pp-about-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 60px;
}

.pp-about-img img {
  width: 300px;
  border-radius: 20px;
}

.pp-about-text {
  flex-basis: 455px;
}

.pressurepave h1 {
  font-size: 5.1rem;
  align-items: center;
  justify-content: left;
}

.pp-about-text p {
  padding: 20px 0;
}

.pp-about-text a {
  font-size: 1.8rem;
  display: block;
  background-color: var(--site-color-01);
  padding: 10px 20px;
  width: fit-content;
  border-radius: 10px;
}

.pp-about-text a:hover {
  background-color: var(--site-color-01-hover);
  transition: ease-in-out 15ms;
}

.nature-btn {
  align-items: right;
  justify-content: right;
  text-align: right;
}

.nature-btn a {
  float: right;
}

.pp-buttons {
  display: flex;
  column-gap: 10px;
}

.pp-buttons a:nth-child(2) {
  background-color: var(--site-color-03-hover);
  color: #000000;
}

.pp-buttons a:nth-child(2):hover {
  background-color: var(--site-color-03);
  transition: ease-in-out 15ms;
}

.sealant-about-text h2 {
  text-align: right;
}

.sealant-about {
  width: 100%;
  padding: 85px 0;
  background-color: #535353;
  background-image: linear-gradient(
    to bottom,
    var(--site-color-02-hover),
    black
  );
}

.sealant-about-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 60px;
}

.sealant-about-img img {
  width: 300px;
  border-radius: 20px;
  transition: transform 1.25s;
}

.sealant-about-img img:hover {
  transform: scale(1.4);
  cursor: zoom-in;
}

.sealant-about-text {
  flex-basis: 455px;
}

.sealant-about-text h1 {
  font-size: 5.2rem;
  align-items: center;
  justify-content: left;
}

.sealant-about-text h2 {
  align-items: left;
  text-align: left;
}

.sealant-about-text p {
  padding: 20px 0;
}

.sealant-about-text a {
  font-size: 1.8rem;
  display: block;
  background-color: var(--site-color-01);
  padding: 10px 20px;
  width: fit-content;
  border-radius: 10px;
}

.sealant-about-text a:hover {
  background-color: var(--site-color-01-hover);
  transition: ease-in-out 15ms;
}

.pci-img img {
  width: 400px;
  border-radius: 5px;
}

.longevity {
  width: 100%;
  padding: 85px 0;
  background-color: #535353;
  background-image: linear-gradient(
    to bottom,
    var(--site-color-02-hover),
    black
  );
}

.longevity-about-text {
  flex-basis: 455px;
}

.longevity-about-text h2 {
  align-items: left;
  text-align: left;
}

.longevity-about-text p {
  padding: 20px 0;
}

.longevity-about-text a {
  font-size: 1.8rem;
  display: block;
  background-color: var(--site-color-01);
  padding: 10px 20px;
  width: fit-content;
  border-radius: 10px;
}

.longevity-about-text a:hover {
  background-color: var(--site-color-01-hover);
  transition: ease-in-out 15ms;
}

.customers {
  margin: 5vh;
}

.customers-text {
  flex-basis: 700px;
}

.customers-text-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 60px;
}

.customers-text h2 {
  font-size: 2.6rem;
  align-items: center;
  justify-content: center;
}

.customers-text p {
  padding: 20px 0;
}

.customers-text a {
  font-size: 1.8rem;
  text-decoration: underline;
  color: #84e0ff;
  padding: 2px 5px;
  width: fit-content;
  display: inline-block;
  margin-right: 10px;
}

.customers-text a:hover {
  transition: ease-in-out 15ms;
  color: #ba55d3;
}

.customers-img img {
  width: 25vh;
  border-radius: 20px;
}

/* Mobile Version */

@media only screen and (max-width: 600px) {
  .pp-banner h2 {
    font-size: 4.5rem;
  }

  .pp-about {
    flex-direction: column;
    align-items: center;
  }

  .pressurepave h1 {
    font-size: 4rem;
  }

  .pp-about-flex {
    flex-wrap: wrap;
    row-gap: 20px;
  }

  .pp-about-img iframe {
    width: fit-content;
  }

  .sealant-about-flex {
    flex-direction: column;
    align-items: center;
  }

  .sealant-about {
    flex-wrap: wrap;
    row-gap: 20px;
  }

  .sealant-about-img {
    margin-top: 20px;
    transform: none;
  }
}

/* Anti Hover on Sealatn img */

@media (max-width: 768px) {
  .sealant-about-img img:hover {
    transform: scale(1); /* Reset scale to default */
    cursor: default; /* Reset cursor to default */
  }
}

/* Tablet Version */

@media only screen and (max-width: 1200px) {
  .pp-about-flex {
    display: block;
    column-gap: 20px;
  }

  .pp-about-img iframe {
    width: 80vw;
    margin: 2vw;
    padding-bottom: 20px;
  }

  .pp-buttons a {
    font-size: 1.7rem;
  }
}
