/* fira-sans-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Fira Sans';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/fira-sans-v17-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('/fonts/fira-sans-v17-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/fira-sans-v17-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('/fonts/fira-sans-v17-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('/fonts/fira-sans-v17-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/fonts/fira-sans-v17-latin-regular.svg#FiraSans') format('svg'); /* Legacy iOS */
}
/* fira-sans-900 - latin */
@font-face {
  font-display: swap;
  font-family: 'Fira Sans';
  font-style: normal;
  font-weight: 900;
  src: url('/fonts/fira-sans-v17-latin-900.eot'); /* IE9 Compat Modes */
  src: url('/fonts/fira-sans-v17-latin-900.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/fira-sans-v17-latin-900.woff2') format('woff2'), /* Super Modern Browsers */
       url('/fonts/fira-sans-v17-latin-900.woff') format('woff'), /* Modern Browsers */
       url('/fonts/fira-sans-v17-latin-900.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/fonts/fira-sans-v17-latin-900.svg#FiraSans') format('svg'); /* Legacy iOS */
}

html {}

body {
	font-family: 'Fira Sans', sans-serif;
	margin: 0;
	padding: 0;
	display: flex;
}

.header_picture {
	height: 90vh;
	width: auto;
	margin-top: 10vh;
	font-size: 0;
}
.header_picture img {
	height: 100%;
	width: auto;
}

.title {
	position: absolute;
	/* top: 5vw; */
	top: 4.25vw;
	right: 10vw;
	font-weight: 900;
	text-transform: uppercase;
	line-height: 0.85;
	/* font-size: 8rem; */
	font-size: 8vw;
}
.title span {
	/* margin-left: -13.5rem; */
	margin-left: -13.5vw;
	display: block;
}
.logo {
	width: 20vw;
	height: auto;
	font-size: 0;
	position: absolute;
	left: 32.5vw;
	bottom: 10vw;
}
.logo img {
	width: 100%;
	height: auto;
}

ul {
	position: absolute;
	top: 19.5vw;
	right: 20vw;
	color: #d8171f;
	text-transform: uppercase;
	font-weight: 900;
	font-size: 2.5vw;
	line-height: 1;
	margin: 0;
	padding: 0;
}

ul li span {
	position: relative;
	margin-left: -0.5rem;
}

ul li::marker {
	color: black;
}

.contact {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	/* margin-bottom: 8vw; */
	bottom: 8vw;
	/* left: 32.5vw; */
	left: 46vw;
	position: absolute;
	z-index: 2;
}

.contact p {
	margin: 0;
	line-height: 1.4;
	/* font-size: 1.375rem; */
	font-size: 0.85vw;
}

.contact a {
	color: #000;
	text-decoration: none;
	transition: color .25s;
}
.contact a:hover {
	color: #d8171f;
}

@media screen and (max-width:1279px) {
	body {
		flex-direction: column;
    align-items: center;
	}
	.logo {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
    width: 100%;
    height: 15vw;
		background-color: #fff;
		padding-top: 0.5rem;
		padding-bottom: 1rem;
		display: flex;
		justify-content: center;
		bottom: unset;
	}
	.logo img {
		height: 100%;
		width: auto;
	}
	.title {
		position: unset;
    margin-top: 20vw;
		font-size: 12vw;
		text-align: right;
	}
	.title span {
		padding-right: 14vw;
		margin-left: unset;
	}
	.header_picture {
		width: 90%;
    height: auto;
    margin: 0 auto;
	}
	.header_picture img {
		width: 100%;
		height: auto;
	}
	ul {
		position: unset;
		font-size: 9vw;
		margin: 5vw 0vw 8vw;
	}
	.contact {
		position: unset;
		margin-bottom: 10vw;
	}
	
	.contact p {
		font-size: 3vw;
	}
}