.general-footer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: "socials greeting up";
    align-items: center;
    margin: 0 -24px;
    padding: 0 60px;
    position: relative;
    background-color: #000000;
    color: #ffffff;
    height: 120px;
}

.general-footer .left {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 50px;
    grid-area: socials;
}

.general-footer .left a {
    font-size: 15px;
    display: flex;
    align-items: center;
    border: none;
    background-color: transparent;
    color: #ffffff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-decoration: none;
}

.general-footer .left a:hover {
    transition: color 100ms linear;
  }

.general-footer .center {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    grid-area: greeting;
}

.general-footer .right {
    justify-self: flex-end;
    grid-area: up;
}

/* RESPONSIVE */
@media screen and (max-width: 1024px) {
    .general-footer {
        grid-template-columns: 2fr 1.5fr .5fr;
        padding: 0 24px;
        }

    .general-footer .left {
        grid-gap: 30px;
    }
}
@media screen and (max-width: 768px) {
    .general-footer {
        grid-template-columns: 1fr;
        grid-template-areas: "up" "socials" "greeting ";
        margin: 0;
        padding: 24px;
    }
    .general-footer .right {
        justify-self: center;
    }
    .general-footer .center {
        line-height: 30px;
    }
    .general-footer .left {
        margin: 12px 0;
    }
}