.info {
    position: relative;
    width: 190px;
    height: 254px;
    background-color: #003049;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 12px;
    gap: 12px;
    border-radius: 8px;
    cursor: pointer;
  }

  .info::before {
    content: '';
    position: absolute;
    inset: 0;
    left: -5px;
    margin: auto;
    width: 200px;
    height: 264px;
    border-radius: 10px;
  background: linear-gradient(-45deg, #e81cff 0%, #40c9ff 100% );
    z-index: -10;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .info::after {
    content: "";
    z-index: -1;
    position: absolute;
    inset: 0;
  background: linear-gradient(-45deg, #fc00ff 0%, #00dbde 100% );
    transform: translate3d(0, 0, 0) scale(0.95);
    filter: blur(20px);
  }

  .titr {
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 700;
  }

  .info p:not(.heading) {
    font-size: 14px;
  }

  .info p:last-child {
    color: #c1121f;
    font-weight: 600;
  }

  .info:hover::after {
    filter: blur(30px);
  }

  .info:hover::before {
    transform: rotate(-90deg) scaleX(1.34) scaleY(0.77);
  }

