
.footer {
 position: relative;            
 z-index: 1;
 background: #000;
 padding: 0.5rem 0 0.5rem 0;
}

.footer::after {
     content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(to bottom, transparent, #000);
    pointer-events: none;
    z-index: 2;
}

.footer .container {
 color: var(--light);
 z-index: 3;
}

.footer-content {
     width: 100%;
}

.footer-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.footer-icon a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(92, 89, 89, 0.9);
    transition: box-shadow .3s ease, opacity .3s ease;
}

.footer-icon a:hover {
    opacity: 0.8;
    box-shadow: 0 0 10px rgba(156, 96, 96, 0.7);
}

.footer-icon img {
    width: 1.5rem;
    
}


.footer-text-block {
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
}

a {
    all: unset;
    cursor: pointer;
}

.footer-text {
    font-family: var(--inter);
    color: var(--gray-text);
    margin-top: 1rem;
}

.footer-text span {
    color: #2F80ED;
}

