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

.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: clamp(1.2rem, 8vw, 4rem);
    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: 65vh
    }

    .page_header_container {
        height: 65vh;
    }



}

