.cards_wrapper {
  margin: 2rem 0;
  height: fit-content;
  padding: 0;
  justify-content: space-evenly;
}
.card {
  width: 15%;
  margin-right: 5%;
  height: 11rem;
  display: block;
  position: relative;
}
.title {
  font-family: Gilroy-bold;
  font-size: 1.2rem;
}

.icon {
  height: 11rem;
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.5;
}

.icon img {
  margin-left: 0;
}

.inner_text {
  position: absolute;
  left: 0rem;
  top: 0;
  height: 5.7rem;
  width: 10rem;
  z-index: 1;
}
.inner_text * {
  text-align: left;
}

@media only screen and (max-width: 600px) {
  .cards_wrapper {
    flex-wrap: wrap;
    margin-top: 3rem;
    margin-bottom: 0;
  }
  .card {
    width: 45%;
    height: auto;
    margin-bottom: 3rem;
  }
  .inner_text {
    position: static;
    height: auto;
    width: auto;
  }
  .icon {
    z-index: -1;
    width: 85%;
    height: 100%;
    top: 0;
  }
  .icon img {
    height: 100%;
    width: auto;
  }
  .title {
    font-size: inherit;
  }
}
