.us-banner {
  background-image: url(/img/created/compressed_img/truck_mount_img.jpg);
  background-size: cover; /* Adjust to your liking */
  background-position: top; /* Adjust to your liking */
  margin-top: 10px;
  height: calc(85vh - 100px); /* Adjust to your liking */
  display: flex;
  justify-content: center;
  align-items: center;
}

.us-banner h2 {
  color: #ffff; /* 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 */
}

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

.company-title {
  padding: 15px 25px;
  width: 75%;
  border-bottom: 5px solid var(--site-color-01);
}

.company-title-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 15vh;
}

.us-about {
  width: 100%;
  padding: 50px 0;
  background-color: #242424;
}

.us-about h1 {
  text-align: center;
  font-size: 4.9rem;
  margin-top: 0;
}

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

.us-about-img img {
  width: 300px;
  padding: 10px;
}

.us-about-text {
  flex-basis: 455px;
  margin-top: 10vh;
}

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

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

.us-btn {
  align-items: right;
  justify-content: right;
  text-align: right;
  margin-top: 25px;
}

.us-btn a {
  float: right;
}

.us-btn {
  display: flex;
  column-gap: 10px;
}

.us-btn a:nth-child(2) {
  background-color: var(--site-color-03-hover);
  color: #000000;
}

.us-btn a:nth-child(2):hover {
  background-color: var(--site-color-03);
  transition: ease-in-out 15ms;
}

/* Mobile Version */

@media only screen and (max-width: 600px) {
  .us-banner {
    height: 32vh;
    padding-top: 55px;
  }

  .us-banner h2 {
    font-size: 3.8rem;
  }

  .company-title h1 {
    font-size: 3rem;
  }

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

  .us-about-img {
    display: none;
  }
}
