/* =====================================================
   FOOTER
===================================================== */

.site-footer {
    width: 100%;
    font-family: Arial, sans-serif;
}


/* =====================================================
   TOP CONTACT BAR
===================================================== */

.footer-contact-bar {
    background: #079da5;
    color: #fff;
}

.footer-contact-container {
    width: 94%;
    max-width: 1400px;
    margin: auto;

    min-height: 50px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    align-items: center;

    gap: 25px;
}


.footer-contact-item {
    display: flex;
    align-items: center;

    gap: 10px;

    min-width: 0;
}


.footer-contact-icon {
    width: 28px;
    min-width: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 19px;
}


.footer-contact-item span {
    display: block;

    font-size: 8px;

    line-height: 1.2;

    margin-bottom: 2px;
}


.footer-contact-item a,
.footer-contact-item p {
    display: block;

    margin: 0;

    color: #fff;

    text-decoration: none;

    font-size: 8px;

    line-height: 1.3;
}


/* =====================================================
   MAIN FOOTER
===================================================== */

.footer-main {
    background: #f3f6f7;

    border-bottom: 1px solid #ccc;
}


.footer-container {
    width: 94%;
    max-width: 1400px;

    margin: auto;

    padding: 14px 0 12px;

    display: grid;

    grid-template-columns:
        1.35fr
        .8fr
        .9fr
        .9fr
        .8fr;

    gap: 35px;
}


/* =====================================================
   FOOTER LOGO
===================================================== */

.footer-logo {
    width: 90px;
    height: auto;

    display: block;

    margin-bottom: 7px;
}


.footer-about p {
    max-width: 160px;

    margin: 0 0 9px;

    color: #555;

    font-size: 8px;

    line-height: 1.5;
}


/* =====================================================
   SOCIAL ICONS
===================================================== */

.footer-social {
    display: flex;

    gap: 5px;
}


.footer-social a {
    width: 18px;
    height: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #172b36;

    color: #fff;

    text-decoration: none;

    font-size: 9px;

    border-radius: 2px;

    transition: .2s;
}


.footer-social a:hover {
    background: #079da5;
}


/* =====================================================
   FOOTER COLUMNS
===================================================== */

.footer-column h3 {
    margin: 0 0 6px;

    color: #182631;

    font-size: 9px;

    font-weight: 700;
}


.footer-column ul {
    list-style: none;

    margin: 0;
    padding: 0;
}


.footer-column li {
    margin-bottom: 3px;

    color: #444;

    font-size: 8px;

    line-height: 1.25;
}


.footer-column li a {
    color: #444;

    text-decoration: none;

    transition: .2s;
}


.footer-column li a:hover {
    color: #079da5;
}


/* =====================================================
   PAYMENT
===================================================== */

.payment-icon {
    width: 23px;
    height: 23px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 4px 0 6px;

    color: #079da5;

    font-size: 18px;
}


.footer-payment p {
    margin: 0;

    color: #444;

    font-size: 8px;

    line-height: 1.4;
}


/* =====================================================
   BOTTOM COPYRIGHT
===================================================== */

.footer-bottom {
    background: #f3f6f7;
}


.footer-bottom-container {
    width: 94%;
    max-width: 1400px;

    min-height: 30px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.footer-bottom p {
    margin: 0;

    color: #555;

    font-size: 8px;
}


.heart {
    color: #222;

    font-size: 12px;

    margin: 0 2px;
}


/* =====================================================
   LARGE DESKTOP
===================================================== */

@media (min-width: 1400px) {

    .footer-contact-container {
        min-height: 55px;
    }

    .footer-container {
        padding: 17px 0 15px;
    }

    .footer-contact-item span,
    .footer-contact-item a,
    .footer-contact-item p {
        font-size: 9px;
    }

    .footer-column h3 {
        font-size: 10px;
    }

    .footer-column li,
    .footer-about p,
    .footer-payment p {
        font-size: 9px;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .footer-contact-container {
        grid-template-columns: repeat(2, 1fr);

        padding: 10px 0;
    }


    .footer-container {
        grid-template-columns:
            1fr 1fr 1fr;

        gap: 25px;
    }


    .footer-about {
        grid-column: span 3;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .footer-contact-container {
        width: 88%;

        grid-template-columns: 1fr;

        gap: 12px;

        padding: 14px 0;
    }


    .footer-container {
        width: 88%;

        grid-template-columns: 1fr 1fr;

        gap: 22px 15px;

        padding: 20px 0;
    }


    .footer-about {
        grid-column: span 2;
    }


    .footer-payment {
        grid-column: span 2;
    }


    .footer-bottom-container {
        width: 88%;

        flex-direction: column;

        justify-content: center;

        text-align: center;

        padding: 9px 0;

        gap: 5px;
    }

}