.footer {
  background-color: rgba(70, 34, 16, 0.64);
  padding: 2rem 1rem 6rem;
}

.footer .brand-logo {
  max-height: 100px;
}

.footer svg {
  width: 16px;
}

.copyright-container {
  text-align: center;
  margin-top: 1rem;
  padding-top: 0.5rem;
  color: rgb(189, 189, 189);
}

.footer .contact-info p {
  margin: 0.5rem 0;
}

.footer .contact-info a {
  color: white;
}

svg path {
  transition: all ease-in-out 0.3s;
}

.footer .contact-info a:hover {
  color: var(--primary);
}

.footer .contact-info a:hover svg path {
  color: var(--primary);
  fill: var(--primary);
}

.footer .social-icons {
  text-align: center;
  margin: 1.5rem 0 0;
}

.footer .social-icons a {
  color: white;
}

.footer .social-icons a:hover {
  color: var(--primary);
}

@media (min-width: 767px) {
  .footer {
    background-color: rgba(70, 34, 16, 0.64);
    padding: 2rem 1rem;
  }
}

/* ========================= */
/* call / direction Widget  */
/* ========================= */

.call-directions-widget {
  padding: 0.25rem;
  display: flex;
  bottom: 0;
  left: 0;
  right: 0;
  position: fixed;
  background: rgba(103, 103, 103, 0.95);
  justify-content: space-between;
  z-index: 120;
}

.call-directions-widget button {
  padding: 0.5rem 1rem;
  width: 50%;
  margin: 1% 2%;
  border: white solid 1px;
  transition: all ease-in-out 0.3s;
}

.call-directions-widget button:hover {
  background: var(--primary);
}

.call-directions-widget svg {
  height: 16px;
  width: 16px;
  margin-right: 0.2rem;
}

.call-directions-widget a {
  color: white;
  font-size: 0.8rem;
}

.call-directions-widget .social-icons {
  display: none;
}

@media (min-width: 599px) {
  .call-directions-widget {
    right: unset;
    /* flex-wrap: wrap; */
    background: none;
    flex-direction: row;
  }
  .call-directions-widget button {
    background: var(--secondary);
    width: 100%;
    padding: 0.75rem;
    margin: 0.25rem 0;
  }
  .call-directions-widget button span {
    display: none;
  }

  .call-directions-widget .social-icons {
    display: flex;
    flex-direction: row;
  }
  .call-directions-widget .social-icons a {
    padding: 0.5rem 1rem;
    width: 100%;
    margin: 0.25rem 0;
    border: white solid 1px;
    transition: all ease-in-out 0.3s;
    background: var(--secondary);
  }

  .call-directions-widget .social-icons a:hover {
    background: var(--primary);
  }

  .call-directions-widget .social-icons a i {
    font-size: 15px;
    vertical-align: middle;
  }
}
