.parallaxer {
	display:  flex;
	overflow: hidden;
	position: relative;
	height:   350px;
	width:    100%;
    align-items: center;
    justify-content: center;
    margin: 60px 0;
}

.parallaxer img {
	display: none;
}

.parallaxer img:first-child {
	bottom:             0;
	display:            block;
	left:               50%;
	min-height:         100%;
	min-width:          100%;
	opacity:            0;
	position:           absolute;
	-webkit-transition: opacity 250ms ease-out;
	-moz-transition:    opacity 250ms ease-out;
	-o-transition:      opacity 250ms ease-out;
	transition:         opacity 250ms ease-out;
}

.parallaxer-not-supported {
	display: none;
}
.parallaxer-title {
    z-index: 999;
    position: relative;
    color: #fff;
    text-align: center;
    font-size: 60px;
    font-weight: bold;
}
@media only screen and (max-width: 767px) {
	.parallaxer-title {
	    font-size: 40px;
	}
}