<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.card-container {
  position: relative;
  background: rgb(255, 255, 255);
  background: linear-gradient(to right,#c2ebf5,navy);
 
  border-radius: 17px;
  height: 340px;
  transition: all 0.2s ease-out;
  overflow: hidden;
}

.hidden{
  visibility: hidden;
}

.plus-icon {
  position: absolute;
  top: 0;
  right: 0;
  padding: 30px;
  font-size: 20px;
  color: gray;
}

.card-icon img {
  max-width: 100%;
  max-height: 100%;
}
.card-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
}

.preview-text {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  padding: 30px;
  text-align: center;
  font-size: 20px;
  color: #fff;
}

.card-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 220px;
  height: 220px;
  border-radius: 100%;
  background: #fff;
  transition: 0.3s;
}

.card-container:hover {
  background: rgb(255, 255, 255);
  background: linear-gradient(to right,#c2ebf5,navy);

  color: #fff;
  transition: all 0.2s ease-out;
}

.card-container:hover .preview-text,
.card-container:hover .plus-icon {
  color: #fff;
}

.card-container:hover .card-icon {
  display: none;
}

.card-container:hover .card-circle {
  transform: translate(-50%, -50%) scale(1);
}

.text-wrapper {
  position: absolute;
  top: 50%;
  left: -20%;
  transform: translate(0, -50%);
  font-size: 40px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: 0.1s ease-out;
  animation: float-text 40s linear infinite;
  animation-delay: 0.3s;
  z-index: 2;
  /* border-top: 4px solid #fff;
  border-bottom: 4px solid #fff; */
  opacity: 0;
  padding: 20px 0;
  mix-blend-mode: difference;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 50px;
  margin: 0px 50px;
  margin-bottom: 100px;
}

@media (max-width: 900px) {
  .hidden{
    visibility: hidden;
    display: none;
  }
  .grid {
    grid-template-columns: 1fr 1fr;
  }

  .card-circle {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 700px) {
  .hidden{
    visibility: hidden;
    display: none;
  }
  .grid {
    grid-template-columns: 1fr;
  }

  .card-circle {
    width: 100px;
    height: 100px;
  }
}

@keyframes float-text {
  0% {
    left: -20%;
  }

  50% {
    left: -100%;
  }

  100% {
    left: -20%;
  }
}

.card-container:hover .text-wrapper {
  opacity: 1;
}
</pre></body></html>