/* Footer Styling */
footer {
    width: 100%;
    background-color: #15191E;
    padding: 2rem 1.5rem;
  }
  
  .footer-container {
    display: flex;
    flex-direction: column-reverse;
    gap: 2rem;
    color: #E9E9E9;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-container > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .footer-container .contacts {
    display: flex;
    gap: 1.5rem;
  }
  
  .contacts img{
    max-width: 100%;
  }
  
  .footer-container .logo {
    display: flex;
    place-items: center;
  }
  
  .footer-container .logo img {
    height: 8rem;
  }
  
  .special {
    text-align: center;
    font-size: 1rem;
    color: #E9E9E9;
    margin-top: 2rem;
  }
  
  /* Responsive Footer */
  @media only screen and (min-width: 768px) {
    .footer-container {
      flex-direction: row;
      justify-content: space-between;
      padding: 2rem 4rem;
    }
  
    .footer-container > div {
      align-items: flex-start;
      justify-content: center;
    }
  }