@font-face {
	font-family: newsonGLS_bold;
	src: 
		url(fonts/NewsonGLS-WEB-Bold.woff2) format(woff2),
		url(fonts/NewsonGLS-WEB-Bold.woff) format(woff);
}

@font-face {
	font-family: newsonGLS_boldItalic;
	src: 
		url(fonts/NewsonGLS-WEB-BoldItalic.woff2) format(woff2),
		url(fonts/NewsonGLS-WEB-BoldItalic.woff) format(woff);
}

@font-face {
	font-family: newsonGLS_italic;
	src: 
		url(fonts/NewsonGLS-WEB-Italic.woff2) format(woff2),
		url(fonts/NewsonGLS-WEB-Italic.woff) format(woff);
}

@font-face {
	font-family: newsonGLS_light;
	src: 
		url(fonts/NewsonGLS-WEB-Light.woff2) format(woff2),
		url(fonts/NewsonGLS-WEB-Light.woff) format(woff);
}

@font-face {
	font-family: newsonGLS_lightItalic;
	src: 
		url(fonts/NewsonGLS-WEB-LightItalic.woff2) format(woff2),
		url(fonts/NewsonGLS-WEB-LightItalic.woff) format(woff);
}

@font-face {
	font-family: newsonGLS_regular;
	src: 
		url(fonts/NewsonGLS-WEB-Regular.woff2) format(woff2),
		url(fonts/NewsonGLS-WEB-Regular.woff) format(woff);
}

@font-face {
	font-family: newsonGLS_DTP;
	src: url(fonts/NewsonGLS-DTP-Bold.ttf) format(truetype);
}

@font-face {
	font-family: newsonGLS_DTP_blackItalic;
	src: url(fonts/NewsonGLS-DTP-BlackItalic.ttf) format(truetype);
}

* {
	margin: 0;
	padding: 0;
}

html {
	height: 100vh;
}

body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.container {
	flex: 1;
}

/*textes*/

h3 {
    font-family: 'newsonGLS_DTP';
	font-size: 30px;
	text-align: center;
}

p {
    font-family: 'newsonGLS_regular';
    font-size: 17px;
	text-align: center;
}

label {
	font-family: 'newsonGLS_regular';
    font-size: 17px;
	margin-right: 30px;
}

a {
	font-family: 'newsonGLS_regular';
	font-size: 16px;
	color: #000000;
}

/*Navbar & Logo */
nav {
	background-color: #061ab1;
	height: auto;
	text-align: center;
}

.logo {
	width: 200px;
	height: auto;
	padding: 20px;
}

/*position contenu*/

.content {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 50px;
}

.choice {
	display: flex;
	flex-direction: column;
	margin: 50px 0 100px 0;
}

/*form*/

.inputMail {
	padding-bottom: 25px;
}

#mail {
	border-width: 1px;
	padding: 3px;
	width: 335px;
}

.reason {
	max-width: 400px;
	margin: auto;
}

.radio-control:nth-child(4) {
	display: flex;
	flex-direction: column;
}

/*boutons*/

.subm {
	font-family: 'newsonGLS_regular';
    font-size: 20px !important;
	padding: 10px 40px;
	cursor: pointer;
	margin-bottom: 10px;
	border-radius: 25px;
}

.confirm .subm {
    background-color: #ffffff;
	color: #061ab1;
	border: 1px #061ab1 solid;
}

.confirm .subm:hover {
	background-color:#061ab1;
	color: #ffffff;
}

.cancel .subm, #close {
    background-color: #FFD100;
	color: #000000;
	border: 1px #FFD100 solid;
	width: 100%;
}

.cancel .subm:hover, #close:hover {
	background-color: #d8ac04;
}

/*footer*/

footer {
	background-color: #061ab1;
	position: relative;
	width: 100%;
}

.footer_align {
	position: absolute;
	bottom: 0;
	width: 100%;
}

.font_white {
	color: #ffffff;
	width: 100%;
	text-align: center;
}

.bi {
	color: #ffffff;
	padding: 10px;
	font-size: 30px;
}

span {
	font-size: 20px;
}

.bgColor {
	background-color: #C0E2AD;
	padding-top: 10px;
	padding-bottom: 10px;
}

.center {
	text-align: center;
}

@media only screen and (max-width: 1186px) {
	h3 {
		font-size: 25px;
	}

	b, p, a, label, .subm {
		font-size: 12px;
	}

	.logo {
		width: 175px;
		padding: 15px;
	}

	span {
		font-size: 14px;
	}

	.content {
		margin-right: auto;
		margin-left: auto;
	}

	.choice {
		margin: 25px 0 50px 0;
	}

	label {
		margin-right: 10px;
	}

	.subm {
		font-size: 14px !important;
	}
}

@media only screen and (max-width: 367px) {
	.inputMail {
		text-align: center;
	}

	label {
		margin-right: 8px;
	}

	.radio-control:nth-child(3) {
		display: flex;
	}

	.radio-control:nth-child(3) label {
		padding-left: 5px;
	}

	.subm {
		padding: 10px;
	}
}