/* footer.css - Footer section styles */

/* =============================================
   FOOTER
   ============================================= */
footer {
    margin-top: 150px;
    background-color: #1e1e1e;
    padding: 60px 0 20px;
}

footer .footer-section {
    margin-bottom: 30px;
}

footer .footer-section h5 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f35525;
    display: inline-block;
}

footer .company-details,
footer .contact-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer .company-details li,
footer .contact-details li {
    color: #fff;
    font-size: 14px;
    line-height: 28px;
    margin-bottom: 8px;
}

footer .company-details li strong {
    color: #f35525;
    font-weight: 500;
}

footer .contact-details li i {
    color: #f35525;
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

footer .contact-details li a {
    color: #fff;
    transition: all .3s;
    text-decoration: none;
}

footer .contact-details li a:hover {
    color: #f35525;
}

footer .footer-social {
    margin-top: 20px;
}

footer .footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #2a2a2a;
    border-radius: 50%;
    color: #fff;
    margin-right: 10px;
    transition: all .3s;
}

footer .footer-social a:hover {
    background-color: #f35525;
    transform: translateY(-3px);
}

footer .footer-copyright {
    border-top: 1px solid #333;
    padding-top: 30px;
    margin-top: 20px;
}

footer .footer-copyright p {
    text-align: center;
    color: #999;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    footer {
        padding: 40px 0 20px;
    }

    footer .footer-section {
        margin-bottom: 40px;
        text-align: center;
    }

    footer .footer-section h5 {
        display: block;
        width: 100%;
    }
}
