.page_header {
    height: 40vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-size: cover;
    background: linear-gradient(to left, var(--primary), var(--secondary));
}

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

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

.page_header p {
    color: var(--light-text);
    margin-bottom: 35px;
    display: block;
    text-shadow: var(--shadow);
}

@media (max-width: 768px)
{
    .page_header {
        height: 50vh
    }

    .page_header_container {
        height: 50vh;
    }
    

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


}

