@keyframes colorful {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}

.card {
  position: relative;
  width: 275px;
  height: 350px;
  margin: 1em;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border: solid 2px transparent;
  background-clip: padding-box;
  box-shadow: 0px 10px 10px rgba(46, 54, 68, 0.03);
  cursor: pointer;
}
.card .content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* opacity: 0.5; */
  transition: 0.5s;
}
.card .content .img {
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 10px solid rgba(0, 0, 0, 0.25);
}
.card .content .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card .content .cardContent h3 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  margin: 20px 0 10px;
  line-height: 1.1em;
}
.card .content .cardContent h3 span {
  font-size: 12px;
  font-weight: 300;
  text-transform: initial;
}
.card .sci {
  position: absolute;
  bottom: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  text-align: center;
}
.card .sci p {
  margin: 0 10px;
  transform: translateY(40px);
  opacity: 0;
  transition: 0.5s;
  transition-delay: calc(0.1s * var(--i));
  color: white;
  text-transform: uppercase;
}
.card .sci p a {
  font-size: 24px;
}
.card:hover .content {
  opacity: 1;
  transform: translateY(-20px);
}
.card:hover .sci p {
  transform: translateY(0px);
  opacity: 1;
}


/* Custom Card 1 */
.custom-card-1 {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 2rem;
  color: white;
  transition: transform .2s ease-in-out;
}

.custom-card-1:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

/* Card Logo (centered and pops up on hover) */
.card-bg-logo {
  position: absolute;
  bottom: 0px;
  width: 100%;
  display: flex;
  justify-content: center;
  transition: all .8s ease-in-out;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  left: 50%;
  transform: translateX(-50%);
}

.custom-card-1:hover .card-bg-logo {
  bottom: -40px;
  opacity: 1;
}

.card-bg-logo img {
  max-width: 40px;
  height: auto;
  transform: scale(1);
  transition: transform .3s ease-in-out;
}

.card-bg-blob {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  z-index: 0;
  opacity: 0.15;
  pointer-events: none;
}

.card-bg-blob svg {
  width: 100%;
  height: 100%;
}

.card-bg-blob path {
  fill: #ffffff0a;
}


