@import "general.css";

.popular {
  min-height: 80vh;
  display: flex;
  justify-content: center;
  background: url(../img/products/background.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.popular-container {
  min-width: 85rem;
  display: flex;
  align-items: center;
  position: relative;
}

.popular-text {
  display: flex;
  flex-direction: column;
  max-width: 50%;
}

.popular-text h2 {
  font-size: var(--fs-40);
  font-weight: var(--fw-bold-2);
}

.popular-text p {
  margin-top: 2rem;
  font-size: var(--fs-20);
  font-weight: var(--fw-regular-1);
}

.popular-slider {
  margin-left: 10rem;
  display: flex;
  flex-wrap: wrap;
}

.popular-arrow {
  padding: 0.3rem 0.3rem;
  border: 0.2rem solid white;
  border-radius: 50%;
  top: 47%;
  position: absolute;
  background: white;
  transition: 0.5s;
}

.popular-arrow:hover {
  border: 0.2rem solid var(--cl-purple-100);
  cursor: pointer;
}

#first-arrow {
  right: 1%;
}

#second-arrow {
  left: 33%;
  transform: rotate(180deg);
}
