/* PRECIOS */
section#routes {
  margin-top: 5rem;
  min-height: 60vh;
  padding: 2rem 2%;
  padding-top: 4rem;
  padding-bottom: 2rem;
  text-transform: capitalize;
}


.routes .heading {
  text-align: center;
  text-transform: uppercase;
  font-size: 3.5rem;
  font-weight: 500;
  padding: 0 1rem;
  color: transparent;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
}


.routes .box-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.routes .box-container .box {
  flex: 1 1 30rem;
  margin: 1rem;
  padding: 0.1rem;
  background: #fff;
  border: .1rem solid rgba(0, 0, 0, .2);
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
  border-radius: .5rem;
  text-align: center;
  padding-bottom: 1rem;
  min-height:36rem;
}

.routes .box-container .box:hover {
  border: .2rem solid var(--darkblue);
}

.routes .box-container .box .title {
  color: var(--purple);
  font-size: 2rem;
  padding-top: 1.5rem;
}

.routes .box-container .box .price {
  font-size: 2rem;
  color: var(--darkblue);
  padding: 0.1rem 0;
  font-weight: 600;
}

.routes .box-container .box ul {
  padding: 1rem 0;
  list-style: none;
}

.routes .box-container .box ul li {
  font-size: 1.7rem;
  color: #666;
  padding: .5rem 0;
}

.routes .box-container .box ul li p {
  font-size: 1.3rem;
  color: #2b2a2a;
  padding: .5rem 0;
}

.routes .box-container .box ul li .fa-check {
  color: lightgreen;
}

.routes .box-container .box ul li .fa-times {
  color: tomato;
}


.parada-li {
  font-size: 1.1rem !important;
}

div#routes-list{
  display: flex;
  align-items: flex-start;
}

.box-long{
  height: fit-content !important;
}