html, body{
	position: relative;
	width: 100%;
	padding: 0px;
	margin: 0px;
	font-size: 16px;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
}
body::before{
	position: absolute;
	top: 0px;
	left: 0px;
	display: block;
	content: '';
	height: 60px;
	width: 100%;
	background: #fff;
	border-bottom: 1px solid #f1f1f1;
	z-index: 8;
}
header{
	position: relative;
	top: 0px;
	height: 60px;
	width: 80%;
	margin: 0px auto;
	padding: 0px 40px;
	max-width: 1275px;
	box-sizing: border-box;
	z-index: 10;
}
header a{
	text-decoration: none;
	font-weight: 700;
	color: #12183a;
}
header img{
	height: 40px;
	width: 40px;
	margin-top: 9px;
}
header ul{
	float: right;
	margin: 0px;
}
header li{
	display: inline-block;
	list-style: none;
}
header li a{
	padding: 0 10px;
	line-height: 60px;
}
footer{
	margin-top: 50px;
}
footer ul{
	list-style: none;
}
footer a{
	color: #fff;
	text-decoration: none;
}
footer #adContainer{
	text-align: center;
}
footer #adContainer a{
	position: relative;
	top: -25px;
	font-size: .925rem;
	color: #D0D0D0;
}
#dropDownCard{
	position: relative;
	top: 0px;
	z-index: 5;
	width: 100%;
	padding: 10px 25px;
	box-sizing: border-box;
	font-size: 1.1em;
	text-align: center;
	transition: all 200ms cubic-bezier(0.6, 0, 0.2, 1) 50ms;
}
#dropDownCard a#dismiss{
	font-weight: 700;
	text-decoration: none;
	margin-left: 25px;
}
section{
	position: relative;
	width: 100%;
	overflow: hidden;
}
section .container, footer .container{
	position: relative;
	width: 80%;
	max-width: 1275px;
	margin: 0 auto;
	padding: 50px 40px;
	box-sizing: border-box;
}
footer{
	background: #12183a;
	color: #f2f2f2;
}
.container{
	text-align: justify;
}
h3{
	margin-top: 2.25rem;
}
p{
	text-align: justify;
}
code{
	display: inline-block;
	padding: 3px 10px;
	margin: 1px 0;
	background: #f3f2f2;
}
.floatContainer{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}
.floatContainer .float{
	position: relative;
	flex-grow: 1;
	width: 45%;
	box-sizing: border-box;
}
.floatContainer .float:nth-child(1){
	padding-right: 5%;
}
.floatContainer .float:nth-child(2){
	padding-left: 5%;
}
.floatContainer img.float{
	height: 60%;
	max-height: 250px;
}
.floatContainer .float h3{
	font-size: 1.15rem;
	/* line-height: 1.3125; */
}
.floatContainer .float p{
	text-align: justify;
}
.button{
	display: block;
	width: 100px;
	text-align: center;
	margin: 50px auto 0;
	padding: 7px 25px;
	font-size: 1.2rem;
	line-height: 1.3125;
	border-radius: 5px;
	text-decoration: none;
	background: #12183a;
	color: #f2f2f2;
}
#ad .container{
	position: relative;
	display: flex;
	align-items: center;
	margin: 30px auto;
	border-top: 1px solid #e2e5e9;
	border-bottom: 1px solid #e2e5e9;
}
#ad .container .adNotif{
	display: block;
	flex-grow: 1;
	margin-right: 50px;
	padding: 35px 25px;
	font-weight: bold;
	border: 2px solid #12183a;
}
#ad .container .adContent{
	flex-grow: 2;
	text-align: justify;
}



@media only screen and (max-width: 950px){
	section .container{
		width: 90%;
		padding: 50px 0px;
	}
}
@media only screen and (max-width: 780px){
	section .container{
		padding: 25px 0px;
	}
	.floatContainer{
		flex-direction: column;
	}
	.floatContainer .float{
		margin: 0 auto;
		padding: 0px;
		width: 86%;
	}
}
@media only screen and (max-width: 570px){
	header ul{
		display: none;
	}
	.floatContainer{
		flex-direction: column;
	}
	.floatContainer .float{
		margin: 0 auto;
		width: 92%;
	}
	.floatContainer .float:nth-child(2){
		margin-top: 1rem;
	}
	#ad .container{
		flex-direction: column;
	}
	#ad .container .adNotif{
		width: 85%;
		margin: 0 auto 15px;
		text-align: center;
	}
}