.cards {
    margin-top: 150px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 150px;
    row-gap: 80px;
    justify-content: center;
    align-items: center;
  }
  
  .card {
    width: 300px;
    height: 420px;
    background: var(--selection-cards-first-color);
    padding: 20px;
    border-radius: 25px;
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: space-evenly;
    border: 1px solid var(--selection-cards-first-color-border);
    transition: all 0.5s;
  }
  
  .card:hover {
    /* cursor: pointer; */
    scale: 110%;
    transition: all 0.5s;
    box-shadow: 0px 10px 100px var(--selection-cards-first-color-shadow);
  }
  
  .sec-card {
    background: var(--selection-cards-second-color);
    border: 1px solid var(--selection-cards-second-color-border);
  }
  
  .sec-card:hover {
    box-shadow: 0px 10px 100px var(--selection-cards-second-color-shadow);
  }
  
  .card .icon {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    box-shadow: inset 0 0 10px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .card .icon img {
    width: 70px;
    /* filter: invert(90%); */
  }

  @media only screen and (max-width: 1100px) {
    .cards {
        column-gap: 250px;
        row-gap: 80px;
      }
  }

  @media only screen and (max-width: 600px) {

    .cards {
        /* border: 1px solid red; */
        margin: 50px 20px;
        column-gap: 250px;
        row-gap: 40px;
      }
    
      .cards .card {
        width: 300px;
        height: 420px;
    
      }
    
      .card .icon {
        width: 100px;
        height: 100px;
      }
    
      .card .icon img {
        width: 70%;
        height: 70%;
      }
    
      .card h1 {
        font-size: 25px;
      }
    
      .card p {
        font-size: 15px;
      }

  }