.primary-button, .book-now-button {
    border-radius: 8px;
    border-style: none;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    flex-shrink: 0;
    font-size: 16px;
    font-weight: 500;
    height: 3rem;
    padding: 0 1.6rem;
    text-align: center;
    text-shadow: rgba(0, 0, 0, 0.25) 0 3px 8px;
    transition: all .5s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.primary-button {
    background-color: rgb(114, 164, 240);
    background-color: rgb(54, 115, 208);
}

.primary-button:hover {
  transition-duration: .1s;
  box-shadow: rgba(114, 164, 240, 0.5) 0 1px 30px;
}

.book-now-button {
    background-color: rgb(44, 85, 239);
    display: n;
}

.book-now-button:hover {
  transition-duration: .1s;
  box-shadow: rgba(44, 85, 239, 0.5) 0 1px 30px;
}