.main_title {
	position: relative;
	top: 0; left: 0;
	width: 100%; height: 550px;
	//background-color: red;
}

.main_title .background {
	position: absolute;
	top: calc(var(--menuSize) / 3 + (var(--menuSize) / 3) / 2 - 12px); left: 0;
	width: 35%; height: 550px;
	background-color: var(--resourceColor);
}

.main_title h1 { 
	position: absolute;
	top: calc(var(--menuSize)); left: 20%;
	font-family: 'CeraMedium';
	font-size: 55px;
	color: var(--mainColor);
	text-align: left;
	padding-right: 30%;
	letter-spacing: 3px;
}

.main_title h2 {
	position: absolute;
	top: calc(var(--menuSize) * 1.7) ; left: 20%;
	font-family: 'CeraLight';
	font-size: 45px;
	color: var(--mainColor);
	text-align: left;
	padding-right: 40%;
	letter-spacing: 1px;
	line-height: 1;
}

.main_title h3 {
	position: absolute;
	top: calc(var(--menuSize) * 2.15) ; left: 20%;
	font-family: 'CeraLight';
	font-size: 25px;
	color: var(--mainColor);
	text-align: left;
	padding-right: 40%;
	letter-spacing: 1px;
	line-height: 1;
}

.main_title .divider {
	position: absolute;
	top: calc(var(--menuSize) * 2.8) ; left: 20%;
	width: 35%; height: 1px;
	background-color: var(--mainColor);
}

.footer {
	position: relative;
	top: 0; left: 0;
	width: 100vw; height: 350px;
	//background-color: red;
	margin-top: 150px;
}

.footer .footer_divider{
	position: absolute;
	top: 0; left: 20%;
	width: 60%; height: 15px;
	background-color: var(--resourceColor);
}


.footer .general{
	position: absolute;
	top: 50px; left: 20%;
	width: 60%; height: 200px;
	//background-color: blue;
}

.footer .general .left{
	position: absolute;
	top: 0; left: 0;
	width: 25%; height: 100%;
	//background-color: green;
}

.footer .general .left h1{
	position: absolute;
	top: 5%; left: 5%;
	font-family: 'CeraMedium';
	font-size: 17px;
	color: var(--mainColor);
	text-align: left;
	letter-spacing: 0px;
}

.footer .general .left h2{
	position: absolute;
	bottom: 0; left: 5%;
	font-family: 'CeraLight';
	font-size: 16px;
	color: var(--mainColor);
	text-align: left;
	letter-spacing: 1.5px;
	line-height: 1.5;
}

.footer .general .center{
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%,-50%);
	width: 25%; height: 100%;
	//background-color: purple;
}

.footer .general .center h1{
	position: absolute;
	top: 5%; left: 5%;
	font-family: 'CeraMedium';
	font-size: 17px;
	color: var(--mainColor);
	text-align: left;
	letter-spacing: 0px;
}

.footer .general .center .set_to_bottom{
	position: absolute;
	bottom: 0; left: 0;
	width: 100%; height: 60%;
}

.footer .general .center .set_to_bottom h2{
	position: relative;
	bottom: 0; left: 5%;
	font-family: 'CeraLight';
	font-size: 16px;
	color: var(--mainColor);
	text-align: left;
	letter-spacing: 1.5px;
	line-height: 1.5;
	cursor: pointer;
}

.footer .general .right{
	position: absolute;
	top: 0; right: 0;
	width: 25%; height: 100%;
	//background-color: green;
}


.footer .general .right h1{
	position: absolute;
	top: 5%; left: 5%;
	font-family: 'CeraMedium';
	font-size: 17px;
	color: var(--mainColor);
	text-align: left;
	letter-spacing: 0px;
}

.footer .general .right h2{
	position: absolute;
	bottom: 0; left: 5%;
	font-family: 'CeraLight';
	font-size: 16px;
	color: var(--mainColor);
	text-align: left;
	letter-spacing: 1.5px;
	line-height: 1.5;
}

.footer .credits{
	position: absolute;
	bottom: 0; left: 0;
	height: 50px; width: 100%;
	//background-color: green;
}

.footer .credits h1{
	position: absolute;
	top: 0; left: 5%;
	font-family: 'CeraLight';
	font-size: 10px;
	color: var(--mainColor);
	text-align: left;
	letter-spacing: 3px;
	line-height: 1.5;
}

.footer .credits h2{
	position: absolute;
	top: 0; right: 5%;
	font-family: 'CeraLight';
	font-size: 10px;
	color: var(--mainColor);
	text-align: right;
	letter-spacing: 3px;
	line-height: 1.5;
}


@media only screen and (max-width: 1500px) {
	.main_title h1 { 
		padding-right: 10%;
	}
	.main_title h2 { 
		padding-right: 10%;
	}
	.main_title h3 { 
		padding-right: 10%;
	}
}

@media only screen and (max-width: 1080px) {
	.main_title {
		width: 100%; height: 450px;
	}	
	.main_title h1 { 
		font-size: 45px;
	}
	.main_title h2 { 
		font-size: 35px;
	}
	.main_title h3 { 
		font-size: 15px;
		top: calc(var(--menuSize) * 2)
	}
}

@media only screen and (max-width: 800px) {
	.main_title .background {
		background-color: transparent;
	}
	.main_title h1 { 
		left: 5%;
		font-size: 35px;
	}
	.main_title h2 {  
		left: 5%;
		font-size: 20px;
		top: calc(var(--menuSize) * 1.5);
	}
	.main_title h3 { 
		left: 5%; 
		top: calc(var(--menuSize) * 2.30);
		display: none;
	}
	.main_title .divider {
		display: none;
	}
}

@media only screen and (max-width: 800px) {
	.footer {
		width: 100vw; height: 750px;
	}

	.footer .footer_divider{
		top: 0; left: 0;
		width: 100%; height: 15px;
	}

	.footer .general{
		position: absolute;
		top: 50px; left: 10%;
		width: 80%; height: 600px;
	}
	.footer .general .left{
		top: 0; left: 0;
		width: 100%; height: 200px;
	}
	.footer .general .center{
		top: 200px; left: 0;
		transform: translate(0%,0%);
		width: 100%; height: 200px;
	}
	.footer .general .right{
		position: absolute;
		top: 400px; left: 0;
		width: 100%; height: 200px;
	}
	.footer .credits h2{
		display: none;
	}
}

@media only screen and (max-width: 1400px) {
	.footer .general .left h1{
		position: absolute;
		top: 5%; left: 5%;
		font-family: 'CeraMedium';
		font-size: 14px;
		color: var(--mainColor);
		text-align: left;
		letter-spacing: 0px;
	}

	.footer .general .left h2{
		position: absolute;
		bottom: 0; left: 5%;
		font-family: 'CeraLight';
		font-size: 12px;
		color: var(--mainColor);
		text-align: left;
		letter-spacing: 1.5px;
		line-height: 1.5;
	}
	.footer .general .center h1{
		position: absolute;
		top: 5%; left: 5%;
		font-family: 'CeraMedium';
		font-size: 14px;
		color: var(--mainColor);
		text-align: left;
		letter-spacing: 0px;
	}
	.footer .general .center .set_to_bottom h2{
		position: relative;
		bottom: 0; left: 5%;
		font-family: 'CeraLight';
		font-size: 14px;
		color: var(--mainColor);
		text-align: left;
		letter-spacing: 1.5px;
		line-height: 1.5;
	}
	.footer .general .right h1{
		position: absolute;
		top: 5%; left: 5%;
		font-family: 'CeraMedium';
		font-size: 14px;
		color: var(--mainColor);
		text-align: left;
		letter-spacing: 0px;
	}

	.footer .general .right h2{
		position: absolute;
		bottom: 0; left: 5%;
		font-family: 'CeraLight';
		font-size: 12px;
		color: var(--mainColor);
		text-align: left;
		letter-spacing: 1.5px;
		line-height: 1.5;
	}
}

.mobile_divider {
	height: 5px; width: 100%;
	background-color: var(--resourceColor);
	margin-top: 30px;
	display: none;
}

@media only screen and (max-width: 400px) {
	.mobile_divider {
		display: inline;
	}
}

