.btn_berlangganan {
    text-decoration: none;
    position: relative;
    border: none;
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    color: #fff;
    width: 14em;
    height: 3em;
    line-height: 2em;
    text-align: center;
    background: linear-gradient(90deg, #a36801 , #9e0059, #b84e03, #03071e);
    background-size: 300%;
    border-radius: 30px;
    z-index: 1;
    
  }
  
  .btn_berlangganan:hover {
    animation: ani 8s linear infinite;
    border: none;
  }
  
  @keyframes ani {
    0% {
      background-position: 0%;
    }
  
    100% {
      background-position: 400%;
    }
  }
  
  .btn_berlangganan:before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    z-index: -1;
    background: linear-gradient(90deg, #ffa505 , #9e0059, #f26b0b, #03071e);
    background-size: 400%;
    border-radius: 35px;
    transition: 1s;
  }
  
  .btn_berlangganan:hover::before {
    filter: blur(20px);
  }
  
  .btn_berlangganan:active {
    background: linear-gradient(32deg, #ffa505 , #9e0059, #f26b0b, #03071e);
  }


  .btn_wilayah {
    text-decoration: none;
    position: relative;
    border: none;
    font-size: 18px;
    font-family: inherit;
    cursor: pointer;
    color: #fff;
    width: 20em;
    height: 3em;
    line-height: 2em;
    text-align: center;
    background: linear-gradient(90deg, #f26b0b , #9e0059, #f26b0b, #03071e);
    background-size: 300%;
    border-radius: 30px;
    z-index: 1;
    
  }
  
  .btn_wilayah:hover {
    animation: ani 8s linear infinite;
    border: none;
  }
  
  @keyframes ani {
    0% {
      background-position: 0%;
    }
  
    100% {
      background-position: 400%;
    }
  }
  
  .btn_wilayah:before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    z-index: -1;
    background: linear-gradient(90deg, #f26b0b , #9e0059, #f26b0b, #03071e);
    background-size: 400%;
    border-radius: 35px;
    transition: 1s;
  }
  
  .btn_wilayah:hover::before {
    filter: blur(20px);
  }
  
  .btn_wilayah:active {
    background: linear-gradient(32deg, #f26b0b , #9e0059, #f26b0b, #03071e);
  }


  .card {
  
    z-index: 1111;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 20px 20px 60px #bebebe, -20px -20px 60px #ffffff;
    ;
  }
  
  .bg {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(24px);
    border-radius: 10px;
    overflow: hidden;
    outline: 2px solid white;
  }
  
  .card:hover .blob {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: 87%;
    height: 87%;
    border-radius: 50%;
    background-color: #ffffff;
    opacity: 1;
    filter: blur(12px);
    animation: blob-bounce 8s infinite ease;
  }
  
  @keyframes blob-bounce {
    0% {
      transform: translate(-100%, -100%) translate3d(0, 0, 0);
    }
  
    25% {
      transform: translate(-100%, -100%) translate3d(100%, 0, 0);
    }
  
    50% {
      transform: translate(-100%, -100%) translate3d(100%, 100%, 0);
    }
  
    75% {
      transform: translate(-100%, -100%) translate3d(0, 100%, 0);
    }
  
    100% {
      transform: translate(-100%, -100%) translate3d(0, 0, 0);
    }
  }
  
  .card:hover {
    border-color: #008bf8;
    box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.25);
   }


.btn-blue {
    background-color: #121c37 ;
    color: white;
}

.btn-blue:hover{
    background-color: #151b2c ;
    color: white;
    box-shadow: 1px 1px #000000;
}