.footer_wrapper {
    background-color: #E3FFEE;
    padding: 50px 0;
}

.footer_box h3 {
    text-transform: capitalize;
    font-weight: 700;
    color: var(--main-color);
}

.footer_box {
    padding-left: 3rem;
}

.footer_links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.footer_links a {
    text-transform: capitalize;
    color: var(--black-color);
    font-weight: 500;
    display: flex;
    gap: 5px;
}

.footer_links a i {
    margin-top: 4px;
    color: var(--main-color);
}

.footer_logo p {
    font-size: 14px;
    margin-top: 1rem;
    color: var(--black-color);
}

.footer_links a:hover {
    color: var(--main-color);
}

.footer_icon {
    margin-top: 24px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer_icon a {
    color: var(--white-color);
    height: 32px;
    width: 32px;
    border-radius: 100%;
    display: flex;
    font-size: 20px;
    justify-content: center;
    align-items: center;
    background-color: var(--main-color);
    transition: .3s ease all;
}

.footer_icon a:hover {
    background-color: var(--white-color);
    color: var(--main-color);
    transition: .3s ease all;
}

.copyright p {
    text-align: center;
    padding: 10px 0;
    font-weight: 700;
    background-color: var(--main-color);
    color: var(--white-color);
}

.footer_img {
    display: flex;
    margin-top: 2rem;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.footer_img img {
    width: 150px;
    border: 1px solid #ccc;
    background-color: var(--white-color);
    aspect-ratio: 3/2;
    object-fit: contain;
}

.footer_bottom {
    display: none;
}

.footer_bottom button {
    width: 100%;
}

@media(max-width:1200px) {
    .footer_logo img {
        width: 250px;
    }

    .footer_box {
        margin-top: 3rem;
        padding-left: 0;
    }

}

@media(max-width:576px) {
    .footer_links a {
        font-size: 14px;
    }

    .footer_bottom {
        display: flex;
        position: fixed;
        left: 0;
        width: 100%;
        background-color: var(--main-color);
        bottom: 0;
        z-index: 999;
        box-shadow: 0 4px 5px rgba(0, 0, 0, .6);
    }

    .footer_wrapper {
        padding: 20px 0 50px 0;
    }

    .footer_bottom button i,.footer_bottom a i {
        font-size: 22px;
    }
    .footer_bottom a{
        background-color: #ff0000 !important;
    }

    .footer_bottom button,
    .footer_bottom a {
        width: 100%;
        border: none;
        display: flex;
        gap: 4px;
        align-items: center;
        justify-content: center;
        outline: none;
        border-right: 1px solid #ccc;
        padding: 1rem 0;
        background-color: var(--main-color);
        color: var(--white-color);
        text-transform: uppercase;
        font-size: 16px;
        font-weight: 700;
    }

    .footer_img img {
        width: 100px;
    }

    .footer_box h3 {
        font-size: 20px;
    }

    .footer_links {
        margin-top: 1.5rem;
        gap: 14px;
    }

    .copyright p {
        font-size: 12px;
        padding: 5px 0;
    }

    .footer_logo p {
        font-size: 14px;
    }

    .footer_logo img {
        width: 195px;
    }

    .footer_box {
        margin-top: 2rem;
    }
}