.footer_wrapper {
    background-color: var(--white-color);
    padding: 40px 0;
    text-align: center;
}

.footer_logo img {
    width: 200px;
}

.footer_content p {
    font-size: 18px;
    color: var(--black-color);
    margin-top: 2rem !important;
    max-width: 500px;
    margin: 0 auto;
}

.follow h6 {
    text-transform: uppercase;
    margin-top: 2rem;
    color: var(--black-color);
    letter-spacing: 1px;
}

.follow_links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.follow_links a {
    color: var(--black-color);
    font-size: 16px;
}

.copyright p {
    text-align: center;
    padding: 5px 0;
    font-weight: 600;
    background-color: var(--main-color);
    color: var(--black-color);
}

@media(max-width:576px) {
    .footer_content p {
        font-size: 14px;
        margin-top: 5px !important;
    }

    .footer_wrapper {
        padding: 25px 0;
    }

    .footer_logo img {
        width: 120px;
    }

    .copyright p {
        font-size: 12px;
    }

    .follow h6 {
        margin-top: 1rem;
    }
}