footer {
    background: #555555;
  }
  .footer__in {
    padding: 50px 0;
    text-align: center;
    width: 80%;
    margin: 0 auto;
  }
  footer .footer__text{
    color: var(--quinary__color);
  }

  footer .footer__adr{
    text-align: left;
    margin-bottom: 20px;
  }

  .footer__adr h4 {
    margin-bottom: 10px;
  }
  .footer__adr p{
    font-size: 13px;
  }
  .footer__content {
    color: var(--quinary__color);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  
  .copy {
    color: var(--quinary__color);
    font-size: 10px;
    padding: 20px 0 0 0;
  }
  hr {
    margin-top: 15px;
  }
  .footer__contact {
    display: flex;
    flex-direction: column;
    align-self: flex-start;
    gap: 5px;
  }
  .footer__contact a {
    display: flex;
    flex-direction: row;
    text-decoration: none;
    gap: 10px;
    font-size: 14px;
  }
  .footer__logo {
    width: 200px;
    margin-bottom: 20px;
  }

  @media screen and (max-width: 676px) {

    .footer__in {
      padding: 30px 20px;
      text-align: center;
      width: 100%;
      margin: 0 auto;
    }
  }