body {
	font-family: 'DM Sans', sans-serif;
}

* {
	box-sizing: border-box;
}
strong {
	font-weight: bold;
}

.header {
	width: 100%;
	padding: 10px 40px;
	text-align: left;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	background-color: white;
	z-index: 10;
	display: flex;
	align-items: center;
}

.header_logo {
	width: 25%;
	padding-left: 30px;
	padding-top: 35px; 
	cursor: pointer;
	flex: 0 0 auto;
}

.header_links {
	flex: 1;
	text-align: right;
	font-size: 25px;
	display: block;
	padding-top: 30px;
}

.header_links > a {
	color: #3b68b0;
	text-decoration: none;
	margin-right: 40px;
	transition: all ease 1s;

}

.header_links > a:hover {
	color: #3daf6b;
}

.header_links > t1 {
	color: #3daf6b;
	font-size: 18px;
	padding-right: 50px;
}


.background {
	width: 100%;
	height: 500px;
	margin-top: 150px;
	display: flex;
	background-color: #3b68b0;
	z-index: 0;
	align-items: center;
	justify-content: center;
	text-align: center;

}

.background > h2 {
	font-size: 35px;
	color: white;
	z-index: 1;
	line-height: 45px;
	padding-left: 80px;
	padding-right: 80px;
}





.intro {
	font-size: 35px;
	padding: 60px;
}

.intro > p {
	text-align: center;

}

.grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 40px;
}

.col {
	position: relative;
	padding: 25px;
	flex: 0 0 25%;
	text-align: center;
	font-size: 18px;
}


.col > h2 {
	position: absolute;
	top: -25px;
	width: 100%;
	left: 0;
	text-align: center;
	color: black;
	text-transform: uppercase;

}

.col > img {
	width: 100%;
	max-width: 150px;
}

.intro_how {
	font-size: 35px;
	padding: 10px;
}

.intro_how > p {
	text-align: center;

}

.grid_how {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 40px;
}

.col_howto {
	position: relative;
	padding: 5px;
	flex: 0 0 20%;
	text-align: center;
	align-items: baseline;
	font-size: 15px;
}


.col_howto > h2 {
	width: 100%;
	left: 0;
	text-align: center;
	color: black;

}

.col_howto > img {
	width: 100%;
	max-width: 150px;
}




.footer_info {
	width: 100%;
	bottom: 0px;
	background-color: #3b68b0;
	text-align: center;
	align-items: center;
	padding: 10px;

}

.footer_info > h2 {
	color: white;
	font-size: 25px;
	padding: 20px;
}

.footer_info > p {
	color: #93a4bc;
	font-size: 15px;
}


