.footer_wrapper {
    background-color: #000;
    border-top: 1px solid #ccc;
}

.footer_box h3 {
    text-transform: capitalize;
    font-size: 25px;
    font-weight: 600;
    color: var(--white-color);
}

.footer_content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.footer_links {
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
    gap: 1rem;
}

.footer_links a {
    text-transform: capitalize;
    color: var(--white-color);
    font-size: 18px;
    display: flex;
    gap: 7px;
}

.footer_links a:hover {
    color: whitesmoke;
}

.footer_links a i {
    margin-top: 4px;
    color: #c4c4c4;
}

.copyright {
    padding: 10px 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--main-color);
    color: var(--white-color);
}

.payment img {
    width: 300px;
}

.copyright_links {
    display: flex;
    gap: 1rem;
}

.copyright_links a {
    color: var(--white-color);
    text-transform: capitalize;
    font-size: 18px;
}

.menu_icon,
.mobile_banner {
    display: none;
}

.footer_up__box {
    border-right: 1px solid #ccc;
}

.footer_up__box h3 {
    font-size: 25px;
    font-weight: 600;
}

.footer_up__box p {
    font-size: 18px;
    margin-top: 1rem;
    max-width: 451px;
    margin-bottom: 1rem !important;
}

.footer_up__box a {
    display: block;
    color: var(--main-color) !important;
    text-transform: uppercase;
    font-weight: 600;
}

@media(max-width:1440px) {
    .footer_up__box h3 {
        font-size: 22px;
    }

    .footer_up__box p {
        font-size: 16px;
        margin: 10px 0 !important;
        padding-right: 1rem;
    }
}

@media(max-width:992px) {
    .copyright {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .footer_box {
        margin-bottom: 2rem;
    }

    .menu_icon {
        display: block;
    }

    .footer_content {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer_up__box h3 {
        font-size: 18px;
    }
}

@media(max-width:768px) {
    .footer_up__box{
        /*border-right: 0;*/
        margin-bottom: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid #ccc;
    }
    .footer_links {
        gap: 10px;
        /* margin-top: 1rem; */
        height: 0;
        transition: .3s ease all;
        overflow: hidden;
    }

    .footer_box.active .footer_links {
        height: auto;
        margin-top: 1rem;
        transition: .3s ease all;
    }

    .footer_box.active {
        margin-bottom: 2rem;
    }

    .footer_box {
        margin-bottom: 0;
    }

    .desktop_banner {
        display: none;
    }

    .mobile_banner {
        display: block;
    }

    .footer_content {
        gap: 0;
        grid-template-columns: repeat(1, 1fr);
    }

    .footer_links a {
        font-size: 15px;
    }

    .copyright {
        padding: 10px 12px;
        gap: 4px;
        align-items: center;
        text-align: center;
    }

    .copyright p {
        font-size: 10px;
    }

    .copyright_links a {
        font-size: 15px;
    }

    .footer_box h3 {
        font-size: 18px;
        position: relative;
    }

    .footer_box h3::after {
        content: '\002B';
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 30px;
        color: #fff;
        transition: .3s ease;
    }

    .footer_box.active h3::after {
        content: '\2212';
    }
}

@media(max-width:576px) {
    .footer_header {
        padding-top: 2rem;
    }
}