#maps {
    width: 100%;
    height: 300px;
}


footer {
    width: 100%;
    height: 420px;
    background-color: #d22e2e;
    color: white;
    text-align: center;
    font-size: 17px;
    padding-top: 20px;
    font-weight: 300;
    display: flex;
    flex-direction: column;
}

footer>div>div>div>div {
    margin-top: 20px;
    display: flex;
}

footer img {
    height: 20px;
    width: 20px;
    margin-right: 10px;
    padding-top: 20px;
}

footer .email {
    height: 15px;
}

footer>div {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin-bottom: 20px
}

footer>div>div {
    width: 33%;
    font-size: 13px;
    text-align: left;
    display: flex;
    flex-direction: column;
}

footer>div>div h4 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 30px 0 10px 0;
}

footer>div>div p,
footer a {
    margin-bottom: 7px;
}

footer .copy .line {
    width: 80%;
    height: 2px;
    color: white;
}

footer>.copy {
    display: flex;
    flex-direction: column;
    text-align: center;
    height: 40px;
    border-top: white 2px solid;
}

footer .copy p {
    font-size: 13px;
}

footer #logo {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}

footer a,
footer a:visited {
    color: white;
}

@media only screen and (max-width: 975px) {
    footer {
            height: 800px;
    }
    footer>div {
        flex-direction: column;
        height: 800px;
        justify-content: center;
        align-items: center;
    }

    footer>div>div {
        text-align: center;
        width: 80%;
        align-items: center;
    }

    footer>div>div>div>div {
        margin-top: 20px;
    }

    footer img {
        margin: 0 10px 0 0;
    }

    footer .email {
        height: 15px;
    }

    footer div>div>div {
        align-items: center;
        justify-content: center;
    }
}