

/* Подвал */
footer {
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px); 
    background: linear-gradient(to top, rgba(24, 24, 27, 0.95) 0%, rgba(24, 24, 27, 0.7) 60%, rgba(24, 24, 27, 0) 100%);
    border-top: none;
    padding: 30px 0;
}

.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: #D97A46;
    font-size: 22px;
    transition: all 0.3s;
    margin: 0px 5px 0px 5px;
}



.footer-social-links a:hover {
    background: #D97A46;
     color: white;
    transform: translateY(-3px);
}

