.services-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, auto));
  gap: 1.5rem;
}
.ser-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--container-color);
  border-radius: 0.3rem;
  padding: 15px;
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.099);
  border: 1px solid #808080ab;
  /* border: 2px solid var(--main-color); */
}
.ser-box:hover {
  transform: scale(1.05);
  transition: 0.4s all ease-in-out;
}
.ser-box .bx {
  font-size: 1.7rem;
  padding: 10px;
  background: var(--main-color);
  border-radius: 0.3rem;
}
.ser-box-title {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin: 1.3rem 0 0.5rem;
  color: var(--text-color-primary);
}
.ser-box p {
  font-size: 0.938rem;
  color: var(--text-color-secondary);
}
#colored-button {
  color: #fff !important;
}
.economic {
  /* border: 1px solid red; */
  display: flex;
  flex-direction: column;
  padding-top: 2rem;
  gap: 1rem;
}
.economic-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(60px, auto));
  gap: 1.5rem;
}
.heading3 {
  margin: 0;
}
.eco-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 0.3rem;
  padding: 15px;
  /* border: 2px solid var(--main-color); */
}
.eco-box img {
  width: 60px;
  height: 60px;
}
.eco-box:hover {
  transform: scale(1.05);
  transition: 0.4s all ease-in-out;
}
.eco-text {
  text-align: center;
  font-weight: 500;
  gap: 2rem;
  display: flex;
  flex-direction: column;
  color: var(--text-color-primary);
}
.eco-text .eco-price {
  font-weight: 600;
  color: var(--main-color);
}
.eco-price-div {
  display: flex;
  flex-direction: row;
  height: 150px;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.eco-price-div .eco-cifre {
  height: 100%;
}
.eco-price-div .eco-real {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 8rem;
  font-weight: 700;
  color: var(--main-color);
}
.eco-price-div .eco-month {
  height: 100%;
  display: flex;
  align-items: self-end;
  justify-content: center;
}
.np {
  color: red;
}
.ec {
  color: green;
}