footer section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 200px;
    grid-template-rows: 30% 70%;
    background-color: var(--mainColor);
    margin-top: 100px;
    clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 100%);
    padding: 40px;
    box-sizing: unset;
}

footer .mobile {
    display: none;
    height: 350px;
    grid-template-rows: 25% 20% 25% 20%;
    padding-top: 90px;
}

footer .desktop {
    display: grid;
}

footer .title {
    font-size: 20px;
    color: white;
}

footer .title > p {
    margin: 0 0 -10px 0;
}

footer hr {
    width: 30%;
    display: inline-block;
}

footer a {
    font-size: 15px;
    text-decoration: none;
    color: var(--lightMainColor);
}

.social {
    display: flex;
    gap: 1em;
}

footer .desktop .social a {
    height: 10px;
}

.social a {
    display: flex;
    align-items: anchor-center;
    font-size: 15px;
}

.social i {
    font-size: 2rem;;
}

.social svg {
    fill: var(--lightMainColor);
    width: 2rem;
}

.rubika path {
    fill: var(--lightMainColor);
}

@media (max-width: 1000px) {
    footer {
        grid-template-columns: repeat(2, 1fr);
    }

    footer > .mobile {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    footer > .desktop {
        display: none;
    }
}