#s5_right{
    background: -webkit-radial-gradient(#3d7bb8, #335766); /* Safari 5.1 to 6.0 */
    background: -o-radial-gradient(#3d7bb8, #335766); /* For Opera 11.6 to 12.0 */
    background: -moz-radial-gradient(#3d7bb8, #335766); /* For Firefox 3.6 to 15 */
    background: radial-gradient(#3d7bb8, #335766); /* Standard syntax (must be last) */

    padding: 5% 2% 5% 10%;
}
#s5_right h2{
	color: white;
}

#s5_left{
    background: -webkit-radial-gradient(#EEEEEE, #929292); /* Safari 5.1 to 6.0 */
    background: -o-radial-gradient(#EEEEEE, #929292); /* For Opera 11.6 to 12.0 */
    background: -moz-radial-gradient(#EEEEEE, #929292); /* For Firefox 3.6 to 15 */
    background: radial-gradient(#EEEEEE, #929292); /* Standard syntax (must be last) */

    padding: 5% 10% 5% 2%;
}

#cv_cont{
	width: 80%;
	height: 70%;
	position: absolute;
	top: 15%;
	left: 10%;
	text-align: center;
}
#cv_cont img{
	max-width: 100%;
	max-height: 100%;
}
.cv_links{
	position: absolute;
	bottom: 5%;
	left: 42%;
	right: 42%;
	width: 16%;
	height: 5%;
	background-color: #335766;
	text-align: center;
	font-size: 0.7vw;
	font-family: 'CodeB';
	border-radius: 10px;
	padding: 2px;

}
.cv_links:hover{
	background-color: #29abe2;
}
.cv_links p{
	position: relative;
	top: 50%;
	-ms-transform :translateY(-50%);
    -webkit-transform :translateY(-50%);
    transform: translateY(-50%);
}
.mobile {
	top: 37.5%;
	right: 2%;
	height: 25%;
	width: 48%;
	font-size: 3vw;
}
/*-------------------------------------------------------------------*/

#contact_infos{
	width: 80%;
	height: 25%;
	position: absolute;
	bottom: 0;
	left: 10%;
	right: 10%;
	text-align: center;
}

#contact_infos div{
	position: absolute;
    width: 150px;
    height: 150px;
    background: white;

    -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
#contact_infos div p{
	position: relative;
    width: 100%;
    color: black;
    font-family: 'CodeB';
    top: 50%;
    -ms-transform :translateY(-50%);
    -webkit-transform :translateY(-50%);
    transform: translateY(-50%);
    font-size: 1em;
}
#contact_infos div p span{
	font-size: 1.5em;

}
#adresse{
	left: 0;
	top: 0;
	z-index: 20;
}
#tel{
	top: 0;
	left: 50%;
	-ms-transform :translateX(-50%);
    -webkit-transform :translateX(-50%);
    transform: translateX(-50%);
}
#mail{
	top: 0;
	right: 0;
}

/*-------------------------------------------------------------------*/

form {
	width: 50%;
	max-height: 50%;
	padding: 3% 2% 2% 2%;
	position: absolute;;
	left: 25%;
	top: 25%;
	background-color: white;
	font-size: 0.7vw;
	font-family: 'CodeB';
}

.group { 
	position: relative; 
	margin-bottom: 45px; 
}

.field {
	font-size: 18px;
	padding: 10px 10px 10px 5px;
	-webkit-appearance: none;
	display: block;
	background: white;
	color: #636363;
	width: 96%;
	border: none;
	border-radius: 0;
	border-bottom: 1px solid #757575;
}

.field:focus { outline: none; }

textarea {
	max-width: 95%;
	max-height: 110px;
}

#sub{
	width: 90%;
	height: 5%;
	position: absolute;
	bottom: 5%;
	left: 5%;
	background-color: #335766;
	text-align: center;
	border-radius: 10px;
	padding: 2px;
	border:none;
	color: white;
	font-family: 'CodeL';
}
#sub:hover{
	background-color: #29abe2;
}

/* Label */

label {
	color: black; 
	font-size: 18px;
	font-weight: normal;
	position: absolute;
	left: 5px;
	top: 10px;
	transition: all 0.2s ease;
}


/* active */

.field:focus ~ label, .field.used ~ label {
	top: -20px;
  transform: scale(.75); left: -2px;
	/* font-size: 14px; */
	color: #4a89dc;
}


/* Underline */

.bar {
	position: relative;
	display: block;
	width: 99%;
}

.bar:before, .bar:after {
	content: '';
	height: 2px; 
	width: 0;
	bottom: 1px; 
	position: absolute;
	background: #4a89dc; 
	transition: all 0.2s ease;
}

.bar:before { left: 50%; }

.bar:after { right: 50%; }


/* active */

.field:focus ~ .bar:before, .field:focus ~ .bar:after { width: 50%; }


/* Highlight */

.highlight {
	position: absolute;
	height: 60%; 
	width: 100px; 
	top: 25%; 
	left: 0;
	opacity: 0.5;
}


/* active */

.field:focus ~ .highlight {
	animation: inputHighlighter 0.3s ease;
}


/* Animations */

@keyframes inputHighlighter {
	from { background: #4a89dc; }
	to 	{ width: 0; background: transparent; }
}


