.page_header {
    height: 60vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-size: cover;
    background-position: center;

}

.header_spacer {
    height: 15px;
    background-color: var(--bkgd);
    width: 100%;
    border-bottom: 25px solid var(--primary);
    box-sizing: content-box;
}

.service_banner {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: var(--bkgd);
    padding-left: 15px;
    padding-right: 15px;
}

.service_grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 15px;
    row-gap: 15px;
    max-width: 1400px;
    padding: 15px 25px 15px 25px;
    background-color: var(--bkgd);
    justify-content: center;
    align-content: start;  
}


.service_navigation_button {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 300px;
    text-align: center;
    padding: 5px 45px 5px 45px;
    color: var(--dark-text);
    background-color: var(--bkgd);
    text-decoration: none;
    text-transform: uppercase;
}

.service_navigation_button:hover {
    transition: 0.3s;
    background: var(--primary);
    color: var(--light-text);
}

.page_header .primary_button {
    box-shadow: var(--shadow);
}

.page_header .content_div {
    justify-content: center;
    align-items: center;
}

.heading_container {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.page_header h1 {
    color: var(--light-text);
    font-size: 60px;
    margin-bottom: 15px;
    line-height: 1.1;
    text-shadow: var(--shadow);
    text-align: center;
}

.page_header p {
    color: var(--light-text);
    margin-bottom: 55px;
    display: block;
    text-shadow: var(--shadow);
    text-align: center;
    font-size: 20px;
}


@media (max-width: 992px)
{
    .service_grid {
            grid-template-columns: repeat(1, minmax(0, 1fr));
            width: 100%;
    }

    .service_navigation_button {
        max-width: unset;
        width: 100%;
      
    }

    .page_header {
        height: unset;
        min-height: 60vh;
    }

    .page_header h1 {
        font-size: 39px;
    }
}

@media (max-width: 768px)
{
    .page_header {
        height: unset;
        min-height: 90vh;
    }

    .page_header h1 {
        font-size: 39px;
    }


}
