/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: rgb(28 28 32);
    z-index: 1;
    /* background-image: linear-gradient(to bottom, #000000, #2e2828, #373729); */
    min-height: 100vh;  
    display: flex;
    align-items: center;  
    justify-content: center; 
 }

.page-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .33;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
    /* background-attachment: fixed; */
}

.page-header__inner {
    text-align: center;
    padding: 0;  
    width: 100%;
}

 
.page-header__inner h3 {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    font-size: 40px;
    color: var(--fixpro-white);
    font-weight: 800;
    margin: 0;
    text-transform: capitalize;
}

.page-header__inner h3::before,
.page-header__inner h3::after {
    content: "";
     background-color: #fff;
    width: 50px;
    height: 3px;
    background-color: #df0606;
}

 