footer {
    background: var(--orange);
    padding-top: 100px;
    color: var(--white);
    padding-bottom: 80px;
}

.f_logo {
    text-align: center;
    margin-bottom: 50px;
}

.f_content {
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    text-align: center;
}

.fc_info h5 {
    font-size: 16px;
    margin-bottom: 30px;
}

.fc_info a {
    font-size: 14px;
}

.fc_info i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--black);
    color: var(--white);
    margin: 0 3px;
    transition: all .3s ease-in-out;
    font-size: 20px;
}

.nelica {
    position: relative;
    background-color: var(--orange);
    color: var(--black);
    padding: 15px 0;
    padding-right: 2%;
    text-align: right;
}

.nelica>img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: calc(100% - 17em);
}

@media screen and (max-width:991px) {
    .f_content {
        grid-template-columns: 50% 50%;
        grid-row-gap: 50px;
    }
}

@media screen and (max-width: 767px) {}

@media screen and (max-width: 575px) {
    .f_content {
        grid-template-columns: 100%;
        grid-row-gap: 40px;
    }
    .fc_info h5 {
        margin-bottom: 15px;
        font-weight: bold;
    }
}

@media screen and (max-width: 400px) {}