/* ==========================
   FOOTER
========================== */

.footer-area {
    background: #031238;
    color: #fff;
}

/* ==========================
   FOOTER TOP
========================== */

.footer-top {
    padding: 70px 0;
}

.footer-widget h5,
.footer-widget h6 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-widget h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
}

.footer-widget h5 i {
    color: #43d6e5;
    font-size: 20px;
}

.footer-logo-img {
    width: 210px;
    height: 70px;
    object-fit: contain;
    display: block;
}

.footer-widget h6 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #fff;
}

.footer-widget h6 i {
    color: #ffc107;
    font-size: 18px;
}

/* ==========================
   CONTACT INFO
========================== */

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #d6def5;
    font-size: 14px;
}

.contact-info li i {
    color: #43d6e5;
    font-size: 18px;
    min-width: 22px;
    margin-top: 4px;
    transition: .3s;
}

.contact-info li:hover i {
    transform: scale(1.1);
}

.contact-info li span {
    color: #d6def5;
}

/* ==========================
   FOOTER LINKS
========================== */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    color: #d6def5;
    text-decoration: none;
    font-size: 14px;
    transition: .3s;
}

.footer-links a:hover {
    color: #43d6e5;
    padding-left: 5px;
}

.footer-links a::before {
    content: "›";
    margin-right: 8px;
    color: #43d6e5;
    font-weight: 700;
}

/* ==========================
   TWO COLUMN LINKS
========================== */

.two-column {
    columns: 2;
    column-gap: 30px;
}

/* ==========================
   PAYMENT AREA
========================== */

.payment-area {
    border-top: 1px solid rgba(255, 255, 255, .10);
    border-bottom: 1px solid rgba(255, 255, 255, .10);
    padding: 15px 0;
    text-align: center;
}

.payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-icons img {
    width: 45px;
    height: 28px;
    object-fit: contain;
    background: #fff;
    padding: 3px;
    border-radius: 4px;
    transition: .3s;
}

.payment-icons img:hover {
    transform: translateY(-3px);
}

/* ==========================
   DISCLAIMER
========================== */

.disclaimer-area {
    padding: 25px 0;
    text-align: center;
}

.disclaimer-area p {
    color: #d6def5;
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.8;
}

/* ==========================
   COPYRIGHT
========================== */

.copyright-area {
    border-top: 1px solid rgba(255, 255, 255, .08);
    text-align: center;
    padding: 18px 0;
    font-size: 14px;
    color: #fff;
}

.copyright-area a {
    color: #43d6e5;
    text-decoration: none;
}

.copyright-area a:hover {
    text-decoration: underline;
}

/* ==========================
   TABLET
========================== */

@media (max-width: 991px) {

    .two-column {
        columns: 1;
    }

    .footer-widget {
        margin-bottom: 35px;
    }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 768px) {

    .footer-top {
        padding: 50px 0;
    }

    .footer-widget {
        text-align: center;
        margin-bottom: 30px;
    }

    .footer-widget h5,
    .footer-widget h6 {
        justify-content: center;
    }

    .footer-widget h5 {
        font-size: 17px;
    }

    .footer-logo-img {
        width: 180px;
        height: 60px;
        margin: 0 auto;
    }

    .footer-widget h6 {
        font-size: 15px;
    }

    .contact-info li {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 6px;
        font-size: 13px;
    }

    .contact-info li i {
        margin-top: 0;
        min-width: auto;
    }

    .disclaimer-area p {
        font-size: 13px;
    }

    .payment-icons img {
        width: 40px;
        height: 25px;
    }
}

/* ==========================
   SMALL MOBILE
========================== */

@media (max-width: 576px) {

    .footer-top {
        padding: 40px 0;
    }

    .footer-widget {
        text-align: center;
    }

    .footer-widget h5,
    .footer-widget h6 {
        justify-content: center;
        text-align: center;
    }

    .footer-logo-img {
        width: 160px;
        height: 54px;
    }

    .contact-info {
        text-align: center;
    }

    .contact-info li {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 5px;
        margin-bottom: 20px;
    }

    .contact-info li i {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .contact-info li span {
        display: block;
        text-align: center;
    }

    .payment-icons {
        gap: 10px;
    }

    .copyright-area {
        font-size: 13px;
    }
}
