.task-meta-container .q-img {
  border-radius: 20px;
}
.task-meta-container .q-tab__label {
  font-size: 16px;
  font-weight: 500;
}
.task-meta-container .sub-tab .q-tab__label {
  font-size: 14px;
  font-weight: 300;
}
.img-c {
  padding: 10px;
}
.my-card {
  min-height: 430px;
  width: 300px;
  transition: transform ease 0.3s, box-shadow ease 0.3s;
}
.task-caption {
  visibility: hidden;
  transform: translateY(100%);
  transition: transform ease 0.3s;
}
.my-card:hover {
  transform: scale(1.1);
  cursor: pointer;
  box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.my-card:hover .task-caption {
  visibility: visible;
  transform: translateY(0%);
}
.task-meta-container {
  padding: 30px 15px;
  overflow: hidden;
}
.task-link {
  text-decoration: none;
  color: #000;
  outline: none;
}
.task-link:link, .task-link:visited, .task-link:hover, .task-link:active, .task-link:focus {
  text-decoration: none;
  color: #000;
  outline: none;
}
