.card {
    border-radius: 20px;
}

.cards-tt {
    margin: 10px 25px 10px 10px;
}

.card-body {
    background-color: #ffff;
    border: none;
}

.tag {
    background: #cccccc;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
    font-family: 'Poppins';
    color: #fff;
    padding: 2px 10px;
    cursor: pointer;
  }
  .tag-grey {
    background-color: #f0f0f0;
  }

  .tag-pink {
    background-color: #cd5b9f;
  }

  .tag-green {
    background-color: #42d05b;
  }

  .tag-alta {
    background-color: #ce2e2e;
  }


  .card-title {
    font-size: 18px;
    font-weight: 800;
    color: #222222;
    text-align: left;
    font-family: 'Barlow', sans-serif;
}

.card-text {

    color: #222222;
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    text-align: left;
}

  

  .card-first {
    top: 0px;
    z-index: 0;
    overflow: hidden;
    border: 1px solid #e3e2e2;
    cursor: pointer;
    &:hover {
      transition: all 0.2s ease-out;
      box-shadow: 0px 4px 8px rgba(38, 38, 38, 0.2);
      top: -4px;
      border: 1px solid #cccccc;
      background-color: white;
    }
  
    &:before {
      content: "";
      position: absolute;
      z-index: -1;
      top: -16px;
      right: -16px;
      background: #00838d;
      height: 32px;
      width: 32px;
      border-radius: 32px;
      transform: scale(2);
      transform-origin: 50% 50%;
      transition: transform 0.15s ease-out;
    }
  
    &:hover:before {
      transform: scale(2.15);
    }
  }

  .decoration {
    text-decoration: none !important;
    color: #3F4249;
    
}
.decoration:hover {
    text-decoration: none !important;
    color: #6f727a;
    
}
