.footer_wrapper {
    background-image: url('../images/footer.webp');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 5rem 5rem 12rem;
    background-position: center bottom;
    border-top: 1px solid #ccc;
}

.footer_logo img {
    width: 550px;
}

.footer_logo {
    text-align: center;
    margin-bottom: 5rem;
}

.footer_box h3 {
    font-weight: 700;
    color: #9d6634;
    max-width: 350px;
    text-transform: capitalize;
}

.footer_box p {
    margin-top: 2rem;
    color: #434343;
    font-size: 15px;
    max-width: 350px;
}

.footer_links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.footer_links a {
    text-transform: capitalize;
    color: var(--black-color);
}

.footer_links a:hover {
    color: var(--main-color);
}

.copyright p {
    background-color: var(--main-color);
    color: #000;
    padding: 10px 0;
    text-align: center;
}

.payment {
    margin-top: 5rem;
    text-align: center;
}

.social_links {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 1rem;
}

.social_links a {
    background-color: var(--main-color);
    height: 34px;
    width: 34px;
    border-radius: 100%;
    color: var(--black-color);
    display: flex;
    justify-content: center;
    transition: .3s ease;
    align-items: center;
}

.social_links a:hover {
    background-color: var(--black-color);
    color: var(--white-color);
    transition: .3s ease;
    transform: scale(1.1);
}



.social_links__row{
    text-align: center;
    margin-top: 5rem;
}
.social_links{
    justify-content: center;
}
.social_links__row h6{
    text-transform: uppercase;
    font-size: 25px;
}



@media(max-width:1440px) {
    .footer_wrapper {
        padding: 5rem 1rem 12rem;
    }

    .footer_box h3 {
        font-size: 20px;
    }

    .footer_links a {
        font-size: 14px;
    }
}

@media(max-width:768px) {
    .footer_wrapper {
        padding: 2rem 0rem 3rem;
    }

    .footer_links {
        gap: 10px;
    }

    .copyright p {
        font-size: 13px;
        padding: 5px 12px;
    }

    .footer_logo {
        margin-bottom: 1rem;
    }

    .footer_box p {
        margin: 1rem 0 1.5rem 0 !important;

    }

    .footer_box {
        margin-bottom: 2rem;
    }

    .footer_links {
        margin-top: 1rem;
    }

    .payment {
        margin-top: 0;
    }
}