

/* Подвал */
footer {
    background: linear-gradient(
    to top, 
    rgb(255, 181, 90) 0%,   /* Насыщенный оранжевый сверху */
    rgba(255, 140, 0, 0) 100%  /* Полная прозрачность снизу */
  );
}

.footer-social-links {
    display: flex;
    justify-content: center;
    padding: 0px 15px 0px 15px;
    margin: 20px 0px 30px 0px;

}

.footer-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #D35400;
    font-size: 22px;
    transition: all 0.3s;
    margin: 0px 5px 0px 5px;
}



.footer-social-links a:hover {
    background: #D35400;
     color: white;
    transform: translateY(-3px);
}
