/**********************************************************************************/
/**********************              GENERAL                 **********************/
/**********************************************************************************/
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

html{
	min-height:100%;
	background-color: white); 	
}

body{
	margin:0;
	padding:0;
	font-family: 'Open Sans', sans-serif;
	color: black;
	font-size:10pt;
}

*{
	box-sizing: border-box;
}

a{
	text-decoration: none;
	color: initial;
}

button{
	border: none;
	outline: none;
	padding: 8px;
	background-color: white;
	font-family: 'Open Sans', sans-serif;	
	cursor: pointer;

	-webkit-transition: all 0.2s;
	-ms-transition: all 0.2s;
	transition: all 0.2s;
}

.wrap_cliniques{
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	height: 100vh;
	width: 100vw;
}

.wrap_cliniques>section{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	max-width: calc(100vw - 160px);
}

.wrap_cliniques section>header{
	font-size: 1.3em;
	text-align: center;
}

.wrap_cliniques article{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.wrap_cliniques article>a{
	margin: 12px;
	padding: 24px;
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	border-radius: 16px;
	-webkit-box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 1);
	-moz-box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 1);
	box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 1);

	-webkit-transition: all 0.2s;
	-ms-transition: all 0.2s;
	transition: all 0.2s;
}


.wrap_cliniques article>a:hover{
	-webkit-box-shadow: 0px 4px 16px 0px rgba(51, 51, 51, 0.3);
	-moz-box-shadow: 0px 4px 16px 0px rgba(51, 51, 51, 0.3);
	box-shadow: 0px 4px 16px 0px rgba(51, 51, 51, 0.3);
}

.wrap_cliniques .imgClinique{
	position: relative;
	width: 280px;
	height: 280px;	
}

.wrap_cliniques .imgClinique>button{
	position: absolute;
	width: 64px;
	height: 64px;
	top: 216px;
	left: 216px;
	display: flex;
	justify-content: center;
	align-items: center;
	-webkit-border-radius: 32px;
	-moz-border-radius: 32px;
	border-radius: 32px;
	background-color: white;
	-webkit-box-shadow: 0px 4px 16px 0px rgba(51, 51, 51, 0.3);
	-moz-box-shadow: 0px 4px 16px 0px rgba(51, 51, 51, 0.3);
	box-shadow: 0px 4px 16px 0px rgba(51, 51, 51, 0.3);
}

.wrap_cliniques .imgClinique>img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.wrap_cliniques .imgClinique>.logo{
	position: absolute;
	width: 96px;
	height: 96px;
	top: 184px;
	left: 184px;
	display: flex;
	justify-content: center;
	align-items: center;
	-webkit-border-radius: 48px;
	-moz-border-radius: 48px;
	border-radius: 48px;
	background-color: white;
	overflow: hidden;
	-webkit-box-shadow: 0px 4px 16px 0px rgba(51, 51, 51, 0.3);
	-moz-box-shadow: 0px 4px 16px 0px rgba(51, 51, 51, 0.3);
	box-shadow: 0px 4px 16px 0px rgba(51, 51, 51, 0.3);
}

.wrap_cliniques .imgClinique>.logo>img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 14px;
}

.wrap_cliniques footer{
	text-align: center;
}


/**********************************************************************************/
/**********************              RESPONSIVE              **********************/
/**********************************************************************************/

@media screen and (max-width: 1024px){
	.wrap_cliniques>section{
		justify-content: flex-start;
		max-width: calc(100vw - 40px);
	}
}