
.footer {
    position: relative;
    background: #333;
}

.footer .footer-top {
    background: var(--primary-color);
    padding: 60px 0 30px 0;
}

.footer .footer-top .footer-info,
.footer .footer-top .footer-links,
.footer .footer-top .footer-contact,
.footer .footer-top .footer-newsletter {
    margin-bottom: 30px;
}

.footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: var(--white);
    color: var(--primary-color-light);
    line-height: 1;
    padding: 9px 0;
    margin-right: 4px;
    text-align: center;
    width: var(--icon-size-small);
    height: var(--icon-size-small);
    transition: 0.3s;
}

.footer .footer-top .social-links a:hover {
    background: var(--primary-color-light);
    color: var(--white);
}

.footer .footer-top h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer .footer-top h4::before {
    content: '';
    position: absolute;
    /* left: 0; */
    bottom: 0;
    height: 0;
    width: 50px;
    border-bottom: 2px solid var(--white);
}

.footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-top .footer-links ul i {
    padding-inline-end: 8px;
    color: var(--white);
    font-size: 16px;
}

.footer .footer-top .footer-links ul li {
    border-bottom: 1px solid var(--white);
    padding: 7px 0;
}

.footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-top .footer-links ul a {
    font-size: 14px;
    color: var(--white);
}

.footer .footer-top .footer-links ul a:hover {
    color: var(--secondary-color);
}


.footer .footer-top .footer-contact .contact-details * {
    color: var(--white);
    line-height: 26px;
}


.footer .copyright {
    width: 100%;
    color: var(--secondary-color-light);
    font-size: var(--font-size-small);
    text-align: center;
    padding: var(--spacing-small) 0;
    
}

