body {
	color: #ffffff;
	font-family:Monospace;
	font-size:13px;
	text-align:center;
	font-weight: bold;

	background-color: #000000;
	margin: 0;
  padding: 0;
	overflow: hidden;
}

p {
  margin: 0;
}

#container-top, #container-right, #container-bottom, #container-left, #container {
	display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

/*//////////////////////////// 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: 24px;
  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;
  }
}

/************V3************/
.v3 #c1 {
  transform: translateY(-40%);
}

.v3 #c2 {
  transform: translateX(13.333%) rotate(90deg); /* divisé par le ratio de l'image 2.99864682003 */
}

.v3 #c3 {
  transform: translateY(40%) rotate(180deg);
}

.v3 #c4 {
  transform: translateX(-13.333%) rotate(-90deg); /* divisé par le ratio de l'image 2.99864682003 */
}

/************V4************/
.v4 #c1 {
  transform: translateY(-36.6%);
}

.v4 #c2 {
  transform: translateX(36.6%) rotate(90deg);
}

.v4 #c3 {
  transform: translateY(36.6%) rotate(180deg);
}

.v4 #c4 {
  transform: translateX(-36.6%) rotate(-90deg);
}

.data {
	color: white;
	position: absolute;
	text-align: left;
}

#data_0 {
	top: 33%;
	left: 10px;
}

#data_1 {
	top: 66%;
	left: 10px;
}

.loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  z-index: 10;
}

.dot-container {
  margin: 0 auto;
  width: 150px;
  transform: translateY(-50%);
  top: 50%;
  position: absolute;
  left: 0;
  right: 0;
}

.dot {
  background-color:#fede00;
  width: 35px;
  height: 35px;
  float: left;
  margin-right: 15px;
  border-radius: 35px;
  animation: wave 2s ease-in-out infinite;
}

#d1 {
  animation-delay: 0;
}

#d2 {
  animation-delay: .33s;
}

#d3 {
  animation-delay: .66s;
}

@keyframes wave{
  0%, 100% { 
	transform: translate(0, 0);	
  }
  50% { 
	transform: translate(0, -15px);  
  }  
}