footer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footerSocials {
    flex: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background-color: var(--yellowDark);
}

.footerSocialIconsContainer {
    flex: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.footerSocials h2 {
    display: none;
}

.footerSocials a {
    color: #fff;
    text-decoration: none;
    font-size: 35px;
    transition: color ease .15s;
}

.footerSocials a:hover {
    color: #ccc;
    text-decoration: none;
    transition: color ease .15s;
}

.footerLinks,
.footerContact,
.footerCopyright {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footerLinks,
.footerContact {
    align-items: flex-start;
}

.footerContent {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    background-color: var(--sectionLight);
}

.footerLinks,
.footerContact {
    padding: 20px 30px;
}

.footerLinks div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.footerCopyright {
    flex: 1;
    width: 100%;
    background-color: var(--footerCopyright);
    padding: 10px;
}

.footerLinks h1,
.footerContact h1 {
    font-size: 23px;
    font-weight: 400;
    color: var(--text);
    border-bottom: var(--text) solid 1px;
}

.footerLinks a,
.footerContact a {
    color: var(--text);
    text-decoration: none;
    margin: 10px 0;
    font-size: 14px;
    font-weight: 300;
    transition: color ease .15s;
    display: inline-block;
}

.footerLinks a:hover {
    color: var(--textHighlight);
    text-decoration: none;
    transition: color ease .15s;
}

.footerLinks a:last-child,
.footerContact a:last-child {
    margin: 10px 0 0 0;
}

.footerContact a:hover {
    color: var(--textHighlight);
    text-decoration: none;
    transition: color ease .15s;
}

.footerCopyright p {
    text-align: center;
    margin: 0;
    color: var(--text);
    font-size: 11px;
    font-weight: 200;
}

@media (min-width: 920px) {

    .footerSocialIconsContainer {
        height: 60px;
    }

    .footerSocials h2 {
        color: #fff;
        display: block;
        flex: 3;
        justify-self: center;
        margin: 0;
        margin-left: 30px;
        font-size: 20px;
    }

    .footerSocialIconsContainer {
        flex: 1;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        margin-right: 30px;
    }

    .footerSocialIconsContainer a {
        margin: 0 10px;
        font-size: 30px;
    }

}

@media (max-width: 431px) {

    .footerContent {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        width: 100%;
    }

    .footerContact {
        padding: 10px 30px 20px 30px;
    }

}