/*** pricing boxes ***/

.pricing ul {
  list-style-type: none;
  display: flex;
  margin: 0px;
  padding: 0px;
  justify-content: center;
}

.pricing li {
  border: 2px solid var(--color-1-shadow);
  border-radius: 6px;
  margin: 0.25em;
}

.pricing .price-card {
  background-color: var(--color-1-trans);
}

.pricing li:nth-child(2) {
  border: 4px solid #f56a6a;
}

.pricing li:hover {
  border-color: var(--color-1);
}

.pricing li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1em;
  max-width: 300px;
  text-decoration: none;
  height: 100%;
  justify-content: space-between;
}

.pricing li a .price {
  font-weight: bold;
  font-size: 1.5em;
}

.pricing li a .price-name {
  font-weight: bold;
  font-size: 1.25em;
}

.pricing li a .price-description {
  margin: 1em 0px;
  flex-grow: 1;
}

.pricing button {
  margin-top: 1em;
  color: white;
  background-color: #77B255;
  border-bottom: 4px solid #5D8C41;
}

@media screen and (max-width: 675px), (max-height: 770px) {
  .pricing ul {
    flex-direction: column;
  }

  .pricing .price-card {
    text-align: center;
  }

  .pricing li a {
    margin: auto;
  }

  .pricing button {
    font-size: 0.75em;
  }
}
