.footer {
    margin-top: 150px;
    padding-bottom: 40px;
}

.footer_content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    /* justify-content: space-between; */
}

.footer_item {
    display: flex;
    flex-direction: column;
}

.footer_item .social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.footer_item .social i {
    font-size: 25px;
    color: var(--black);
}

.footer_item .social i.fa-instagram {
    border-radius: 50%;
    padding: 5px;
    background: var(--black);
    color: #fff;
    font-size: 16px;
}

.footer_item>h3 {
    color: var(--black);
    text-transform: uppercase;
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 18px;
    font-weight: 600;
    letter-spacing: 1px;

}

.footer_item>ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer_item>ul>li {
    margin-bottom: 3px;
}

.footer_item>ul a {
    text-decoration: none;
    font-size: 14px;
    line-height: 16px;
    font-weight: 300;
    color: rgb(5, 105, 0);
}

@media(max-width:992px) {
    .footer {
        margin-top: 50px;
    }

    .footer_item {
        width: 40%;
    }

}

@media(max-width:576px) {

    .footer_item {
        width: 100%;
    }

}