/* =========================================================
   FOOTER
========================================================= */

.footer {
    position: relative;

    background: #071b11;

    color: #cbdcd2;

    padding: 70px 0 0;

    overflow: hidden;
}


/* =========================================================
   FOOTER BRAND
========================================================= */

.footer-brand {
    display: inline-flex;

    align-items: center;

    gap: 11px;

    text-decoration: none;

    color: #fff;

    line-height: 1;
}

.footer-brand:hover {
    color: #fff;
}


.footer-brand .brand-mark {
    width: 42px;
    height: 42px;

    min-width: 42px;

    border-radius: 12px;

    display: grid;
    place-items: center;

    color: #fff;

    background:
        linear-gradient(
            145deg,
            var(--green),
            #20ae55
        );

    box-shadow:
        0 8px 20px rgba(7, 136, 63, .22);
}


.footer-brand .brand-mark i {
    font-size: 20px;
}


.footer-brand-text {
    display: block;
}


.footer-brand strong {
    display: block;

    color: #fff;

    font-size: 21px;

    font-weight: 800;

    letter-spacing: -.5px;
}


.footer-brand small {
    display: block;

    margin-top: 5px;

    color: var(--lime);

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 1.8px;
}



/* =========================================================
   FOOTER DESCRIPTION
========================================================= */

.footer-text {

    max-width: 390px;

    margin: 22px 0 0;

    color: #b8cbc0;

    font-size: 13px;

    line-height: 1.8;
}



/* =========================================================
   SOCIAL ICONS
========================================================= */

.footer-social {

    display: flex;

    align-items: center;

    gap: 9px;

    margin-top: 22px;
}


.footer-social a {

    width: 36px;
    height: 36px;

    display: grid;

    place-items: center;

    border: 1px solid rgba(255,255,255,.13);

    border-radius: 9px;

    color: #fff;

    text-decoration: none;

    background: rgba(255,255,255,.025);

    transition:
        background .25s ease,
        border-color .25s ease,
        transform .25s ease,
        color .25s ease;
}


.footer-social a:hover {

    background: var(--green);

    border-color: var(--green);

    color: #fff;

    transform: translateY(-3px);
}


.footer-social i {
    font-size: 14px;
}



/* =========================================================
   FOOTER HEADINGS
========================================================= */

.footer h4 {

    position: relative;

    margin: 0 0 20px;

    color: #fff;

    font-size: 16px;

    font-weight: 700;
}


.footer h4::after {

    content: "";

    display: block;

    width: 28px;
    height: 2px;

    margin-top: 9px;

    background: var(--lime);

    border-radius: 5px;
}



/* =========================================================
   FOOTER LINKS
========================================================= */

.footer-links {

    list-style: none;

    padding: 0;
    margin: 0;
}


.footer-links li {

    margin: 0 0 11px;
}


.footer-links a {

    display: inline-flex;

    align-items: center;

    color: #b8cbc0;

    font-size: 13px;

    line-height: 1.5;

    text-decoration: none;

    transition:
        color .2s ease,
        transform .2s ease;
}


.footer-links a::before {

    content: "›";

    margin-right: 7px;

    color: var(--lime);

    font-size: 15px;

    transition: transform .2s ease;
}


.footer-links a:hover {

    color: #fff;

    transform: translateX(3px);
}


.footer-links a:hover::before {

    transform: translateX(2px);
}



/* =========================================================
   CONTACT LIST
========================================================= */

.contact-list {

    list-style: none;

    padding: 0;
    margin: 0;
}


.contact-list li {

    display: flex;

    align-items: flex-start;

    gap: 11px;

    margin-bottom: 14px;

    color: #b8cbc0;

    font-size: 13px;

    line-height: 1.55;

    word-break: break-word;
}


.contact-list a {

    color: #b8cbc0;

    text-decoration: none;

    transition: color .2s ease;
}


.contact-list a:hover {

    color: var(--lime);
}



/* =========================================================
   CONTACT ICON
========================================================= */

.contact-icon {

    width: 30px;
    height: 30px;

    min-width: 30px;

    display: grid;

    place-items: center;

    margin-top: -2px;

    border-radius: 8px;

    background: rgba(122, 214, 75, .09);

    color: var(--lime);

    font-size: 13px;
}



/* =========================================================
   CONTACT BUTTON
========================================================= */

.footer-contact-btn {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 5px;

    padding: 10px 17px;

    border: 1px solid rgba(122, 214, 75, .35);

    border-radius: 8px;

    background: rgba(7,136,63,.12);

    color: var(--lime);

    font-size: 12px;

    font-weight: 600;

    text-decoration: none;

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}


.footer-contact-btn:hover {

    background: var(--green);

    color: #fff;

    transform: translateY(-2px);
}



/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-top: 55px;

    padding: 18px 0;

    border-top: 1px solid rgba(255,255,255,.08);

    color: #71877b;

    font-size: 10px;
}


.footer-copy strong {

    color: #9eb3a7;

    font-weight: 600;
}


.footer-credit {

    text-align: right;

    color: #71877b;
}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .footer {

        padding-top: 55px;
    }


    .footer-text {

        max-width: 500px;
    }


    .footer-bottom {

        margin-top: 40px;
    }

}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .footer {

        padding-top: 48px;
    }


    .footer-brand .brand-mark {

        width: 40px;
        height: 40px;

        min-width: 40px;
    }


    .footer-brand strong {

        font-size: 19px;
    }


    .footer-text {

        margin-top: 18px;

        font-size: 12.5px;

        line-height: 1.7;
    }


    .footer-social {

        margin-top: 18px;
    }


    .footer h4 {

        margin-bottom: 16px;

        font-size: 15px;
    }


    .footer-links li {

        margin-bottom: 9px;
    }


    .footer-links a {

        font-size: 12px;
    }


    .contact-list li {

        font-size: 12px;

        margin-bottom: 12px;
    }


    .footer-contact-btn {

        margin-top: 2px;
    }


    .footer-bottom {

        flex-direction: column;

        align-items: flex-start;

        gap: 7px;

        margin-top: 38px;

        padding: 16px 0;
    }


    .footer-credit {

        text-align: left;
    }

}



/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .footer {

        padding-top: 42px;
    }


    .footer .row {

        --bs-gutter-y: 2.3rem;
    }


    .footer-brand .brand-mark {

        width: 38px;
        height: 38px;

        min-width: 38px;

        border-radius: 10px;
    }


    .footer-brand strong {

        font-size: 18px;
    }


    .footer-brand small {

        font-size: 6px;

        letter-spacing: 1.5px;
    }


    .footer-text {

        font-size: 12px;
    }


    .footer-social a {

        width: 34px;
        height: 34px;
    }


    .footer-bottom {

        font-size: 9px;
    }

}