/**
 *  En un clic - Paragraph
 */

.paragraphe-en-un-clic {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 115px;
  gap: 0.5rem;
}

.en-un-clic__title {
  font-weight: 600;
  font-size: 0.778rem;
}

.en-un-clic__image {
  transition: transform 0.3s ease-in-out;
}

.en-un-clic__image img {
  width: 80px;
  height: 80px;
}

.paragraphe-en-un-clic:hover .en-un-clic__image {
  transform: translateY(-5px);
  transition: transform 0.3s ease-in-out;
}

@media screen and (min-width: 800px){
  .en-un-clic__title {
    font-size: 0.889rem;
  }
}
