body, html {
	background-color: #f0f3f5;
	width: 100%;
	height: 100%;
	padding: 0px;
	margin: 0px;
	font-family: 'Open Sans', sans-serif;
	font-weight: 700;
	color: #3D3D3D;
	background: #f8f8f8;
	scroll-behavior: smooth;
}

a {
	color: #3D3D3D;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.header {
	width: 100%;
	display: block;
	height: auto;
	padding: 50px 0px;	
	background-color: #FFF;
	width: 1000px;
	margin-left: auto;
	margin-right: auto;
	border-top: 3px solid #2b3c5f;
}

.header .logo {
	display: block;
	width: max-content;
	margin-left: auto;
	margin-right: auto;
}

.header .logo img {
	display: block;
}

.main {
	text-align: center;
	padding: 0px;
	font-size: 14px;
	width: 1000px;
	margin-left: auto;
	margin-right: auto;
	height: calc(100vh - 460px);
	background-color: #FFF;
}

.main img {
	margin-bottom: 20px;
}

.main h2,
.main h3,
.main p {
	margin: 10px 20px;
	display: inline-block;
	width: calc(100% - 40px);
}

.main button {
	background-color: #394e7b;
	border: none;
	color: #FCFDFC;
	padding: 10px 30px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 40px 0px 0px 0px;
	cursor: pointer;
	border-radius: 5px;
	transition: all 0.3s;
	filter: drop-shadow(0px 0px 8px #999);
}

.main button:hover {
	background: #999999;
	transition: all 0.3s;
}

.main.legal {
	text-align: left;
	font-weight: 400;
	height: auto;
}

.main.legal p {
	text-align: justify;
	margin-left: 44px;
	width: calc(100% - 64px);
}

.main.legal li {
	margin: 10px 20px;
	text-align: justify;
}

.main.legal li li {
	margin-right: unset;
}

.main.legal li.none {
	list-style-type: none;
}

.footer {
	width: 100%;
    background-color: #2b3c5f;
    position: absolute;
    bottom: 0;
    color: #FCFDFC;
    text-align: center;
	font-size: 12px;
	position: fixed;
	clear:both;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	width: 1000px;
}

.footer span {
	padding: 20px;
}

.footer a {
	color: #FFF;
	text-decoration: none;
}

.footer a:hover {
	text-decoration: underline;
}

.floating {
	bottom: 20px;
	position: fixed;
	right: 20px;
	width: 25px;
	height: 25px;
	background-color: #2b3c5f;
	border-radius: 100%;
	padding: 13px;
	filter: drop-shadow(0px 0px 8px #999);
	transition: all 0.3s;
	border: 0px solid #FFF;
	opacity: 0.5;
}

.floating.phone {
	bottom: 160px;
}

.floating.mail {
	bottom: 90px;
}

.floating.back-to-top {
	bottom: 20px;
}

.floating:hover {
	background-color: #2b3c5f;
	transition: all 0.3s;
	opacity: 1;
}

.floating img {
	outline: none;
}

@media (max-width: 768px) {
	.header {
		width: 100%;
		padding: 30px 0px;
	}
	
	.header .logo img {
		max-width: 300px;
	}
	
	.main {
		width: 100%;
		height: calc(100vh - 275px);
	}
	
	.main.legal {
		height: auto;
		background-color: background-color: rgba(255,255,255,0.5);
	}
	
	.main h2 br {
		display: none;
	}
	
	.main p {
		width: calc(100% - 40px);
	}
	
	.footer {
		width: 100%;
	}
	
	.floating.phone {
		bottom: 201px;
	}
	
	.floating.mail {
		bottom: 131px;
	}
	
	.floating.back-to-top {
		bottom: 61px;
	}
}