 
/*------------------------------------------ pageTitleBar */
.pageTitleBar {
    height: 350px;
    position: relative;
    margin-bottom: 30px;
    background-size: cover;
    /* background-attachment: fixed; */
    background-position: center;
}
.pageTitleBar.has-background {
    background-repeat: no-repeat;
}
.pageTitleBar .blur {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #474444;
    opacity: 0.5;
    width: 100%;
    height: 100%;
}

.pageTitleBar .title {
    position: absolute;
    right: 10%;
    top: 50%;
    overflow: hidden;
}

.pageTitleBar .title .titleBar {
    font-size: 2.5rem;
    position: relative;
    animation-name: ptb-Anim;
    animation-duration: 2s;
    color: #fff;
}

@keyframes ptb-Anim {
    0% {
        opacity: 0;
        top: 100px;
    }

    100% {
        opacity: 1;
        top: 0;
    }
}

@media (max-width: 499px){
    .pageTitleBar{
        background-size: cover;
        background-position: center;
        background-attachment: unset;
    }

    .pageTitleBar .title {
        right: 50%;
        transform: translateX(50%);
    }

    .pageTitleBar .title .titleBar {
        font-size: 1.5rem;
    }

}