.quote-btn {
    position: relative;
    display: inline-block;
    padding: 20px 38px;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    background: #121212;
    border-radius: 14px;
    z-index: 0;
    transition: transform 0.2s ease;
    margin: 15px 15px 0 0;
    width: 180px;
    left: -120px;
    margin-top: 50px;
  }
  
  /* if u want glowing border then try 3 things
  1. all colours.
  2. blur Gradient
  3. shadow all colors/fade
  */




  .quote-btn::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    right: 50px;
    background: linear-gradient(
      90deg,
      #ff4d6d,
      #ff9f1c,
      #5f9cff,
      #b5179e,
      #ff4d6d
    );
    background-size: 300%;
    animation: glowMove 2s linear infinite;
    filter: blur(16px);
    opacity: 0.6;
    z-index: -1;
  }
  
  /* mask center */
  .quote-btn::after {
    content: "";
    position: absolute;
    inset: 4px;
    background: #121212;
    border-radius: inherit;
    z-index: -1;
  }
  
  /* subtle hover polish */
  .quote-btn:hover {
    transform: translateY(-2px);
    
    /* all this does is move it a bit up like an anim for modern divs and btns */
  }
  
  .quote-btn:hover::before {
    opacity: 0.85;
  }
  
  @keyframes glowMove {
    0%   { background-position:   0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position:   0% 50%; }
  }


  @media screen and (max-width: 600px){
.quote-btn {
    position: absolute;
    top: 35px;
    right: 40px;
    /* display: inline-block; */
    padding: 10px 18px;
    font-weight: 200;
    margin: 5px 5px 0 0;
    width: 100px;
    /* left: -120px; */
    margin-top: 0px;
  }
  
  /* if u want glowing border then try 3 things
  1. all colours.
  2. blur Gradient
  3. shadow all colors/fade
  */




  .quote-btn::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    right: 10px;
    background: linear-gradient(
      90deg,
      #ff4d6d,
      #ff9f1c,
      #5f9cff,
      #b5179e,
      #ff4d6d
    );
    background-size: 300%;
    animation: glowMove 2s linear infinite;
    filter: blur(16px);
    opacity: 0.6;
    z-index: -1;
  }
  
  /* mask center */
  .quote-btn::after {
    content: "";
    position: absolute;
    inset: 4px;
    background: #121212;
    border-radius: inherit;
    z-index: -1;
  }
  
  /* subtle hover polish */
  .quote-btn:hover {
    transform: translateY(-2px);
    
    /* all this does is move it a bit up like an anim for modern divs and btns */
  }
  

  
  }
