/* Style for the top navigation bar */
#top-bar {
    width: 100%;
    height: 50px;
    background-color: #989432;
    display: flex;
    align-items: center;
    padding: 0 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Style-one buttons */
.style-one-btn{
    margin-left: auto;
    padding: 15px 30px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    border-radius: 10px;
    display: block;
    border: 0px;
    font-weight: 700;
    box-shadow: 0px 0px 14px -7px #2D4100;
    background-image: linear-gradient(45deg, #2D4100 0%, #7F5228  100%);
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
  }
  
  .style-one-btn:hover {
    background-position: right center;
    /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
  }
  
  .style-one-btn:active {
    transform: scale(0.95);
    }