/*******************************************************************************
  File Name: root/assets/css/footer.css
  Purpose:   Footer
*******************************************************************************/

/* =====================================================
   FOOTER
===================================================== */

footer {

    background: #111827;

    color: #ffffff;

    padding-top: 60px;

    padding-bottom: 30px;

}

/* =====================================================
   FOOTER HEADINGS
===================================================== */

footer h5 {

    color: #ffffff;

    font-size: 20px;

    font-weight: 700;

    margin-bottom: 20px;

}

/* =====================================================
   FOOTER TEXT
===================================================== */

.footer-text {

    color: rgba(255,255,255,.75);

    line-height: 1.8;

    font-size: 14px;

}

/* =====================================================
   FOOTER LINKS
===================================================== */

.footer-link {

    display: inline-block;

    color: rgba(255,255,255,.75);

    text-decoration: none;

    padding: 4px 0;

    transition: all .25s ease;

}

.footer-link:hover {

    color: #ffffff;

    transform: translateX(4px);

}

/* =====================================================
   FOOTER LIST
===================================================== */

footer ul {

    margin: 0;

    padding: 0;

    list-style: none;

}

footer li {

    margin-bottom: 6px;

}

/* =====================================================
   MAP IMAGE
===================================================== */

.footer-map {

    width: 100%;

    margin-top: 12px;

    border: 1px solid rgba(255,255,255,.15);

}

/* =====================================================
   SUBSCRIBE FORM
===================================================== */

footer .input-group {

    display: flex;

    gap: 0;

}

footer .form-control {

    border: 1px solid rgba(255,255,255,.15);

    background: rgba(255,255,255,.08);

    color: #ffffff;

}

footer .form-control::placeholder {

    color: rgba(255,255,255,.55);

}

footer .form-control:focus {

    background: rgba(255,255,255,.12);

    color: #ffffff;

    border-color: #0d6efd;

    box-shadow: none;

}

footer .btn {

    white-space: nowrap;

}

/* =====================================================
   SOCIAL LINKS
===================================================== */

.footer-social {

    display: flex;

    gap: 12px;

    margin-top: 15px;

}

.footer-social a {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 38px;

    height: 38px;

    background: rgba(255,255,255,.08);

    color: #ffffff;

    transition: all .25s ease;

}

.footer-social a:hover {

    background: #0d6efd;

    color: #ffffff;

}

/* =====================================================
   COPYRIGHT BAR
===================================================== */

.footer-copyright {

    background: #1f2937;

    color: rgba(255,255,255,.85);

    text-align: center;

    padding: 14px 10px;

    font-size: 14px;

}

.footer-copyright a {

    color: #ffffff;

}

.footer-copyright a:hover {

    text-decoration: underline;

}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    footer {

        text-align: center;

    }

    footer .input-group {

        flex-direction: column;

    }

    footer .btn {

        width: 100%;

        margin-top: 10px;

    }

    .footer-social {

        justify-content: center;

    }

}