.hero-container {
  .google-listing {
    top: 20%; 
    width: 40%; 
    left: 5%; 
    box-shadow: 75px 16px 30px -9px rgba(0,16,41,0.63); 
    z-index: 2;
  }

  .reviews-container {
    background-color: rgba(255, 255, 255, .95);
    border: 1px solid var(--bg-2);
    top: 0%;
    left: 5%;
    width: 40%;
    box-shadow: 75px 16px 30px -9px rgba(0,16,41,0.23); 
    z-index: 1;
    padding: 12px 4px;
  }

  .float-form {
    padding: 5px 2px;
    top: 10%;
    left: 50%; 
    width: 35%; 
    background-color: rgba(245, 248, 252, .9); 
    box-shadow: 8px 11px 27px -5px rgba(0,16,41,0.12); 
    z-index: 3;

    input {
      height: 15px;
    }

    .form-label {
      font-size: .5rem;
    }

    textarea {
      resize: none;
    }
  }
}

@media(min-width: 992px) {
  .google-listing {
    top: 15%; 
  }

  .hero-container  {
    .float-form {
      top: 15%;
      width: 25%; 

      input {
        height: 20px;
      }
    
      .form-label {
        margin-bottom: 2px;
      }
    
      textarea {
        height: 40px;
        resize: none;
      }
    }
  } 
}