.page_header {
    height: 80vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-size: cover;
    background: linear-gradient(
        36deg,
        var(--accent) 0%,
        var(--dark-bkgd) 20%,
        var(--dark-bkgd) 80%,
        var(--accent) 100%

    );
    align-items: center;
}

.heading_container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 60%;
    padding-right: 80px;
    position: relative;
}


.page_header .button_container .primary_button:first-of-type {
    margin-right: 25px;
   
}

.page_header .content_div {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.page_header .img_container {
    width: 40%;
}

.page_header .img_container img {
    width: 100%;
    box-shadow: var(--shadow);
    border-radius: var(--button-radius);
}

.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: 992px)
{
    .page_header {
        height: unset;
        min-height: 90vh;
        padding-top: 75px;
        padding-bottom: 75px;
        
        
    }

    .page_header .heading_container {
        align-items: flex-start;
        justify-content: center;
        width: 100%;
        margin-bottom: 55px;
        padding-right: 0px;
    }

    .page_header .button_container {
        margin-top: 35px;
    }

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

    .page_header .content_div {
        flex-direction: column;
        justify-content: center;
    }
    .page_header .img_container {
        width: 100%;
    }


}


@media (max-width: 500px)
{
    .page_header .button_container {
        flex-direction: column;
        display: flex;
    }

    .page_header .button_container .primary_button:first-of-type {
        margin-right: 0px;
        margin-bottom: 35px;
       
    }
}

