/* ==========================================
   CLICK GROW DIGITAL
   PREMIUM FOOTER
========================================== */


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

.site-footer {

    width: 100%;

    margin-top: 0;

    background: #121816;

    color: #f1f5f3;

}


/* ==========================================
   FOOTER MAIN SECTION
========================================== */

.footer-main {

    padding: 75px 20px 60px;

    border-top:
        1px solid
        rgba(255, 255, 255, .06);

}

.footer-container {

    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.6fr
        1fr
        1.2fr
        1.2fr;

    gap: 55px;

    align-items: start;

}


/* ==========================================
   BRAND
========================================== */

.footer-brand {

    max-width: 330px;

}

.footer-logo {

    display: inline-flex;

    align-items: center;

    margin-bottom: 20px;

    text-decoration: none;

}

.footer-logo img {

    width: 145px;

    height: auto;

    display: block;

}

.footer-brand p {

    margin: 0;

    max-width: 320px;

    color: #a8b4ae;

    font-size: 14px;

    line-height: 1.8;

}


/* ==========================================
   SOCIAL ICONS
========================================== */

.footer-socials {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 25px;

}

.footer-socials a {

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #1b2420;

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

    color: #b9c5bf;

    text-decoration: none;

    transition: .25s ease;

}

.footer-socials a:hover {

    background: #16a34a;

    border-color: #16a34a;

    color: #ffffff;

    transform:
        translateY(-3px);

}


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

.footer-column {

    min-width: 0;

}

.footer-column h3 {

    margin: 0 0 20px;

    color: #ffffff;

    font-size: 16px;

    font-weight: 700;

}

.footer-column ul {

    margin: 0;

    padding: 0;

    list-style: none;

}

.footer-column ul li {

    margin-bottom: 11px;

}

.footer-column ul li:last-child {

    margin-bottom: 0;

}

.footer-column ul li a {

    color: #a8b4ae;

    font-size: 14px;

    line-height: 1.5;

    text-decoration: none;

    transition: .25s ease;

}

.footer-column ul li a:hover {

    color: #22c55e;

    padding-left: 4px;

}


/* ==========================================
   CONTACT
========================================== */

.footer-contact {

    display: flex;

    flex-direction: column;

    gap: 14px;

}

.footer-contact li {

    display: flex;

    align-items: flex-start;

    gap: 11px;

    margin-bottom: 0 !important;

}

.footer-contact li i {

    width: 18px;

    margin-top: 3px;

    flex-shrink: 0;

    color: #22c55e;

    text-align: center;

}

.footer-contact li a,

.footer-contact li span {

    color: #a8b4ae;

    font-size: 14px;

    line-height: 1.6;

    text-decoration: none;

    word-break: break-word;

}

.footer-contact li a:hover {

    color: #22c55e;

}


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

.footer-cta {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    margin-top: 25px;

    padding: 12px 18px;

    border-radius: 10px;

    background: #16a34a;

    color: #ffffff !important;

    font-size: 13px !important;

    font-weight: 700;

    text-decoration: none;

    transition: .25s ease;

}

.footer-cta:hover {

    background: #22c55e;

    color: #ffffff !important;

    padding-left: 18px !important;

    transform:
        translateY(-2px);

}


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

.footer-bottom {

    border-top:
        1px solid
        rgba(255, 255, 255, .07);

    padding: 20px;

}

.footer-bottom-container {

    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

}

.footer-bottom p {

    margin: 0;

    color: #87958e;

    font-size: 13px;

    line-height: 1.6;

}


/* ==========================================
   LEGAL LINKS
========================================== */

.footer-legal {

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 10px;

    flex-wrap: wrap;

}

.footer-legal a {

    color: #87958e;

    font-size: 13px;

    text-decoration: none;

    transition: .25s ease;

}

.footer-legal a:hover {

    color: #22c55e;

}

.footer-legal span {

    color: #46524c;

    font-size: 12px;

}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 1000px) {

    .footer-container {

        grid-template-columns:
            1.4fr
            1fr
            1fr;

        gap: 45px;

    }


    .footer-brand {

        grid-column: 1 / -1;

        max-width: 500px;

    }

}


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

@media (max-width: 700px) {

    .footer-main {

        padding:
            55px 20px 45px;

    }


    .footer-container {

        grid-template-columns: 1fr;

        gap: 35px;

    }


    .footer-brand {

        grid-column: auto;

        max-width: 100%;

    }


    .footer-brand p {

        max-width: 100%;

    }


    .footer-column h3 {

        margin-bottom: 15px;

    }


    .footer-socials {

        margin-top: 20px;

    }


    .footer-bottom {

        padding:
            20px;

    }


    .footer-bottom-container {

        flex-direction: column;

        align-items: center;

        justify-content: center;

        text-align: center;

        gap: 12px;

    }


    .footer-legal {

        justify-content: center;

    }

}


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

@media (max-width: 420px) {

    .footer-main {

        padding:
            45px 16px 40px;

    }


    .footer-bottom {

        padding:
            18px 16px;

    }


    .footer-logo img {

        width: 130px;

    }


    .footer-brand p {

        font-size: 13px;

    }


    .footer-column ul li a,

    .footer-contact li a,

    .footer-contact li span {

        font-size: 13px;

    }


    .footer-legal {

        gap: 7px;

    }


    .footer-legal a {

        font-size: 12px;

    }

}