.footer .img-flex {
    display: flex;
    align-items: center;
    list-style-type: none;
    padding: 0;
    margin: 0;
    gap: 117px;
}
.footer .img-flex li img {
    height: 141px;
    padding: 10px 0;
    object-fit: contain;
}
.footer .img-flex li:last-child img {
    height: 124px;
}
.footer .img-flex li:not(:last-child) {
    position: relative;
}
.footer .img-flex li:not(:last-child)::after {
    content: '';
    position: absolute;
    height: 70%;
    width: 1px;
    top: 50%;
    transform: translateY(-50%);
    right: -50px;
    background-color: var(--color-white);
}
.contribution-info {
    display: grid;
    grid-template-columns: 129px 1fr;
    gap: 50px 44px;
    margin-top: 40px;
}
.contribution-info .img-wrap {
    text-align: center;
}
.contribution-info img {
    width: 129px;
    height: 129px;
    margin: 0 auto;
}

@media(max-width:1200px) {
    .footer .row {
        gap: 50px;
    }
    .footer .img-flex {
        justify-content: center;
    }
}
@media(max-width:992px) {
    .contribution-info {
        display: grid;
        grid-template-columns:1fr;
    }    
}
@media(max-width:767px) {
	.footer .parah {
        gap: 30px;
    }
}
@media(max-width:575px) {
    .footer .img-flex {
        gap: 80px;
    }
    .footer .img-flex li:not(:last-child)::after {
        right: -35px;
    }
    .footer .img-flex img {
        max-width: 100%;
    }
}