#reviews {
  position: relative;
  height: 300px;
  overflow: hidden;
  width: 100%;
  padding: 20px;

}

.reviewsBlocks {
  opacity: 0;
  position: absolute;
  z-index: 2;
  display: grid;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  transition: 1s;
  text-align: left;
  pointer-events: none;
  width: calc(100% - 40px);
  transform: translateX(-30px);
}

.reviewsBlocks a p {
  font-family: Verdana, Geneva, Tahoma, sans-serif !important;
  font-size: 10pt;
}

.reviewsBlocks.visible {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}

.reviewsBlocks a {
  text-decoration: none;
  font-size: 9pt;
  position: relative;
  font-family: "Special Elite", system-ui !important;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid white;
  color: white;
  padding: 20px;
  transition: .5s;
  z-index: 10;
  background-position: right 4px top 4px;
  background-size: 16px;
  background-repeat: no-repeat;
}

.reviewsBlocks a:hover {
  background-color: rgba(0, 0, 0, 0.4);
}

.reviewsBlocks a.airbnb {
  background-image: url('./imgs/footer/airbnb.svg');
}

.reviewsBlocks a.booking {
  background-image: url('./imgs/footer/booking2.svg');
}

.reviewsBlocks a span {
  position: absolute;
  top: 4px;
  right: 24px;
}

.reviewsBlocks a.airbnb span {
  color: var(--colorLogo1);
}

.reviewsBlocks a.booking span {
  background: #003B95;
  border-top-right-radius: 2px;
  border-top-left-radius: 2px;
  border-bottom-right-radius: 2px;
  font-size: 7pt;
  padding: 4px;
}

.reviewsBlocks a b {
  font-family: "Special Elite", system-ui !important;
  display: inline-block;
  text-transform: uppercase;
  font-weight: normal;
  font-size: 10pt;
  color: var(--colorLogo2);
  background-repeat: no-repeat;
  padding: 2px 0 0 28px;
  display: block;
  margin-bottom: 10px;
}

#stars {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 1s ease;
  z-index: 1;
}

#reviews.abierto #stars {
  transform: translate(-50%, -50%) scale(80);
}

/*

    *****   ******  ******  ******  ******  **  **  ******  **  **  **  ******
    **  **  **      **      **  **  **  **  *** **  **      **  **  **  **  
    *****   ****    ******  ******  **  **  ** ***  ******  **  **  **  ****
    **  **  **          **  **      **  **  **  **      **  **   ****   **
    **  **  ******  ******  **      ******  **  **  ******  **    **    ******

*/

@media (max-width: 1380px) {
  .reviewsBlocks {
    grid-template-columns: repeat(3, 1fr);
  }


}

@media (max-width: 768px) {
  .reviewsBlocks {
    grid-template-columns: repeat(2, 1fr);
  }

}


@media (max-width: 408px) {
  .reviewsBlocks {
    grid-template-columns: repeat(1, 1fr);
  }

}












/*

  ******  **  **  **  **  **  ****** ******  **  ******  **  **  ******
  **  **  *** **  **  ******  **  **   **    **  **  **  *** **  **
  ******  ** ***  **  ******  ******   **    **  **  **  ** ***  ******
  **  **  **  **  **  **  **  **  **   **    **  **  **  **  **      **
  **  **  **  **  **  **  **  **  **   **    **  ******  **  **  ******


*/