footer {
    display: grid;
    grid-template-columns: repeat(3, 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 > .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);
}

