.card1 {
  position: relative;
  width: 250px;
  height: 300px;
  background: #5d3fd3;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px; 
}

.card-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 45px;
}

.card1 img {
position: absolute;
z-index: 3;


}

.card1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(184,77,255,1) 0%, rgba(93,63,211,1) 35%, rgba(0,212,255,1) 100%) no-repeat;
}

.card1::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(184,77,255,1) 0%, rgba(93,63,211,1) 35%, rgba(0,212,255,1) 100%) no-repeat;
  filter: blur(20px);
}

.card1 b {
  position: absolute;
  inset: 6px;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}





.card1 .content {
  position: absolute;
  z-index: 3;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0);
  transition: 0.5s;
}

.card1:hover .content {
  transform: scale(1);
  bottom: 25px;
}

.content .title {
  position: relative;
  color: #fff;
  font-weight: 600;
  line-height: 1em;
  font-size: 0.8em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 270px;
}

.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 .fa-brands {
  width: 14px;
}

.sci li .fa-facebook {
  width: 10px;
}

.sci li a {
  position: relative;
  text-decoration: none;
  color: rgb(0, 0, 0);
  background: rgb(255, 255, 255);
  fill: currentColor;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: 0.5s;
  margin-bottom: -40px;
}

.sci li a:hover {
  fill: currentColor;
  color: rgba(255, 255, 255, 1);
}