/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

@font-face {
  font-family: "Geomanist";
  src: url("/assets/fonts/Geomanist-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geomanist";
  src: url("/assets/fonts/Geomanist-Ultra.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #292f36;
}

.cp-logo {
  font-weight: bold;
}

body {
  background-color: #fffcff;
}

.component .container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.cp-lander {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #e50053;
  background-color: #fece00;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.cp-lander h1,
.cp-lander h2 {
  font-family: "Geomanist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  text-align: left;
  line-height: 1;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cp-lander h1 {
  font-size: clamp(3rem, 12vw, 8rem);
  font-weight: 900;
  margin: 1rem 0 0 0;
}
.cp-lander h2 {
  font-weight: 500;
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  margin: 0 0 2rem 0;
  color: #b80043;
  text-transform: uppercase;
}
.cp-lander .cta-button {
  display: inline-block;
  background-color: #e50053;
  color: #fece00;
  font-family: "Geomanist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  padding: 0.75rem;
  padding-bottom: 0.5rem;
  margin-left: 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 1;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.cp-lander .cta-button:hover {
  animation: wobble 0.5s ease;
  background-color: #b80043;
}
@keyframes wobble {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-5deg);
  }
  75% {
    transform: rotate(5deg);
  }
}
@media (min-width: 768px) {
  .cp-lander .cp-lander {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  .cp-lander h1,
  .cp-lander h2 {
    padding-left: 6.25rem;
    padding-right: 0;
  }
  .cp-lander .cta-button {
    margin-left: 6.25rem;
    padding-left: 0.75rem;
  }
  .cp-lander h1 {
    margin-top: 0;
  }
}

.cp-navigation-bar {
  background-color: #fece00;
  border-bottom: 0.25rem solid navy;
}
.cp-navigation-bar .container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.cp-navigation-bar .container .cp-hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
  order: 1;
  margin: 1rem;
  position: relative;
}
@media (min-width: 768px) {
  .cp-navigation-bar .container .cp-hamburger {
    display: none;
  }
}
.cp-navigation-bar .container .cp-hamburger img {
  width: 100%;
  height: 100%;
  position: absolute;
  transition: opacity 0.3s ease;
}
.cp-navigation-bar .container .cp-hamburger .icon-close {
  opacity: 0;
}
.cp-navigation-bar .container .cp-hamburger.active .icon-hamburger {
  opacity: 0;
}
.cp-navigation-bar .container .cp-hamburger.active .icon-close {
  opacity: 1;
}
.cp-navigation-bar .container .cp-logo {
  order: 2;
  padding: 1rem;
  flex: 1;
}
@media (min-width: 768px) {
  .cp-navigation-bar .container .cp-logo {
    order: 1;
  }
}
.cp-navigation-bar .container .cp-nav {
  order: 3;
  width: 100%;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
@media (min-width: 768px) {
  .cp-navigation-bar .container .cp-nav {
    order: 2;
    width: auto;
    flex: 1;
    max-height: none;
    overflow: visible;
    padding: 1rem;
  }
}
.cp-navigation-bar .container .cp-nav.active {
  max-height: 500px;
}
.cp-navigation-bar .container a {
  text-decoration: none;
}
.cp-navigation-bar .container a:hover {
  text-decoration: underline;
}

.cp-nav {
  display: flex;
  align-items: center;
}
.cp-nav ul {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 1rem;
  width: 100%;
}
@media (min-width: 768px) {
  .cp-nav ul {
    flex-direction: row;
    padding: 0;
    justify-content: flex-end;
  }
}
.cp-nav ul li {
  list-style-type: none;
  margin: 0 0 1rem 0;
}
@media (min-width: 768px) {
  .cp-nav ul li {
    margin: 0 1rem 0 0;
  }
}

.cp-logo {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (min-width: 768px) {
  .cp-logo {
    justify-content: flex-start;
  }
}

.cp-alert {
  padding: 1rem;
  background-color: #e50053;
  color: #fffcff;
  text-align: center;
}