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

.footer {
    background: #142f6b;
    color: #fff;
    padding-top: 55px;
}


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

.footer-container {
    width: 100%;
    max-width: 1250px;

    margin: auto;

    padding: 0 25px;

    display: grid;

    grid-template-columns:
        1.3fr
        1fr
        1.2fr
        .8fr;

    gap: 45px;
}


/* =====================================================
   COMMON
===================================================== */

.footer-about,
.footer-contact,
.footer-products,
.footer-social {
    min-width: 0;
}

.footer h2,
.footer h3 {
    margin: 0 0 20px;
}

.footer h2 {
    font-size: 25px;
    color: #fff;
}

.footer h3 {
    font-size: 17px;
    color: #fff;
}


/* =====================================================
   ABOUT
===================================================== */

.footer-about p {
    color: #dce6f7;

    font-size: 14px;

    line-height: 1.8;

    margin: 0 0 15px;
}

.footer-tagline {
    color: #fff !important;

    font-weight: 600;

    font-size: 13px !important;
}


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

.footer-contact p {
    display: flex;

    align-items: flex-start;

    gap: 11px;

    color: #dce6f7;

    font-size: 13px;

    line-height: 1.6;

    margin: 0 0 13px;
}

.footer-contact i {
    width: 18px;

    flex-shrink: 0;

    color: #7db4ff;

    margin-top: 4px;
}

.footer-contact a {
    color: #dce6f7;

    text-decoration: none;

    transition: .2s;
}

.footer-contact a:hover {
    color: #fff;
}


/* =====================================================
   PRODUCTS / DEALS
===================================================== */

.footer-products ul {
    list-style: none;

    margin: 0;

    padding: 0;
}

.footer-products li {
    display: flex;

    align-items: center;

    gap: 10px;

    color: #dce6f7;

    font-size: 13px;

    line-height: 1.5;

    margin-bottom: 12px;
}

.footer-products li i {
    width: 18px;

    flex-shrink: 0;

    color: #7db4ff;

    text-align: center;
}


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

.footer-social p {
    color: #dce6f7;

    font-size: 13px;

    line-height: 1.6;
}

.social-icons {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 22px;
}

.social-icons a {
    width: 43px;

    height: 43px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(255, 255, 255, 0.10);

    border-radius: 50%;

    color: #fff;

    text-decoration: none;

    transition: .3s;
}

.social-icons a:hover {
    transform: translateY(-4px);

    background: rgba(255, 255, 255, 0.20);
}

.social-icons i {
    font-size: 19px;
}


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

.footer-contact-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 10px 18px;

    background: #fff;

    color: #142f6b;

    border-radius: 7px;

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;

    transition: .3s;
}

.footer-contact-btn:hover {
    transform: translateY(-2px);

    background: #eef4ff;
}


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

.footer-bottom {
    width: 100%;

    margin-top: 45px;

    padding: 20px 20px;

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

    text-align: center;
}

.footer-bottom p {
    margin: 4px 0;

    color: #dce6f7;

    font-size: 12px;

    line-height: 1.5;
}


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

@media (max-width: 1000px) {

    .footer-container {
        grid-template-columns: repeat(2, 1fr);

        gap: 40px;
    }

}


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

@media (max-width: 600px) {

    .footer {
        padding-top: 40px;
    }

    .footer-container {
        grid-template-columns: 1fr;

        gap: 35px;

        padding: 0 20px;

        text-align: center;
    }


    /* ABOUT */

    .footer-about p {
        font-size: 13px;
    }


    /* CONTACT */

    .footer-contact p {
        justify-content: center;

        text-align: left;

        max-width: 320px;

        margin-left: auto;
        margin-right: auto;
    }


    /* PRODUCTS */

    .footer-products li {
        justify-content: center;
    }


    /* SOCIAL */

    .social-icons {
        justify-content: center;
    }

    .footer-contact-btn {
        width: 100%;

        max-width: 250px;
    }


    /* BOTTOM */

    .footer-bottom {
        margin-top: 35px;

        padding: 18px 15px;
    }

}


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

@media (max-width: 380px) {

    .footer-container {
        padding: 0 15px;
    }

    .footer h2 {
        font-size: 22px;
    }

    .footer h3 {
        font-size: 16px;
    }

    .footer-contact p,
    .footer-products li {
        font-size: 12px;
    }

}