.card {
    position: relative;
    width: 400px;
    height: 400px;
    background: #822230;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 30px;
  }

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

    .card {
      position: relative;
      width: 300px;
      height: 300px;
      background: #822230;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-left: 30px;
    }

  }

  @media screen and (min-width: 766px) and (max-width: 1200px) {
    .card {
      position: relative;
      width: 250px;
      height: 250px;
      background: #822230;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-left: 30px;
    }
  }

  
  .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(315deg,#03a9f4,#551565);
  }
  
  .card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(315deg,#03a9f4,#551565);
    filter: blur(20px);
  }
  
  .card b {
    position: absolute;
    inset: 6px;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
  }
  
  .card img {
    position: absolute;
    z-index: 3;
    scale: 0.8;
    transition: 0.5s;
  }
  
  .card:hover .blur-img {
    scale: 0.7;
    opacity: 0.2;
  }
  
  .card .content {
    position: absolute;
    z-index: 3;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(0);
    transition: 0.5s;
  }
  
  .card:hover .content {
    transform: scale(1);
    bottom: 25px;
  }
  
  .content .title {
    position: relative;
    color: #fff;
    font-weight: 500;
    line-height: 1em;
    font-size: 1em;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
  }
  
  .content .title span {
    font-weight: 300;
    font-size: 0.70em;
  }
  
  .content .sci {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
  }
  
  .sci li {
    list-style: none;
  }
  
  .sci li a {
    position: relative;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.2);
    fill: currentColor;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    transition: 0.5s;
    float: left;
  }
  
  .sci li a:hover {
    fill: currentColor;
    color: rgba(255, 255, 255, 1);
  }
  