/**************************************/
/* parallax */
body {
    overflow: hidden;
}
body,
body.custom-background {
    background: #2E2E3A;
}

.site {
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    perspective: 2px;
}
.section { 
    position: relative;
    display: block;
    width: 100%;
}

.parallax_content {
    display: block;
    width: 100%;
    margin: 0 auto;
}
.parallax_background_image {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;    
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;    
    transform: translateZ(-1px) scale(1.51);
}
.parallax_content_zoom {
    transform: translateZ(0.2px) scale(0.9);
    z-index: 3;
}

