/* From Uiverse.io by ElSombrero2 */ 
.cards01{
    overflow: visible;
    width: 240px;
    height: 310px;
  }
  
  .cards01-container{
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .cards01 .content {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 300ms;
    box-shadow: 0px 0px 2px 2px rgb(126, 31, 204);
    border-radius: 5px;
  }
  
  .cards01 .front, .back {
    background-color: #000000;
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 5px;
    overflow: hidden;
  }
  
  .cards01 .back {
    width: 100%;
    height: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  
  .cards01 .back::before {
    position: absolute;
    content: ' ';
    display: block;
    width: 160px;
    height: 160%;
    background: linear-gradient(90deg, transparent, rgb(126, 31, 204), rgb(126, 31, 204), rgb(126, 31, 204), rgb(126, 31, 204), transparent);
    animation: rotation_481 5000ms infinite linear;
  }
  
  .cards01 .back-content {
    font-size: 12px;
    position: absolute;
    width: 99%;
    height: 99%;
    background-color: #000000;
    border-radius: 5px;
    color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }
  
  .cards01:hover .content {
    transform: rotateY(180deg);
  }
  
  @keyframes rotation_481 {
    0% {
      transform: rotateZ(0deg);
    }
  
    0% {
      transform: rotateZ(360deg);
    }
  }
  
  .cards01 .front {
    transform: rotateY(180deg);
    color: rgb(255, 255, 255);
  }
  
  .cards01 .front .front-content {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .cards01 .front-content .badge {
    background-color: #00000055;
    padding: 2px 10px;
    border-radius: 10px;
    backdrop-filter: blur(2px);
    width: fit-content;
  }
  
  .cards01 .description {
    font-size: 14px;
    box-shadow: 0px 0px 10px 5px #00000088;
    width: 100%;
    padding: 10px;
    background-color: #00000099;
    backdrop-filter: blur(5px);
    border-radius: 5px;
  }
  
  .cards01 .title {
    font-size: 15px;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
  }
  
  .cards01 .title p {
    width: 50%;
  }
  
  .cards01-footer {
    color: #ffffff88;
    margin-top: 5px;
    font-size: 8px;
  }


  .cards01 .front .img {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cards01 .front .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}


  /* .cards01 .front .img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  } */
  
  .cards01 .circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: #ffbb66;
    position: relative;
    filter: blur(15px);
    animation: floating 2600ms infinite linear;
  }
  
  .cards01 #bottom {
    background-color: #ff8866;
    left: 50px;
    top: 0px;
    width: 150px;
    height: 150px;
    animation-delay: -800ms;
  }
  
  .cards01 #right {
    background-color: #ff2233;
    left: 160px;
    top: -80px;
    width: 30px;
    height: 30px;
    animation-delay: -1800ms;
  }
  
  @keyframes floating {
    0% {
      transform: translateY(0px);
    }
  
    50% {
      transform: translateY(10px);
    }
  
    100% {
      transform: translateY(0px);
    }
  }