footer {
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    width: 100%;
    padding: 2rem;
    /* background: linear-gradient(135deg, #6742C1 0%, #4582EC 100%); */
    background: var(--footerbg);
}

footer .all-items {
    display: flex;
    justify-content: center;
}

footer .all-items .item-list {
    width: 25%;
    padding: 5px;
}

.info {
    font-size: 16px;
    padding: 5px 20px 0 0;
    color: #fff;
    justify-content: justify;
}

footer .all-items .item-list .item-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
}

footer .all-items .item-list ul {
    list-style: none;
    min-height: 135px;
}

footer .all-items .item {
    margin-bottom: 5px;
}

footer .all-items .item-list a {
    text-decoration: none;
    font-size: 1rem;
    color: #fff;
}

footer .social-items {
    display: flex;
}

.social-items .item a i {
    font-size: 2.1rem;
    margin-right: 10px;
}

.navigate ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.navigate .item {
    flex: 1 0 calc(50% - 20px);
    margin-bottom: 10px;
}

.contact-icons .item i {
    font-size: 1rem;
    margin-right: 10px;
}

.copyrights {
    text-align: center;
    color: #fff;
}

@media screen and (max-width: 768px) {
    footer .all-items {
        flex-direction: column;
        justify-content: center;
    }

    footer .all-items .item-list {
        width: 100%;
        text-align: center;
    }

    footer .all-items .item-list .item-title {
        margin-bottom: 20px;
    }

    footer .all-items .item-list:nth-child(3) {
        height: 15vh;
    }

    footer .all-items .navigate .item {
        text-align: center;
    }

    footer .social-items {
        justify-content: center;
    }
}