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

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

.static-container-1, .static-container-2, .static-container-3, .static-container-4, .static-container-5 {
    display: block;
    position: relative;
    width: 100%;
    min-height: 40vh;
    text-align: center;
    z-index: 10;
}

.static-container-1 {background:#f1f1f1;}
.static-container-2 {
    background: linear-gradient(-60deg, #e51c2e 1%, #e51c2e 99%);
    background: -webkit-linear-gradient(-60deg, #e51c2e 1%, #e51c2e 99%);
}
.static-container-3 {
    background-color: #f6f6f6;
}
.static-container-4 {
    background-color: #999999;
}
.static-container-5 {
    background-color: #666666;
}





.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-video {
    position: relative;
    display: block;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

    .container-video video {
        object-fit: cover;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }


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

.container--mid, .container--med {
    min-height: 75vh;
}

.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 .copertina {
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

.parallax__container .pattern1 {
    background-color: #ffffff;
}

    .parallax__container .pattern2 {
        background: linear-gradient(-60deg, #e51c2e 1%, #e51c2e 99%);
        background: -webkit-linear-gradient(-60deg, #e51c2e 1%, #e51c2e 99%);
    }

    .parallax__container .pattern3 {
        background-color: #f6f6f6;
    }

    .parallax__container .pattern4 {
        /* 
            background: rgba(157,207,231,1);
        background: rgba(210,210,210,0.8);
        backdrop-filter: blur(10px);
        */
        background-color: #333333;
    }

    .parallax__container .pattern4t {
        /* 
        background: rgba(157,207,231,0.8);
        backdrop-filter: blur(5px);
        */
        background-color: #333333;
    }



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


@media (max-aspect-ratio: 1/1) {
    .container-video {
        height: 75vh;
    }
}


@media (max-aspect-ratio: 3/4) {
    .container-video {
        height: 66vh;
    }

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

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

    .container--mid, .container--med {
        min-height: 50vh;
    }

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

}


@media (max-aspect-ratio: 2/3) {
    .container-video {
        height: 60vh;
    }
}

@media screen and (max-width: 480px) {

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

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