/**
 *  En un clic - Paragraph
 */

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

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

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

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

.en-un-clic__informations-wrapper:hover {
  text-decoration: none;
}

.en-un-clic__informations{
  background-color: var(--primary);
  color: var(--white);
  padding: 0 1rem;
  margin-top: 3rem;
}

.en-un-clic__informations-link:hover{
  text-decoration: underline;
  color: white;
}

.en-un-clic__informations-title {
  font-weight: 900;
  padding: 1rem 0;
}

.en-un-clic__informations-text {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  border-top: 1px solid var(--white);
  padding: 8px 0;
  color: white;
}

@media screen and (min-width: 500px){
  .en-un-clic__informations{
    min-width: 301px;
  }
}

@media screen and (min-width: 1100px){
  .en-un-clic__informations{
    background-color: var(--primary);
    border-top-right-radius : 10px;
    border-bottom-right-radius : 10px;
    color: var(--white);
    min-width: 220px;
    padding: 0 1rem;
    margin-top: unset;
  }
}
