:root {
	--white: #f9f9f9;
	--black: #36383F;
	--gray: #85888C;
	  --pink: #fb007b;
  }
  
  * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
  }
  
  .nav {
	width: 100%;
	height: 100%;
	position: fixed;
	background-color: var(--black);
	overflow: hidden;
	top:max(60px, 10vh);
	text-transform: uppercase;
  }
  .nav img {
	float: left;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 10px;
  }
  .nav li {
	border-bottom: 1px solid white;
  }
  .menu1 {
	border-top: 1px solid white;
  }
  .menu4 {
	border-bottom: 1px solid white;
  }
  .menu a {
	display: block;
	padding: 30px;
	
  }
  .menu a:hover {
	color: var(--white);
	background-color: var(--pink);
  }
  .nav {
	max-height: 0;
	transition: max-height .5s ease-out;
  }
  .hamb {
	cursor: pointer;
	float: right;
	padding: 40px 20px;
  }
  .hamb-line {
	background: var(--white);
	display: block;
	height: 2px;
	position: relative;
	width: 24px;
  }
  .hamb-line::before,
  .hamb-line::after {
	background: var(--white);
	content: '';
	display: block;
	height: 100%;
	position: absolute;
	transition: all .2s ease-out;
	width: 100%;
  }
  .hamb-line::before {
	top: 5px;
  }
  .hamb-line::after {
	top: -5px;
  }
  .side-menu {
	display: none;
  }
  /* Toggle menu icon */
  .side-menu:checked ~ nav {
	max-height: 321px;
  }
  .side-menu:checked ~ .hamb .hamb-line {
	background: transparent;
  }
  .side-menu:checked ~ .hamb .hamb-line::before {
	transform: rotate(-45deg);
	top:0;
  }
  .side-menu:checked ~ .hamb .hamb-line::after {
	transform: rotate(45deg);
	top:0;
  }
  
  
  body {
	margin: 0px;
	padding: 0px;
	display: flex;
	flex-direction: column;
	font-family: Verdana;
  }
  h1 { 
	margin-top: 0.67em;
	margin-bottom: 0.67em;
  }
  h2 { 
	margin-top: 0.83em;
	margin-bottom: 0.83em;
	font-size: 2em;
	text-align: center;
  }
  h3 {
	margin-top: 2em;
	margin-bottom: 0.8em;
	font-size: 1.6em;
	text-align: center;
  }
  p {
	margin-top: 1em;
	margin-bottom: 1em;
  }
  a {
	color: var(--pink);
	text-decoration: none;
  }
  a:hover {
	text-decoration: underline;
  }
  ul {
	list-style: none;
  }
  .center {
	text-align: center;
  }
  .soins {
	display: flex;
	flex-wrap: wrap;
	justify-content:center;
	column-gap: 20px;
	row-gap: 20px;
	max-width: 100%;
	padding: 0 4%;
  }
  figure {
    display: flex;
    flex-flow: column;
    width: 400px;
	background-color: var(--pink);
  }
  .figure {
	width: 400px;
  }
  figcaption {
    background-color: var(--black);
    color: var(--white);
	font-size: 1.1em;
	width: 400px;
    padding: 14px;
    text-align: center;
  }
  
  
  header {
	width: 100%;
	height: 10vh;
	min-height: 60px;
	position: fixed;
  
	color: white;
	font-family: Verdana;
	background-color: var(--black);
  
	display: flex;
	justify-content: space-between;
  }
  header a {
	color: #FFFFFF;
  }
  header a:hover {
	text-decoration: none;
	color: var(--pink);
  }
  .title
  {
	  width: 304px;
	  min-width: 150px;
	  margin: 0 0 0 15px;
  }
  .title img
  {
	float: left;
	margin: 0 10px 0 0;
	width: 70px;
	height: 70px;
  }
  .menu-mobile {
	display: none;
  }
  
  .accueil {	
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	  
	height: 90vh;
	margin-top: 10vh;
	padding-left: 10px;
	padding-right: 10px;
  
	font-size: 1em;
	color: white;
	font-family: Arial;
	text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
	background-image: url('images/fond.jpg');
	background-position: center;
	background-size: cover;
  }
  .accueil h1 {	
	font-size: 26px;
	margin: 0px;
  }
  .boutons
  {
	display: flex;
	justify-content: space-between;
	width: 520px;
  }
  .bouton {
	  display: flex;
	justify-content: center;
	align-items: center;
	  
	width: 250px;
	height: 60px;
	  
	background-color: var(--pink);
	border-radius: 10px;
  }
  .bouton img {
	float: left;
	margin: 0 10px 0 0;
  }
  .bouton a {
	color: white;
	font-size: 1.5em;
	text-decoration: none;
  }
  .bouton:hover {
	background-color: var(--black);
	text-decoration: none;
  }
  
  .main {
	padding-left: 30px;
	padding-right: 30px;
  
	font-size: 1em;
	font-family: Arial;
  }
  .main h2 {
	clear:both;
  }
  .icon {
	float: left;
	margin: 0 16px 0 0;
  }
  .main section img {
	float: left;
	margin: 0 16px 2px 0;
  }
  .main small {
	font-size: 0.6em;
  }
  .main-2 {
	margin-top: 10vh;
	padding-left: 30px;
	padding-right: 30px;
  
	font-size: 1em;
	font-family: Arial;
  }
  .main-2 h2 {
	clear:both;
  }

  .main-2 section img {
	float: left;
	margin: 0 16px 2px 0;
  }
  .main-2 small {
	font-size: 0.6em;
  }


  footer {
	height: 90px;
	margin-top: 20px;
	background-color: var(--black);
  
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-around;
  
	color: white;
	font-size: 0.8em;
	font-family: Arial;
  }
  footer p {    
	color: white;
  }
  footer div {
	width: 130px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: space-around;
  }
  
  @media screen and (max-width: 600px)
  {
	  .boutons {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: space-around;
		width: 100%;
		height: 150px;
	  }
	  .icon {
		width: 60px;
	  }
	  .full {
		width: 100%;
		padding-bottom: 10px;
	  }
	  .main iframe {
		width: 100%;
		height: 300px;
	  }
	  #actus img {
		margin: 0 16px 16px 0;
	  }
  }
  @media screen and (max-width: 400px)
  {
	  .title {
		font-size: 0.8em;
	  }
	  .title img {
		width: 60px;
		height: 60px;
	  }
  }
  @media screen and (max-width: 352px)
  {
	  .title p {
		font-size: 0.7em;
	  }
	  .title img {
		width: 50px;
		height: 50px;
	  }
	  .nav {
		font-size: 0.8em;
	  }
  }
  
  /* Responsiveness */
  @media (min-width: 1074px) {
	.nav{
	  max-height: none;
	  top: 0;
	  position: relative;
	  float: right;
	  width: fit-content;
	  background-color: transparent;
	  text-transform: capitalize;
	}
	  .nav li {
		border-bottom: 0;
	  }
	  .menu1 {
		border-top: 0;
	  }
	  .menu4 {
		border-bottom: 0;
	  }
	  .nav img {
		display: none;
	  }
	.menu li{
		float: left;
	}
	.menu a:hover{
		background-color:  var(--pink);
		color: var(--white);
	}
	.hamb{
		display: none;
	}
	  .menu1, .menu2, .menu3, .menu4 {
		background-color: var(--black);
	  }
  }