.presentation-marques-card-cta:hover .cta-toshow-icon {
  display: block;
}

.presentation-marques-card-cta:hover .cta-hidden-icon {
  display: none;
}

.presentation-marques-card-cta img {
  width: 16px;
}

.presentation-marques-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-size: contain;
  background-repeat: no-repeat;
  gap: 24px;
  padding: 0 12px;
  margin-bottom: 24px;
}

.presentation-cards-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.presentation-marques-titre {
  font-size: 28px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  font-weight: 400;
  width: 76%;
  text-align: center;
  color: white;
  margin: auto;
  margin-top: 24px;
}

.presentation-marques-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background-color: white;
  overflow: hidden;
  gap: 16px;
  border-radius: 16px;
  min-height: 400px;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
}

.presentation-marques-card-image-container {
  height: 150px;
  width: 100%;
}

.presentation-marques-card-2 .presentation-marques-card-image-bg {
  background-color: rgba(194, 223, 188, 0.8);
}

.presentation-marques-card-image-bg {
  background-color: rgba(238, 40, 57, 0.8);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
}



.nos-marques-logo {
  width: 25%;
}

.presentation-marques-card-texts {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 20px 16px 20px;
  gap: 6px;
}


.presentation-marques-card-titre {
  width: 100%;
  font-size: 20px;
  text-align: start;
  font-weight: 400;
}

.presentation-marques-card-desc {

  text-align: start;
  font-size: 13px;
  width: 90%;
}


.presentation-marques-card-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--main-red);
  background-color: white;
  margin: auto;
  font-size: 12px;
  font-weight: 400;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 24px;
  border: 1px solid var(--main-red);
  width: 50%;
}

.presentation-marques-card-cta:hover {
  background-color: var(--main-red);
  color: white;
  transition: all 0.3s ease-in-out;
}

@media screen and (min-width: 1200px) {
  .presentation-cards-container {
    display: grid;
    margin: 0px 100px -495px 100px;
    grid-template-columns: repeat(2, 1fr);

  }

  .presentation-marques-titre {
    margin: 24px auto;
    margin-top: 124px;
    font-size: 2.2rem;
  }

  .presentation-marques-container {
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: 600px;
    height: 393px;
  }

  .presentation-marques-card-image-container {
    height: 250px;
  }

  .presentation-marques-card-image-bg {
    height: 250px;
  }

  .nos-marques-logo {
    width: 20%;
  }

  .presentation-marques-card {
    height: 790px;
    position: relative;
  }

  .presentation-marques-card-titre {
    font-size: 26px;
  }

  .presentation-marques-card-texts {
    margin: 32px;
  }

  .presentation-marques-card-desc {
    text-align: start;
    font-size: 16px;
    width: 90%;
    line-height: 2;
  }

  .presentation-marques-card-cta {
    font-size: 18px;
    margin: 24px auto;
    padding: 16px 60px;
    border-radius: 32px;
    width: fit-content;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}