/* =========================================================
   NEW FOOTER DESIGN
========================================================= */

.footer-new-section {
    position: relative;
    background:
        linear-gradient(
            90deg,
            rgba(0, 5, 15, 0.96),
            rgba(0, 5, 15, 0.88)
        ),
        url("../img/home/footer-bg.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 65px 0 0;
    border: 0;
    color: #fff;
}


/* ---------------------------------------------------------
   MAIN FOOTER
--------------------------------------------------------- */

.footer-new-section .footer-main {
    display: grid;
    grid-template-columns: 1.5fr 0.85fr 1fr 1.15fr;
    gap: 50px;
    padding-bottom: 45px;
}


/* ---------------------------------------------------------
   FOOTER COLUMNS
--------------------------------------------------------- */

.footer-new-section .footer-col {
    min-width: 0;
}

.footer-new-section h4 {
    position: relative;

    color: #fff;
    font-size: 18px;
    font-weight: 700;

    text-transform: uppercase;

    margin: 5px 0 28px;
    padding-bottom: 12px;
}

.footer-new-section h4:after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 38px;
    height: 3px;

    background: #ff4e00;
    border-radius: 5px;
}


/* ---------------------------------------------------------
   LOGO
--------------------------------------------------------- */

.footer-new-section .footer-logo {
    display: inline-block;
    margin-bottom: 18px;
}

.footer-new-section .footer-logo-img {
    display: block;

    max-width: 185px;
    max-height: 65px;

    width: auto;
    height: auto;

    background: #fff;
    padding: 6px 10px;

    border-radius: 6px;
}


/* ---------------------------------------------------------
   ABOUT TEXT
--------------------------------------------------------- */

.footer-new-section .footer-about-text {
    max-width: 400px;

    color: rgba(255,255,255,.78);

    font-size: 14px;
    line-height: 1.75;

    margin: 0 0 22px;
}


/* ---------------------------------------------------------
   CONTACT
--------------------------------------------------------- */

.footer-new-section .footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-new-section .footer-contact-list a {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    color: rgba(255,255,255,.82);

    font-size: 14px;
    line-height: 1.55;

    text-decoration: none;

    margin: 0;

    transition: all .3s ease;
}

.footer-new-section .footer-contact-list a:hover {
    color: #fff;
}

.footer-new-section .footer-contact-icon {
    flex: 0 0 34px;

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,.08);

    border: 1px solid rgba(255,255,255,.12);

    border-radius: 50%;

    color: #ff6a21;

    transition: all .3s ease;
}

.footer-new-section .footer-contact-list a:hover
.footer-contact-icon {
    background: #ff4e00;
    color: #fff;
}


/* ---------------------------------------------------------
   LINKS
--------------------------------------------------------- */

.footer-new-section .footer-links {
    padding: 0;
    margin: 0;

    list-style: none;
}

.footer-new-section .footer-links li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-new-section .footer-links li a {
    display: flex;
    align-items: center;

    color: rgba(255,255,255,.76);

    font-size: 14px;
    font-weight: 400;

    line-height: 1.4;

    text-decoration: none;

    margin: 0;
    padding: 7px 0;

    transition: all .3s ease;
}

.footer-new-section .footer-links li a i {
    width: 18px;

    color: #ff5a18;

    font-size: 13px;

    transition: transform .3s ease;
}

.footer-new-section .footer-links li a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-new-section .footer-links li a:hover i {
    transform: translateX(3px);
}


/* ---------------------------------------------------------
   SOCIAL ICONS
--------------------------------------------------------- */

.footer-new-section .footer-social {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-top: 25px;
}

.footer-new-section .footer-social a {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.25);

    color: #fff;

    font-size: 15px;

    text-decoration: none;

    transition: all .3s ease;
}

.footer-new-section .footer-social a:hover {
    background: #ff4e00;
    border-color: #ff4e00;

    transform: translateY(-3px);
}


/* ---------------------------------------------------------
   PAYMENT
--------------------------------------------------------- */

.footer-new-section .footer-payment {
    margin-top: 25px;
    padding-top: 20px;

    border-top: 1px solid rgba(255,255,255,.12);
}

.footer-new-section .footer-payment h5 {
    color: #fff;

    font-size: 13px;
    font-weight: 600;

    text-transform: uppercase;

    margin: 0 0 12px;
}

.footer-new-section .footer-payment img {
    max-width: 210px;
    width: 100%;

    height: auto;

    border-radius: 5px;

    background: #fff;
    padding: 5px;
}


/* ---------------------------------------------------------
   BOTTOM FOOTER
--------------------------------------------------------- */

.footer-new-section .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    min-height: 65px;

    border-top: 1px solid rgba(255,255,255,.12);
}

.footer-new-section .footer-copyright p {
    color: rgba(255,255,255,.65);

    font-size: 13px;

    margin: 0;
}

.footer-new-section .footer-bottom-links {
    display: flex;
    align-items: center;

    gap: 10px;
}

.footer-new-section .footer-bottom-links a {
    color: rgba(255,255,255,.65);

    font-size: 13px;

    text-decoration: none;

    transition: color .3s ease;
}

.footer-new-section .footer-bottom-links a:hover {
    color: #ff5a18;
}

.footer-new-section .footer-bottom-links span {
    color: rgba(255,255,255,.3);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .footer-new-section {
        padding-top: 50px;
    }

    .footer-new-section .footer-main {
        grid-template-columns: 1.4fr 1fr 1fr;
        gap: 35px;
    }

    .footer-new-section .footer-about {
        grid-column: 1 / -1;
    }

    .footer-new-section .footer-about-text {
        max-width: 650px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .footer-new-section {
        padding: 42px 15px 0;
        background-position: center;
    }

    .footer-new-section .footer-main {
        display: block;
        padding-bottom: 25px;
    }

    .footer-new-section .footer-col {
        margin-bottom: 35px;
    }

    .footer-new-section .footer-col:last-child {
        margin-bottom: 0;
    }


    /* Logo */

    .footer-new-section .footer-logo-img {
        max-width: 165px;
        max-height: 58px;
    }


    /* Headings */

    .footer-new-section h4 {
        font-size: 16px;
        margin-bottom: 20px;
    }


    /* About */

    .footer-new-section .footer-about-text {
        font-size: 13.5px;
        line-height: 1.7;
    }


    /* Contact */

    .footer-new-section .footer-contact-list {
        gap: 10px;
    }

    .footer-new-section .footer-contact-list a {
        font-size: 13px;
    }


    /* Links */

    .footer-new-section .footer-links li a {
        font-size: 13.5px;
        padding: 6px 0;
    }


    /* Payment */

    .footer-new-section .footer-payment {
        margin-top: 20px;
    }


    /* Bottom */

    .footer-new-section .footer-bottom {
        flex-direction: column;

        align-items: center;
        justify-content: center;

        text-align: center;

        padding: 18px 0;

        gap: 8px;
    }

    .footer-new-section .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-new-section .footer-copyright p,
    .footer-new-section .footer-bottom-links a {
        font-size: 12px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .footer-new-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .footer-new-section .footer-logo-img {
        max-width: 150px;
    }

    .footer-new-section .footer-contact-icon {
        flex-basis: 31px;

        width: 31px;
        height: 31px;
    }

    .footer-new-section .footer-contact-list a {
        font-size: 12.5px;
    }

    .footer-new-section .footer-social a {
        width: 37px;
        height: 37px;
    }

}