/* Base button styling for your site */
.btn-display {
    padding: 16px 48px!important;
    /* border-radius: 999px; */
    font-weight: 600;
    font-size: 18px;
    line-height: 1;
    transition: 0.25s ease;
  }
  
  /* Filled gradient button */
  .btn-brand {
    border: 1px solid #13d1b7;
    color: #06110f;
    background: linear-gradient(180deg, #00f0a8, #00bfa6);
    /* transition: all 0.3s ease; */
  }
  
  .btn-display:hover,
  .btn-display:focus {
    color: #06110f;
    filter: brightness(1.08);
    transform: translateY(-4px);
  }
  
  /* Outline button */
  .btn-brand-outline {
    color: #fff;
    background: transparent;
    border: 1px solid #fff;
  }
  
  .btn-brand-outline:hover,
  .btn-brand-outline:focus {
    color: #06110f;
    background: #fff;
  }



  .btn.glow:hover{
    box-shadow: 0px 0px 21px #585858;
  }

  .btn-brand.glow:hover{
    box-shadow: 0px 0px 21px #1e6451;
    border-color:#0dc6ad;
  }