/* GENERAL */
	
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-decoration: none;
}
	
@font-face {
	font-family: 'Frutiger';
	font-style: normal;
	font-weight: normal;
	src: local('Frutiger'), url('../fonts/Frutiger.woff') format('woff');
} 

@font-face {
	font-family: 'Frutiger Bold';
	font-style: normal;
	font-weight: normal;
	src: local('Frutiger Bold'), url('../fonts/Frutiger_bold.woff') format('woff');
}
	
a {color:#e3000f; text-decoration:underline}
/* //////////////////// */



/* CONTENT */
	
#wrapper{
	height: 80vh;
	display: flex;
	flex-direction: column;
	padding: 0 0 0 10vw;
	justify-content: center;
}
	
#content_wrapper{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 64px;
	width: 60%;
}
	
#content_wrapper>div{
	display: flex;
	flex-direction: column;
	gap: 32px;
}
	
#content_wrapper>div>p{
	font-family: 'Frutiger';
    font-size: clamp(18px, 1.2vw, 48px);
    color: #333;
    font-weight: 100;
}
	
#content_wrapper>div>h1{
	line-height: 0.8;
	font-family: 'Frutiger Bold';
	color: #e3000f;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
	font-size: clamp(74px, 6vw, 180px);
}
	
#main_btn{
	padding: 8px 32px;
	cursor: pointer;
	border-radius: 32px;
	text-align: center;
	color: white;
	background-color: #e3000f;
	font-family: 'Frutiger';
	font-size: clamp(12px, 1.4vw, 48px);
	transition: background-color 0.3s ease-out;
	text-decoration:none;
}
	
#main_btn:hover{
	background-color: #860008;
}
	
/* //////////////////// */



/* FOOTER */
	
footer{
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: white;
	box-shadow: 0 0 16px rgba(0,0,0,0.4);
	padding: 24px 6%;
	font-family: 'Frutiger';
}
	
footer>a{
	color: rgba(67,67,67,1.00);
	font-size: 1.4em;
}
	
footer>a:hover{
	text-decoration: underline;
}
	
footer>a>img{
	width: 84px;
	vertical-align: middle;
}
	
/* //////////////////// */



/* BACKGROUND */
	
#bg_wrapper{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: row-reverse;
	z-index: -1;
}
	
#bg_div_3{
    flex: 1 0 35%;
	background-color: #eda847;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: -3;
	box-shadow: inset 0 0 232px #db9542;
}
	
#bg_div_3>img{
	width: clamp(180px, 14vw, 2048px);
	margin-bottom: 100px;
}

#bg_div_2{
    flex: 1 0 25%;
	background-color: #f0f0f0;
	box-shadow: 0 0 32px rgba(0,0,0,0.2);
	z-index: -2;
}

#bg_div_1{
    flex: 1 0 40%;
	background-color: white;
	box-shadow: 0 0 32px rgba(0,0,0,0.2);
}
	
/* //////////////////// */



/* SIZING */
	
@media screen and (max-width: 640px) {
	#bg_wrapper{
		flex-direction: column-reverse !important;
	}
		
	#bg_div_2{
		display: none !important;
	}
		
	#wrapper{
	height: 52vh !important;
	}

	#content_wrapper{
		width: 100%;
	}

	#content_wrapper>div>h1{
		word-break: break-all;
	}
}

@media screen and (max-width: 258px) {
	#bg_wrapper{
		display: none !important;
	}
}
	
/* //////////////////// */