.footer__top {
    border-top: 1.5px solid #5d5f69;
    padding-top: 20px;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
  }
  @media (max-width: 990px) {
    .footer__top {
      margin-bottom: 20px;
    }
  }
  .footer__top img {
    margin: 10px;
    height: 30px;
    display: block;
    width: auto;
    object-fit: contain;
    box-sizing: border-box;
  }
  @media (max-width: 990px) {
    .footer__top img {
      height: 20px;
    }
  }
  .footer__medium {
    height: 100px;
    width: 100px;
    margin: 0 auto 50px auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  @media (max-width: 990px) {
    .footer__medium {
      height: 70px;
      width: 70px;
      margin-bottom: 20px;
    }
  }
  .footer__nav {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 40px;
    max-width: 800px;
    margin: 0 auto 50px auto;
  }
  @media (max-width: 990px) {
    .footer__nav {
      grid-template-columns: 1fr;
      grid-gap: 20px;
      margin-bottom: 20px;
    }
  }
  .footer__nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  .footer__nav ul li {
    text-align: center;
  }
  .footer__nav ul a {
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
    cursor: pointer;
  }
  .footer__nav ul a:hover {
    text-decoration: underline;
  }
  .footer__social {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer__social a {
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
  }
  .footer__social a img {
    height: 34px;
    width: 34px;
  }
  .footer__social button {
    margin: 10px;
    display: flex;
    background: transparent;
    appearance: none;
    box-shadow: none;
    padding: 0;
    align-items: center;
    justify-content: center;
    width: auto;
  }
  .footer__social button img {
    height: 34px;
    width: 34px;
  }
  @media (max-width: 990px) {
    .footer__social {
      margin-bottom: 20px;
    }
  }
  .footer__bottom {
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    text-align: center;
  }
  