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

.site-footer {
    width: 100%;
    background: linear-gradient(135deg, #06304b 0%, #00283f 55%, #03243a 100%);
    color: #fff;
    padding: 40px 0 0;
    display: table;
}


/* ==========================================
   MAIN CONTAINER
========================================== */

.footer-container {
width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 1.25fr 1fr 1fr;
    column-gap: 30px;
    padding: 0 0px 30px 0px;
}


/* ==========================================
   COLUMN
========================================== */

.footer-column {
    min-width: 0;
}


/* ==========================================
   HEADING
========================================== */

.footer-column h3 {
    margin: 0;
    color: #fff;
    font-size:18px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: .3px;
    text-transform: uppercase;
}


/* ==========================================
   YELLOW LINE
========================================== */

.footer-line {
    width: 50px;
    height: 4px;
    background: #ff4a4a;
    margin-top: 10px;
    margin-bottom: 20px;
}


/* ==========================================
   ADDRESS
========================================== */

.footer-address {
    margin: 0;
    color: #f4f7fa;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
}


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

.footer-contact {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}


.footer-contact a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 16px;
    line-height: 1.4;
    text-decoration: none;
    transition: color .25s ease;
}


.footer-contact a:hover {

    color: #ff8383;
}


/* ==========================================
   PHONE / EMAIL ICON
========================================== */

.footer-icon {
    width: 20px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
}


.footer-icon svg {
    width: 20px;
    height: 20px;
    fill: #fff;
    display: block;
}


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

.footer-links ul {

    list-style: none;

    margin: 0;
    padding: 0;
}


.footer-links li {

    margin-bottom: 9px;
}


.footer-links a {
        color: #f5f7fa;
    font-size: 16px;
    line-height: 1.35;
    text-decoration: none;
    transition: color .25s ease, padding-left .25s ease;
    gap: 5px;
}
.footer-links a .arrow-icon-ftr{
    height: 18px;
    font-size: 26px;
    display: flex;
    align-items: center;
    display: none;
}

.footer-links li a:hover {
    color: #ff8383;
    padding-left: 4px;
}


/* ==========================================
   WHATSAPP BUTTON
========================================== */

.footer-whatsapp {
    width: 86%;
    min-height: 57px;
    margin-top: 42px;
    padding: 0 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: #17b452;
    border-radius: 8px;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 700;

    transition:
        background .25s ease,
        transform .25s ease;
}


.footer-whatsapp:hover {

    background: #07984b;

    transform: translateY(-2px);
}


.footer-whatsapp:hover span {

    padding-left: 0 !important;
}


.whatsapp-icon {

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}


.whatsapp-icon svg {

    width: 38px;
    height: 38px;

    display: block;
}


.whatsapp-arrow {
    font-size: 40px;
    line-height: 1;
    font-weight: 300;
    flex-shrink: 0;
    height: 50px;
}


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

.footer-bottom {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    padding: 10px 0px;
    border-top: 1px solid rgb(255 255 255 / 20%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    /* padding-right: 30px; */
}


.footer-bottom p {
margin: 0;
    color: #a6b4c1;
    font-size: 15px;
    line-height: 1.5;
}


.designer-link {

    color: #ffa1a1;

    text-decoration: underline;

    text-underline-offset: 3px;

    transition: color .25s ease;
}


.designer-link:hover {

    color: #fff;
}


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

@media (max-width: 1200px) {

    .footer-container {

        width: calc(100% - 60px);

        grid-template-columns:
            1fr 1fr;

        row-gap: 55px;

        column-gap: 45px;
    }


    .footer-bottom {

        width: calc(100% - 60px);
    }

}


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

@media (max-width: 767px) {

    .footer-links a {
    color: #f5f7fa;
    font-size: 16px;
    line-height: 1.35;
    text-decoration: none;
    transition: color .25s ease, padding-left .25s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.footer-links a .arrow-icon-ftr{
    height: 18px;
    font-size: 26px;
    display: flex;
    align-items: center;
    display: block;
    margin-right: 45px;
}
    .site-footer {
        padding-top: 40px;
    }

    .footer-container {
        width: calc(100% - 50px);
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 40px;
    }


    /* Heading */

    .footer-column h3 {

        font-size: 17px;
    }


    .footer-line {

        width: 45px;

        height: 4px;

        margin-top: 12px;

        margin-bottom: 18px;
    }


    /* Address */

    .footer-address {

        font-size: 15px;

        line-height: 1.65;
    }


    /* Contact */

    .footer-contact {

        margin-top:16px;

        gap: 10px;
    }


    .footer-contact a {
        gap: 12px;
        font-size: 15px;
    }


    .footer-icon {
        width: 22px;
        height: 25px;
    }


    .footer-icon svg {
        width: 20px;
        height: 20px;
    }


    /* Links */

    .footer-links li {

        margin-bottom: 12px;
    }


    .footer-links a {

        font-size: 15px;
    }


    /* WhatsApp */

    .footer-whatsapp {

        min-height: 58px;

        margin-top: 25px;

        padding: 0 14px;

        border-radius: 8px;

        font-size: 13px !important;
        display: none !important;
    }


    .whatsapp-icon,
    .whatsapp-icon svg {

        width: 32px;
        height: 32px;
    }


    .whatsapp-arrow {

        font-size: 28px;
    }


    /* Bottom */

    .footer-bottom {
        width: calc(100% - 35px);
        padding: 10px 0 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        text-align: center;
    }


    .footer-bottom p {

        font-size: 13px;

        line-height: 1.5;
    }

}


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

@media (max-width: 400px) {

    .footer-container {

        width: calc(100% - 28px);
    }


    .footer-bottom {

        width: calc(100% - 28px);
    }


    .footer-whatsapp {

        font-size: 12px !important;
    }

}