/* primary maroon */
/* primary gold */
/* secondary yellow */
/* secondary gold */
/* tertiary red dark */
/* tertiary red */
/* tertiary red light */
/* tertiary blue dark */
/* tertiary blue */
/* tertiary blue light */
/* teriary accent gold dark*/
/* teriary accent gold*/
/* teriary accent gold light*/

body {
  max-width: 2488px;
  background-color: #701931;
}
.skip-link {
  position: absolute;
  top: -2.5rem;
  left: 0;
  background: black;
  color: white;
  padding: 0.5rem;
  z-index: 100;
}
.skip-link:focus {
  top: 0;
}
/* cta button styles*/

.cta-button > a {
  transform: skew(-10deg);
  background: #fec524;
  box-shadow: 10px 0 0 #d57800;
  display: inline-block;
  font-size: 1.15rem;
  padding: 1.3rem 0;
  text-decoration: none;
  width: 220px;
  height: 70px;
  text-transform: uppercase;
  text-align: center;
  color: #701931 !important;
  font-family: 'AtlasGrotesk Black', sans-serif;
  font-weight: 700;
  overflow: hidden;
}
.cta-button > a > span {
  display: inline-block;
  transform: skew(10deg);
}
.cta-button > a:hover {
  color: white !important;
}
.cta-button > a:hover::after {
  transform: translate3D(0, 0, 0);
  transition: all 0.5s;
}
.cta-button > a::before,
.cta-button > a::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #d57800;
  /* onhover background color */
  z-index: -1;
  transform: translate3D(101%, 0, 0);
  transition: all 0.5s;
}
.cta-button > a:before {
  background: #fec524;
  /* button default background color */
  z-index: -2;
  transform: translate3D(0, 0, 0);
}
