@charset 'utf-8';

body    {
		animation: fadeIn 2s ease 0s 1 normal;
		-webkit-animation: fadeIn 2s ease 0s 1 normal;
	}
		@keyframes fadeIn {
			0% {opacity: 0}
			100% {opacity: 1}
		}
		@-webkit-keyframes fadeIn {
			0% {opacity: 0}
			100% {opacity: 1}
		}
	.wrapper.style .box {
		background-color: #fff;
		padding: 3em 2.5em;
	}
	.box {
		border-radius: 4px;
		border: solid 1px rgba(144, 144, 144, 0.25);
		margin-bottom: 2em;
		padding: 1.5em;
	}
	h1 {
		position: relative;
		padding-bottom: .5em;
		border-bottom: 4px solid #ccc;
		font-size: 18pt;
		font-family: 'Josefin Sans', sans-serif;
		font-weight: bold;
		text-align: left;
	}
		h1::after {
			position: absolute;
			bottom: -4px;
			left: 0;
			z-index: 2;
			content: '';
			width: 20%;
			height: 4px;
			background-color: #3498db;
		}
	.group {
		text-align: left;
		margin-top: 50px;
		background: no-repeat;
		background-position-x: right;
		background-size: contain;
	}
	.fixing {
		height: 70px;
	}
	.fixingtext {
		font-size: 16pt;
		font-family: 'Josefin Sans', sans-serif;
	}
	.element_box1 {
		height: 140px;
	}
	.element_box2 {
		height: 140px;
	}
	.element_box3 {
		height: 140px;
	}
	.element_box4 {
		height: 140px;
	}
	input.forms[type='text'] {
		outline: none;
		border: solid 1px #aaa;
		-webkit-transition: all .3s;
		transition: all .3s;
		border-radius: 5px;
		-moz-box-shadow: inset 1px 4px 9px -6px rgba(0,0,0,0.5);
		-webkit-box-shadow: inset 1px 4px 9px -6px rgba(0, 0, 0, 0.5);
		box-shadow: inset 1px 4px 9px -6px rgba(0,0,0,0.5);
		width: 150px;
		color: #333;
		font-size: 18px;
		padding: .2em .2em .2em 0.5em;
		background: #fff;
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}
		input.forms[type='text']:focus {
			box-shadow: 0 0 7px #EF810F;
			border: solid 1px #EF810F;
			background-color: #FEFAF5;
		}
	.fa_select {
		display: inline-block;
		position: relative;
	}
	.fa_select select {
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		font-size: 18px;
		padding: 0.5em 2.5em 0.5em 1em;
		border: solid 1px #aaa;
		border-radius: 3px;
		background-color: #fff;
	}
		.fa_select::after {
			content: '\f078';
			display: block;
			position: absolute;
			top: 0;
			right: 0.5em;
			bottom: 0;
			margin: auto;
			width: 1em;
			height: 1em;
			font-family: 'Font Awesome 5 Free';
			font-size: 1em;
			font-weight: 900;
			color: #37BBF6;
			pointer-events: none;
		}
		.fa_select select:focus {
			box-shadow: 0 0 7px #EF810F;
			border: solid 1px #fff;
			background-color: #FEFAF5;
		}
		select::-ms-expand {
			display: none;
		}
	.search_container input[type='text'] {
		font-size: 18px;
		border: solid 1px #999;
		padding: 3px 10px;
		border-radius: 3px;
		height: 2.2em;
		overflow: hidden;
	}
		.search_container input[type='text']:focus {
			outline: 0;
			height: 2.2em;
			box-shadow: 0 0 7px #EF810F;
			border: solid 1px #EF810F;
			background-color: #FEFAF5;
		}
	.search_container input[type='submit'] {
		cursor: pointer;
		font-family: FontAwesome;
		font-size: 1.2em;
		border: none;
		background: #7fbfff;
		border-radius: 3px;
		color: #fff;
		outline : none;
		width: 2.4em;
		height: 2em;
		display: inline-block;
		-webkit-appearance: none;
	}
	.my-orange { color: #f79a3a; }
	.my-big { font-size: 1.5em !important; }
	.menu_next {
		padding: 0px 0px 150px;
	}
	.container_form {
		position: absolute;
		top: 15px;
		left: 0;
		right: 0;
		bottom: 0;
		margin-left: auto;
		margin-right: auto;
		width: 550px;
	}
	#footer_form {
		position: fixed;
		bottom: 0;
		width: 100%;
		height: 80px;
		background-color: rgba( 162 , 160 , 145 ,0.7 );
		padding: 2em 0em 2em;
		z-index: 1;
	}