footer {
    margin-top: 80px;
    padding-bottom: 60px;
}

.logo-footer {
    height: 50px;
}

.socials i {
    border-radius: 50%;
    height: 44px;
    width: 44px;
    font-size: 22px;
    background-color: white;
    color: #192031;
    text-align: center;
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease-in-out;
}

.socials i:hover {
    color: var(--gray-color);
}

.footer-heading {
    margin-top: 22px;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 14px;
}

.footer-links {
    margin-top: 10px;
    gap: 16px;
    font-size: 14px;
}

.footer-links i {
    color: var(--dark-color);
    font-size: 16px;
    margin-right: 6px;
}

.footer-links a {
    color: var(--gray-color);
}

@media (max-width: 980px) {
    footer {
        margin-top: 40px;
        padding-bottom: 30px;
    }

    footer .row .description {
        padding: 0 20px !important;
    }

    footer .row>.col p {
        margin: 0 !important;
    }

    footer .socials {
        margin: 0px !important;
        margin-top: 22px !important;
    }

    footer .navigation {
        padding: 0 20px !important;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-links {
        margin-top: 10px;
        gap: 8px;
        font-size: 13px;
    }

    .footer-links a {
        color: var(--dark-color);
    }

    footer .socials i {
        width: 34px;
        height: 34px;
        font-size: 18px;
    }

}