.header {
  height: 100vh;
}

.swiper {
  height: 100%;
  width: 100%;
}

.slide {
  position: relative;
  height: 100%;
  width: 100%;
}

.slides {
  height: 100%;
  width: 100%;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.first-slide {
  background-image: url("../img/hero/adobestock.jpeg");
}

.second-slide {
  background-image: url("../img/hero/car-being-taking-care-workshop.jpg");
}

.third-slide {
  background-image: url("../img/hero/vidange.jpg");
}


.bkg {
  position: relative;
}

.bkg-service-footer {
  background-color: #f8f8f8;
  height: 100%;
  width: 40%;
  position: absolute;
  top: 0;
  right: 0;
  clip-path: polygon(20% 0%, 100% 0, 100% 100%, 0% 100%);
  padding-right: 50px;
  align-content: center;
  border-radius: 0 10px 0 0;
}

@media screen and (max-width: 1199px) {
  .bkg-service-footer {
    width: 60%;
  }
}

@media screen and (max-width: 991px) {
  .bkg-service-footer {
    width: 75%;
    padding-right: 5px;
  }
}

@media screen and (max-width: 767px) {
  .bkg-service-footer {
    width: 90%;
  }
}

@media screen and (max-width: 510px) {
  .bkg-service-footer {
    width: 95%;
    padding-left: 20px;
  }
}

@media screen and (max-width: 455px) {
  .bkg-service-footer {
    width: 100%;
    clip-path: polygon(10% 0%, 100% 0, 100% 100%, 0% 100%);
  }
}

@media screen and (max-width: 370px) {
  .cta-sale-wrapper{
    background-color: transparent;
  }
  .bkg-service-footer {
    clip-path: polygon(0% 0%, 100% 0, 100% 100%, 0% 100%);
  }
}


.landing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.landing-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: white;
}

.landing-content h1 {
  color: white;
  padding: 20px 0;
}

.review-items {
  display: flex;

  
}

.hero-button{
  padding: 20px 0;
}

.profile {
  background-color: white;
  border-radius: 100%;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  
}

.profile img {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  object-fit: cover;

}

.margin{
  margin-left: -10px;
}

.add {
  background-color: #057e2b;
}

.review-items h2 {
  color: white;
}

.landing-img {
  position: relative;
  top: 20%;
}

.hero-image {
  position: absolute;
  bottom: 5%;
  left: -35%;
}

@keyframes zoomInOut {
  0%, 100% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1); /* Zoom de 20% */
  }
}

/* Style de base */
.zoom-continu img {

  animation: zoomInOut 11s infinite; /* Animation infinie */
}

@media screen and (max-width: 1366px) {
  .header {
    height: 100vh;
  }
  .landing-img {
    display: none;
  }

  .text{
    display: none;
  }

  .landing-content {
    width: 100%;
    justify-content: center;
    text-align: center;
    gap: 30px;
  }

  .review-items {
    justify-content: center;
    margin-top: 20px;
  }
}

@media screen and (max-width: 500px) {
  .header {
    height: 100vh;
  }

  .landing {
    padding: 0 10px;
  }

  .hero-button {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .slides {
    background-position: center;
  }
}


@media screen and (max-width: 450px) {
  .landing-content {
    padding-top: 100px;
  }
}

@media screen and (max-width: 395px) {
  .review-items {
    display: none;
  }
}


