.sigmaweb-card-container-bottom {
  position: relative;
  overflow: hidden;
}

.sigmaweb-front-content-bottom p {
  opacity: 1;
  background: linear-gradient(-45deg, #f89b29 0%, #ff0f7b 100% );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1)
}

.sigmaweb-front-content-bottom {
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.sigmaweb-card-bottom:hover .sigmaweb-front-content-bottom {
  transform: translatey(20%);
}

.sigmaweb-card-bottom:hover .sigmaweb-front-content-bottom p {
  opacity: 0;
}


.sigmaweb-content-bottom {
  height: 100% !important;
  pointer-events: none;
  transform: translatey(-96%);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.sigmaweb-card-bottom:hover .sigmaweb-content-bottom {
  transform: translateY(0);
}

