.address{
    display: grid;
    grid-template-columns: 80%;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 50px;
    font-family: 'altone';

}

.btn-waze button{
    padding: 15px;
    padding-left: 25px;
    padding-right: 25px;
    background-color: #566f8c;
    color: #ffffff;
    font-weight: bold;
    border: 0;
    cursor: pointer;
    transition: background-color 0.3s;
    border: none;
    outline: none;
    position: relative;
    cursor: pointer;
    --border-size: 2px;
    --accent-color: #0AF;
}

.btn-google button{
    padding: 15px;
    padding-right: 25px;
    background-color: #566f8c;
    color: #ffffff;
    font-weight: bold;
    border: 0;
    cursor: pointer;
    transition: background-color 0.3s;
    cursor: pointer;
    border: none;
    outline: none;
    position: relative;
    cursor: pointer;
    --border-size: 2px;
    --accent-color: #0AF;
}

.btn-google button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    background-color: var(--accent-color);
    transition: transform 300ms ease-in-out;
    transform: scaleX(0);
    transform-origin: left;
  }
  .btn-google button:hover::before,
  .btn-google button:focus::before {
    transform: scaleX(1);
  }
  .btn-google button {
    transition: color 300ms ease-in-out;
    z-index: 1;
  }
  
  .btn-google button:hover,
  .btn-google button:focus {
    color: white;
  }


  .btn-waze button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    background-color: var(--accent-color);
    transition: transform 300ms ease-in-out;
    transform: scaleX(0);
    transform-origin: left;
  }
  .btn-waze button:hover::before,
  .btn-waze button:focus::before {
    transform: scaleX(1);
  }
  .btn-waze button {
    transition: color 300ms ease-in-out;
    z-index: 1;
  }
  
  .btn-waze button:hover,
  .btn-waze button:focus {
    color: white;
  }



  

.btns-address{
    display: grid;
    grid-template-columns: max-content max-content max-content;
    column-gap: 20px;
}



.company-address{
    font-size: 1.4rem;
    color: #5b5b5f;
    padding-top: 5px;
}

.btns-address svg{
    fill: #bf8136;
}



@media only screen and (max-width: 813px) {
   .address {
        display: grid;
        grid-template-columns:80%;
        grid-template-rows: max-content max-content;
        justify-content: center;
        margin-top: 20px;
        margin-bottom: 20px;
        justify-items: center;
    }

    .btns-address{
      display: grid;
      grid-template-columns: max-content max-content;
      column-gap: 20px;

      grid-column: 1 / span 2;
      font-size: 1rem;
  }

  .company-address p{
    font-size: 0.8rem;
  }
  
    

    .btn-google {
        margin-left: 15px;

    }

    .btn-google button{
      font-size: 0.7rem;

  }

    .btn-waze button{
        float: right;
        margin-right: 15px;
        font-size: 0.7rem;
    }

    .company-address{
        grid-column: 1 / span 3;
        font-size: 1rem;
        text-align: center;
        padding-top: 5px;
        padding-left: 0px;

    }
}