/* animaion EasyCar */
@import url("https://fonts.googleapis.com/css2?family=Russo+One&display=swap");

.svgo {
	font-family: "Russo One", sans-serif;
	width: 100%; height: 100%;
}
.svgotext {
	animation: stroke 4s infinite alternate;
	stroke-width: 2;
	stroke: #2C3237;
	font-size: 75px;
}
@keyframes stroke {
	0%   {
		fill: rgba(33,37,41,0); stroke: rgba(44,50,55,1);
		stroke-dashoffset: 25%; stroke-dasharray: 0 50%; stroke-width: 2;
	}
	70%  {fill: rgba(33,37,41,0); stroke: rgba(44,50,55,1); }
	80%  {fill: rgba(33,37,41,0); stroke: rgba(44,50,55,1); stroke-width: 3; }
	100% {
		fill: rgba(33,37,41,1); stroke: rgba(44,50,55,0);
		stroke-dashoffset: -25%; stroke-dasharray: 50% 0; stroke-width: 0;
	}
}



.container {
  /*
   * FY PRIMA 960
   */
  
    max-width: 1200px;
  }
  
  .icon-link > .bi {
    width: .75em;
    height: .75em;
  }
  
  /*
   * Custom translucent site header
   */
  
  .site-header {
    background-color: rgba(0, 0, 0, .85);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
  }
  .site-header a {
    color: #8e8e8e;
    transition: color .15s ease-in-out;
  }
  .site-header a:hover {
    color: #fff;
    text-decoration: none;
  }
  
  /*
   * Dummy devices (replace them with your own or something else entirely!)*/
   
  
  .product-device {
    position: absolute;
    right: 10%;
    bottom: -30%;
    width: 300px;
    height: 540px;
    background-color: #333;
    border-radius: 21px;
    transform: rotate(30deg);
  }
  
  .product-device::before {
    position: absolute;
    top: 10%;
    right: 10px;
    bottom: 10%;
    left: 10px;
    content: "";
    background-color: rgba(255, 255, 255, .1);
    border-radius: 5px;
  }
  
  .product-device-2 {
    top: -25%;
    right: auto;
    bottom: 0;
    left: 5%;
    background-color: #e5e5e5;
  }
  
  
  /*
   * Extra utilities
   */
  
  .flex-equal > * {
    flex: 1;
  }
  @media (min-width: 768px) {
    .flex-md-equal > * {
      flex: 1;
    }
  }
  

/*slogan animation*/
.animated-text {
  animation: slideIn 2s ease; /* Animation de glissement */
}

@keyframes slideIn {
  0% {
    transform: translateY(-20px); /* Déplacement initial vers le haut */
    opacity: 0; /* Texte transparent */
  }
  100% {
    transform: translateY(0); /* Retour à la position d'origine */
    opacity: 1; /* Texte complètement visible */
  }
}



