.marques {
  display: flex;
  flex-direction: column;
  width: var(--section-width);
  align-items: center;
  background-color: var(--bg-color);
  padding: 2rem 0;
}

.marquesTitle {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  align-items: center;
}

.marquesTitle-p1 {
  font-size: 2rem;
  color: var(--primary-color);
  letter-spacing: 1px;
}

.marquesTitle-p2 {
  color: var(--secondary-color);
}

.marquesTitle-a {
  color: var(--light-gray);
  font-size: 0.8rem;
  cursor: pointer;
  padding: 5px;
  transition: all 0.3s ease;
}

.marquesTitle-a:hover {
  color: var(--primary-color);
}

.marques-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  gap: 10px;
}

.marques-div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 130px;
  border: 2px solid rgb(222, 222, 222);
  border-radius: 10px;
  background-color: white;
}
.marques-div a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-marque {
  width: 80%;
  text-align: center;
}
.img-marque:hover {
  transform: scale(1.1);
  transition: all 0.3s ease-in-out;
}
