.footer__blocks-wrapper {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  padding: 1rem 0;
}


h2.footer-block__heading {
  font-weight: bold;
  font-size: 1.8rem;
}

.footer-block__info-container {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  
  
  .footer-block__company-photo {
    width: 180px;
    margin-top: 5px;
    border-radius: 3px;
  }

  .footer-block__info {
    font-size: 1.4rem;
    
    .footer-block__address {
      p {
        margin: 0;
      }
    }

    .footer-block__phone {
      margin: 0;
    }

    .footer-block__email {
      margin: 0;
      margin-bottom: 5px;
    }
  }

}

.footer-block--menu {
  padding-left: 6rem;
}

.footer-block--newsletter {
  flex-grow: 1;

  .footer-block__newsletter {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}

.footer__copyright-wrapper {
  display: flex;
  justify-content: space-between;
  
  .footer__copyright {
    display: flex;
    align-items: center;
  }
}