@charset "UTF-8";
/* CSS Document */
	/* =============================================================================
FONT
========================================================================== */



@font-face {
	font-family: 'american_typewriter';
	src: url('font/american_typewriter.eot');
	src: local('☺'), url('../font/american_typewriter.woff') format('woff'), url('../font/american_typewriter.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'american_typewriter_light';
	src: url('font/american_typewriter_light.eot');
	src: local('☺'), url('../font/american_typewriter_light.woff') format('woff'), url('../font/american_typewriter_light.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}
	/* =============================================================================
GENERAL
========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
	html, body {
	  height: 100%;
		width: 100%;
		overflow: hidden;
	}



	html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #0000ff;
  overflow: hidden;
}

/* Wrapper centrÃ© */
#loader-wrapper {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: #0000ff;
  z-index: 2000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-logo {
  position: relative;
  width: 800px;
  height: 300px;
  z-index: 1003;
}

/* Chaque poisson */
.fish {
  position: absolute;
  left: -100px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  offset-rotate: auto;
  animation: swimCurve 3s var(--delay) ease-in-out infinite;
  z-index: 1003;
}

.fish img {
  width: 60px;
  height: auto;
  opacity: 0; /* ðŸ‘ˆ rend invisible au dÃ©part */
  animation: fadeSwim 3s var(--delay) ease-in-out infinite;
}

/* Offset-path personnalisÃ©s */
.fish-1  { offset-path: path("M -100 280 C 250 150, 750 200, 1100 280"); }
.fish-2  { offset-path: path("M -100 300 C 300 180, 750 220, 1100 300"); }
.fish-3  { offset-path: path("M -100 260 C 280 140, 760 180, 1100 260"); }
.fish-4  { offset-path: path("M -100 310 C 270 170, 730 230, 1100 310"); }
.fish-5  { offset-path: path("M -100 290 C 260 160, 740 210, 1100 290"); }
.fish-6  { offset-path: path("M -100 270 C 250 150, 750 190, 1100 270"); }
.fish-7  { offset-path: path("M -100 320 C 240 180, 740 230, 1100 320"); }
.fish-8  { offset-path: path("M -100 285 C 230 170, 730 200, 1100 285"); }
.fish-9  { offset-path: path("M -100 305 C 220 160, 760 220, 1100 305"); }
.fish-10 { offset-path: path("M -100 295 C 210 150, 770 210, 1100 295"); }

/* DÃ©placement le long de la courbe */
@keyframes swimCurve {
  0%   { offset-distance: 0%; }
  100% { offset-distance: 100%; }
}

/* Apparition / disparition */
@keyframes fadeSwim {
  0%   { opacity: 0; }
  20%  { opacity: 0; }
  30%  { opacity: 0.4; }
  50%  { opacity: 1; }
  70%  { opacity: 0; }
  90%  { opacity: 0; }
  100% { opacity: 0; }
}



.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
	  justify-content: center; /* Centre horizontalement */

  z-index: 100000000;
}

.content {
  text-align: left;
  color: white;
	  max-width: 400px;
	  width: 400px;	
	padding: 30px;
}

.content .line01 {
  opacity: 0;
  transform: translateY(100px);
  animation: slideUp 1s ease-out forwards;
	animation-delay: 4s;
}

.content .line02 {
  opacity: 0;
  transform: translateY(100px);
  animation: slideUp 1s ease-out forwards;
	animation-delay: 5s;
}

.content .line03 {
  opacity: 0;
  transform: translateY(100px);
  animation: slideUp 1s ease-out forwards;
	animation-delay: 2s;
}


.logo {
	position: relative;
	padding-top: 300px;
	padding-bottom: 50px;

	text-align: left;
	max-width: 250px;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}







	.contact {
	position: absolute;
		bottom: 20px;
	
	  font-size: 15px;
	  font-family: 'american_typewriter_light', sans-serif;
	  font-style: normal;
	  font-weight: normal;
	  text-align: left;
		margin-left: 3px;
		
	}
	.mentions {
	position: absolute;
	font-family: 'american_typewriter_light', sans-serif;
	font-style: normal;
	font-weight: normal;
	bottom: 20px;
	right: 20px;
	text-align: left;
	font-size: 12px;
	color: #fff;
	}
	/* =============================================================================
RESPONSIVE
========================================================================== */
	@media screen and (max-width: 600px) {
	  .container {
	    margin: 50px;
	  }
	  .article-texte {
	    column-count: 1;
	  }
	}
	@media screen and (max-width: 500px) {
	  .container {
	    margin: 20px;
	  }
	  header {
	    margin: 20px 20px 0 20px;
	  }
	  footer {
	    margin: 20px;
	  }
		
			.container-work {
	  margin: 20px;
	}
		
		
	}
	/* =============================================================================
LIEN
========================================================================== */
	a {
	  text-decoration: none;
	  color: #fff;
	  outline: none;
	  cursor: pointer;
	  transition: all 1s ease;
	}
	a:hover {
	  outline: none;
	  color: #ffdc00;
	  transition: all 1s ease;
	}
	
	/* =============================================================================
TEXTE
========================================================================== */
	h1 {
	  font-family: 'american_typewriter_light', sans-serif;
	  font-style: normal;
	  font-weight: normal;
	  font-size: 50px;
	  line-height: 40px;
	}
	h2 {
	  font-family: 'american_typewriter_light', sans-serif;
	  font-style: normal;
	  font-weight: normal;
	  font-size: 20px;
	  line-height: 22px;
	}
	h3 {
	  font-family: 'Bitter', serif;
 	  font-weight: 100;		
	  font-size: 20px;
	  line-height: 22px;
	  margin-bottom: 30px;
	}
	p {
	  font-family: 'Bitter', serif;
	  font-weight: 300;
	  font-size: 16px;
	  line-height: 20px;
	}
	.chapo {
	  font-family: 'Bitter', serif;
	  font-weight: 500;
	  font-size: 20px;
	  line-height: 25px;
	}
	i {
	  font-family: 'Bitter', serif;
	  font-weight: 300;
	}
	b {
	  font-family: 'Bitter', serif;
	  font-weight: 500;
	}
	.liste-puce li {
	  padding-left: 5px;
	  margin: 5px 0 5px 15px;
	}
	.gris  {
	color:#CCC;
	}	

