.main-form-cards {
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
/*     bottom: -19%; */
	bottom: 0;
    left: 0;
    width: 100%;
  }
  

  .main-form-card {
    width: 310px;
    background-color: #fff;
    border-radius: 5px;
    padding: 20px;
    color: #000;
    box-shadow: 0 0 10px rgb(0 0 0 / 20%);
    transition: box-shadow 0.15s;
    margin: 12px;
  }
  .main-form-card__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
/*     margin-bottom: 26px; */
    margin-bottom: 0px;
    font-size: 24px;
  }
  .main-form-card__row .material-icons {
    font-size: 32px;
  }
  .main-form-card__txt {
    margin-bottom: 6px;
    font-size: 12px;
    color: #6f6f6f;
  }
  .main-form-card__numb {
    font-size: 18px;
  }
  .main-form-card:hover {
    color: #e31e25;
    box-shadow: 0 0 10px rgb(0 0 0 / 30%);
  }
  
  @media only screen and (max-width: 800px) {
    .main-form-card {
      width: 45%;
      margin-top: 16px;
      padding: 16px 8px 16px 16px;
    }
    .main-form-card__row {
/*       margin-bottom: 18px; */
		margin-bottom: 0;
      font-size: 16px;
    }
    .main-form-card__row .material-icons {
      font-size: 22px;
    }
    .main-form-card__numb {
      font-size: 16px;
    }
    

  }

  @media only screen and (max-width: 1000px) {
    .main-form-cards {
        flex-wrap: wrap;;
        position: relative;    }

    .main-form-card {
width: 44%;
     }
     .main-form {
         margin-bottom: 0;
     }
  }

  @media only screen and (max-width: 500px) {
    .main-form-card {
        width: 40%!important;

             }
  }