.footer_logo img {
    width: 80px;
}

.footer_wrapper {
    background-color: #000;
    padding: 50px 0;
}

.footer_logo p {
    margin-top: 12px;
    font-size: 14px;
    line-height: 22px;
    color: var(--white-color);
}

.social_links {
    margin-top: 1rem;
    display: flex;
    gap: 10px;
    align-items: center;
}

.social_links img {
    width: 35px;
    aspect-ratio: 3/2;
    object-fit: contain;
}

.footer_box {
    padding-left: 3rem;
}

.footer_box h3 {
    text-transform: capitalize;
    font-size: 24px;
    color: var(--main-color);
    font-weight: 600;
}



.footer_links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.footer_links a {
    text-transform: capitalize;
    color: var(--white-color);
    font-size: 16px;
    display: flex;
    gap: 3px;
}

.footer_links a:hover {
    color: whitesmoke;
}

.footer_links a i {
    margin-top: 3px;
    color: var(--main-color);
    font-size: 20px;
}

.copyright {
    text-align: center;
    padding: 10px 0;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    background-color: var(--black-color);
    color: var(--white-color);
}

.payment_img img {
    width: 300px;
    margin-top: 10px;
}

@media(max-width:1440px) {
    .footer_box {
        padding-left: 2rem;
    }
}

@media(max-width:1200px) {
    .footer_box {
        padding-left: 0;
        margin-top: 2rem;
    }

    .footer_links a {
        font-size: 15px;
    }

    .footer_box h3 {
        font-size: 20px;
    }

    .footer_links {
        margin-top: 1rem;
    }
}

@media(max-width:768px) {
    .footer_logo img {
        width: 80px;
    }

    .footer_links a i {
        margin-top: 0px;

        font-size: 16px;
    }


    .footer_wrapper {
        padding: 40px 0;
    }

    .copyright {
        padding: 5px 0;
    }

    .copyright p {
        font-size: 12px;
    }

    .payment_img img {
        width: 200px;
        margin-top: 3px;
        padding: 0 12px;
    }

    .footer_box h3 {
        font-size: 18px;
    }

    .footer_links a,
    .footer_logo p {
        font-size: 13px;
    }

    .topNav_content a {
        font-size: 10px;
    }

    .topNav_content__right img {
        width: 20px;
    }

    .banner_content h1 {
        font-size: 21px;
    }

    .footer_links {
        gap: 10px;
        margin-top: 1rem;
    }


}

@media(max-width:576px){
    .footer_logo img{
        width: 55px;
    }
}