.inventor-banner {
  background-image: url(/img/created/compressed_img/patented_tech.jpg);
  background-size: cover; /* Adjust to your liking */
  background-color: #1e1e1e;
  background-position: center; /* Adjust to your liking */
  height: calc(50vh - 5px); /* Adjust to your liking */
  display: flex;
  justify-content: center;
  align-items: center;
}

.inventor-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: calc(50vh - 5px);
  background-color: #00000066;
}

.inventor-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 #525252; /* Add a shadow to your title */
  z-index: 999;
}

.inventor-banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-shadow: 2px 2px 5px #000000;
}

.inventor-about-img img {
  width: 300px;
  border-radius: 5px;
}

.culdesac {
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}

.culdesac-about {
  width: 100%;
  padding: 85px 0;
  background-color: #535353;
  background-image: linear-gradient(
    to bottom,
    var(--site-color-02-hover),
    black
  );
}

.culdesac-about-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 60px;
}

.culdesac-about-text {
  flex-basis: 455px;
}

.sealant-about-text h2 {
  font-size: 5.2rem;
  align-items: center;
  justify-content: left;
  padding: 10px;
}

.culdesac-about-text p {
  padding: 20px 0;
}

.culdesac-about-text a {
  font-size: 1.8rem;
  display: block;
  background-color: var(--site-color-01);
  padding: 10px 20px;
  width: fit-content;
  border-radius: 10px;
}

.culdesac-about-text a:hover {
  background-color: var(--site-color-01-hover);
  transition: ease-in-out 15ms;
}

/* Mobile Version */

@media only screen and (max-width: 600px) {
  .inventor-banner {
    height: 35vh;
    padding-top: 60px;
  }

  .inventor-banner::before {
    display: none;
  }

  .inventor-banner h2 {
    font-size: 4.5rem;
  }

  .culdesac-about-flex {
    flex-direction: column;
    align-items: center;
  }

  .culdesac-about-img iframe {
    width: fit-content;
  }
}

/* Tablet Version */

@media only screen and (max-width: 768px) {
  .inventor-about-img {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 25px;
  }

  .inventor-about-img {
    max-width: 100%;
  }

  .culdesac-about-img iframe {
    width: 50vw;
  }
}
