    @import url(https://fonts.googleapis.com/css?family=Raleway:400,500,300,600,700,800);
.finance{ 
  background-color: #C7C7C7;
    width: 100%;
    height: 100%;
    padding-top: 10px;}

h1 {
  margin: 0;
  padding: 0;
  font-family: 'Raleway';
  font-weight: 400;
  font-size: 3em;
  color: #9A12B3;
  text-align: center;
}



.letterDrop {
  position: relative;
  top: 0;  
  display: inline-block;
  text-transform: uppercase; 
  letter-spacing: 0.2em;
  opacity: 0.8;
  transform: rotateX(-90deg);
  animation: letterDrop 1.2s ease 1 normal forwards;
  color: black;
}

@keyframes letterDrop {
    10% {
        opacity: 0.5;
    }
    20% {
        opacity: 0.8;
        top: 0em;
        transform: rotateX(-360deg);
    }
    100% {
        opacity: 1;
        top: 0.2em;
        transform: rotateX(360deg);
    }
}


.finance span:nth-child(2n) {
  color: #FF4500;
}



/*financement*/
.description h2{color: white;font-size: 35px;text-align: center;}
.description p{font-size: 20px;color: black;text-align: justify;font-weight: bold}

.financement{
  width: 100%;
  padding: 10px 0px;
  margin-top: 40px;
  margin-bottom: 10px;
  flex-direction: column;
}

.exp{
  width: 100%;
  height: 250px;
  padding: 5px 5px;
  display: flex;
  justify-content: space-around;
}

.exp:nth-child(1){
  background-color: rgba(130,130,130,0.7);
  box-shadow: 5px 1px 10px black;
  margin-bottom: 40px;
}

.exp:nth-child(2){
  background-color: rgba(130,130,130,0.7);
  box-shadow: 5px 1px 10px black;
  margin-bottom: 40px;
}

.exp:nth-child(3){
  background-color: rgba(130,130,130,0.7);
  box-shadow: 5px 1px 10px black;
}

.anim{
  padding: 5px;
  width: 19%;
  margin: auto;
  max-width: 276px;
}

.barre{background-color: black;width: 2px;height: 80%;margin: auto;}

.description{
  width: 80%;
  overflow: auto;
  padding: 0px 15px;
}

.scrollbar::-webkit-scrollbar {width: 8px;}

    /* Track */
.scrollbar::-webkit-scrollbar-track {box-shadow: inset 0 0 5px black;border-radius: 10px;}
     
    /* Handle */
.scrollbar::-webkit-scrollbar-thumb {background: black;border-radius: 10px;}

    /* Handle on hover */
.scrollbar::-webkit-scrollbar-thumb:hover {background: #555555;}


/*Animations*/
.block {
  height: 5em;
  line-height: 5em;
  width: 10em;
  background: #464646;
  color: #fdfdfd;
  text-align: center;
  margin: 1em auto;
  text-shadow: 0 0 1px #333; /* so one can see fadeBgColor properly */
}

.animatable {
  
  /* initially hide animatable objects */
  visibility: hidden;
  
  /* initially pause animatable objects their animations */
  -webkit-animation-play-state: paused;   
  -moz-animation-play-state: paused;     
  -ms-animation-play-state: paused;
  -o-animation-play-state: paused;   
  animation-play-state: paused; 
}

/* show objects being animated */
.animated {
  visibility: visible;
  
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;

  -webkit-animation-play-state: running;
  -moz-animation-play-state: running;
  -ms-animation-play-state: running;
  -o-animation-play-state: running;
  animation-play-state: running;
}

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
  60% {
    -webkit-transform: translateX(20px);
  }

  80% {
    -webkit-transform: translateX(-5px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@-moz-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -moz-transform: translateX(-2000px);
  }

  60% {
    -moz-transform: translateX(20px);
  }

  80% {
    -moz-transform: translateX(-5px);
  }

  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}

@-o-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -o-transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -o-transform: translateX(20px);
  }

  80% {
    -o-transform: translateX(-5px);
  }

  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }

  60% {
    transform: translateX(20px);
  }

  80% {
    transform: translateX(-5px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }

  60% {
    -webkit-transform: translateX(-20px);
  }

  80% {
    -webkit-transform: translateX(5px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@-moz-keyframes bounceInRight {
  0% {
    opacity: 0;
    -moz-transform: translateX(2000px);
  }

  60% {
    -moz-transform: translateX(-20px);
  }

  80% {
    -moz-transform: translateX(5px);
  }

  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}

@-o-keyframes bounceInRight {
  0% {
    opacity: 0;
    -o-transform: translateX(2000px);
  }

  60% {
    -o-transform: translateX(-20px);
  }

  80% {
    -o-transform: translateX(5px);
  }

  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}

@keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }

  60% {
    transform: translateX(-20px);
  }

  80% {
    transform: translateX(5px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}


.animated.animationDelay{
  animation-delay:.4s;
  -webkit-animation-delay:.4s;
}
.animated.animationDelayMed{
  animation-delay:1.2s;
  -webkit-animation-delay:1.2s;
}
.animated.animationDelayLong{
  animation-delay:1.6s;
  -webkit-animation-delay:1.6s;
}

.animated.bounceInRight {
  -webkit-animation-name: bounceInRight;
  -moz-animation-name: bounceInRight;
  -o-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
.animated.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  -moz-animation-name: bounceInLeft;
  -o-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

img.circle{width: 100%;max-width: 200px;display: block;margin: auto;}

@media screen and (max-width: 845px) {
.finance h1 {font-size: 28px;}
.description h2{color: white;font-size: 30px;}
.description p{font-size: 17px;}
}

@media screen and (max-width: 660px) {
.finance h1 {font-size: 23px;}
.description h2{color: white;font-size: 25px;}
.description p{font-size: 14px;}
.anim{min-width: 110px;}
}

@media screen and (max-width: 546px) {
.finance h1 {font-size: 18px;}
.letterDrop {letter-spacing: 0.1em;}
.description h2{color: white;font-size: 22px;}
.description p{font-size: 13px;}
}

@media screen and (max-width: 390px) {
.finance h1 {font-size: 16px;}
.description h2{color: white;font-size: 20px;}
.description p{font-size: 12px;}
}
