@font-face {
	font-family: "HelveticaNeue";
	src: url('font/HelveticaNeue.ttf') format('truetype');
}

@font-face {
	font-family: "HelveticaMedium";
	src: url('font/HelveticaNeueMedium.ttf') format('truetype');
}

@font-face {
	font-family: "HelveticaLight";
	src: url('font/HelveticaNeueLight.ttf') format('truetype');
}


* {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	font-family: 'Helvetica', sans-serif;
	margin: 0;
	font-size: 14px;
	margin: 0;
	padding : 0;
}

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

.bold {
	font-weight: 700;
}

p {
	margin: 0;
	padding: 0;
}

a {
	color: #FFFFFF;
	text-decoration: none;
}

h1 {
	margin: 0;
	padding: 0;
	text-align: right;
	color: #FFFFFF;
	font-size: 50px;
	font-family: 'HelveticaLight';
	line-height: 70px;
}

.wrapper {
	max-width: 970px;
	width: 100%;
	margin: auto;
}

.bandeau {
	background-color: #1E2C32;
	color: #FFFFFF;
	padding: 10px 0;
}

.bandeau-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.contact {
	text-align: right;
	font-size: 14px;
	font-family: 'HelveticaNeue';
	line-height: 20px;
}

.mail {
	font-family: 'HelveticaMedium';
	line-height: 18px;
}

.block_top {
	/*background-image: url('img/fond.jpg');*/
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 539px;
	position: relative;
}

.block_ctn {
	min-height: 539px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	overflow: hidden;
	position: relative;
}

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

.overlay {
	position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
	background-color: rgba(226, 61, 21, 0.65);
	z-index: 10;
}


.block_title {
	width: 55%;
	z-index: 11;
}

.block_info {
	margin: 120px auto;
}

.info-ctn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

.info-item {
	width: calc((100% / 3) - 10px);
	height: 150px;
	border: 1px solid #D3D3D3;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.info-item > span {
	margin-top: 10px;
	font-size: 24px;
	font-family: 'HelveticaLight';

}

/* Responsive */
@media all and (min-width: 648px) and (max-width: 1024px) {
	.wrapper {
		max-width: inherit;
		width: 80%;
	}
}

@media all and (max-width: 648px) {
	.wrapper {
		max-width: inherit;
		width: 95%;
	}

	.info-ctn {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}

	.info-item {
		width: 100%;
		margin-bottom: 10px;
	}

	.block_title {
		width: 60%;
	}

	h1 {
		font-size: 26px;
		line-height: 30px;
	}

	.block_top {
		min-height: 300px;
	}

	.block_ctn {
		min-height: 300px;
	}

	.block_info {
		margin-top: 50px;
		margin-bottom: 50px;
	}
}

@media all and (max-width: 480px) {
	.bandeau-info {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}

	h1 {
		font-size: 22px;
		line-height: 26px;
	}
}