/* Font Declarations */
@font-face {
  font-family: 'Nuckle';
  src: url('/static/web/fonts/Nuckle/HW\ Nuckle\ Regular.woff2') format('woff2'),
    url('/static/web/fonts/Nuckle/HW\ Nuckle\ Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nuckle';
  src: url('/static/web/fonts/Nuckle/HW\ Nuckle\ Medium.woff2') format('woff2'),
    url('/static/web/fonts/Nuckle/HW\ Nuckle\ Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nuckle';
  src: url('/static/web/fonts/Nuckle/HW\ Nuckle\ Semi\ Bold.woff2') format('woff2'),
    url('/static/web/fonts/Nuckle/HW\ Nuckle\ Semi\ Bold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nuckle';
    src: url('/static/web/fonts/Nuckle/HW\ Nuckle\ Bold.woff2') format('woff2'),
    url('/static/web/fonts/Nuckle/HW\ Nuckle\ Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  text-align: left;
  font-size: 12px;
  color: #212121;
  font-family: "Nuckle", sans-serif;
  font-style: normal;
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;

  /* Account for fixed header */
  height: auto;
  min-height: 100%;
}

h1 {
  color: #970038;
  font-size: 50px;
  font-weight: 700;
  line-height: 56px; /* 112% */
  letter-spacing: -1px;
}

h2 {
  color: #191919;
  font-size: 38px;
  font-weight: 700;
  line-height: 46px; /* 121.053% */
  letter-spacing: -0.76px;
}

h3 {
  color: #212121;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; /* 100% */
  letter-spacing: -0.6px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 40px;
    line-height: 48px; /* 120% */
    letter-spacing: -0.8px;
  }

  h2 {
    font-size: 28px;
    line-height: 34px; /* 121.053% */
    letter-spacing: -0.56px;
  }

  h3 {
    font-size: 24px;
    line-height: 24px; /* 100% */
    letter-spacing: -0.48px;
  }
}

main {
  /* Account for fixed header */
  height: auto;
  min-height: 100%;
  max-width: 1440px;
  padding: 0px 60px 20px 60px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  main {
    padding: 0px 20px 20px 20px;
  }
}

.bar-container {
  max-width: 1440px;
  padding-left: 60px;
  padding-right: 60px;
}
@media (max-width: 768px) {
  .bar-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.component {
    width: 100%;
    padding: 40px 0px 40px 0px;
}

.button {
  cursor: pointer;
  border-radius: 48px;
  border: 2px solid #970038;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px; /* 128.571% */
  letter-spacing: -0.28px;
  width: 290px;
  height: 52px;
  padding: 0 12px;
}

.solid {
  background: #970038;
  color: #FFF;
}

.hollow {
  background: #FFF;
  color: #970038;
}

.text-xsmall {
  color: #191919;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px; /* 150% */
  letter-spacing: -0.24px;
}

.text-small {
  color: #191919;
  font-size: 14px;
  line-height: 130%; /* 18.2px */
  letter-spacing: 0.28px;
}

.text-mid {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px; /* 166.667% */
  letter-spacing: -0.36px;
}

.text-large {
  font-size: 22px;
  font-weight: 400;
  line-height: 30px; /* 136.364% */
  letter-spacing: -0.44px;
}

.text-xlarge {  
  font-size: 24px;
  font-weight: 400;
  line-height: 30px; /* 136.364% */
  letter-spacing: -0.44px;
}

.text-strong {
  font-weight: 700;
}

.flex-row {
  display: flex;
  flex-direction: row;
  align-items: left;
  justify-content: left;
  text-align: left;
}

.flex-column {
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: left;
  text-align: left;
}
