 .elem-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-family: 'Roboto',Arial,sans-serif;
    font-weight: 300;
    color: #000;
    background-color: #EFEFEF;
    padding: 30px 0;
  }
  
  .elem {
    box-sizing: border-box;
    position: relative;
    max-width: 40%;
    min-width: 313px;
    background-color: #fff;
    margin: 10px;
    padding: 10px;
    padding-bottom: 60px;
  }
  
  #elem-1, #elem-2, #elem-3 {
      max-width: 30%;
  }
  
  .elem__text {
      padding: 10px 0;
  }
  
  .elem__title {
    margin: 10px 0;
    min-height: 70px;
  }
  .elem__desc {
    margin: 10px 0;
    min-height: 110px;
  }
  
  #elem-4 .elem__title, #elem-5 .elem__title {
      min-height: 40px;
  }
  
  .elem__link {
    text-decoration: none;
    text-align: center;
    line-height: 50px;
    font-weight: bold;
    position: absolute;
    bottom: 0;
    color: #000 !important;
    background-color: #e2f0d9;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    width: 150px;
    height: 50px;
    border: 0;
    border-radius: 30px;
    margin-bottom: 10px;
  }
  
 .linethrough {
  position: relative;
}
.linethrough::after {
  border-bottom: 0.125em solid rgba(255, 0, 0, 0.5);
  content: "";
  left: 0;
  line-height: 1em;
  margin-top: calc(0.125em / 2 * -1);
  position: absolute;
  right: 0;
  top: 50%;
}

@media (max-width: 1000px) {
    #elem-1, #elem-2, #elem-3 {
        max-width: 40%;
    }
    #elem-5 {
        width: 100%;
        max-width: unset;
        min-width: unset;
        margin-right: 20px;
        margin-left: 20px;
    }
    #elem-3 .elem__title {
        min-height: 80px;
    }
    #elem-4 .elem__title {
        min-height: 70px;
    }
    #elem-5 .elem__title {
        min-height: unset;
    }
    #elem-5 .elem__desc {
        min-height: unset;
    }
    .elem__desc {
        min-height: 140px;
    }
}

@media (max-width: 680px) {
    .elem {
        width: 100%;
        max-width: unset;
        min-width: unset;
        margin-right: 20px;
        margin-left: 20px;
    }
    .elem__title {
        min-height: unset;
    }
    .elem__desc {
        min-height: unset;
        margin-bottom: 20px;
    }
    #elem-1, #elem-2, #elem-3 {
        max-width: unset;
    }
    #elem-3 .elem__title, #elem-4 .elem__title {
        min-height: unset;
    }
}