  .inv-get-quote-section .inv-get-quote-bg {
    top: 0;
    right: -10px;
    z-index: -1;
  }
  
  .inv-get-quote-content {
    padding-top: 45px;
    padding-left: 70px;
    padding-bottom: 50px;
  }
  
  .inv-get-quote-title h2 {
    color: #fff;
    font-size: 45px;
    font-weight: 700;
  }
  .inv-get-quote-title p {
    color: #fff;
    font-size: 18px;
  }
  
  .inv-form-input-area input {
    height: 60px;
    max-width: 265px;
    margin-right: 10px;
    border-radius: 5px;
    background-color: #fff;
  }
  .inv-form-input-area button {
    z-index: 1;
    color: #fff;
    border: none;
    height: 60px;
    font-size: 14px;
    line-height: 1;
    margin-left: 5px;
    font-weight: 700;
    overflow: hidden;
    padding: 25px 45px;
    position: relative;
    border-radius: 4px;
    text-transform: uppercase;
    background: var(--thm-color-4);
  }
  .inv-form-input-area button:after {
    content: "";
    position: absolute;
    top: 0;
    left: -200%;
    width: 200%;
    height: 100%;
    -webkit-transform: skewX(-20deg);
    -khtml-transform: skewX(-20deg);
    transform: skewX(-20deg);
    background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.4)), to(transparent));
    background-image: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    z-index: -1;
  }
  .inv-form-input-area button:hover:after {
    -webkit-animation: btn_shine 1.2s ease;
    animation: btn_shine 1.2s ease;
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
  }