
.cards{
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.row{
  display: flex;
  flex-direction: row;
  gap: 50px;
  flex-wrap: wrap;
}

.card.purple{
  background-color: var(--purple-div-color);
}

.card{
  max-width: 442px;
  width: 100%;
  height: 260px;
  background-color: var(--div-color);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  padding: 30px 100px 30px 30px;
  justify-content: space-between;
}

.icon{
  height: 1.2rem;
  width: 1.4rem;
}

.action{
  font-size:22px;
  font-weight:600;
}

.action.purple{
  color: var(--input-border-color);
}
.action.white{
  color: white;
}

.description{
  font-size:20px;
  font-weight:normal;
}
.description.white{
  color: white;
}

.buttonDesign{
  width: 150px;
  height: 35px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none!important;
}

.buttonDesign.white{
  background-color: white;
  color: var(--purple-div-color);
}
/* Resolución tableta horizontal */
@media all and (max-width: 1252px) and (min-width: 1140px) {

  .row {
    gap: 40px;
  }

  .action {
    font-size: 19.4px;
  }

  .description {
    font-size: 17.6px;
  }

  .icon {
    height: 1.2rem;
  }

  .buttonDesign {
    width: 132px;
    height: 30.8px;
    font-size: 14px;
  }

}

@media all and (max-width: 1140px) and (min-width: 975px) {

  .row {
    gap: 40px;
  }

  .cards {
    gap: 40px;
  }

  .card {
    width: 315px;
    height: 218px;
    padding: 25px;
  }

  .action {
    font-size: 19.4px;
  }

  .description {
    font-size: 17.6px;
  }

  .icon {
    height: 1.2rem;
  }

  .buttonDesign {
    width: 132px;
    height: 30.8px;
    font-size: 14px;
  }

}