.footer,
.push {
    height: 240px;
}

.footer {
    font-family: Barlow, Verdana, sans-serif;
    font-weight: 700;
    color: #fff;
    background-color: #000;
    grid-area: footer;
    display: grid;
    grid-template-rows: 1fr 1fr;
    justify-content: center;
    width: 100%;
    justify-items: center;
    align-items: center;
    box-shadow: 0 50vh 0 50vh #000;

}

#footer-top {

    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    align-items: center;
    justify-items: center;
}

#footer-header {
    padding: 30px 0 0 0;
    line-height: 1.8em;
    text-align: left;
    font-size: 7px;
    letter-spacing: .1em;
    position: relative;
    left: 30px;
}

#footer-title {
    font-size: 20px;
   	padding-bottom: 10px;
}

#footer-subtitle {
    font-size: 14px;
    letter-spacing: .06em;
    color: #999;
    font-weight: 600;
    line-height: 22px;
}

#footer-contact {
    text-align: left;
}

.footer li::before {
    content: "•";
    /* Insert content that looks like bullets */
    padding: 8px;
    position: relative;
    top: 5px;
    font-size: 20px;
    color: #f2525a;
    /* Or a color you prefer */
}

.ftr_txt {
    display: inline;
    font-weight: 400;
    font-size: 14px;
}

.ftr_txt a {
    color: #fff;
}

.ftr_txt a:hover {
    color: #ccc;
}

@media only screen and (min-width: 600px) {
    .footer {

        justify-content: normal;

    }

}