.page-baner-block {
    width: 100%;
    position: relative;
    z-index: 3;
}


.page-banner {
    position: relative;
    background-size: cover;
    background-attachment: fixed;
    transition: all 0.5s ease;
    background-repeat: no-repeat;
    background-position: center right;
    height: 100vh;
    float: left;
    width:100%;
    background-color: #181a29;
    overflow: hidden;
}
.page-banner-block{
    width: 100%;
}
.page-banner .title-container  {
    top: 35%;
    left: 50%;
    position: absolute;
    z-index: 2;
    transform: translate(-50%, -25%);
    -webkit-transform:translate(-50%, -25%);
    text-align: center;
}

.page-banner .title-container nav .breadcrumb {
    margin:0;
    padding: 8px 15px;
}

.page-banner .title-container nav .breadcrumb li {
    font-size: 0.9em;
}
.page-banner .title-container h1{
    color: #FFF;
    font-size:2.5em;
    margin-top: 0;
}

.page-banner .title-container p,
.page-banner .additional-text {
    color: #FFF;
    font-weight: normal;
    margin: 20px 0;
}

.page-banner .title-container p {
    font-style: italic;
}

.page-banner .title-container img {
    max-width: 100%;
}

.page-banner .title-container .subtitle {
    font-size: 2em;
    color: #FFF;
    font-weight: bold;
    margin-top: 0;
    line-height: normal;
}

.page-banner .image-background {
    width: 100%;
}

.force-overlay {
    background: -moz-linear-gradient(top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.5) 2%, rgba(0,0,0,0.75) 50%, rgba(0,0,0,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.5) 2%,rgba(0,0,0,0.75) 50%,rgba(0,0,0,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.5) 2%,rgba(0,0,0,0.75) 50%,rgba(0,0,0,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#80000000', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom:0;
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: 1;
    pointer-events: none;
}

.page-banner .layer-img.background {
    /*position: fixed;*/
    /*background-position: bottom center;*/
    /*background-size: cover;*/
    /*background-repeat: no-repeat;*/
    /*width: 100%;*/
    /*height: 100%;*/
    width: 100%;
    height: 100vh;
    overflow: hidden;
    max-height: 100%;
}

.page-banner .layer-img.background img {
    /* Old Styles 
    position: fixed;
    height: 100%;
    left: 0;
    object-fit: cover;
    top: 0;
    transform: none;
    width: 100%;
    max-width: 1000%;
    min-height: 100%;
    min-width: 100vw;*/
    /* New Styles */
    background: -moz-linear-gradient(top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.5) 2%, rgba(0,0,0,0.75) 50%, rgba(0,0,0,1) 100%);
    background: -webkit-linear-gradient(top, rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.5) 2%,rgba(0,0,0,0.75) 50%,rgba(0,0,0,1) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.5) 2%,rgba(0,0,0,0.75) 50%,rgba(0,0,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#80000000', endColorstr='#000000',GradientType=0 );
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
    object-fit: cover;
    transform: none;
    max-width: 1000%;
    min-height: 100%;
    min-width: 100vw;
}

.page-banner .layer-img.img-overlay {
    width: 100%;
    height: 250px;
    bottom: inherit;
    right: inherit;
    background-size: contain;
    top: 50%;
}
.page-banner .arrow {
    position: absolute;
    text-align: center;
    left: 50%;
    bottom: 15px;
    padding: 5px;
    transform:translateX(-50%);
    -webkit-transform:translateX(-50%);
    width: 60px;
    height: 60px;
    font-size: 30px;
    color: #FFF;
    z-index: 3;
    background-color:#2c3e7e;
    border:5px solid #fff;
    border-radius: 50%;
    cursor:pointer;
}

.page-banner .additional-text.mobile {
    position: relative;
    bottom:15px;
    font-size: 8px;
}

.page-banner .additional-text.desktop {
    display: none;
    position: absolute;
    bottom: 0;
    margin: 0 20px;
    width: 40%;
    font-size: 12px;
}

.title-image{
    margin:20px 0;
}
/* Animated Arrow */
@-moz-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -moz-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    60% {
        -moz-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}
@-webkit-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -moz-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    60% {
        -moz-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

.page-banner .fa-chevron-down:hover{
    animation: nudge .4s linear;
}

@keyframes nudge {

    0% {
        transform: rotate(-10deg);
    }

    33% {
        transform: rotate(10deg);
    }

    66% {
        transform: rotate(-10deg);
    }
}

@media only screen and(min-width: 480px) {
    .page-banner .title-container p,
    .page-banner .additional-text {
        font-size: 1.35em;
    }
}


.page-banner .bounce {
    -moz-animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
    animation: bounce 2s infinite;
}

@media only screen and (min-width : 768px) {

    .page-banner .title-container nav .breadcrumb li {
        font-size: 1.2em;
    }

    .page-banner .additional-text.desktop {
        display: block;
    }
    .page-banner .additional-text.mobile {
        display: none;
    }

    .page-banner .arrow {
        position: absolute;
        left: 50%;
        padding: 10px;
        width: 80px;
        height: 80px;
        font-size: 40px;
        color: #FFF;
        z-index: 3;
        background-color:#2c3e7e;
        border:5px solid #fff;
        border-radius: 50%;
        line-height: 50px;
    }


    .page-banner .title-container img {
        max-width: 75%;
    }

    .page-banner .title-container p,
    .page-banner .additional-text {
        color: #FFF;
        font-weight: normal;
        margin: auto;
        width: 75%;
    }

    .page-banner .title-container .subtitle {
        font-size: 3em;
    }

    .page-banner .title-container nav .breadcrumb {
        padding:0px 15px;
        margin: 0 0 30px;
    }

    .page-banner .title-container h1{
        margin-bottom: 30px;
    }

    .title-image{
        margin:15px 0;
    }
}

@media only screen and (min-width : 1024px) {

    .page-banner .overlay-image {
        height: 100%;
        position: absolute;
    }

    .page-banner.light h1{
        font-size:32px;
        margin-top:20px;
    }
    .page-banner.light p {
        font-size: 1em;
    }


    .page-banner .title-container img {
        max-width: 80%;
    }


    .page-banner .title-container {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform:translate(-50%,-50%);
    }
    .page-banner .layer-img.img-overlay {
        width: 500px;
        height: 500px;
        top: inherit;
        bottom: 50px;
        right: 0;
        margin-right: 20px;
        position:fixed;
    }
    .page-banner .layer-img.img-overlay-left {
        width: 500px;
        height: 500px;
        top: inherit;
        bottom: 50px;
        left: 0;
        margin-left: 20px;
        position:fixed;
    }
    .page-banner .title-container p {
        font-size: 1em;
        width: 80%;
    }


}

@media only screen and (min-width : 1200px) {
    .page-banner .title-container img {
        max-width: 65%;
    }

    .page-banner .title-container p {
        max-width: 50%;
    }
}

@media (min-width:520px) and (max-width:767px){
    .page-banner .title-container .animated-content p {
        display: none;
    }
}