.parallax{
    overflow: hidden;
    background-size:cover;
    background-attachment: fixed;
    background-position: center;
    margin-top:30px;
}
.parallax .container{
	position: relative;
	height: 100%;
}
.parallax-content{
    padding: 15px;
    font-size: 36px;
   /* background-color: rgba(255,255,255,0.3);*/
    top:35%;
    width: 100%;
    position: absolute;
    color:white;
    text-align:center;
    text-shadow: 2px 2px 8px #000000;
}
.parallax-desktop{
	display: none;
}
@media (min-width: 768px) {
	.parallax-desktop{
        display: block;
        margin-top:50px;
	}
    .parallax-mobile{
    	display: none;
    }
}
@supports (-webkit-overflow-scrolling: touch) {
.parallax{
    background-attachment: initial;
}
}
