.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.card {
  /* margin: 20px;
  padding: 10px; */
  width: 100%;
  min-height: 150px;
  display: grid;
  /* grid-template-rows: 20px 50px 1fr 50px; */
  border-radius: 3px;
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.2s;
}

.cardWithoutHeight {
  /* margin: 20px;
  padding: 10px; */
  width: 100%;
  display: grid;
  /* grid-template-rows: 20px 50px 1fr 50px; */
  border-radius: 3px;
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.2s;
  background-image: linear-gradient(110deg, #3736369c, #222 20%, #64626221 3%, #6f6f6f21 80%, #222 80%, #3736369c);
}

.card:hover {
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.4);
  transform: scale(1.01);
}

.card__link,
.card__exit,
.card__icon {
  position: relative;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
}

.card__link::after {
  position: absolute;
  top: 25px;
  left: 0;
  content: '';
  width: 0%;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.6);
  transition: all 0.5s;
}

.card__link:hover::after {
  width: 100%;
}

.card__exit {
  grid-row: 1/2;
  justify-self: end;
}

.card__icon {
  grid-row: 2/6;
  font-size: 30px;
}

.card__iconHeader {
  grid-row: 4/6;
  font-size: 30px;
}

.card__title {
  grid-row: 3/4;
  font-weight: 400;
  color: #ffffff;
}

.card__apply {
  grid-row: 4/5;
  align-self: center;
}

.card1 {
  background: radial-gradient(#242424, #0f0f0f);
  border: 1px solid #2d2d2d;
}

.cardBonus {
  background: linear-gradient(110deg, #3736369c, #222 20%, #64626221 3%, #6f6f6f21 80%, #222 80%, #3736369c);
  border: 1px solid #2d2d2d;
  height: 270px !important;
}
