@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.6.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}


@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 0;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% { opacity: 0.7;
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}




















#gaucfr,#gaucfr2{
	width:5px;
	height:150px;
	z-index:52;
	display:block;
	margin-left: auto;
	margin-right: auto;
	overflow: visible;
}
#cadre4b{  width: 100%; height: auto; overflow: hidden; }
#cadr{ padding: 25px 25px;  width: 60%; margin-right: auto; margin-left: auto;overflow: hidden; height: auto; z-index: 4; } 
#fd_belfort4{overflow:visible;width:202px;position:absolute;top:-6px;left:-221px;height:81px;z-index:1159}
#fd_nice6{position:absolute;overflow:visible;width:216px;top:-71px;left:58px;height:106px;z-index:17}
#fd_nice1{overflow:visible;width:338px;position:absolute;top:-53px;left:-159px;height:81px;z-index:96546}
#fd_nice1{width:202px;top:-94px;left:97px;height:81px;z-index:9;overflow:visible;position:absolute}#fd_nice1{width:654px;top:-162px;left:-253px;height:176px;z-index:9}
#fd_nice3{height:81px;z-index:852;
overflow:visible;
	width:650px;
	position:absolute;
	top:-54px;
	left:-288px;
	z-index: 852;
}
#fd_nice7{overflow:visible;width:492px;position:absolute;top:-104px;left:-262px;height:121px;z-index:16}
#fd_mulhouse3{
 	overflow:visible;
	width:279px;
	position:absolute;
	top:-70px;
	left:75px;
	z-index: -852;height:81px;z-index:95
}
#fd_mulhouse{overflow:visible;position:absolute}
#fd_mulhouse{width:338px;top:-71px;left:143px;height:81px;z-index:93}
#fd_mulhouse6{
	position:absolute;
	overflow:visible;
	left: 369px;
	top: -159px;
}#fd_mulhouse6{width:216px;top:-103px;left:237px;height:54px;z-index:-17}
#fd_mulhouse7{overflow:visible;width:219px;position:absolute;top:-121px;left:241px;height:101px;z-index:-16}

#fd_besa7{
 	overflow:visible;
	width:137px;
	position:absolute;
	top:-93px;
	left:-296px;
	z-index: -852;height:61px;z-index:91
}
#fd_besa{overflow:visible;position:absolute;width:338px;top:-86px;left:-340px;height:101px;z-index:96}
#fd_besa6{
	position:absolute;
	overflow:visible;
	left: 369px;
	top: -159px;
}
#fd_besa6{width:216px;top:-126px;left:-276px;height:96px;z-index:17}#fd_mulhouse7{overflow:visible;width:219px;position:absolute;top:-113px;left:211px;height:84px;z-index:-16}
#fd_belfort1{width:202px;top:-94px;left:97px;height:81px;z-index:9}#fd_belfortlion{	width:338px;position:absolute;top:-51px;left:-116px;height:81px;z-index:96}
#fd_belfort,#fd_belfort1{overflow:visible;position:absolute}
#fd_belfort1{width:202px;top:-124px;left:-41px;height:81px;z-index:9}#fd_belfort2,#fd_belfort3{height:81px;z-index:96}#fd_belfort2{overflow:visible;width:202px;position:absolute;top:-3px;left:-22px}#fd_belfort3{
	overflow:visible;
	width:241px;
	position:absolute;
	top:16px;
	left:7px;
	z-index: -853;
	height: 140px;}
#fd_belfort5,#fd_belfort6{position:absolute;overflow:visible}#fd_belfort5{filter:hue-rotate(-4deg);opacity:.4;width:407px;top:-197px;left:-215px;height:53px;z-index:-19}#fd_belfort6{width:216px;top:-105px;left:79px;height:96px;z-index:18}#fd_belfort7{overflow:visible;width:219px;position:absolute;top:-127px;left:-142px;height:101px;z-index:16}#fleurbleu1,#fleurbleu1c{animation:4s linear infinite fleurbleu}
#fd_belfort4{overflow:visible;width:200px;position:absolute;top:0px;left:-195px;height:120px;z-index:1159}
#fd_belfort5,#fd_belfort6{position:absolute;overflow:visible}#fd_belfort6{width:216px;top:-105px;left:79px;height:96px;z-index:18}
#fd_belfort{width:502px;top:-70px;left:-203px;height:110px;z-index:96}
#belfort,#gauc,#gaucfr,#gaucfr2,#titre_1,#titrebelfort{position:relative}










.action-btn {
	position: relative;
	margin-left: 4px;
	padding: 15px 15px;
	font-size: 20px;
	line-height: 1;
	color: transparent;
	border: none;
	text-transform: uppercase;
	cursor: pointer;
	text-align: center;
	outline: none;width: 180px;
  height: 80px;	background-size: cover;
	background-image: url(images/fd_info.png);

}
.action-btn span {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	padding-top: 10px;
	perspective: 1000px;
	font-family: 'p8';
	font-size: 16px;
	transform-style: preserve-3d;
	transition: transform 0.3s;
	transform-origin: 50% 0;
	line-height: 30px;
	color: #333;
	font-weight: bold;
}
.action-btn span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #fff;
  border-top: none;
  border-bottom: none;
}
.action-btn span:after {
	content: attr(data-text);
	position: absolute;
	left: 0;
	color: #fff;
	top: 0;
  width: 100%;
  height: 100%;
	line-height: 30px;
	background: #1F2833;
	opacity: 0;
	transform-origin: 50% 0;
	transform: translateY(100%) rotateX(-90deg);
	transition: opacity 0.15s 0.15s;
	font-family: 'p8';
	font-size: 16px;
	padding-top: 10px;
}
.action-btn:hover span {
  transform: rotateX(90deg);
}
.action-btn:hover span:after {
  opacity: 1;
  transition: opacity 0.5s;
}

.fnc-slide__action-btn {
	position: relative;
	margin-left: 24px;
	padding: 5px 15px;
	font-size: 20px;
	line-height: 1;
	color: transparent;
	border: none;
	text-transform: uppercase;
	cursor: pointer;
	text-align: center;
	outline: none;width: 190px;
	 height: 40px;
}
.fnc-slide__action-btn span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  perspective: 1000px;	font-family: 'p8';
	font-size: 20px;
  transform-style: preserve-3d;
  transition: transform 0.3s;
  transform-origin: 50% 0;
  line-height: 30px;
  color: #333;
}
.fnc-slide__action-btn span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #fff;
  border-top: none;
  border-bottom: none;
}
.fnc-slide__action-btn span:after {
	content: attr(data-text);
	position: absolute;
	left: 0;
	color: #fff;
	top: 0;
	width: 100%;
	height: 100%;
	line-height: 30px;
	background: #1F2833;
	opacity: 0;
	transform-origin: 50% 0;
	transform: translateY(100%) rotateX(-90deg);
	transition: opacity 0.15s 0.15s;
	font-family: 'p8';
	font-size: 20px;
}
.fnc-slide__action-btn:hover span {
  transform: rotateX(90deg);
}
.fnc-slide__action-btn:hover span:after {
  opacity: 1;
  transition: opacity 0.15s;
}


.action-btn2 {
	position: relative;
	margin-left: 4px;
	padding: 15px 15px;
	font-size: 20px;
	line-height: 1;
	color: transparent;
	border: none;
	text-transform: uppercase;
	cursor: pointer;
	text-align: center;
	outline: none;width: 200px;
  height: 50px;	background-size: cover;
	background-color:#ccc;

}
.action-btn2 span {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	padding-top: 10px;
	perspective: 1000px;
	font-family: 'p8';
	font-size: 16px;
	transform-style: preserve-3d;
	transition: transform 0.3s;
	transform-origin: 50% 0;
	line-height: 30px;
	color: #333;
	font-weight: bold;
}
.action-btn2 span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #fff;
  border-top: none;
  border-bottom: none;
}
.action-btn2 span:after {
	content: attr(data-text);
	position: absolute;
	left: 0;
	color: #fff;
	top: 0;
  width: 100%;
  height: 100%;
	line-height: 30px;
	background: #1F2833;
	opacity: 0;
	transform-origin: 50% 0;
	transform: translateY(100%) rotateX(-90deg);
	transition: opacity 0.15s 0.15s;
	font-family: 'p8';
	font-size: 16px;
	padding-top: 10px;
}
.action-btn2:hover span {
  transform: rotateX(90deg);
}
.action-btn2:hover span:after {
  opacity: 1;
  transition: opacity 0.5s;
}

#n1 {
	width:100%;
	height:5px;
	content : url(feuille2.png);
	background-color:#aaa;
	animation: myAnim 3s ease 0s 0.8 normal forwards;
	margin-top:-10px;
	z-index: 143;
	} 
#n2 {
	width:100%;
	height:4px;
	content : url(feuille2.png);
	background-color:#aaa;
	animation: myAnim2 3s ease 0s 0.8 normal forwards;
	margin-top:-10px;
	z-index: 144;
}

@keyframes myAnim {
	0% {
		animation-timing-function: ease-in;
		opacity: 0;
		transform: translateY(50px);
	}

	38% {
		animation-timing-function: ease-out;
		
		transform: translateY(40);
	}

	45% {
		animation-timing-function: ease-in;
		transform: translateY(25px);
	}

	62% {
		animation-timing-function: ease-out;
		transform: translateY(0);
	}

	71% {
		animation-timing-function: ease-in;
		transform: translateY(28px);
	}

	100% {opacity: 0.4;
		animation-timing-function: ease-out;
		transform: translateY(30);
	}
}
@keyframes myAnim2 {
	0% {
		animation-timing-function: ease-in;
		opacity: 0;
		transform: translateY(70px);
	}

	38% {
		animation-timing-function: ease-out;

		transform: translateY(40);
	}

	55% {
		animation-timing-function: ease-in;
		transform: translateY(15px);
	}

	72% {
		animation-timing-function: ease-out;
		transform: translateY(0);
	}

	81% {		opacity: 0.4;
		animation-timing-function: ease-in;
		transform: translateY(8px);
	}


	100% {
		animation-timing-function: ease-out;
		transform: translateY(-20px);
	}
}
#arbre1 {
	animation:  bounceInDown  4.5s;
	opacity:0.7;
	position:absolute;
	width:141px;
	height: 61px;
	top:-71px;
	left: 27px;
	z-index: -12;

 -webkit-transition: all 3.2s ease-in;
-moz-transition: all 3.2s ease-in;
-o-transition: all 3.2s ease-in;
	transition: all 3.2s ease-in;
	bottom: -6px;
}#arbre1:before {
opacity:0;
	position:absolute;
	width:141px;
	height: 61px;
	top:0px;
	left: 250px;
	z-index: 12;
 -webkit-transition: all 3.2s ease-in;
-moz-transition: all 3.2s ease-in;
-o-transition: all 3.2s ease-in;
transition: all 3.2s ease-in;
}
.swatch {

  display: block;
  text-align: center;
  position: relative;
  margin: 100px;
}
.swatch div {
  width: 20px;
  height: 60px;
  position: absolute;
  top: 0px;
  border-radius: 5px;
  border-top: solid 2px rgba(0, 0, 0, 0.2);
  border-left: solid 3px rgba(255, 255, 255, 0.2);
  border-bottom: solid 3px rgba(0, 0, 0, 0.2);
  text-align: center;
  box-sizing: border-box;
  transform-origin: center 90%;
  display: inline-block;
  backface-visibility: hidden;
  margin-left: -35px;
  transform: rotate(0deg);
}
/* .swatch div:before {
  width: 6px;
  height: 6px;
  content: "";
  background-color: #FFFFFF;
  display: inline-block;
  border-radius: 8px;
  bottom: 10px;
  position: absolute;
  margin-left: -8px;
} */
.swatch div:nth-child(1) {
 background-image:url(1f.webp);
  animation: swatch-purple-motion 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.swatch div:nth-child(2) {
 background-image:url(1e.webp);
  animation: swatch-blue-motion 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.swatch div:nth-child(3) {
 background-image:url(1d.webp);
  animation: swatch-green-motion 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.swatch div:nth-child(4) {
 background-image:url(1c.webp);
  animation: swatch-yellow-motion 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.swatch div:nth-child(5) {
 background-image:url(1b.webp);
  animation: swatch-orange-motion 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.swatch div:nth-child(6) {
 background-image:url(2a.webp);
  animation: swatch-red-motion 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes swatch-purple-motion {
  0% {
    transform: rotate(0deg);
  }
  30%,
  70% {
    transform: rotate(-65deg);
  }
  90%,
  10% {
    transform: rotate(0deg);
  }
}
@keyframes swatch-blue-motion {
  0% {
    transform: rotate(0deg);
  }
  30%,
  70% {
    transform: rotate(-40deg);
  }
  90%,
  10% {
    transform: rotate(0deg);
  }
}
@keyframes swatch-green-motion {
  0% {
    transform: rotate(0deg);
  }
  30%,
  70% {
    transform: rotate(-15deg);
  }
  90%,
  10% {
    transform: rotate(0deg);
  }
}
@keyframes swatch-yellow-motion {
  0% {
    transform: rotate(0deg);
  }
  30%,
  70% {
    transform: rotate(15deg);
  }
  90%,
  10% {
    transform: rotate(0deg);
  }
}
@keyframes swatch-orange-motion {
  0% {
    transform: rotate(0deg);
  }
  30%,
  70% {
    transform: rotate(40deg);
  }
  90%,
  10% {
    transform: rotate(0deg);
  }
}
@keyframes swatch-red-motion {
  0% {
    transform: rotate(0deg);
  }
  30%,
  70% {
    transform: rotate(65deg);
  }
  90%,
  10% {
    transform: rotate(0deg);
  }
}




.eventail {

  display: block;
  text-align: center;
  position: relative;
  margin: 100px;
}
.eventail div {
  width: 20px;
  height: 60px;
  position: absolute;
  top: 0px;
  border-radius: 5px;
  border-top: solid 2px rgba(0, 0, 0, 0.2);
  border-left: solid 3px rgba(255, 255, 255, 0.2);
  border-bottom: solid 3px rgba(0, 0, 0, 0.2);
  text-align: center;
  box-sizing: border-box;
  transform-origin: center 90%;
  display: inline-block;
  backface-visibility: hidden;
  margin-left: -35px;
  transform: rotate(0deg);
}

.eventail div:nth-child(1) {
 background-image:url(rt2015.webp);
  animation: eventail-yellow-motion 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.eventail div:nth-child(2) {
 background-image:url(rt2012.webp);
  animation: eventail-orange-motion 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.eventail div:nth-child(3) {
 background-image:url(re2020.webp);
  animation: eventail-red-motion 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes eventail-purple-motion {
  0% {
    transform: rotate(0deg);
  }
  30%,
  70% {
    transform: rotate(-65deg);
  }
  90%,
  10% {
    transform: rotate(0deg);
  }
}
@keyframes eventail-blue-motion {
  0% {
    transform: rotate(0deg);
  }
  30%,
  70% {
    transform: rotate(-40deg);
  }
  90%,
  10% {
    transform: rotate(0deg);
  }
}
@keyframes eventail-green-motion {
  0% {
    transform: rotate(0deg);
  }
  30%,
  70% {
    transform: rotate(-15deg);
  }
  90%,
  10% {
    transform: rotate(0deg);
  }
}
@keyframes eventail-yellow-motion {
  0% {
    transform: rotate(0deg);
  }
  30%,
  70% {
    transform: rotate(35deg);
  }
  90%,
  10% {
    transform: rotate(0deg);
  }
}
@keyframes eventail-orange-motion {
  0% {
    transform: rotate(0deg);
  }
  30%,
  70% {
    transform: rotate(60deg);
  }
  90%,
  10% {
    transform: rotate(0deg);
  }
}
@keyframes eventail-red-motion {
  0% {
    transform: rotate(0deg);
  }
  30%,
  70% {
    transform: rotate(92deg);
  }
  90%,
  10% {
    transform: rotate(0deg);
  }
}













.eventail2 {

  display: block;
  text-align: center;
  position: relative;
  margin: 100px;
}
.eventail2 div {
  width: 20px;
  height: 60px;
  position: absolute;
  top: 0px;
  border-radius: 5px;
  border-top: solid 2px rgba(0, 0, 0, 0.2);
  border-left: solid 3px rgba(255, 255, 255, 0.2);
  border-bottom: solid 3px rgba(0, 0, 0, 0.2);
  text-align: center;
  box-sizing: border-box;
  transform-origin: center 90%;
  display: inline-block;
  backface-visibility: hidden;
  margin-left: -35px;
  transform: rotate(0deg);
}

.eventail2 div:nth-child(1) {
 background-image:url(nf8.webp);
  animation: eventail2-yellow-motion 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.eventail2 div:nth-child(2) {
 background-image:url(nf1.webp);
  animation: eventail2-orange-motion 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.eventail2 div:nth-child(3) {
 background-image:url(nf2.webp);
  animation: eventail2-red-motion 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes eventail2-purple-motion {
  0% {
    transform: rotate(0deg);
  }
  30%,
  70% {
    transform: rotate(-65deg);
  }
  90%,
  10% {
    transform: rotate(0deg);
  }
}
@keyframes eventail2-blue-motion {
  0% {
    transform: rotate(0deg);
  }
  30%,
  70% {
    transform: rotate(-40deg);
  }
  90%,
  10% {
    transform: rotate(0deg);
  }
}
@keyframes eventail2-green-motion {
  0% {
    transform: rotate(0deg);
  }
  30%,
  70% {
    transform: rotate(-15deg);
  }
  90%,
  10% {
    transform: rotate(0deg);
  }
}
@keyframes eventail2-yellow-motion {
  0% {
    transform: rotate(0deg);
  }
  30%,
  70% {
    transform: rotate(-5deg);
  }
  90%,
  10% {
    transform: rotate(0deg);
  }
}
@keyframes eventail2-orange-motion {
  0% {
    transform: rotate(0deg);
  }
  30%,
  70% {
    transform: rotate(40deg);
  }
  90%,
  10% {
    transform: rotate(0deg);
  }
}
@keyframes eventail2-red-motion {
  0% {
    transform: rotate(0deg);
  }
  30%,
  70% {
    transform: rotate(82deg);
  }
  90%,
  10% {
    transform: rotate(0deg);
  }
}


section b{
    display: grid;
    place-items: center;
}


.slider {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    overflow: hidden;
    background: rgb(255, 255, 255);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(7.4px);
    -webkit-backdrop-filter: blur(7.4px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.slider-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    animation: scrolling 20s linear infinite;

}

@keyframes scrolling {

    0% {
        transform: translateX(100%);
    }
  50% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.slider-items img {
    width: 12%;
    margin: 20px;

}












#gauchecadreanim{
	position: absolute;
	left:-270px;
	width: 560px;
	height: 124px;
	top: 36px;
	z-index: 27;
    -webkit-animation: gauchecadreanim 3s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
	animation: gauchecadreanim 3s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
	overflow: hidden;
	padding-top: 40px;
}#gauchecadrefix{
	position: absolute;
	left:-223px;
	width: 560px;
	height: 124px;
	top: 49px;
	z-index: 587;
    -webkit-animation: gauchecadreanim 3s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
	animation: gauchecadreanim 3s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
	overflow: hidden;
	padding-top: 40px;
}
#gauchecadre{
	position: absolute;
	left:-206px;
	width: 560px;
	height: auto;
	top: -254px;
	overflow: hidden;
	z-index: 2;
}
#gauchecadre2{
	position: absolute;
	left:-280px;
	width: 570px;
	height: auto;
	top: -18px;
	overflow: hidden;
	z-index: 2;
}
#gauchemask{
	position: absolute;
	left:1px;
	width: 592px;
	height: 110px;
	top: -46px;
	z-index: 28;
    -webkit-animation: gauchemask 3s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
	animation: gauchemask 3s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
	overflow: visible;
	background-color: #F6F6F6;
}
#gauchemask2{
	position: absolute;
	left:-3px;
	width: auto;
	height: 59px;
	top: 79px;
	z-index: 6;


	-webkit-animation: gauchemask 3s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
	animation: gauchemask 3s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
	overflow: visible;
}
#plancadreanim{	

	position: absolute;
	left:63px;
	width: 575px;
	height: 30px;
	top: 26px;
	z-index: 27;

	-webkit-animation: gauchecadreanim 3s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
	        animation: gauchecadreanim 3s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
}
#texttitre{
	position: absolute;
	left:-179px;
	width: 416px;
	height: 49px;
	top: 67px;
	z-index: 8;


    -webkit-animation: gauchemask 3s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
	animation: gauchemask 3s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
	overflow: visible;
	font-family: p8;
	font-size: 24px;
}

#gauchecadreanim_index{
	position: absolute;
	left:-284px;
	width: 640px;
	height: 124px;
	top: 36px;
	z-index: 27;
    -webkit-animation: gauchecadreanim 3s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
	animation: gauchecadreanim 3s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
	overflow: hidden;
	padding-top: 40px;
}#gauchecadrefix_index{
	position: absolute;
	left:-230px;
	width: 640px;
	height: 124px;
	top: 48px;
	z-index: 587;
    -webkit-animation: gauchecadreanim 3s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
	animation: gauchecadreanim 3s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
	overflow: hidden;
	padding-top: 40px;
}
#gauchecadre_index{

	position: absolute;
	left:-206px;
	width: 530px;
	height: auto;
	top: -84px;
	overflow: hidden;
	z-index: 2;
}
#gauchecadre2_index{
	position: absolute;
	left:-290px;
	width: 640px;
	height: auto;
	top: -18px;
	overflow: hidden;
	z-index: 2;
}
#gauchemask_index{
	position: absolute;
	left:1px;
	width: 630px;
	height: 110px;
	top: -47px;
	z-index: 28;
    -webkit-animation: gauchemask 3s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
	animation: gauchemask 3s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
	overflow: visible;
	background-color: #F6F6F6;
}
#gauchemask2_index{
	position: absolute;
	left:0px;
	width: 650px;
	height: 59px;
	top: 79px;
	z-index: 28;


	-webkit-animation: gauchemask 3s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
	animation: gauchemask 3s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
	overflow: visible;
}
#plancadreanim_index{
	position: absolute;
	left:72px;
	width: 575px;
	height: 30px;
	top: 26px;
	z-index: 27;


	-webkit-animation: gauchecadreanim 3s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
	animation: gauchecadreanim 3s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
}





#gauchecadreanim_resp{
	position: absolute;
	left:-210px;
	width: 440px;
	height: 124px;
	top: 36px;
	z-index: 27;
    -webkit-animation: gauchecadreanim 3s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
	animation: gauchecadreanim 3s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
	overflow: hidden;
	padding-top: 40px;
}#gauchecadrefix_resp{
	position: absolute;
	left:-175px;
	width: 360px;
	height: 124px;
	top: 49px;
	z-index: 587;
    -webkit-animation: gauchecadreanim 3s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
	animation: gauchecadreanim 3s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
	overflow: hidden;
	padding-top: 40px;
}
#gauchecadre_resp{
	position: absolute;
	left:-152px;
	width: 560px;
	height: auto;
	top: -200px;
	overflow: hidden;
	z-index: 2;
}
#gauchecadre2_resp{
	position: absolute;
	left:-212px;
	width: 470px;
	height: auto;
	top: -18px;
	overflow: hidden;
	z-index: 2;
}
#gauchemask_resp{
	position: absolute;
	left:1px;
	width: 592px;
	height: 127px;
	top: -63px;
	z-index: 28;
    -webkit-animation: gauchemask 3s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
	animation: gauchemask 3s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
	overflow: visible;
	background-color: #F6F6F6;
}
#gauchemask2_resp{
	position: absolute;
	left:1px;
	width: auto;
	height: 59px;
	top: 79px;
	z-index: 6;


	-webkit-animation: gauchemask 3s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
	animation: gauchemask 3s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
	overflow: visible;
}
#plancadreanim_resp{	

	position: absolute;
	left:58px;
	width: 400px;
	height: 30px;
	top: 26px;
	z-index: 27;

	-webkit-animation: gauchecadreanim 3s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
	        animation: gauchecadreanim 3s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
}









#gauchecadreanim_index2{
	position: absolute;
	left:-210px;
	width: 640px;
	height: 124px;
	top: 36px;
	z-index: 27;
    -webkit-animation: gauchecadreanim 3s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
	animation: gauchecadreanim 3s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
	overflow: hidden;
	padding-top: 40px;
}#gauchecadrefix_index2{
	position: absolute;
	left:-175px;
	width: 640px;
	height: 124px;
	top: 49px;
	z-index: 587;
    -webkit-animation: gauchecadreanim 3s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
	animation: gauchecadreanim 3s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
	overflow: hidden;
	padding-top: 40px;
}
#gauchecadre_index2{

	position: absolute;
	left:-159px;
	width: 530px;
	height: auto;
	top: -154px;
	overflow: hidden;
	z-index: 2;
}
#gauchecadre2_index2{
	position: absolute;
	left:-215px;
	width: 640px;
	height: 280px;
	top: 0px;
	overflow: hidden;
	z-index: 2;
}
#gauchemask_index2{
	position: absolute;
	left:1px;
	width: 630px;
	height: 110px;
	top: -47px;
	z-index: 28;
    -webkit-animation: gauchemask 3s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
	animation: gauchemask 3s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
	overflow: visible;
	background-color: #F6F6F6;
}
#gauchemask2_index2{
	position: absolute;
	left:0px;
	width: 650px;
	height: 59px;
	top: 79px;
	z-index: 28;


	-webkit-animation: gauchemask 3s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
	animation: gauchemask 3s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
	overflow: visible;
}
#plancadreanim_index2{
	position: absolute;
	left:58px;
	width: 575px;
	height: 30px;
	top: 26px;
	z-index: 27;


	-webkit-animation: gauchecadreanim 3s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
	animation: gauchecadreanim 3s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
}












@-webkit-keyframes gauchecadreanim {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
}
@keyframes gauchecadreanim {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
@-webkit-keyframes gauchemask {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
}
@keyframes gauchemask {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }}
.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;
}

.slick-slider
{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;
    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}







