.noir{
    background-color: black;
    width: 220vh;
    padding: 20px;
}

.blanc{
    width: 220vh;
    padding: 20px;
}

.gris{
    background-color: #d3d3d3;
    width: 220vh;
    padding: 20px;
}

h1{
    color: white;
    text-align: center;
}

h2{
    color: black;
    text-align: center;
}

body{
    overflow-x: hidden;
    text-align: center;
    align-items: center;
}


/* BOUTON DE DE PARTAGE AVEC EFFET GLUANT */
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600');


.button {
  z-index: 99;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 40px;
  background: linear-gradient(45deg, #B388EB, #8093F1);
  border-radius: 20px;
  color: #FFF;
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 200;
}
.social {
  opacity: 0;
  position: relative;
  margin: 8px;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: inline-block;
  color: #FFF;
  font-size: 20px;
  text-align: center;
}
.social i {
  margin-top: 10px;
}
.social a {
  color: #FFF;
}
.twitter {
  background: #00aced;
}
.facebook {
  background: #3b5998;
}
.google {
  background: #dd4b39;
}
.youtube {
  background: #bb0000;
}
.clicked {
  opacity: 1;
  transition: 1.2s all ease;
  transform: translateY(56px);
}




/* BOUTON DE PARTAGE AVEC POP UP */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*:focus,
*:active {
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}

.wrapper {
  display: inline-flex;
  list-style: none;
}

svg{
    padding: 15px !important;
  margin: 10px !important;
  width: 50px !important;
  height: 50px !important;
  font-size: 18px;
}

.wrapper .icon {
  position: relative;
  background: #ffffff;
  border-radius: 50%;
  padding: 15px !important;
  margin: 10px !important;
  width: 50px !important;
  height: 50px !important;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip {
  position: absolute;
  top: 0;
  font-size: 14px;
  background: #ffffff;
  color: #ffffff;
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background: #ffffff;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon:hover .tooltip {
  top: -45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.wrapper .facebook:hover,
.wrapper .facebook:hover .tooltip,
.wrapper .facebook:hover .tooltip::before {
  background: #1877F2;
  color: #ffffff;
}

.wrapper .twitter:hover,
.wrapper .twitter:hover .tooltip,
.wrapper .twitter:hover .tooltip::before {
  background: #1DA1F2;
  color: #ffffff;
}

.wrapper .instagram:hover,
.wrapper .instagram:hover .tooltip,
.wrapper .instagram:hover .tooltip::before {
  background: #E4405F;
  color: #ffffff;
}

.wrapper .github:hover,
.wrapper .github:hover .tooltip,
.wrapper .github:hover .tooltip::before {
  background: #333333;
  color: #ffffff;
}

.wrapper .youtube:hover,
.wrapper .youtube:hover .tooltip,
.wrapper .youtube:hover .tooltip::before {
  background: #CD201F;
  color: #ffffff;
}



/*ICONE DE SCROLL ANIME*/
.scrolldown {
  --color: white;
  --sizeX: 30px;
  --sizeY: 50px;
  position: relative;
  width: var(--sizeX);
  height: var(--sizeY);
  margin-left: var(sizeX / 2);
  border: calc(var(--sizeX) / 10) solid var(--color);
  border-radius: 50px;
  box-sizing: border-box;
  margin-bottom: 16px;
}

.scrolldown::before {
  content: "";
  position: absolute;
  bottom: 30px;
  left: 50%;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: var(--color);
  border-radius: 100%;
  animation: scrolldown-anim 2s infinite;
  box-sizing: border-box;
  box-shadow: 0px -5px 3px 1px #ffffff66;
}

@keyframes scrolldown-anim {
  0% {
    opacity: 0;
    height: 6px;
  }
  40% {
    opacity: 1;
    height: 10px;
  }
  80% {
    transform: translate(0, 20px);
    height: 10px;
    opacity: 0;
  }
  100% {
    height: 3px;
    opacity: 0;
  }
}

@keyframes pulse {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.5;
  }
}


/* BOUTON LIKE ANIME */

:root {
  --size: 100px;
  --frames: 62;
}

/*
input {
  display: none;
}
*/

.like {
  display: block;
  width: var(--size);
  height: var(--size);
  cursor: pointer;
  border-radius: 999px;
  overflow: visible;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}

.hearth {
  background-image: url('https://assets.codepen.io/23500/Hashflag-AppleEvent.svg');
  background-size: calc(var(--size) * var(--frames)) var(--size);
  background-repeat: no-repeat;
  background-position-x: calc(var(--size) * (var(--frames) * -1 + 2));
  background-position-y: calc(var(--size) * 0.02);
  width: var(--size);
  height: var(--size);
}

input:checked + .hearth {
  animation: like 1s steps(calc(var(--frames) - 3));  
  animation-fill-mode: forwards;
}

@keyframes like {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: calc(var(--size) * (var(--frames) * -1 + 3));
  }
}

@media (hover: hover) {
  .like:hover {
    background-color: #E1255E15;
  }
    .like:hover .hearth {
      background-position-x: calc(var(--size) * (var(--frames) * -1 + 1));
    }
}


/* BOUTON DE PARTAGE AVEC HOVER */

* {
  margin: 0;
  padding: 0;  
}

.section_1 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;  
  z-index: -10;
}

.icone-list {
  width: 100%;
  max-width: 50rem;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
}

.icone-item {
  list-style: none
}

.icone-link {  
  display: inline-flex;
  font-size: 3rem;  
  text-decoration: none;  
  color: var(--color-icone);
  width: 6rem;
  height: 6rem;   
  transition: .5s linear;
  position: relative;
  z-index: 1;
  margin: auto
}

.icone-link:hover {
  color: #fff;
}

.icone-link i {
  margin: auto;    
}

.icone-link::before {  
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 6rem;
  height: 6rem;
  background: #000;
  border-radius: 50%;
  z-index: -1;
  transform: scale(0);
  transition: 0.3s cubic-bezier(.95, .32, .37, 1.21);
}
  
.icone-link:hover::before {  
  transform: scale(1);
}

.icone-item:nth-child(1) a:hover:before { 
  background: red; 
}

.icone-item:nth-child(2) a:hover:before { 
  background: #3b5998; 
}

.icone-item:nth-child(3) a:hover:before { 
  background: #ea4c89; 
}

.icone-item:nth-child(4) a:hover:before { 
  background: #c4302b; 
}

.icone-item:nth-child(5) a:hover:before { 
  background: #0e76a8; 
}




/* BOUTON EFFET 3D */

@import url('https://fonts.googleapis.com/css?family=Montserrat:600&display=swap');
.cube {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:#fff;
}
.cube_span{
  position: relative;
  display: inline-flex;
  width: 180px;
  height: 55px;
  margin: 0 15px;
  perspective: 1000px;
}
.cube_span a{
  font-size: 19px;
  letter-spacing: 1px;
  transform-style: preserve-3d;
  transform: translateZ(-25px);
  transition: transform .25s;
  font-family: 'Montserrat', sans-serif;
  
}
.cube_span a:before,
.cube_span a:after{
  position: absolute;
  content: "HOVER ME";
  height: 55px;
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 5px solid black;
  box-sizing: border-box;
  border-radius: 5px;
}
.cube_span a:before{
  color: #fff;
  background: #000;
  transform: rotateY(0deg) translateZ(25px);
}
.cube_span a:after{
  color: #000;
  transform: rotateX(90deg) translateZ(25px);
}
.cube_span a:hover{
  transform: translateZ(-25px) rotateX(-90deg);
}






/* BOUTON PARTAGE BANDE ANIME */

.shadow3 {
    background-image: url("http://www.commixturesoft.com/img/shadow3.png");
    background-repeat: no-repeat;
}

.height250{height:250px;}

.badge-info {
    background-color: rgba(23, 160, 184, 0.17);
    color: #17a2b8;
}

.section-title .badge {
    margin: 0 0 8px;
}
.badge {
    border-radius: 100px;
    font-size: 12px;
    font-stretch: normal;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: normal;
    padding: 4px 14px;
    text-transform: uppercase;
}

.social-overlap {
    position: absolute;
    width: 100%;
    transform: translateY(-50%);
}

.justify-content-center {
    -ms-flex-pack: center!important;
    justify-content: center!important;
}
.justify-content-center {
    -webkit-box-pack: center!important;
    -ms-flex-pack: center!important;
    justify-content: center!important;
}

.social-bar {
    display: flex;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 0 60px rgba(93, 70, 232, 0.15);
  border: 1px solid#ebe9e9;
}
.iconpad {
    padding: 12px 0;
    width: 100%;
}
.mb-3, .my-3 {
    margin-bottom: 1rem!important;
}

.process-scetion .slider-nav-item {
    position: relative;
    flex-grow: 0;
    flex-shrink: 0;
    border-radius: 50%;
    text-align: center;
    background: #fff;
    cursor: pointer;
    transition: all .4s ease;
}

.social-icons a {
    border-radius: 50px;
    color: #3f345f;
    display: inline-block;
    line-height: 52px;
    height: 50px;
    width: 50px;
    box-shadow: 0 5px 25px rgba(93, 70, 232, 0.15);
    margin: 15px 15px;
    font-size: 22px;
}

a {
    text-decoration: none !important;
    color: #3f345f;
    transition: all 0.3s ease 0s;
}

.slider-nav-item:before {
    position: absolute;
    content: "";
    height: calc(100% + 16px);
    width: calc(100% + 16px);
    top: -8px;
    left: -8px;
    border-radius: 50%;
    border: 1px solid rgba(132, 132, 164, 0.35);
    animation: 1.5s linear 0s normal none infinite focuse;
}



/*socil*/
.slider-nav{
        display: flex;
}

.process-scetion .slider-nav-item {
    position: relative;
    flex-grow: 0;
    flex-shrink: 0;
    border-radius: 50%;
    text-align: center;
    background: #fff;
    cursor: pointer;
    transition: all .4s ease;

}
.slider-nav-item:before
{
        position: absolute;
    content: "";
    height: calc(100% + 16px);
    width: calc(100% + 16px);
    top: -8px;
    left: -8px;
    border-radius: 50%;
    border: 1px solid rgba(132, 132, 164, 0.35);
    animation: 1.5s linear 0s normal none infinite focuse;
}

    .process-scetion .slider-nav-item:nth-child(2) {
      color: #40beff; }
    .process-scetion .slider-nav-item:nth-child(3) {
      color: #311f9b; }
    .process-scetion .slider-nav-item:nth-child(4) {
      color: #ff9259; }
    .process-scetion .slider-nav-item:nth-child(5) {
      color: #38385f; }
    .process-scetion .slider-nav-item:after {
      position: absolute;
      top: 50%;
      left: 100%;
      height: 2px;
      content: '';
      width: 100%;
      background: url(http://demo.themenio.com/ico/assets/images/line.png) repeat 0 0;
      z-index: 0;
      animation: slide 1s linear infinite; }
    .process-scetion .slider-nav-item:last-child:after {
      display: none; }
    .process-scetion .slider-nav-item .ikon {
      font-size: 50px;
      line-height: 80px; }


   
      .process-scetion .slider-nav-item.active:before {
        position: absolute;
        content: "";
        height: calc(100% + 16px);
        width: calc(100% + 16px);
        top: -8px;
        left: -8px;
        border-radius: 50%;
        border: 1px solid rgba(132, 132, 164, 0.35);
        animation: 1.5s linear 0s normal none infinite focuse; }

@keyframes focuse {
  0% {
    transform: scale(0.8);
    opacity: 1; }
  75% {
    transform: scale(1.2);
    opacity: 0; }
  100% {
    transform: scale(1.2);
    opacity: 0; } }
@keyframes slide {
  from {
    background-position: 0 0; }
  to {
    background-position: 40px 0; } }

.shadow-img1{
    background-image:url("../img/shadow.png");
    background-repeat:no-repeat;
    background-position:bottom;
}

.shadow-img2{
        background-position: bottom;
    background-image: url("../img/shadow2.png");
    background-size: 100%;
    background-repeat: no-repeat;
}


.slider-nav-item:after {
    position: absolute;
    top: 50%;
    left: 100%;
    height: 2px;
    content: '';
    width: 100%;
    background: url(https://1.bp.blogspot.com/--Btu5p654jU/XYmrVd5IcYI/AAAAAAAATQ0/4bX8aZyFBgApbJUf90KrpCfO6RvAaZ6LgCLcBGAsYHQ/s1600/line.png) repeat 0 0;
    z-index: 0;
    animation: slide 1s linear infinite;
}
.mt100{margin-top:100px;}



/* ----------------------------------------------
 * Generated by Animista on 2019-9-24 11:37:28
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation jello-horizontal
 * ----------------------------------------
 */
@-webkit-keyframes jello-horizontal {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
            transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
            transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
            transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
            transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
            transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}
@keyframes jello-horizontal {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
            transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
            transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
            transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
            transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
            transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}


.jello-horizontal {
	-webkit-animation: jello-horizontal 0.9s both;
	        animation: jello-horizontal 0.9s both;
}

.social-bar a:hover i
{
  -webkit-animation: jello-horizontal 0.9s both;
	        animation: jello-horizontal 0.9s both;
}


@media only screen and (max-width: 300px) {
  .process-scetion .slider-nav-item
  {
    height: 30px;
    width: 30px;
    margin: 15px 10px;
    line-height: 28px;
  }
}




/* BOUTON AVEC HOVER ANIME */

:root{
	--height: 100px;
	--width: 200px;
}


.wrapper{
	display: flex;
	justify-content: center;
	align-items: center;
}

.bouton{
	position: relative;
	width: calc(0.8 * var(--width));
	height: calc(0.7 * var(--height));
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	overflow: hidden;
	margin: 0 0.8rem;
	box-shadow: 0 2px 5px rgba(0,0,0,0.2), 0 3px 8px rgba(0,0,0,0.1);
	transition: all 0.3s cubic-bezier(0, 0.22, .3, 1);
}	
.bouton:before{
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: rgba(0,0,0,0.1);
	}

.bouton span{
		color: #fff;
		font-size: 1rem;
		z-index: 10;
		text-transform: uppercase;
		letter-spacing: 2px;
	}

.bouton._1{ background: #2980b9 }
.bouton._2{	background: #8e44ad }
.bouton._3{	background: #16a085 }
.bouton._4{	background: #e74c3c }


.bouton .back{
		position: absolute;
		width: 0;
		height: 0;
		filter: url(#filter);
		border-radius: 50%;
		z-index: 5;
		transition: all 2.5s cubic-bezier(0.1, 0.22, .3, 1);
	}

.bouton._1 .back{
		left: -50%;
		top: -50%;
		background: #27ae60;
	}
.bouton._2 .back{
		right: -50%;
		top: -50%;
		background: #c0392b;
	}
.bouton._3 .back{
		left: -50%;
		bottom: -50%;
		background: #34495e;
	}
.bouton._4 .back{
		right: -50%;
		bottom: -50%;
		background: #2980b9;
	}

.bouton:hover .back{
		width: calc(2 * var(--width));
		height: calc(2 * var(--height));
	}
}

@media only screen and (max-width: 750px) {
	.wrapper {
		flex-direction: column;
	}
	.bouton{
		margin: 0.8rem 0;
	}
}

.support{
	position: absolute;
	right: 10px;
	bottom: 10px;
	padding: 10px;
	display: flex;
}
.bouton a{
	margin: 0 20px;
	color: #fff;
	font-size: 2rem;
	transition: all 400ms ease;
}

.bouton a:hover{
	color: #222;
}




/* BOUTON EFFET GLACE */
.button-container {
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 height: 100%;
}
 .glass-btn {
	 width: 100px;
	 height: 100px;
	 background-color: #fafafa;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 border-radius: 7px;
	 margin-left: 1em;
	 margin-right: 1em;
	 cursor: pointer;
	 transition: all 0.3s;
}
 .glass-btn.blue-btn {
	 -webkit-box-shadow: 0px 20px 20px -17px rgba(0, 111, 255, 0.53);
	 -moz-box-shadow: 0px 20px 20px -17px rgba(0, 111, 255, 0.53);
	 box-shadow: 0px 20px 20px -17px rgba(0, 111, 255, 0.53);
}
 .glass-btn.blue-btn:hover {
	 -webkit-box-shadow: 0px 20px 35px -16px rgba(0, 111, 255, 0.65);
	 -moz-box-shadow: 0px 20px 35px -16px rgba(0, 111, 255, 0.65);
	 box-shadow: 0px 20px 35px -16px rgba(0, 111, 255, 0.65);
}
 .glass-btn.blue-btn .content {
	 font-size: 4em;
	 font-family: "Roboto", sans-serif;
	 background: linear-gradient(to right, #006fff, #00acff 70%);
	 -webkit-background-clip: text;
	 -webkit-text-fill-color: transparent;
	 text-shadow: 0px 10px 37px rgba(0, 111, 255, 0.8);
}
 .glass-btn.red-btn {
	 -webkit-box-shadow: 0px 20px 20px -17px rgba(255, 16, 39, 0.5);
	 -moz-box-shadow: 0px 20px 20px -17px rgba(255, 16, 39, 0.5);
	 box-shadow: 0px 20px 20px -17px rgba(255, 16, 39, 0.5);
}
 .glass-btn.red-btn:hover {
	 -webkit-box-shadow: 0px 20px 35px -16px rgba(255, 16, 39, 0.57);
	 -moz-box-shadow: 0px 20px 35px -16px rgba(255, 16, 39, 0.57);
	 box-shadow: 0px 20px 35px -16px rgba(255, 16, 39, 0.57);
}
 .glass-btn.red-btn .content {
	 font-size: 4em;
	 font-family: "Roboto", sans-serif;
	 background: linear-gradient(to right, #ff1027, #ff4f06 70%);
	 -webkit-background-clip: text;
	 -webkit-text-fill-color: transparent;
	 text-shadow: 0px 10px 37px rgba(255, 16, 39, 0.6);
}
 .glass-btn.amber-btn {
	 -webkit-box-shadow: 0px 20px 20px -17px rgba(255, 159, 16, 0.53);
	 -moz-box-shadow: 0px 20px 20px -17px rgba(255, 159, 16, 0.53);
	 box-shadow: 0px 20px 20px -17px rgba(255, 159, 16, 0.53);
}
 .glass-btn.amber-btn:hover {
	 -webkit-box-shadow: 0px 20px 35px -16px rgba(255, 159, 16, 0.6);
	 -moz-box-shadow: 0px 20px 35px -16px rgba(255, 159, 16, 0.6);
	 box-shadow: 0px 20px 35px -16px rgba(255, 159, 16, 0.6);
}
 .glass-btn.amber-btn .content {
	 font-size: 4em;
	 font-family: "Roboto", sans-serif;
	 background: linear-gradient(to right, #ff8d00, #f7ad07 70%);
	 -webkit-background-clip: text;
	 -webkit-text-fill-color: transparent;
	 text-shadow: 0px 10px 37px rgba(255, 94, 16, 0.7);
}
 .glass-btn:hover {
	 background-color: #f5f5f5;
	 transform: translateY(-5px);
	 transition: all 0.3s;
}






/* BOUTON TELECHARGEMENT ANIME */
#btn-download {
  cursor: pointer;
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  -webkit-tap-highlight-color: transparent;
  position: absolute; 
}
#btn-download:hover {
    background: rgba(34, 50, 84, 0.03); 
      
}
#btn-download svg {
    margin: 16px 0 0 16px;
    fill: none;
    transform: translate3d(0, 0, 0); 
}
#btn-download svg polyline,
#btn-download svg path {
    stroke: #0077FF;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all .3s ease;
    transition-delay: .3s; 
}
#btn-download svg path#check {
    stroke-dasharray: 38;
    stroke-dashoffset: 114;
    transition: all .4s ease; 
}
#btn-download.downloaded svg .svg-out {
    opacity: 0;
    animation: drop .3s linear;
    transition-delay: .4s; 
}
#btn-download.downloaded svg path#check {
    stroke: #20CCA5;
    stroke-dashoffset: 174;
    transition-delay: .4s; 
}

@keyframes drop {
  20% {
    transform: translate(0, -3px); 
  }
  80% {
    transform: translate(0, 2px); 
  }
  95% {
    transform: translate(0, 0); 
  } 
}
