*, :after, :before {
	box-sizing: border-box;
}

body, html {
	min-height:100%;
	width: 100%;
}


.container {
	-webkit-align-items: center;
	align-items: center;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	position: relative;
	width: 100%;
}
.container--big {
    min-height: 175vh;
}

.container--full {
    min-height: 100vh;
}

.container--small {
	min-height: 40vh;
}

.container--mid {
    min-height: 60vh;
}

.parallax__container {
	clip: rect(0, auto, auto, 0);
	height: 100%;
	left: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -100;
}
.parallax__container .parallax {
	position: fixed;
	top: 0;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	width: 100%;
}

    .parallax__container .photo {
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .parallax__container .pattern2 {
        /*  background-color: rgba(255,253,205,0.95);
        background-image: url('/img/pattern3.png');
        background-repeat: no-repeat;
        background-position: center bottom;
        background-size: contain; */
        background-color: #f1f1f1;
    }

    .parallax__container .pattern3 {
        /*  background-color: rgba(255,253,205,0.95);
        background-image: url('/img/pattern3.png');
        background-repeat: no-repeat;
        background-position: center bottom;
        background-size: contain; */
        background-color: #fefefe;
    }

    .parallax__container .pattern4 {
        background: repeat center center;
        background-image: url('/img/Bk-Main.png');
        border-top: 1px solid #999;
        border-bottom: 1px solid #999;
    }


.show-on-mobile--inline {
	display: none;
}


@-webkit-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	40% {
		-webkit-transform: translateY(-15px);
		transform: translateY(-15px);
	}
	60% {
		-webkit-transform: translateY(-5px);
		transform: translateY(-5px);
	}
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	40% {
		-webkit-transform: translateY(-15px);
		transform: translateY(-15px);
	}
	60% {
		-webkit-transform: translateY(-5px);
		transform: translateY(-5px);
	}
}
@media screen and (max-width: 480px) {


    .parallax__container .pattern2 {
        background: #fff;
    }

	.hide-on-mobile {
		display: none;
	}

    .container--small {
        padding: 0;
    }
	.show-on-mobile--inline {
		display: inline;
	}
}
