body {
	background:#000000;
	overflow: hidden;
}

/*//////////////////////////// FLUSHER //////////////////////////////*/
#daybyday {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin: 0 auto;
	transform: translateY(-50%);
}

.flusher {
	margin: 0 auto 50px auto;
}

/* pour changer la taille des images tu dois changer les valeurs width et height ici */
.flusher > div {
	width:175px;
	height:175px;
	display:inline-block;
	margin:auto;
}

.flusher img {
	width:100%;
	height:100%;
	display:block;
}

/*//////////////////////////// SOCIAL //////////////////////////////*/
/* Pour changer la taille du bouton tu dois changer les valeurs width et height ici*/
.button {
	display:block;
	margin:auto;
	width:50px;
	height:50px;
	color:#FFF;
	text-align:center;
	font: 400 14px/50px "helvetica neue", helvetica, sans-serif;
	text-decoration:none;
	cursor:pointer;
}

.button img {
	width:100%;
	height:100%
}

.logo {
	margin: 0 auto 0 auto;
	width: 30px;
	display: block;
}

.logo img {
	width:100%;
}

.social {
	padding: 0;
	margin: 0px auto 30px auto; 	/* marge du block réseaux sociaux */
	width: 160px;               	/* largeur du block = largeur des 3 pictos + marges x 2*/
	font-size: 0;
	text-align: center;
}
.social li {
	display:inline-block;
	font-size:12px;
	margin:10px; 				/* marge entre les images */
}
.social li a {display:block;}
.social li  a img {
	width:30px;  				/* largeur des images de réseaux sociaux */
	height:30px; 				/* hauteur des images de réseaux sociaux */
	display:block;
}

/*//////////////////////////// CARTEL //////////////////////////////*/
#about{
  bottom: 50px;
  right: 50px;
}

#about.active{
  transition: transform .5s;
  transform: rotate(135deg);
  border: 2px solid black;
  color: #0a0a0a;
}

.about {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  visibility: hidden;
  overflow: hidden;
  height: 100%;
  width: 100%;
  transition: all .5s;
  transform: translate3d(0, 20px, 0);
  color: #0a0a0a;
  z-index: 3;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.05);
}

.about .content{
  opacity: 0;
  width: 50vw;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: translateY(-50%);
}

.about .content h1{
  font-size: 60px;
  font-family: Arial, Helvetica, sans-serif;
  margin-bottom: 45px;
  text-align: center;
  color: #333333;
}

.about .content p{
  font-size: 16px;
  line-height: 25px;
  letter-spacing: .5px;
  font-family: Arial, Helvetica, sans-serif;
  text-align: justify;
  text-align-last: center;
  color: #aaaaaa;
  font-weight: 400;
  margin: 10px auto; 
}

.about .content a{
  color: #00acc9;
  text-decoration: none;
}
.about .content a:hover{
  text-decoration: underline;
}
.about:before{
  position: absolute;
  top: calc(100% - 91px);
  left: calc(100% - 71px);
  width: 1px;
  height: 1px;
  content: '';
  -webkit-transition: all 600ms cubic-bezier(.215, .61, .355, 1);
          transition: all 600ms cubic-bezier(.215, .61, .355, 1);
  color: #ffffff;
  border-radius: 50%;
  background: white;
}
.about.active{
  display: block;
  visibility: visible;
  transition: all 600ms;
  transition: all .5s;
  transform: translate3d(0, 0, 0);
}
.about.active:before{
  top: 50%;
  left: 50%;
  display: block;
  width: 3000px;
  height: 3000px;
  margin-top: -1500px;
  margin-left: -1500px;
  -webkit-transition: all 600ms cubic-bezier(.215, .61, .355, 1);
          transition: all 600ms cubic-bezier(.215, .61, .355, 1);
  border-radius: 50%;
}
.about.active .content{
  z-index: 1;
  transition: all 600ms cubic-bezier(.55, .055, .675, .19);
  opacity: 1;
}

.cartel-button{
  font-size: 24px;
  font-weight: 400;
  line-height: 20px;
  position: fixed;
  z-index: 3;
  display: block;
  width: 20px;
  height: 20px;
  padding: 11px;
  transition: transform .25s;
  text-align: center;
  text-decoration: none;
  border-radius: 40px;
  outline: none;
  color: white;
  border: 2px solid white;
  transition: all .6s;
}

.cartel-button:hover:not(.active){
  transform: scale(1.1);
  text-decoration: none;
}

@media (max-width: 1024px) {
  .about .content{ 
    width: 80vw;
  }

  .about .content h1{
    font-size: 40px;
    margin-bottom: 25px;
  }

  .about .content p{
    font-size: 12px;
    line-height: 18px;
  }
}

/*//////////////////////////// RESPONSIVE //////////////////////////////*/
@media screen and (max-width: 768px){
	.reshide{
		display: none !important;
  	}	
}

@media screen and (max-height: 604px){
  	.social{
		display: none !important;
  	}
}

@media screen and (max-height: 375px){
  	.flusher{
		margin-top: 100px;
    }
}