:root {
    --font: "avenir-lt-pro", sans-serif;
    --times: "times-new-roman", sans-serif;
    --primary: #4d4d4F;
    --secondary: #002159;
    --tertiary: #b79d77;
    --green: #11cc00;
    --table-background: #eee;
    --white: #ffffff;
}



body {
    word-spacing: 2px;
    line-height: 1.2;
    font-weight: 500;
}

.heading {
    font-size: 2em;
}

.body-text {
    font-size: 16px;
    font-weight: 500;
}

.font-primary {
    color: var(--primary);
}

.font-secondary {
    color: var(--secondary);
}

.font-tertiary {
    color: var(--tertiary);
}

.bold {
    font-weight: 600;
}

.button {
    text-align: center;
    color: #fff;
    background-color: var(--tertiary);
    padding: 15px;
    font-weight: 600;
    font-family: var(--font);
    width: 256px;
    height: 50px;
    border: 0 solid var(--tertiary);
}

.button:hover {
    background-color: var(--secondary);
    color: #fff;
    border-color: #fff;
    transition: 0.35s linear all;
    cursor: pointer;
}

.secondary-button {
    text-align: center;
    color: var(--tertiary);
    padding: 15px;
    font-weight: 500;
    font-family: var(--font);
    width: 256px;
    height: 50px;
    border: 1 solid var(--tertiary);
}

.new-button {
    position: relative;
    background: #fff;
    color: #002159;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    text-transform: uppercase;
    border: none;
    padding: 6px 60px 6px 20px;
    border-radius: 40px;
    cursor: pointer;
    /* margin-top: 30px; */
    transition: 0.3s ease;
    text-decoration: none;
    border: 1px solid #B79D77;
    float: right;
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    letter-spacing: 0.5px;
    /* text-shadow: 0 1px 5px rgba(55, 255, 255, 0.8); */
    box-shadow: 0 5px 15px rgba(183, 157, 117, 0.2), 0 2px 5px rgba(183, 157, 119, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    width: fit-content;
        
}

.new-button:after {
    content: "";
    position: absolute;
    background-image: url('images/right-arrow.svg');
    background-repeat: no-repeat;
    background-size: 11px;
    width: 20px;
    height: 20px;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(0.7) sepia(1) hue-rotate(-10deg) saturate(5);
}

.new-button:hover {
    background: linear-gradient(135deg, #f8f5f0 0%, #fff 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(183, 157, 119, 0.3),
    0 5px 15px rgba(183, 157, 119, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
    color: #002159;
    border-color: #a58c66;
}

.new-button:hover::after {
    right: 8px;
    filter: brightness(0.8) sepia(1) hue-rotate(-10deg) saturate(5);
    animation: arrowDash 0.6s ease-out;
}

.new-button:active {
    transform: translateY(-1px) scale(1);
    transition: all 0.1s ease;
    box-shadow:
      0 5px 15px rgba(183, 157, 119, 0.2),
      0 2px 5px rgba(183, 157, 119, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }

  .new-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(183, 157, 119, 0.1) 50%,
        transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
  }

  @keyframes arrowDash {
    0% {
      transform: translateY(-50%) translateX(0);
      opacity: 1;
    }
  
    50% {
      transform: translateY(-50%) translateX(8px);
      opacity: 0.5;
    }
  
    51% {
      transform: translateY(-50%) translateX(-8px);
      opacity: 0;
    }
  
    100% {
      transform: translateY(-50%) translateX(0);
      opacity: 1;
    }
  }