html {
  box-sizing: border-box; }

*, *::after, *::before {
  box-sizing: inherit; }

/* One-off breakpoints (consider consolidation)*/
/* Mayflower Color Tokens */
button {
  cursor: pointer;
  font-family: "Texta", "Helvetica", "Arial", "sans-serif";
  font-weight: 400; }

.ma__button {
  border: 3px solid;
  box-shadow: 0 0.25rem 0.5rem rgba(1, 1, 1, 0.25);
  display: inline-block;
  letter-spacing: 0.1em;
  padding: 0.4em 1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.4s ease;
  font-size: 1.25rem;
  line-height: 1.4; }
  .ma__button:hover {
    text-decoration: none; }

.ma__button--small {
  border: 3px solid;
  box-shadow: 0 0.25rem 0.5rem rgba(1, 1, 1, 0.25);
  display: inline-block;
  letter-spacing: 0.1em;
  padding: 0.4em 1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.4s ease;
  font-size: 1rem;
  line-height: 1.2; }
  .ma__button--small:hover {
    text-decoration: none; }

.ma__button--large {
  border: 3px solid;
  box-shadow: 0 0.25rem 0.5rem rgba(1, 1, 1, 0.25);
  display: inline-block;
  letter-spacing: 0.1em;
  padding: 0.4em 1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.4s ease;
  font-size: 1.375rem;
  line-height: 1.61; }
  .ma__button--large:hover {
    text-decoration: none; }

.ma__button {
  font-weight: 700;
  background-color: #14558f;
  border-color: transparent;
  color: white; }
  .ma__button:hover {
    background-color: rgba(20, 85, 143, 0.75); }
  .ma__button--c-primary-alt {
    font-weight: 700;
    background-color: #388557;
    border-color: transparent;
    color: white; }
    .ma__button--c-primary-alt:hover {
      background-color: rgba(56, 133, 87, 0.75); }
  .ma__button--c-highlight {
    font-weight: 700;
    background-color: #f6c51b;
    border-color: transparent;
    color: #141414;
    color: white; }
    .ma__button--c-highlight svg {
      fill: #141414; }
    .ma__button--c-highlight:hover {
      background-color: rgba(246, 197, 27, 0.75); }
  .ma__button--c-black {
    font-weight: 700;
    background-color: #141414;
    border-color: transparent;
    color: white; }
    .ma__button--c-black:hover {
      background-color: rgba(20, 20, 20, 0.75); }
  .ma__button--c-gray-dark {
    font-weight: 700;
    background-color: #535353;
    border-color: transparent;
    color: white; }
    .ma__button--c-gray-dark:hover {
      background-color: rgba(83, 83, 83, 0.75); }
  .ma__button--c-white {
    font-weight: 700;
    background-color: white;
    border-color: transparent;
    color: #14558f; }
    .ma__button--c-white svg {
      fill: #14558f; }
    .ma__button--c-white:hover {
      background-color: rgba(255, 255, 255, 0.75); }

.ma__button--secondary {
  font-weight: 700;
  background-color: white;
  border-color: rgba(20, 85, 143, 0.5);
  color: #14558f; }
  .ma__button--secondary svg {
    fill: #14558f; }
  .ma__button--secondary:hover {
    background-color: #14558f;
    color: white; }
    .ma__button--secondary:hover svg {
      fill: white; }

.ma__button--secondary.ma__button--c-primary-alt {
  font-weight: 700;
  background-color: white;
  border-color: rgba(56, 133, 87, 0.5);
  color: #388557; }
  .ma__button--secondary.ma__button--c-primary-alt svg {
    fill: #388557; }
  .ma__button--secondary.ma__button--c-primary-alt:hover {
    background-color: #388557;
    color: white; }
    .ma__button--secondary.ma__button--c-primary-alt:hover svg {
      fill: white; }

.ma__button--secondary.ma__button--c-highlight {
  font-weight: 700;
  background-color: white;
  border-color: rgba(246, 197, 27, 0.5);
  color: #14558f;
  border-color: rgba(20, 85, 143, 0.5); }
  .ma__button--secondary.ma__button--c-highlight svg {
    fill: #14558f; }
  .ma__button--secondary.ma__button--c-highlight:hover {
    background-color: #f6c51b;
    color: white; }
    .ma__button--secondary.ma__button--c-highlight:hover svg {
      fill: white; }

.ma__button--secondary.ma__button--c-gray-dark {
  font-weight: 700;
  background-color: white;
  border-color: rgba(83, 83, 83, 0.5);
  color: #535353; }
  .ma__button--secondary.ma__button--c-gray-dark svg {
    fill: #535353; }
  .ma__button--secondary.ma__button--c-gray-dark:hover {
    background-color: #535353;
    color: white; }
    .ma__button--secondary.ma__button--c-gray-dark:hover svg {
      fill: white; }

.ma__button--tertiary {
  font-weight: 700;
  background-color: #DCDCDC;
  border-color: transparent;
  color: white;
  color: #141414; }
  .ma__button--tertiary:hover {
    background-color: rgba(220, 220, 220, 0.75); }

.ma__button--quaternary {
  background-color: transparent;
  box-shadow: none;
  border: none;
  border-bottom: 2px solid #8AAAC7;
  color: #14558f;
  padding: 0;
  text-transform: none; }
  .ma__button--quaternary:hover {
    border-bottom: 3px solid #14558f;
    background-color: transparent; }

.ma__button--disabled {
  opacity: 0.5;
  cursor: not-allowed; }

.ma__button.ma__button--secondary.ma__button--c-primary-alt {
  color: #388557; }
  .ma__button.ma__button--secondary.ma__button--c-primary-alt:hover {
    color: white;
    background-color: #388557; }
