.defaultPolice {
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 200;
}
@keyframes oscillate {
  0% {
    color: #e6007e;
  }
  50% {
    color: #0095db;
  }
  100% {
    color: #e6007e;
  }
}
@keyframes bgOscillate {
  0% {
    background-color: #e6007e;
  }
  50% {
    background-color: #0095db;
  }
  100% {
    background-color: #e6007e;
  }
}
#trombi {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
}
#trombi h1 {
  width: 100%;
  text-align: center;
  margin: 0;
  font-size: 32px;
  position: relative;
}
#trombi h1 .filtres {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
#trombi h1 .filtres label {
  font-size: 16px;
  color: #000000;
}
#trombi h1 .filtres label select {
  border: none;
  background-color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 0;
  cursor: pointer;
  transition: 0.2s ease;
}
#trombi h1 .filtres label select:hover {
  color: #e6007e;
}
#trombi .liste {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding: 0 165px;
}
#trombi .liste a {
  width: 240px;
  min-width: 240px;
  height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  position: relative;
  transition: 0.2s ease;
  text-decoration: none;
  color: #000000;
}
#trombi .liste a img {
  width: 240px;
  height: 480px;
  border-radius: 10px;
  overflow: hidden;
  object-fit: cover;
  transition: 0.2s ease;
}
#trombi .liste a .noPhoto {
  width: 240px;
  height: 285px;
  border-radius: 10px;
  background: url("/media/img/noPhoto.png") no-repeat center center;
  background-size: contain;
}
#trombi .liste a span {
  font-style: italic;
  transition: 0.2s ease;
  font-weight: 200;
}
#trombi .liste a:hover {
  transform: scale(1.05);
  color: #e6007e;
}
@media screen and (max-width: 1140px) {
  #trombi h1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  #trombi h1 .filtres {
    position: static;
    right: 0;
    top: 0;
    transform: none;
  }
  #trombi .liste {
    padding: 0 40px;
  }
}
