.packs {
  width: 80%;
  margin: auto;
  padding-top: 0;
}


.packs-container {
  align-items: last baseline;
}

/* Pack styling */
.pack {
  background-color: var(--gray);
  border-radius: 20px;
  padding: 40px;
  border: 0.2px solid rgba(255, 255, 255, 0.2);
  opacity: 0;
  transform: translateY(-10vh);
}

.pack.show{
  animation: slideInPAck 1s forwards ease-in;
}



@keyframes slideInPAck {
  0% {
    opacity: 0;
  transform: translateY(-10vh);

  }

  100%{
    opacity: 1;
  transform: translateY(0);


  }
}

.pack.popular {
  background-color: var(--white);
  color: var(--black);
}


.pack.popular .pack-price,
.pack.popular .pack-type {
  color: var(--black);
}

/* Stack layout */
.pack .pack-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Header */
.pack .pack-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.pack .popular-tag {
  background-color: var(--light-blue);
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 10px;
  color: var(--black);
}

/* Type text */
.pack .pack-type {
  color: var(--white);
  opacity: 0.5;
  font-size: 18px;
  font-weight: bold;
}

/* Price */
.pack .pack-price {
  font-weight: bold;
  font-size: 32px;
  color: var(--white);
  margin: 0;
}

.pack .pack-price .unit {
  font-size: 18px;
  opacity: 0.5;
}

/* Button */
.pack .action-btn {
  background-color: var(--white);
  color: var(--black);
  height: 40px;
  border-radius: 10px;

  font-size: 16px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 500;

}

.pack .action-btn.popular {
  color: var(--white);
  background-color: var(--black);
}

/* Features list */
.pack .pack-features {
  padding: 0;
  list-style: none;
}

.pack .pack-features li {
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
  min-height: 20px;
  align-items: center;
}

.pack.popular .pack-features i {
  color: var(--black);
}


.pack .pack-features i {
  color: var(--white);
  font-size: 20px;
}

.pack .check-icon {
  fill: currentColor;
}

/* Responsive styles */
@media only screen and (max-width: 991px) {
  .packs {
    width: 100%;
  }

  .pack {
    padding: 20px;
  }

  .pack .pack-type {
    font-size: 14px;
  }

  .pack .pack-price {
    font-size: 28px;
  }
  .pack .action-btn {
    font-size: 14px;
  }
  .pack .pack-features li{
    margin-bottom: 10px;
  }

}

@media only screen and (min-width: 901px) and (max-width: 1200px) {
  .packs {
    width: 100%;
  }
}