/* EXTRA FONT */


/* MAIN CSS */

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.wrapper {
	display: flex;
	flex-direction: column;
	height: 100vh;
}

.main {
	flex: none;
	position: absolute;
	width: 100%;
	background: #3267a9;
}

.mainbox {
	display: flex;
	justify-content: center;
	/* justify-content: space-between; */
	/* align-items: center; */
}

.container {
	margin: 0 auto;
	width: 100%;
	height: 100vh;
	/* padding: 0 20px; */
}

.layout--block_picture_center {
	flex: 0 0 1600px;
	background: transparent url(../images/squale2_100_rev200723.jpg);
	background-size: 100% auto;
	background-position: 0% 0%;
	background-repeat: no-repeat;
	/* margin: 0 20px; */
}


/* @MEDIA OPTIMISATION */

/* Different display sizes */
@media all and (max-width: 749px) {
	.layout--block_picture_center { background-position: -300px 0%; }
}

@media all and (max-width: 849px) and (min-width: 750px) {
	.layout--block_picture_center { background-position: 120px 0%; }
}

@media all and (max-width: 939px) and (min-width: 850px) {
	.layout--block_picture_center { background-position: 60px 0%; }
}

@media all and (max-width: 1100px) and (min-width: 940px) {
	.layout--block_picture_center { background-position: 20px 0%; }
}

/* Special cases */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}