.page_footer {
    min-width: 100%;
    max-width: 100%;
    background: #333333;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.footer_container {
    width: 70%;
    min-height: 150px;
    display: grid;
    grid-template-columns: repeat(5, 20%);
    padding-bottom: 50px;
}

.footer_col {
    width: 100%;
    height: 100%;
    color: #fff;
    padding-top: 25px;
    display: flex;
    flex-direction: column;
}

.footer_col h2 {
    font-size: 22px;
}

.footer_col a {
    color: #fff;
}

@media(max-width: 996px) {   
    .footer_container {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        padding-bottom: 50px;
    }
    
    .footer_col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }    
}