/************************
* Стили классов футера *
************************/
footer {
    margin: -95px 0 0 0;
    padding: 95px 0 0 0;
    background-color: #5dd9c8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .footer-socials {
    margin: 60px 0;
    padding: 0;
    display: flex;
    flex-direction: row;
  }
  
  .footer-social-container {
    height: 48px;
    width: 48px;
    box-sizing: border-box;
    margin: 0 15px;
    padding: 4px;
    border: 2px solid #141c3a;
    border-radius: 48px;
  }
  
  .footer-social-container:hover {
    background-color: #8063a6;
    border: 2px solid #8063a6;
    transition: background-color 1s ease 0s;
  }
  
  .footer-social-icon {
    height: 36px;
    width: 36px;
    object-fit: contain;
    margin: 0;
    padding: 0;
  }
  
  .footer-social-container:hover .footer-social-icon {
    display: none;
  }
  
  .icon-hover {
    display: none;
  }
  
  .footer-social-container:hover .icon-hover {
    display: block;
  }
  
  .footer-links {
    margin: 30px 0 45px 0;
    padding: 0;
    font-family: "TildaSans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }