/* Functions & Mixins */
.gold-outline:focus {
  outline: 2px solid #fbc600 !important; }
 
/* Universal breakpoints */
.prequal-banner {
  background-color: #3b3c43;
}
.prequal-banner__container{
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  padding-top: 1.125rem;
  padding-bottom: 1.125rem;
 
}
   
  .prequal-banner__copy {
    color: #fff;
    text-align: center;
    font-weight: 500;
    font-size: 25px;
   /* font-size: 1.125rem*/;
   margin-right: 30px;
    }
 
   
  .prequal-banner__button {
   display: inline-block;
    border: 0;
    padding: 0.875rem;
    align-self: center;
    text-align: center;
    box-sizing: border-box;
    line-height: 1;
    background-color: #fbc600;
    color: #3b3c43;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 150ms ease-in-out, color 150ms ease-in-out;
    text-transform: lowercase;
    white-space: nowrap;
    width: 14.0625rem;
    border-radius: 8px;
    &:first-letter {
      text-transform: uppercase;
    }
    }
    .prequal-banner__button:focus {
      outline: 2px solid #fff !important;
      outline-offset: 0px;
 }
 @media (max-width:767px){
  .prequal-banner__container{
    flex-direction: column;
   
  }
  .prequal-banner__copy{
    margin-right: 0;
  }
  .prequal-banner__button{
    width: 10.0625rem;
  }
 
 }
 