
body{
	overflow-x: hidden;
}

	.fv{
		padding: 20px;
		box-sizing: border-box;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.segmenter {
		width : -webkit-calc(100vw - 40px) ;
		width : calc(100vw - 40px) ;
		height : -webkit-calc(100vh - 40px) ;
		height : calc(100vh - 40px) ;
		max-width: 600px;
		margin: 0 auto;
		position: relative;
		overflow: hidden;
		background-image: url("../img/bg.jpg");
		background-size: cover;
	}




@media screen and (min-width:600px) {

	.fv {
		padding: 0 50px 50px 50px;
		box-sizing: border-box;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.segmenter {
		width: -webkit-calc(100vw - 110px);
		width: calc(100vw - 110px);
		height: -webkit-calc(100vh - 100px);
		height: calc(100vh - 100px);
		max-width: 1600px;
		margin: 0 auto;
		position: relative;
		overflow: hidden;
		background-image: url("../img/bg.jpg");
		background-size: cover;
	}


}