.hero {
  width: 100%;
  min-height: 85vh;
  position: relative;
  padding: 60px 0;
  display: flex;
  align-items: center;
  /* background: url("../img/testimonials-bg.jpg") no-repeat center center; */
  background-size: cover;
}

@media (max-width: 768px) {
  .hero {
    background-position: top center;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 70vh; /* Ajuste la hauteur sur les petits écrans */
  }
}

.hero .container {
  position: relative;
}

.hero h1 {
  font-family: var(--heading-font);
  color : #fff;
  margin: 0;
  font-size: 48px;
  font-weight: bold;
  line-height: 56px;
}

.hero h4 {
  font-family: var(--heading-font);
  color : #fff;
  margin-top: 5px;
  text-decoration: uppercase;
  /* font-size: 48px; */
  font-weight: 700;
  line-height: 56px;
}

.hero p {
  color: color-mix(in srgb, #5b5c56, transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero .btn-get-started {
  border:solid rgba(255,245,4,255);
  color:#ffffff;
  background: #513cc4;
  font-family: var(--heading-font);
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 6px;
  transition: 0.5s;
  box-shadow: 0 8px 28px color-mix(in srgb, #513cc4, transparent 80%);
}

.hero .btn-get-started:hover {
  color:#ffffff;
  background: color-mix(in srgb, #513cc4, transparent 15%);
  box-shadow: 0 8px 28px color-mix(in srgb, #513cc4, transparent 55%);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: #5b5c56;
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: #513cc4;
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: #513cc4;
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, #513cc4, transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}
