/************************************/
/*             GENERAL              */
/************************************/


@media (min-width: 1700px) {
  .container {
    min-width: 1500px;
  }
}
@media only screen and (max-width : 768px) {
    .container {
        min-width: 100%;
    }
}
body {
    background-color: #151515;
    padding: 0;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
	color: #ffffff;
    font-weight: 300;
    line-height: normal;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
	justify-content: space-between;
	overflow-x: hidden;
}

html {
	background-color: #151515;
    min-height: 100%;
	scroll-behavior: smooth;
}

a, a:focus, a:active{
	outline : none;
	color: inherit;
	text-decoration: none;
}
a:hover{
	color: inherit;
	text-decoration: none;
}
div {
	
}
strong {
	font-weight: 800;
}

* {
    box-sizing: border-box;
	/*border-radius: 4px !important;*/
}

.fitscreen {
	min-height: 100vh;
	width: 100vW;
	position: relative;
	overflow: hidden;
}
.variable {
	position: fixed;
	background-color: #000;
	color: #fff;
	font-size: 14px;
	bottom: 0;
	padding: 5px 10px;
	display: none !important;
}




/*  Boutons génériques  */
.btn {
	position: relative;
	background-color: #000;
	font-size: 16px;
	font-weight: 500;
	padding: 7px 20px;
	padding-left: 42px;
	border-radius: 4px;	
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease-out;
	color: #fff;
}
.btn::before {
	content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    height: 15px;
    width: 18px;
    overflow: hidden;
    background-image: url("../icons/Arrow_Double_White.svg");
    background-repeat: no-repeat;
    background-position: right top;
    background-size: auto 100%;
	transition: all 0.2s ease-out;
}
.btn:hover {
	background-color: #19afc0;
	/*box-shadow: 0px 0px 10px rgba(0,0,0,.2);*/
	color: #fff !important;
}
.btn:hover:before {
	background-position: left top;
}
a.btn:focus, a.btn:visited, a.btn:active, {
	color: #fff !important;
}


::-moz-selection { /* Code for Firefox */
  color: #fff;
  background: #19afc0;
}

::selection {
  color: #fff;
  background: #19afc0;
}




/************************************/
/*             HEADER               */
/************************************/

header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	height: 80px;
	background-color: #151515;
	background-color: #000000;
	z-index: 2000;
	transition: all 0.3s ease-out;
}
.header_hide {
	top: -80px;;
}
header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	position: relative;
}
Header .logo {
	height: 46px;
}
Header .logo img {
	height: 100%;
	width: auto;
}


/************************************/
/*              NAV                 */
/************************************/

header .nav {

}
.btn_nav {
	position: relative;
	font-size: 14px;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease-out;
	margin-left: 7px;
	text-transform: uppercase;
	padding: 12px 15px;
	padding-right: 15px;
	border-radius: 4px;	
	opacity: 1;
	height: 100%;
}
.btn_nav::before {
	content: url("../icons/Picto_Portfolio.svg");
	display: inline-block;
	width: 18px;
	height: 18px;
	margin-right: 8px;
}
.btn_nav:hover {
	opacity: 0.7;
}
.btn_nav.active {
	pointer-events: none;
	background-color: #19afc0;
	opacity: 1;
}
@media only screen and (max-width : 992px) {
	.btn_nav {
		font-size: 12px;
		margin-left: 4px;
		padding: 8px 10px;
	}
	.btn_nav::before {
		width: 16px;
		height: 16px;
		margin-right: 5px;
	}
}
@media only screen and (max-width : 768px) {
	header {
		height: 60px;
		z-index: 2000;
	}
	header .container {
		display: flex;
		align-items: center;
		justify-content: space-between;
		height: 100%;
		position: relative;
	}
	Header .logo {
		height: 30px;
	}
	header .nav {
		position: absolute;
		top: 40px;
		left: 0;
		display: flex;
		flex-direction: column;
		background-color: #000;
		width: 100%;
		align-items: flex-start;
		padding: 20px;
	}
	.btn_nav {
		font-size: 18px;
		align-items: center;
		justify-content: flex-start;
		margin-left: 0px;
		margin-bottom: 3px;
		padding: 10px 12px;
		width: 100%;
		font-weight: 500;
		border-radius: 2px;	
	}
	.btn_nav::before {
		width: 20px;
		height: 20px;
		margin-right: 10px;
	}
	#navigation {
		transition: all 0.2s ease-out;
		left: 100vw;
		z-index: -1;
	}
	#navigation.opened {
		left: 0;
	}
}






/************************************/
/*            BURGER                */
/************************************/


/* Bouton Burger START */
.burger-icon {
    width: 20px; 
    height: 20px; /* taille du SVG */
 	fill: #fff; /* couleur du SVG */
}

/* État d'origine */
rect {
    x: 0; /* coordonnée x */
    rx: 0.5px; /* arrondi */
    width: 100%; /* largeur */
    height: 1px; /* épaisseur */
}
.rect-1 {
    y: 0; /* coordonnée y */
}
.rect-2 {
    y: 3px; /* coordonnée y */
}
.rect-3 {
    y: 6px; /* coordonnée y */
}

/* État au clic (translation + opacity + rotation) */
[data-expanded="true"] .rect-1 {
    y: 3px;
    rotate: 45deg;
}
[data-expanded="true"] .rect-2 {
    opacity: 0;
}
[data-expanded="true"] .rect-3 {
    y: 3px;
    rotate: -45deg;
}


/* Transitions seulement si acceptées */
@media (prefers-reduced-motion: no-preference) {
  
  /* transition au retour */
  rect {
  transform-origin: center;
  transition: 
    y 0.2s 0.2s,
    opacity 0.2s,
    rotate 0.2s;
  }
  
  /* transition à l'aller */
  [data-expanded="true"] rect {
  transition: 
    y 0.2s,
    opacity 0.2s,
    rotate 0.2s 0.2s cubic-bezier(.55,-0.65,0,2.32); 
  }
}

/* Burger */
.burger-button {
    border: 0;
    padding: 0;
    line-height: 0;
    background: transparent;
    cursor: pointer;
	display: none;
}

/* affichage du focus lors de la navigation au clavier */
.burger-button:focus-visible {
    outline: 4px dashed hotpink;
    outline-offset: 5px;
}

/* Appearance Mode */
:root {
    color-scheme: light dark;
}
/* Styles SVG */

svg {
    /* Par défaut les navigateurs masquent ce qui dépasse du Viewbox */
    overflow: visible;
}
svg * {
    /* Par défaut le référent pour transform-origin est l'ensemble du SVG (view-box) */
    transform-box: fill-box;
}



/* Bouton Burger END */

@media only screen and (max-width : 768px) {
	.burger-button {
		display: block;
	}
}



/************************************/
/*              MAIN                */
/************************************/

main {
	
}
@media only screen and (max-width : 992px) {
	main {
		
	}
}



/************************************/
/*            HOMEPAGE              */
/************************************/


.homepage {
	position: relative;
	overflow: hidden;
	background-color: #000;
}
.homepage .contenu {
	position: absolute;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.video_container {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video_container video {
	width: 100%;
    height: 100%;
    object-fit: cover;
	position: absolute;
	/*filter: grayscale(1);*/
	/*filter: brightness(0) saturate(100%) invert(40%) sepia(91%) saturate(644%) hue-rotate(142deg) brightness(96%) contrast(101%);*/
}
.noir {
	position: absolute; 
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	/*background-color: rgba(10,71,86,0.2);*/
	/*display: none;*/
	background-color: #19afc0;
	/*background-color: #000;*/
	opacity: 0.1;
}
.bandes {
	position: absolute; 
	left: 0;
	width: 100%;
	height: 15%;
	background-color: #000;
	opacity: 0.6;
	z-index: 100;
	/*display: none;*/
}
.bande1 {
	top: 0;
}
.bande2 {
	top: 85%;
}

.overlay {
	position: absolute; 
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent url(../overlays/01.png);
	opacity: 1;
}
@media only screen and (max-width : 992px) {
	.overlay {
		opacity: 0.5;
	}
}



.homepage .menu {
	text-align: center;
	white-space: nowrap;
}



.big_logo {
	width: 500px;
	z-index: 200;
	max-width: 100%;
	padding-bottom: 10vh;
	text-align: center;
}
.big_logo .logo {
	/*padding-left: 60px;*/
}
.big_logo .logo img {
	width: 100%;
	height: auto;
}
.big_logo .name {
	font-size: 35px;
	font-style: italic;
	font-weight: 500;
}
.big_logo .taf {
	font-size: 25px;
	font-style: italic;
	font-weight: 300;
	white-space: nowrap;
}

@media only screen and (max-width : 992px) {
	.big_logo {
		padding-bottom: 5vh;
	}
	.big_logo .logo img {
		width: 70%;
	}
	.big_logo .name {
		font-size: 20px;
	}
	.big_logo .taf {
		font-size: 16px;
	}
}



.btn_home {
	background-color: #000;
	/*background-color: rgba(0,0,0,0.5);;*/
	font-size: 20px;
	font-weight: 400;
	border-radius: 4px;	
	margin: 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease-out;
	overflow: hidden;
	position: relative;
	width: 180px;
	height: 50px;
}
.btn_home.animate {
	transform: scale(1);
}
.btn_home::before {
	content: url("../icons/Picto_Portfolio.svg");
	display: inline-block;
	width: 20px;
	height: 20px;
	margin-right: 10px;
}
.btn_portfolio::before {
	content: url("../icons/Picto_Portfolio.svg");
}
.btn_profil::before {
	content: url("../icons/Picto_Profil.svg");
}
.btn_outils::before {
	content: url("../icons/Picto_Outils.svg");
}
.btn_contact::before {
	content: url("../icons/Picto_Contact.svg");
}
.btn_homepage::before {
	content: url("../icons/Picto_Home.svg");
}


@media only screen and (min-width : 768px) {
	.btn_home:hover {
		transform: scale(1.15);
		margin: 0 20px;
		background-color: #19afc0;
		box-shadow: 0px 0px 100px rgba(0,0,0,.4);
	}
}

@media only screen and (max-width : 992px) {
	.homepage .contenu {
		padding-bottom: 5vh;
	}
	.homepage .menu {
	}
	.btn_home {
		font-size: 18px;
		margin: 5px;
		width: 180px;
		height: 40px;
	}
	.btn_home::before {
		width: 18px;
		height: 18px;
		margin-right: 8px;
	}
}
@media only screen and (max-width : 768px) {
	.homepage .menu {
		white-space: normal;
		bottom: 15%;
	}
}





/************************************/
/*             TEXTES               */
/************************************/




a.anchor {
    display: block;
    position: relative;
    top: -80px;
    visibility: hidden;
}
@media only screen and (max-width : 768px) {
	a.anchor {
		top: -50px;
	}
}



/************************************/
/*           PORTFOLIO              */
/************************************/



.portfolio {
	background-color: #fff;
	background-image: url("../bckgrnds/Bg_01.jpg");
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: top;
	position: relative;
}
.portfolio .slide {
	position: relative;
	left: 0;
	top: 0;
	width: 100%;
	height: auto;
	transition: all 0.4s ease-out;
}
.portfolio .slide.load {
	left: -100vw;
}


/************************************/
/*             Popup                */
/************************************/

.popup_link {
	cursor: pointer;
}
.popup {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 80px;
	left: 100vw;
	z-index: 1000;
	overflow-y: hidden;
	/*background-color: #fff;*/
	transition: all 0.4s ease-out;
	pointer-events: none;
}
.popup.load {
	left: 0;
	opacity: 1;
	pointer-events: all;
}

/*  iframe  */
.iframe_pop {
	width: 100%;
	height: 100%;
	position: relative;
	top: 0;
	left: 0;
	/*overflow-y: auto;*/
	overflow-y: auto;
	background-color: transparent;
}
.popup .container {
	height: 0;
	position: relative;
}

/*  Bouton Fermer  */
.x_close {
	position: absolute;
	font-size: 12px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	margin-left: 0px;
	text-transform: uppercase;
	cursor: pointer;
	color: #444;
	top: 50vh;
	transform: translateY(-100px);
	left: -80px;
	z-index: 5000;
	text-align: center;
	opacity: 1;
	transition: all 0.2s ease-out;
	width: 100px;
}
.x_close::before {
	content: url("../icons/arrow_back.svg");
	display: block;
	width: 40px;
	height: 40px;
	margin-right: 10px;
	transition: all 0.2s ease-out;
	animation: anim_fleche ease-in-out 0.4s infinite alternate;
	margin-bottom: 3px;
}
.x_close:hover {
	filter: brightness(0%);
}

@keyframes anim_fleche {
  from {
   transform: translateX(5px);
  }

  to {
    transform: translateX(-5px); 
  }
}
@keyframes anim_fleche_mobile {
  from {
   transform: translateX(3px);
  }

  to {
    transform: translateX(-3px); 
  }
}

@media only screen and (max-width : 768px) {
	.popup {
		top: 60px;
	}
	.x_close {
		font-size: 16px;
		font-weight: 600;
		display: inline-flex;
		align-items: center;
		align-content: center;
		justify-content: flex-start;
		flex-direction: row;
		margin-left: 0px;
		top: 0;
		transform: none;
		left: 0;
		text-align: center;
		width: 100%;
		position: absolute;
		background-color: #fff;
		padding: 10px;
	}
	.x_close::before {
		display: inline-block;
		width: 20px;
		height: 20px;
		margin-right: 6px;
		animation: anim_fleche_mobile ease-in-out 0.4s infinite alternate;
		margin-bottom: 0;
	}
	.x_close:hover {
		filter: none;
	}
}


.portfolio .grille {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-bottom: 60px;
	transition: 0.3s ease-out;
}
.portfolio .item {
	width: 100%;
	aspect-ratio: 1/1;
	background-color: #fff;
	border-radius: 4px;	
	overflow: hidden;
	position: relative;
	cursor: pointer;
	display: inline-block;
	transition: all 0.3s ease-out;
}

img.lazy {
        width: 100%; 
        height: 100%; 
        display: block;
        
        /* optional way, set loading as background */
        background-image: url("../img/loading.svg");
		background-repeat: no-repeat;
		background-position: center;
    }


.portfolio .visuel {
	width: 100%;
	height: 100%;
	transition: all 2s ease-out;
}
.portfolio .visuel img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	top: 0;
	left: 0;
}
.portfolio .rollover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-top: 15%;
	user-select: none;
}
.portfolio .rollover .titre {
	position: relative;
	font-size: 30px;
	color: #fff;
	font-weight: 600;
	opacity: 0;
	margin-bottom: 10px;
	text-align: center;
	line-height: 110%%;
	padding: 0 20px;
}
.portfolio .rollover .detail {
	position: relative;
	font-size: 16px;
	color: #fff;
	font-weight: 500;
	background-color: #19afc0;
	border-radius: 4px;	
	padding: 10px 15px;
	opacity: 0;
	text-align: center;
}
.portfolio .rollover .fond{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #841e35;
	background-color: #006c75;
	background-color: #000;
	transition: all 0.2s ease-out;
	opacity: 0;
}

@keyframes vignette_detail {
    0% {
        top: 50%;
		opacity: 0;
    }
    100% {
        top: 0%;
		opacity: 1;
    }
}


@media only screen and (max-width : 992px) {
	.portfolio .grille {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
		padding: 0 10px;
		margin-top: -5px;
	}
}
@media only screen and (max-width : 768px) {
	.portfolio .grille {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}
}

.portfolio .categories {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin: 30px 0;
}
.portfolio .categories .tag {
	color:  #fff;
	background-color: #000;
	font-size: 16px;
	font-weight: 500;
	padding: 10px 18px;
	border-radius: 4px;	
	margin: 4px;
	white-space: nowrap;
	transition: all 0.2s ease-out;
	cursor: pointer;
	user-select: none;
}
.portfolio .categories .tag.active {
	color:  #fff;
	background-color: #19afc0;
	pointer-events: none;
}

@media only screen and (min-width : 768px) {
	.portfolio .item:hover .visuel {
		transform: scale(1.3);
	}
	.portfolio .item:hover .fond {
		opacity: 0.7;
	}
	.portfolio .item:hover .titre {
		animation: vignette_detail ease-in-out 0.4s forwards;
	}
	.portfolio .item:hover .detail {
		animation: vignette_detail ease-in-out 0.4s forwards;
		animation-delay: 150ms;
	}
	.portfolio .categories .tag:hover {
		transform: scale(1.2);
		margin: 0 20px;
	}
}



@media only screen and (max-width : 768px) {
	.portfolio .categories {
		margin: 15px 0;
		margin-bottom: 12px;
	}
	.portfolio .categories .tag {
		font-size: 13px;
		padding: 10px 16px;
		margin: 4px;
	}
}

/************************************/
/*             PROFIL               */
/************************************/


.profil {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;	
	background-color: #0c0c0c;
	background-image: url("../bckgrnds/Bg_02.jpg");
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: top;
	padding-bottom: 50px;
}
.profil .grille_profil {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	padding: 60px 0;
}
.profil .photo {
	width: 100%;
	height: 100%;
	background-color: #000;
	overflow: hidden;
	border-radius: 4px;	
}
.profil .photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.profil .texte {
	background-color: #fff;
	color: #000;
	padding: 50px;
	font-size: 16px;
	font-weight: 400;
	border-radius: 4px;	
	box-shadow: 0px 0px 100px rgba(0,0,0,.2);
	padding-bottom: 80px;
}
.profil .texte strong {
	font-weight: 600;
}
.profil .titre {
	text-align: center;
}
.profil .titre h2 {
	font-size: 40px;
	margin: 0;
	font-weight: 800;
	color: #000;
}
.profil .titre h3 {
	font-size: 20px;
	margin: 0;
	font-weight: 700;
	color: #19afc0;
	padding: 10px 15px;
	display: inline-block;
}
.profil .star {
	text-align: center;
	padding: 20px 0;
}

.btn_CV {
	text-align: center;
	padding: 40px 0;
}

.btn_CV .btn::before {
	content: url("../icons/Picto_PDF.svg");
}


@media only screen and (max-width : 992px) {
	.profil .grille_profil {
		grid-template-columns: repeat(1, 1fr);
		gap: 20px;
		padding-top: 20px;
	}
	.profil .texte {
		padding: 20px;
		font-size: 16px;
		padding-bottom: 50px;
	}
	.profil .titre h2 {
		font-size: 30px;
	}
	.profil .star {
		text-align: center;
		padding: 10px 0;
	}
	.profil .titre h3 {
		padding: 5px 15px;
	}
}

.profil li {
	margin-top: 15px;
}


/************************************/
/*             OUTILS               */
/************************************/


.outils {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #fff;
	background-image: url("../bckgrnds/Bg_01.jpg");
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: top;
	padding-bottom: 50px;
}
.outils .grille_outils {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	padding: 60px 0;
	padding-bottom: 0;
}
.video_outils {
	position: relative;
    width: 100%;
    height: auto;
	margin-bottom: 60px;
	overflow: hidden;
}
.video_outils video {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	background-color: #fff;
}
.video_outils .star {
	position: absolute;
	width: 60%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.video_outils .star img {
	width: 100%;
	height: auto;
	opacity: 1;
}
.outils .contenu {
	width: 50%;
}
.outils .bloc {
	background-color: rgba(255,255,255,1);
	position: relative;
	width: 100%;
	box-shadow: 0px 0px 15px rgba(0,0,0,.1);
	padding: 60px;
	margin-bottom: 60px;
	border-radius: 4px;
}
.outils .bloc .titre {
	position: absolute;
	font-size: 24px;
	font-weight: 600;
	background-color: #fff;
	color: #000;
	border-radius: 500px;
	padding: 11px 22px;
	top: -25px;;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	white-space: nowrap;
}
.logo_Adobe {
	padding-bottom: 40px;
}
.logo_Adobe img {
	max-width: 40%;
}

.bloc.logiciels .grid_pictos {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(4, 1fr);
}
.outils .picto {
	text-align: center;
}
.outils .picto img {
	width: 100%;
	height: auto;
	max-width: 100px;
}
.logiciels .picto img {
	margin-top: 20px;
	max-width: 120px;
}
.grid_pictos .picto img {
	max-width: 120px;
}
.bloc.librairies .grid_pictos {
	display: grid;
	gap: 40px;
	grid-template-columns: repeat(3, 1fr);
}
.bloc.langages .grid_pictos {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(3, 1fr);
}

.bloc.logiciels {
	
}
.bloc.librairies {
	
}
.bloc.langages {
	
}


@media only screen and (max-width : 992px) {
	.outils .grille_outils  {
		grid-template-columns: repeat(1, 1fr);
		gap: 10px;
		padding-top: 20px;;
	}
	.video_outils {
		aspect-ratio: 5/3;;
	}
	.outils .bloc {
		width: 100%;
		padding: 20px;
		margin-bottom: 40px;
	}
	.outils .bloc .titre {
		font-size: 18px;
	}
	.logo_Adobe {
		padding-bottom: 10px;
	}
}




/************************************/
/*            CONTACT               */
/************************************/

.contact {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #0c0c0c;
	background-image: url("../bckgrnds/Bg_02.jpg");
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: top;
	/*padding-bottom: 200px;*/
}
.contact .intro {
	padding-bottom: 25px;
	padding-top: 0px;
	font-size: 18px;
}
.contact {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.contact .grille_contact {
	display: flex;
	padding: 40px 0;
	padding-bottom: 0;
	column-gap: 40px;
}
.contact .bloc {
	background-color: rgba(255,255,255,0.9);
	color: #000;
	padding: 50px;
	font-size: 20px;
	font-weight: 500;
	box-shadow: 0px 0px 100px rgba(0,0,0,.2);
	border-radius: 4px;	
}
.contact .formulaire {
	padding: 50px;
	font-size: 14px;
	width: 70%;
}
.contact .form-group {
	padding: 7px 0;
}
.contact .gender {
	padding-bottom: 15px;
	padding-left: 10px;
}
.contact .gender input {
	margin-right: 5px;
}

.contact .CTA {
	text-align: center;
	margin-top: 10px;
}

.contact .infos {
	width: 30%;
	background-color: #fff;
	padding: 20px;
	border-radius: 4px;
	box-shadow: 0px 0px 100px rgba(0,0,0,.2);
}
.contact .infos .cadre {
	width: 100%;
	height: 100%;
	background-color: #19afc0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	align-content: center;
	text-align: center;
	color: #fff;
	font-size: 20px;
	padding: 20px 0;
	font-weight: 500;
}
.contact .infos .case {
	width: 100%;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 20px 0;
	font-size: 18px;
}
.contact .infos .adresse {
	font-size: 24px;
}

.contact .infos .filet {
	border-top: 1px solid #fff;
	height: 1px;
	width: 50%;
	margin: 20px 0;
	opacity: 0.5;
}

.contact .infos .picto{
	width: 90px;
	margin-bottom: 10px;
}

.contact .infos .email a{
	padding: 2px 6px;
	transition: all 0.2s ease-out;
}
.contact .infos .email a:hover{
	background-color: #fff;
	color: #19afc0;
}


@media only screen and (max-width : 992px) {
	.contact .grille_contact {
		padding-top: 20px;
		padding-bottom: 40px;
		column-gap: 40px;
		flex-direction: column;
	}
	.contact .formulaire {
		padding: 20px;
		font-size: 16px;
		width: 100%;
		margin-bottom: 20px;
		order: 2;
	}
	.contact .infos {
		width: 100%;
		order: 1;
		margin-bottom: 20px;
		font-size: 18px;
	}
	.contact .infos .case{
		width: 100%;
		text-align: center;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding: 0;
	}
	.contact .infos .filet {
		border-top: 1px solid #fff;
		height: 1px;
		width: 50%;
		margin: 10px 0;
		opacity: 0.5;
	}

	.contact .infos .picto{
		width: 70px;
		margin-bottom: 10px;
	}
	.contact .infos .adresse{
		font-size: 18px;
	}
}




input[type="text"], textarea {
    outline: none;
    box-shadow: none !important;
    border: 1px solid #ccc !important;
	border-radius: 4px;	
	color: #000 !important;
	font-size: 14px !important;
}
input {
	padding: 10px 15px!important;
}
textarea {
	padding: 15px;
}
::placeholder, textarea::placeholder {
    color: #000 !important;
    font-size: 14px !important;
    opacity: 0.4 !important;
	font-weight: 500 !important;
}

label {
	color: #19afc0;
	padding-left: 5px;
	padding-top: 3px;
	font-size: 12px;
}


/************************/
/* Custom Radio Buttons */
/************************/

label.custom_radio  {
    color: #000 !important;
    font-size: 18px;
	padding-top: 0;
}


/* The container */
.custom_radio {
  display: inline-block;;
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  margin-right: 20px;
  cursor: pointer;
  font-size: 18px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.custom_radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: -2px;
  left: 0;
  height: 24px;
  width: 24px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #999;
}

/* On mouse-over, add a grey background color */
.custom_radio:hover input ~ .checkmark {
    background-color: #fff;
}

/* When the radio button is checked, add a blue background */
.custom_radio input:checked ~ .checkmark {
  background-color: #fff;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.custom_radio input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.custom_radio .checkmark:after {
 	top: 5px;
	left: 5px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #19afc0;
}
.popup_message {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.5);
	display: none;
}
.popup_message .message {
	position: relative;
	background-color: rgba(255,255,255,1);
	color: #000;
	text-align: center;
	padding: 40px 80px;
	font-size: 18px;
	font-weight: 500;
	border-radius: 4px;
	box-shadow: 0px 0px 100px rgba(0,0,0,.5);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: inline-block;
	align-content: center;
	align-items: center;
	justify-content: center;
}
.popup_message .picto {
	width: 100px;
	height: auto;
	display: block;
	margin: auto;
	margin-bottom: 20px;
}

/*  Bouton Fermer  */
.x_close_message {
	position: absolute;
}



/************************************/
/*            FOOTER                */
/************************************/

footer {
    width: 100%;
	min-height: 300px;
    background-color: #000;
	padding: 50px 0;
	flex-wrap: wrap;
	display: none;
}
.footer .grille{
	display: flex;
    align-items: center;
    flex-wrap: nowrap;
	position: relative;
	height: auto;
}

@media only screen and (max-width : 1400px) {
	
}

@media only screen and (max-width : 1200px) {
	
}
@media only screen and (max-width : 992px) {
	
}
@media only screen and (max-width : 768px) {
	
}











