footer {
    background-color: var(--color-blue-5);
    color: var(--color-gray-7);
}

footer .footer-info {
    padding: 80px 0;
    font-size: 20px;
}

footer .footer-title {
    font-size: 24px;
}

footer .footer-title,
footer .footer-subtitle {
    color: white;
}

footer ul {
    list-style-type: none;
}

footer li {
    margin-top: 8px;
}

footer .footer-btn {
    background: white;
    border: none;
    border-radius: 0;
    width: 52px;
    height: 52px;
    transition: all 0.3s ease-in-out;
}

footer .footer-btn:hover {
    background: linear-gradient(to bottom left, var(--color-gray-2) 50%, var(--color-gray) 50%);
    opacity: 0.9;
}

footer .footer-btn:hover i {
    color: white;
}

footer hr {
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

footer a:hover {
    text-decoration: underline;
    color: var(--color-gray);
}



@media screen and (max-width: 768px) {
    footer .footer-info {
        padding: 60px 0;
    }
}

@media screen and (min-width: 992px) {
    footer .ps-md-5 {
        padding-left: 80px !important;
    }
}