/* From Uiverse.io by Smit-Prajapati */ 
.card_b {
    position: relative;
    display: grid;
    transition: all 0.5s;
    border-radius: 50px;
  }
.card_b::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(106.35deg, #5433FF 2.64%, #20BDFF 49.71%, #A5FECB 96.25%);
  border-radius:50px;
  }
  .card_b::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(106.35deg, #5433FF 2.64%, #20BDFF 49.71%, #A5FECB 96.25%);
    filter: blur(5px);
    border-radius: 50px;
  }

  .card_b .card_shadow {
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background-color: rgba(15,19,27,1);
    z-index: 2;
    border-radius: 49px;
  }
  
  .border_b {
    position: absolute;
    inset: 0px;
    border: 2px solid #bd9f67;
    border-radius: 45px;
    opacity: 0;
    transform: scale(1.02);
    transition: all 0.3s linear;
    z-index:10
  }
  .content_b{
    position: relative;
    z-index: 10;
  }
  
  .bottom_text {
    position: absolute;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    font-size: 14px;
    text-transform: uppercase;
    padding: 0px 5px 0px 8px;
    color: #bd9f67;
    background: #243137;
    opacity: 0;
    letter-spacing: 7px;
    transition: all 0.2s linear;
    z-index: 10;
  }
  
  .content_b {
    transition: all 0.2s linear;
  }
  
  .card_b:hover {
    background: rgba(96, 96, 96, 0.056);
    transform: scale(1.01);
  }
  
  .card_b:hover .border_b {
    inset: 5px;
    opacity: 1;
    transform: rotate(0);
  }
  
  .card_b:hover .bottom_text {
    
    letter-spacing: 3px;
    opacity: 1;
    transform: translateX(-50%);
  }
  
  @keyframes opacity {
    0% {
      border-right: 1px solid transparent;
    }
  
    30% {
      border-right: 1px solid #bd9f67;
    }
  
    80% {
      border-right: 1px solid #bd9f67;
    }
  
    100% {
      border-right: 1px solid transparent;
    }
  }
  

  @media screen and (max-width:480px) {
    
    .card_b {
      border-radius: 25px;
    }

  .card_b::before {
    border-radius:25px;
    }
    .card_b::after {
    
      filter: blur(5px);
      border-radius:25px;
    }
  .border_b {
    border-radius: 24px;
  }
  .bottom_text {
    top: -1px;
    font-size: 11px;
    text-transform: uppercase;
    padding: 0px 5px 0px 8px;
  }
    .card_b .card_shadow {
      position: absolute;
      top: 2px;
      left: 2px;
      right: 2px;
      bottom: 2px;
      background-color: rgba(15,19,27,1);
      z-index: 2;
      border-radius: 24px;
    }
    
    }