.page_header {
    height: 100%;
    min-height: 750px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-size: cover;
    padding-top: 0px;
    padding-bottom: 0px;
    position: relative;
}

.header_slider {
 height: 100%;
    width: 100%;
    display: flex;
        flex-direction: row;
        overflow-x: hidden;
}

.header_slider .slide {
    width: 100%;
    height: 750px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100%;
    transition: 0.7s;
}

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

.page_header .slide_description {
    color: var(--light-text);
    margin-bottom: 55px;
    display: block;
    text-shadow: var(--shadow);
    max-width: 800px;

}

.page_header .carousel_arrow_container {
    width: 40%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: -160px;
    z-index: 1;
    align-items: center;

}

.page_header .carousel_arrow_container .carousel_arrow {
    width: 35px;
    height: 35px;
    padding: 4px;
    background-color: var(--light-rgb);
    border-radius: 50px;
    box-sizing: content-box;
    filter: invert(1);
}

.page_header .carousel_arrow_container .carousel_arrow:hover {
    transform: scale(1.1);
    transition: 0.3s;
    cursor: pointer;
    filter: invert(0);
}

.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: 768px)
{

 

    .page_header .carousel_arrow_container {
        width: 100%;
        margin-top: -180px;

    
    }


}

