.page_header {
    height: 70vh;
    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;
    background-position: center;
}

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

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

.page_header .img_container {
    width: 50%;
}

.page_header .img_container iframe {
    border-radius: 2px;
    width: 100%;
    height: 400px;
    border-radius: var(--button-radius);
    object-fit: contain;
}

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

.page_header .terms_container, .page_header .term {
    color: var(--light-text) !important;
}

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

@media (max-width: 768px)
{
    .page_header {
        height: unset;
        min-height: 70vh;
        padding-top: 75px;
        padding-bottom: 75px;
        
        
    }

    .page_header .img_container img {
        width: 100%;
    }

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

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

    .page_header p {
        text-align: center;
    }

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


}

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

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


}

