.hero {
    position: relative;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    max-width:100%;
    height: 39vw;
    object-fit: cover;
    overflow: hidden;
    border-radius: var(--border-radius);
    /* border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius); */
    box-shadow: var(--shadow);
    z-index: -1;
  }

  .hero__image {
    width: 100%;
  }

  .hero__text-container {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 4vw 4vw;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
  }

  .hero__text-container h1 {
    font-size: 6vw;
    margin-bottom: 2vw;
  }

  .hero__text-container h3 {
    font-size: 3vw;
    font-style: italic;
  }

  /* Media Queries  /////////////////////////////////////////////////*/

  @media (min-width: 1280px) {
    .hero {
        height: 500px;
      }
  
      .hero__image {
        width: 1215px;
      }
  
      .hero__text-container {
        top: 25px;
        width: 85%;
        height: 300px;
        padding: 1.55em 3em;
        border-top-right-radius: var(--border-radius);
        border-bottom-right-radius: var(--border-radius);
        box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.25);
      }
  
      .hero__text-container h1 {
        font-size: 4.82em;
        margin-bottom: 0.34em;
      }
      
      .hero__text-container h3 {
        font-size: 2.4em;
      }
  }

  @media (min-width: 1536px) {
    .hero {
        height: 600px;
      }
  
      .hero__image {
        width: 1471px;
      }
  
      .hero__text-container {
        top: 25px;
        width: 90%;
        height: 375px;
      }
  
      .hero__text-container h1 {
        font-size: 6em;
        margin-bottom: 0.34em;
      }
      
      .hero__text-container h3 {
        font-size: 3em;
      }
  }