.footer {
    background-color: #000;
    color: white;
    padding: 40px 0;
    margin-bottom: 0;
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer .row {
    text-align: left;
    font-size: 18px;
    font-weight: 450;
    line-height: 30px;
}

.footer a:hover {
    text-decoration: none;
}

.footer .social-icons a {
    margin-right: 15px;
    font-size: 20px;
}

.footer .contact-icons a {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer .logo {
    max-width: 15%;
    display: block;
    margin-bottom: 10px;
}

.footer .icon {
    padding: 0 10px 0 0;
}

.footer .footer-h3 {
    color: #ffffff;
    margin-bottom: 20px;
}

.footer .hover-line {
    color: #ffffff;
    position: relative;
    padding-bottom: 5px;
    width: fit-content;
    text-decoration: none;
}

.footer .hover-line::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.footer .hover-line:hover::before {
    width: 100%;
}

h3.footer-h3 {
    text-align: left;
}

.font-footer {
    font-size: small;
}

.footer-underline:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    h3.footer-h3 {
        text-align: center;
    }
    .footer .logo {
        max-width: 35%;
    }
    .footer-middle {
        padding: 0rem 0 2.3rem;
    }
}