/* .parallax_body,.parallax_body:after,.parallax_body:before{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
.paralla{
    font-family: Arial;
    font-size: 16px;
    margin: 0;
    background: #fff;
    color: #000;
}
.wrap_outer{
    height: 80vh;
    overflow: hidden;
}
.wrap{
    height: 100%;
    overflow-x: hidden;
    perspective: 1px;
}
.parallax_section{
    min-height: 100vh;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;

}
.parallax_bg{
    position:absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center center;
    z-index: -1;
    min-height: 100%;
    transform:translate3d(0,0,-1px) scale(2);
    
    
}
.parallax_section p{
    color: #fff;
    margin: 0;
    font-size: 16px;
    z-index: 2;
    text-shadow: 2px 2px 2px rgba(0,0,0,0.4);
    text-align: center;
    
} */


/* .paralla {
  height: 60vh;
  overflow-x: hidden;
  overflow-y: auto;
  perspective: 1px;
}

.conten {
  position: relative;
  transform-style: preserve-3d;
}

.paralla::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateZ(-1px) scale(2);
  background-image: url(../images/parallax-bg.jpeg);
  background-size: cover;
  z-index: -1;
}
.conten p{
    color: #fff;
    margin: 0;
    font-size: 16px;
    z-index: 2;
    text-shadow: 2px 2px 2px rgba(0,0,0,0.4);
    text-align: center;
    
} */

