:root {
    --troyco-red: #ff0008;
    --troyco-red-hover:#ff3333;
    --troyco-red-active:#cc0006;
  
  }



.full-btn,
.hollow-btn {
    font-family: "Inter", sans-serif; /* Use your main font */
    font-weight: 600; /* Semi-bold for emphasis */
    font-size: 1.1rem; /* Adjust as needed */
    text-decoration: none; /* Remove underlines */
    padding: 12px 25px; /* Adjust padding for size */
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s ease; /* Smooth hover effect */
    display: inline-block; /* Allows padding and margins */
    border: none; /* Remove default borders */
    cursor: pointer; /* Change cursor on hover */
}


.full-btn{
    background-color: var(--troyco-red);
    padding: 1rem 2rem;
    border: 1px solid var(--troyco-red);
    border-radius: 15px;
  }

  .full-btn:hover{
    background-color: var(--troyco-red-hover);
  }

  .full-btn:active{
    background-color: var(--troyco-red-active);
  }

  .hollow-btn{
    border: 1px solid var(--troyco-red);
    padding: 1rem 2rem;
    border-radius: 15px;
  }

  .hollow-btn:hover{
    background-color: var(--troyco-red);
    .explore-btn-txt{
      color:white;
    }
  }

  .hollow-btn:active{
    background-color: var(--troyco-red-active);
  }
  
  .full-btn-txt{
    color: white;
  }

  .hollow-btn-txt{
    color:var(--troyco-red);
  }

    @media (max-width:767px){
    .center-item-767{
      text-align: center;
      }
  }



  



