.page_header {
     height: 100%;
    min-height: 750px;
    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%

    ); */
background: linear-gradient(
  -36deg,
  var(--accent) -500%,
  var(--dark-bkgd) 100%
);

    align-items: 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 .carousel_container {
    display: flex;
flex-direction: column;
align-items: center;
justify-content: center;

}

.page_header .header_slider {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    height: auto;
    overflow-x: hidden;
    margin-bottom: 25px;
       max-width: 666px;
}

.page_header .header_slider .slide {
    max-height: 500px;
    border-radius: var(--button-radius);
    object-fit: contain;
    width: 100%;
     box-shadow: var(--shadow);
     transition: 0.4s;
}

.page_header h1 {
    color: var(--accent);
    font-size: clamp(1.2rem, 8vw, 4rem);
    margin-bottom: 15px;
    line-height: 1.1;
    text-shadow: var(--shadow);
    max-width: 800px;
    font-weight: 600;
}

.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);
    max-width: 800px;
}

.page_header .carousel_indicator {
    fill: var(--accent-rgb);
    width: 20px;
}

.page_header .carousel_indicator:hover {
    cursor: pointer;
    fill: var(--accent);
}

.page_header .carousel_indicator.active_indicator {
    fill: var(--accent);
}

@media (max-width: 1200px)
{
    .page_header {
        padding-top: 55px;
        padding-bottom: 55px;
        height: 100%;
        min-height: 900px;
    }

    .page_header p {
   text-align: center;
}

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

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

    .page_header h1 {
        text-align: center;
    }

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


}


