:root {
  --black: #101111;
  --white: white;
  --light-grey: #f4f4f4;
  --medium-purple: #8e6fb5;
  --slate-grey: #638596;
  --dim-grey: #565656;
  --sienna: #95554e;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  background-color: var(--black);
  color: #fff;
  letter-spacing: -.02em;
  font-family: Circularstd, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

h1 {
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h2 {
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.2;
}

h3 {
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h4 {
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.3;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
}

p {
  color: rgba(255, 255, 255, .8);
  letter-spacing: 0;
  margin-bottom: 0;
}

a {
  color: var(--black);
  text-decoration: underline;
}

ul {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}

ol {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 40px;
}

li {
  margin-bottom: .5rem;
}

img {
  max-width: 100%;
  display: inline-block;
}

label {
  margin-bottom: .25rem;
  font-weight: 500;
}

blockquote {
  border-left: .1875rem solid var(--black);
  margin-bottom: 0;
  padding: .75rem 1.25rem .25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

figure {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

figcaption {
  text-align: center;
  margin-top: .25rem;
}

.z-index-2 {
  z-index: 2;
  position: relative;
}

.text-style-strikethrough {
  text-decoration: line-through;
}

.text-weight-semibold {
  font-weight: 600;
}

.text-weight-light {
  font-weight: 300;
}

.max-width-full {
  width: 100%;
  max-width: none;
}

.layer {
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.show {
  display: block;
}

.overflow-hidden {
  overflow: hidden;
}

.global-styles {
  display: block;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

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

.text-size-regular {
  font-size: 1rem;
}

.text-weight-normal {
  font-weight: 400;
}

.text-align-center {
  text-align: center;
}

.z-index-1 {
  z-index: 1;
  position: relative;
}

.show-mobile-portrait {
  display: none;
}

.text-style-italic {
  font-style: italic;
}

.hide {
  display: none;
}

.text-align-left {
  text-align: left;
}

.text-weight-xbold {
  font-weight: 800;
}

.text-style-link {
  text-decoration: underline;
}

.text-style-muted {
  opacity: .6;
}

.text-size-small {
  font-size: .875rem;
}

.text-rich-text h1 {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

.text-rich-text h2 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.text-rich-text h3 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.text-rich-text h4 {
  margin-top: 1.5rem;
  margin-bottom: 1.25rem;
}

.text-rich-text h5, .text-rich-text h6 {
  margin-top: 1.25rem;
  margin-bottom: 1rem;
}

.text-rich-text p {
  margin-bottom: 1rem;
}

.text-rich-text blockquote {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.text-rich-text a {
  text-decoration: underline;
}

.text-rich-text figcaption {
  opacity: .8;
  text-align: left;
  border-left: 2px solid #000;
  margin-top: .5rem;
  padding-left: .5rem;
  font-size: .875rem;
}

.max-width-xlarge {
  width: 100%;
  max-width: 64rem;
}

.max-width-medium {
  width: 100%;
  max-width: 35rem;
}

.max-width-xsmall {
  width: 100%;
  max-width: 25rem;
}

.max-width-xxsmall {
  width: 100%;
  max-width: 20rem;
}

.text-size-tiny {
  font-size: .75rem;
}

.container-large {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.max-width-xxlarge {
  width: 100%;
  max-width: 80rem;
}

.background-color-black {
  background-color: var(--black);
  color: #f5f5f5;
}

.rl-styleguide_classes {
  display: none;
}

.align-center {
  margin-left: auto;
  margin-right: auto;
}

.spacing-clean {
  margin: 0;
  padding: 0;
}

.page-padding {
  background-color: var(--black);
  padding-top: 60px;
  padding-left: 5%;
  padding-right: 5%;
}

.text-align-right {
  text-align: right;
}

.show-tablet {
  display: none;
}

.max-width-large {
  width: 100%;
  max-width: 48rem;
}

.show-mobile-landscape {
  display: none;
}

.background-color-white {
  background-color: var(--white);
}

.max-width-small {
  width: 100%;
  max-width: 30rem;
}

.form-message-error {
  margin-top: .75rem;
  padding: .75rem;
}

.utility_component {
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  justify-content: center;
  align-items: center;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
}

.utility_form-block {
  max-width: 20rem;
  text-align: center;
  flex-direction: column;
  display: flex;
}

.utility_form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.utility_image {
  margin-bottom: .5rem;
  margin-left: auto;
  margin-right: auto;
}

.container-medium {
  width: 100%;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.container-small {
  width: 100%;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.margin-tiny {
  margin: .25rem;
}

.margin-xxsmall {
  margin: .5rem;
}

.margin-xsmall {
  margin: 1rem;
}

.margin-small {
  margin: 1.5rem;
}

.margin-medium {
  margin: 2rem;
}

.margin-large {
  margin: 3rem;
}

.margin-xlarge {
  margin: 4rem;
}

.margin-xxlarge {
  margin: 5rem;
}

.margin-huge {
  margin: 6rem;
}

.margin-xhuge {
  margin: 7rem;
}

.margin-xxhuge {
  margin: 10rem;
}

.margin-0 {
  margin: 0;
}

.padding-0 {
  padding: 0;
}

.padding-tiny {
  padding: .25rem;
}

.padding-xxsmall {
  padding: .5rem;
}

.padding-xsmall {
  padding: 1rem;
}

.padding-small {
  padding: 1.5rem;
}

.padding-medium {
  padding: 2rem;
}

.padding-large {
  padding: 3rem;
}

.padding-xlarge {
  padding: 4rem;
}

.padding-xxlarge {
  padding: 5rem;
}

.padding-huge {
  padding: 6rem;
}

.padding-xhuge {
  padding: 7rem;
}

.padding-xxhuge {
  padding: 10rem;
}

.text-style-allcaps {
  text-transform: uppercase;
}

.margin-top {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-left {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
}

.margin-right {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.margin-vertical {
  margin-left: 0;
  margin-right: 0;
}

.margin-horizontal {
  margin-top: 0;
  margin-bottom: 0;
}

.padding-top {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-top.padding-xhuge {
  background-color: var(--black);
}

.padding-bottom {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-left {
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
}

.padding-right {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}

.padding-vertical {
  padding-left: 0;
  padding-right: 0;
}

.padding-vertical.padding-xhuge {
  position: static;
}

.padding-horizontal {
  padding-top: 0;
  padding-bottom: 0;
}

.overflow-scroll {
  overflow: scroll;
}

.overflow-auto {
  overflow: auto;
}

.text-style-nowrap {
  white-space: nowrap;
}

.text-weight-medium {
  font-weight: 500;
}

.styleguide_heading {
  z-index: 4;
  color: #fff;
  background-color: #000;
  padding: 4px 8px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.styleguide_list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  padding-bottom: 4rem;
}

.stylesystem-spacing-wrapper {
  background-color: var(--light-grey);
}

.styleguide_subheading {
  z-index: 3;
  color: #000;
  background-color: #d3d3d3;
  padding: .25rem .5rem;
  position: -webkit-sticky;
  position: sticky;
  top: 32px;
}

.stylesystem-class-label {
  cursor: context-menu;
  background-color: rgba(131, 116, 116, .15);
  border-radius: 5px;
  padding-left: .5rem;
  padding-right: .5rem;
  display: inline-block;
}

.text-size-medium {
  color: var(--white);
  font-size: 1.125rem;
}

.text-size-medium.text-color-grey {
  color: #d5d6d6;
  padding-top: 10px;
}

.icon-small {
  width: 2rem;
}

.form-radio-wrapper {
  align-items: center;
  margin-bottom: 0;
  padding-left: 1.125rem;
  display: flex;
}

.form-checkbox-label {
  margin-bottom: 0;
  padding-left: 1rem;
}

.icon-medium {
  width: 3rem;
}

.text-color-white {
  color: var(--white);
}

.button-row-grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  align-items: center;
  justify-items: start;
  display: grid;
}

.button-row-grid.landscape-1-col.hide, .button-row-grid.mobile-1-col.hide {
  display: none;
}

.stylesystem_color-sample {
  border: 1px solid #000;
  padding: 8rem 1.5rem 1.25rem;
}

.stylesystem_color-sample.lightgrey {
  background-color: var(--light-grey);
}

.stylesystem_color-sample.black {
  background-color: var(--black);
}

.stylesystem_color-sample.white {
  background-color: var(--white);
}

.checkbox-wrapper {
  align-items: center;
  margin-bottom: 0;
  padding-left: 1.25rem;
  display: flex;
}

.text-size-large {
  font-size: 1.25rem;
}

.heading-xxlarge {
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.2;
}

.styleguide-form {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.button-tertiary {
  width: 100%;
  letter-spacing: 0;
  justify-content: space-between;
  align-self: stretch;
  align-items: center;
  padding-top: .5rem;
  padding-bottom: .5rem;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  display: flex;
}

.button-tertiary.invert-colors {
  color: #fff;
}

.form-radio {
  width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
  min-width: 1.125rem;
  border: 1px solid var(--black);
  cursor: pointer;
  border-radius: 100px;
  margin-top: 0;
  margin-left: -1.125rem;
}

.form-radio.w--redirected-checked {
  background-color: #fff;
  background-image: none;
  border-width: 6px;
  border-color: #000;
}

.form-radio.w--redirected-focus {
  box-shadow: none;
  border-color: #000;
  margin-top: 0;
}

.icon-xsmall {
  width: 1.5rem;
}

.styleguide_icons-list {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  display: grid;
}

.icon-xxsmall {
  width: 1rem;
}

.heading-medium {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.3;
}

.field-label {
  margin-bottom: .5rem;
  font-weight: 400;
}

.tabs-menu {
  border-bottom: 1px rgba(0, 0, 0, .15);
  display: flex;
  overflow: auto;
}

.tabs-menu.no-scrollbar {
  padding-right: 24px;
}

.icon-xlarge {
  width: 6.5rem;
}

.background-color-black-2 {
  background-color: #000;
}

.heading-large {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.2;
}

.image-wrapper-3-2 {
  width: 100%;
  padding-top: 66.66%;
  position: relative;
}

.button {
  color: var(--black);
  text-align: center;
  letter-spacing: 0;
  background-color: #fff;
  border-radius: 100px;
  padding: .75rem 2rem;
  font-size: 1.125rem;
  font-weight: 500;
  transition: all .2s;
}

.button:hover {
  color: #fff;
  background-color: #575757;
}

.button.invert-colors {
  color: #000;
  background-color: rgba(86, 86, 86, .15);
}

.button.button-small {
  padding: .5rem 1.25rem;
}

.form-input {
  height: auto;
  min-height: 2.75rem;
  border: 1px solid var(--black);
  color: #000;
  margin-bottom: 0;
  padding: .5rem .75rem;
  line-height: 1.6;
}

.form-input:focus {
  border-color: #000;
}

.form-input::-ms-input-placeholder {
  color: rgba(0, 0, 0, .6);
}

.form-input::placeholder {
  color: rgba(0, 0, 0, .6);
}

.form-input.select {
  background-color: #fff;
  background-image: none;
}

.form-input.text-area {
  height: auto;
  min-height: 11.25rem;
  padding-top: .75rem;
  padding-bottom: .75rem;
  overflow: auto;
}

.background-color-lightgrey {
  background-color: var(--light-grey);
}

.form-checkbox {
  width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
  min-width: 1.125rem;
  border: 1px solid var(--black);
  cursor: pointer;
  border-radius: 0;
  margin-top: 0;
  margin-left: -1.25rem;
  transition: all .2s;
}

.form-checkbox.w--redirected-checked {
  box-shadow: none;
  background-color: #000;
  background-size: 16px 16px;
  border-width: 1px;
  border-color: #000;
}

.form-checkbox.w--redirected-focus {
  box-shadow: none;
  border-color: #000;
}

.form_grid-1-col {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  align-items: start;
  justify-items: stretch;
  display: grid;
}

.button-tertiary_icon {
  width: 1rem;
  height: 1rem;
  margin-left: .5rem;
}

.tab-link {
  color: rgba(0, 0, 0, .6);
  background-color: rgba(0, 0, 0, 0);
  border-bottom: 2px solid rgba(0, 0, 0, 0);
  flex: none;
  margin-right: 1.5rem;
  padding: .5rem 0;
}

.tab-link.w--current {
  color: #000;
  background-color: #fff;
  border-bottom: .125rem solid #000;
}

.heading-xsmall {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
}

.image-wrapper-4-3 {
  width: 100%;
  padding-top: 75%;
  position: relative;
}

.button-secondary {
  color: #fff;
  text-align: center;
  letter-spacing: 0;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 100px;
  padding: .75rem 2rem;
  font-size: 1.125rem;
  font-weight: 500;
  transition: all .2s;
}

.button-secondary:hover {
  border-color: #fff;
}

.button-secondary.button-small {
  padding: .5rem 1.25rem;
  font-size: 1rem;
}

.button-secondary.invert-colors {
  color: var(--black);
  border-color: rgba(16, 17, 17, .2);
}

.button-secondary.invert-colors:hover {
  border-color: var(--black);
}

.heading-small {
  color: var(--white);
  font-family: Circularstd, sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.4;
  display: block;
}

.text-style-quote {
  border-left: .1875rem solid var(--black);
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.form-field-wrapper {
  position: relative;
}

.image-wrapper_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.image-wrapper-16-9 {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
}

.text-color-black {
  color: var(--white);
}

.stylesystem-images_layout {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.icon-large {
  width: 5rem;
}

.image-wrapper-1-1 {
  width: 100%;
  padding-top: 100%;
  position: relative;
}

.styleguide_grid-colours {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.heading-xlarge {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.2;
}

.icon-1x1-xxsmall {
  width: 1rem;
  height: 1rem;
}

.icon-1x1-xsmall {
  width: 1.5rem;
  height: 1.5rem;
}

.icon-1x1-small {
  width: 2rem;
  height: 2rem;
}

.icon-1x1-medium {
  width: 3rem;
  height: 3rem;
}

.icon-1x1-large {
  width: 5rem;
  height: 5rem;
}

.icon-1x1-xlarge {
  width: 6.5rem;
  height: 6.5rem;
}

.navbar_component {
  height: 4.5rem;
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  background-color: rgba(16, 17, 17, .95);
  align-items: center;
  padding-left: 5%;
  padding-right: 5%;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.navbar_container {
  width: 100%;
  height: 100%;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding-bottom: 0;
  display: flex;
}

.navbar_logo-link {
  padding-left: 0;
}

.navbar_menu {
  color: #fff;
  align-items: center;
  display: flex;
}

.navbar_link {
  opacity: .75;
  padding: .5rem 1rem;
  font-weight: 500;
  transition: all .2s;
}

.navbar_link:hover {
  opacity: 1;
  text-decoration: underline;
}

.navbar_link.w--current {
  color: #fff;
}

.navbar_button {
  color: #fff;
  letter-spacing: 0;
  background-color: #575858;
  border-radius: 100px;
  margin-left: 1rem;
  padding: .5rem 1.5rem;
  font-weight: 500;
  transition: all .2s;
}

.navbar_button:hover {
  color: var(--black);
  background-color: #fff;
}

.navbar_button.purple {
  color: #e5d0ff;
  background-color: rgba(142, 111, 181, .5);
}

.navbar_button.purple:hover {
  background-color: var(--white);
  color: var(--black);
}

.navbar_button.blue {
  color: #c4ebff;
  background-color: rgba(99, 133, 150, .5);
}

.navbar_button.blue:hover {
  background-color: var(--white);
  color: var(--black);
}

.section-home-header {
  background-color: var(--black);
}

.home-header_component {
  z-index: 1;
  flex-direction: column;
  align-items: center;
  display: flex;
  position: relative;
}

.button-row {
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.button-wrapper {
  margin-top: 1rem;
  margin-right: 1rem;
}

.button-wrapper.button-wrapper-center {
  margin-left: .5rem;
  margin-right: .5rem;
}

.home-press_item-link {
  height: 100%;
  border: 1px solid var(--dim-grey);
  border-radius: 1.5rem;
  flex-direction: column;
  justify-content: flex-start;
  text-decoration: none;
  display: flex;
}

.home-press_item-content-top {
  border-bottom: 1px solid #565656;
  border-radius: 1.5rem 1.5rem 0 0;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  padding: 2rem;
  display: flex;
}

.punks-slider_component {
  z-index: 1;
  position: relative;
  overflow: hidden;
}

.punks-slider_content {
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
}

.punks-slider_list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  white-space: nowrap;
  flex-wrap: wrap;
  grid-template-rows: minmax(auto, .25fr);
  grid-template-columns: 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem;
  grid-auto-columns: 10rem;
  grid-auto-flow: row;
  align-content: stretch;
  justify-content: flex-end;
  align-items: center;
  justify-items: start;
  margin-right: 1rem;
  transition: opacity .2s;
  display: grid;
}

.punks-slider_image-wrapper {
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.punks-slider_image {
  width: 10rem;
  height: 10rem;
  object-fit: fill;
  overflow: visible;
  transform: translate(0);
}

.section-home-punks {
  z-index: 1;
  background-color: var(--black);
  border-bottom-right-radius: 3rem;
  border-bottom-left-radius: 3rem;
  position: relative;
}

.home-punks_content-wrapper {
  grid-column-gap: 5rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.home-punks_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.home-punk {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template: "Area"
                 "."
                 "."
                 "."
                 / 1fr;
  grid-auto-rows: minmax(auto, 1fr);
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  display: grid;
}

.home-punks_tabs-link {
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #565656;
  border-radius: 1.5rem;
  padding: 2rem;
  display: block;
}

.home-punks_tabs-link.w--current {
  opacity: 1;
}

.home-punks_tabs-link.blue {
  transition: all .2s;
}

.home-punks_tabs-link.blue:hover {
  border-color: #fff;
}

.home-punks_tabs-link.blue.w--current {
  background-color: #1db169;
  border-color: #565656;
  transition: all .2s;
}

.home-punks_tabs-link.blue.w--current:hover {
  background-color: #1db169;
  border-color: #565656;
}

.home-punks_tabs-link.red {
  transition: all .2s;
}

.home-punks_tabs-link.red:hover {
  border-color: #fff;
}

.home-punks_tabs-link.red.w--current {
  background-color: var(--sienna);
  border-color: #95554e;
}

.home-punks_tabs-link.purple {
  transition: all .2s;
}

.home-punks_tabs-link.purple:hover {
  border-color: #fff;
}

.home-punks_tabs-link.purple.w--current {
  background-color: var(--medium-purple);
  border-color: #8e6fb5;
}

.section-home-sales {
  background-color: var(--white);
  color: var(--black);
  margin-top: -3rem;
  margin-bottom: -3rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.home-sales_component {
  height: auto;
  background-color: rgba(0, 0, 0, 0);
  padding-bottom: 6rem;
  position: relative;
}

.home-sales_mask {
  width: 33.33%;
  overflow: visible;
}

.home-sales_slide {
  padding-right: 1.5rem;
}

.home-sales_item {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.home-sales_image-wrapper {
  width: 100%;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}

.home-sales_image {
  width: 75%;
  height: 100%;
  object-fit: contain;
  border-radius: 1.5rem;
  margin-bottom: 0;
  display: inline-block;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: visible;
}

.social-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.home-sales_arrow {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--white);
  color: #000;
  border: 1px solid rgba(16, 17, 17, .2);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  transition: all .2s;
  display: flex;
  top: auto;
  left: 4rem;
  right: auto;
}

.home-sales_arrow:hover {
  border-color: var(--black);
}

.home-sales_arrow.left {
  margin-bottom: 40px;
  left: 0;
  right: auto;
}

.home-sales_slide-nav {
  height: 1.75rem;
  font-size: .5rem;
  display: none;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.section-home-howto {
  z-index: 1;
  background-color: var(--black);
  border-top-left-radius: 3rem;
  border-top-right-radius: 3rem;
  position: relative;
}

.home-howto_component2 {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template: "Area"
  / .75fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
  position: relative;
}

.home-howto_content-left {
  position: static;
}

.home-howto_timeline-wrapper {
  position: relative;
}

.home-howto_progress-bar {
  width: 1px;
  height: 100%;
  background-color: #fff;
}

.home-howto_timeline-step {
  grid-column-gap: 2.5rem;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: max-content 1fr;
}

.home-howto_timeline-left {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  display: flex;
  position: relative;
}

.home-howto_timeline-icon-wrapper {
  z-index: 1;
  background-color: #0f1111;
  margin-top: -1rem;
  padding: 1rem;
  position: relative;
}

.home-howto_timeline-right {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.home-faq_content {
  grid-column-gap: 4rem;
  grid-row-gap: 5rem;
  border-top: 1px solid #565656;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  padding-top: 1.5rem;
  padding-bottom: 3rem;
  display: grid;
}

.footer_top-wrapper {
  grid-column-gap: 4vw;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr .25fr;
  justify-content: space-between;
  align-items: center;
}

.footer4_logo-link {
  padding-left: 0;
}

.footer_link-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0px;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: center;
  justify-items: start;
  display: grid;
}

.footer_link {
  opacity: .75;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
}

.footer_link:hover {
  text-decoration: underline;
}

.footer_socials-wrapper {
  grid-column-gap: .75rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  align-items: start;
  justify-items: start;
  display: grid;
}

.footer_social-link {
  opacity: .75;
  align-items: center;
  font-size: 14px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.footer_social-link:hover {
  opacity: 1;
}

.line-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, .15);
}

.footer_bottom-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: center;
  display: grid;
}

.footer_credit-text, .footer_bottom-link {
  color: rgba(255, 255, 255, .75);
  font-size: .875rem;
}

.home-sales_content-top {
  grid-column-gap: 5rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  display: grid;
}

.home-press_item-content-bottom {
  border-radius: 0 0 1.5rem 1.5rem;
  flex-direction: column;
  flex: 0 auto;
  justify-content: space-between;
  padding: 1rem 2rem;
  display: flex;
}

.home-press_logo {
  max-height: 1.25rem;
  object-fit: contain;
}

.home-press_logo.marketwatch {
  max-height: 1.5rem;
}

.home-punks_image {
  border-radius: 2rem;
}

.home-punks_heading-medium {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.3;
}

.home-press_list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.text-color-darkgrey {
  color: #e6e6e6;
}

.home-howto_progress-bar-wrapper {
  width: 1px;
  height: 75%;
  background-color: rgba(255, 255, 255, .15);
  position: absolute;
  top: 10%;
  left: 2.4375rem;
  right: auto;
}

.navbar_social-wrapper {
  grid-column-gap: .75rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  align-items: start;
  justify-items: start;
  margin-left: 2rem;
  display: grid;
}

.navbar_social-link {
  opacity: .75;
  align-items: center;
  font-size: 14px;
  text-decoration: none;
  display: flex;
}

.navbar_social-link:hover {
  opacity: 1;
}

.rl-cta_component {
  width: 100%;
  background-color: rgba(255, 255, 255, .15);
  justify-content: center;
  align-items: center;
  padding: 2rem 5%;
  display: flex;
}

.rl-cta_text-wrapper {
  margin-right: 1.5rem;
}

.navbar_menu-button {
  padding: 0;
}

.home-header-pixel1 {
  z-index: 0;
  position: absolute;
  bottom: 40%;
  right: 0%;
}

.home-header-pixel2 {
  z-index: 0;
  position: absolute;
  top: 20%;
  left: 0%;
}

.div-block {
  width: 25rem;
  height: 25rem;
  filter: blur(200px);
  background-color: #282929;
  position: absolute;
  bottom: 2%;
  left: 35%;
}

.header1_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.button-2 {
  border: 1px solid var(--black);
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  padding: .75rem 1.5rem;
}

.button-secondary-2 {
  border: 1px solid var(--black);
  color: var(--black);
  text-align: center;
  background-color: rgba(0, 0, 0, 0);
  padding: .75rem 1.5rem;
}

.heading {
  color: #f2f2f6;
  font-family: Circularstd, sans-serif;
  font-size: 3.4rem;
  font-weight: 700;
  display: block;
}

.text-block {
  text-align: left;
  flex-flow: column wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  padding-left: 20px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
  display: flex;
}

.text-span {
  color: #04f;
}

.text-span-2 {
  color: #06f;
  text-transform: lowercase;
}

.rich-text-block {
  text-align: center;
  text-transform: none;
  font-family: Circularstd, sans-serif;
  font-weight: 400;
}

.image {
  margin-bottom: 0;
  margin-left: 20px;
}

.heading-2 {
  text-align: left;
  margin-left: 10px;
  padding-top: 0;
  padding-bottom: 0;
}

.text-span-3, .text-span-4 {
  color: #06f;
}

.heading-3 {
  float: none;
  text-align: left;
  padding-top: 20px;
  position: static;
  top: 300px;
  bottom: 300px;
}

.paragraph {
  margin-bottom: 0;
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
  bottom: auto;
}

.paragraph-2 {
  position: -webkit-sticky;
  position: sticky;
  top: 300px;
  bottom: 220px;
  left: 0;
  right: 0;
}

.text-span-5 {
  text-align: center;
  font-size: 1.5rem;
}

.block-quote {
  position: -webkit-sticky;
  position: sticky;
  top: 500px;
  bottom: 0;
}

.text-span-6 {
  color: var(--dim-grey);
}

.block-quote-2 {
  font-size: 20px;
}

.tab-link-tab-4 {
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #565656;
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all .2s;
  display: block;
}

.tab-link-tab-4.w--current {
  background-color: #422ae0;
}

.tab-link-tab-4.green:hover {
  background-color: rgba(0, 0, 0, 0);
}

.tab-link-tab-4.green:visited {
  background-color: var(--black);
}

.tab-link-tab-4-2 {
  transition: opacity .2s;
}

.text-block-2 {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.3;
}

.tab-pane-tab-4 {
  color: var(--white);
}

.tab-pane-tab-2 {
  margin-top: 40px;
}

.image-2 {
  flex: 0 auto;
  order: 0;
  align-self: auto;
  overflow: visible;
}

.text-span-7 {
  padding-left: 20px;
}

.bold-text {
  color: #06f;
}

.text-block-3 {
  padding-left: 20px;
  padding-right: 0;
  font-size: 1.3rem;
  font-weight: 500;
}

.text-span-8 {
  color: #06f;
}

.text-block-4, .text-block-5, .text-block-6, .text-block-7, .text-block-8 {
  font-size: 1.5rem;
}

.block-quote-3 {
  font-family: Circularstd, sans-serif;
  font-weight: 900;
}

.column {
  min-height: 100vh;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  position: static;
  top: 10px;
  overflow: hidden;
  transform: translate(0);
}

.column-2 {
  min-height: 100vh;
  justify-content: center;
  display: flex;
  position: static;
  overflow: auto;
}

.image-3 {
  opacity: 1;
  flex: 1;
  align-self: center;
  position: static;
}

.form {
  max-width: 0%;
  min-width: 100%;
  object-fit: contain;
  flex-flow: column;
  flex: 0 auto;
  order: 0;
  align-content: flex-start;
  justify-content: flex-start;
  align-self: auto;
  align-items: flex-start;
  margin-left: 0;
  margin-right: 0;
  padding-right: 0;
  display: flex;
  overflow: visible;
}

.form-block {
  max-width: 80%;
  flex-direction: column;
  flex: 1;
  justify-content: space-around;
  align-self: center;
  align-items: center;
  display: flex;
}

.button-3 {
  opacity: 1;
  direction: ltr;
  flex: 0 auto;
  overflow: auto;
}

.image-4 {
  align-self: flex-start;
  padding-top: 40px;
  padding-left: 40px;
}

.div-block-2 {
  flex-flow: wrap;
  order: -1;
  justify-content: flex-start;
  align-self: flex-start;
  align-items: flex-start;
  display: flex;
}

.navbar-logo-left-container {
  z-index: 5;
  width: 1030px;
  max-width: 100%;
  background-color: rgba(0, 0, 0, 0);
  margin-left: auto;
  margin-right: auto;
  padding: 15px 20px;
}

.navbar-logo-left-container.shadow-three {
  width: 100%;
  max-width: 1140px;
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}

.container {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.navbar-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.nav-menu-two {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.nav-link {
  opacity: .75;
  color: var(--white);
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 5px 10px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem;
  text-decoration: none;
  position: relative;
}

.nav-link:hover {
  color: var(--white);
  text-decoration: underline;
}

.nav-link:focus-visible {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-dropdown {
  margin-left: 5px;
  margin-right: 5px;
}

.nav-dropdown-toggle {
  letter-spacing: .25px;
  padding: 5px 30px 5px 10px;
  font-size: 14px;
  line-height: 20px;
}

.nav-dropdown-toggle:hover {
  color: rgba(26, 27, 31, .75);
}

.nav-dropdown-toggle:focus-visible {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-toggle[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-icon {
  background-color: var(--white);
  margin-right: 10px;
}

.nav-dropdown-list {
  background-color: #fff;
  border-radius: 12px;
}

.nav-dropdown-list.w--open {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-dropdown-link {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 14px;
}

.nav-dropdown-link:focus-visible {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-divider {
  width: 1px;
  height: 22px;
  background-color: #e4ebf3;
  margin-left: 15px;
  margin-right: 15px;
}

.nav-link-accent {
  color: #1a1b1f;
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 20px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
}

.nav-link-accent:hover {
  color: rgba(26, 27, 31, .75);
}

.button-primary {
  color: #fff;
  text-align: center;
  letter-spacing: 0;
  text-transform: capitalize;
  background-color: #06f;
  border-radius: 100px;
  margin-left: 0;
  margin-right: 0;
  padding: .5rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
  transition: all .2s;
}

.button-primary:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary:active {
  background-color: #43464d;
}

.navbar-no-shadow-container {
  z-index: 5;
  width: 100%;
  max-width: 1440px;
  background-color: rgba(0, 0, 0, 0);
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}

.container-regular {
  width: 100%;
  max-width: 1260px;
  min-height: 30px;
  margin-left: auto;
  margin-right: auto;
}

.nav-menu {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
}

.nav-button-wrapper {
  margin-left: 120px;
}

.text-block-9 {
  background-color: var(--white);
}

.image-5 {
  margin-top: 10px;
  padding-left: 0;
}

.heading-4, .paragraph-3 {
  text-align: center;
}

.section {
  height: 600px;
  grid-column-gap: 60px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 60px;
  display: grid;
}

.text-field, .text-field-2, .textarea {
  border: 1px solid var(--white);
  background-color: var(--white);
}

.submit-button {
  width: 100%;
  background-color: #06f;
  border: 1px #000;
  border-radius: 100px;
  margin-top: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: 500;
  text-decoration: none;
}

.submit-button:hover {
  text-decoration: underline;
}

.form-2 {
  margin-bottom: 0;
}

.message-field {
  height: auto;
}

.success-message {
  width: 100%;
  text-align: center;
  -webkit-text-fill-color: inherit;
  background-color: #198754;
  background-clip: border-box;
  border-radius: 100px;
  margin-top: 0;
  margin-left: 0;
  overflow: visible;
}

.form-block-2 {
  width: 100%;
}

.field-label-2, .field-label-3 {
  margin-top: 20px;
}

.text-span-9 {
  color: #06f;
}

.grid {
  grid-template-rows: auto auto auto auto;
  align-content: start;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  h3 {
    font-size: 2.25rem;
  }

  h4 {
    font-size: 1.75rem;
  }

  .hide-tablet {
    display: none;
  }

  .show-tablet {
    display: block;
  }

  .max-width-full-tablet {
    width: 100%;
    max-width: none;
  }

  .margin-large {
    margin: 2.5rem;
  }

  .margin-xlarge {
    margin: 3.5rem;
  }

  .margin-xxlarge {
    margin: 4.5rem;
  }

  .margin-huge {
    margin: 5rem;
  }

  .margin-xhuge {
    margin: 6rem;
  }

  .margin-xxhuge {
    margin: 7.5rem;
  }

  .padding-large {
    padding: 2.5rem;
  }

  .padding-xlarge {
    padding: 3.5rem;
  }

  .padding-xxlarge {
    padding: 4.5rem;
  }

  .padding-huge {
    padding: 5rem;
  }

  .padding-xhuge {
    padding: 6rem;
  }

  .padding-xxhuge {
    padding: 7.5rem;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .button-row-grid.tablet-1-col {
    grid-auto-flow: row;
  }

  .heading-xxlarge {
    font-size: 3.25rem;
  }

  .heading-medium {
    font-size: 1.75rem;
  }

  .heading-large {
    font-size: 2.25rem;
  }

  .heading-xlarge {
    font-size: 2.75rem;
  }

  .navbar_menu {
    color: var(--black);
    -webkit-text-fill-color: inherit;
    background-color: #fff;
    background-clip: border-box;
    border-bottom: 1px solid #000;
    border-radius: 1.5rem;
    justify-content: center;
    padding: 1.5rem 5% 2rem;
    left: 5%;
    right: 5%;
    overflow: auto;
  }

  .navbar_link {
    width: auto;
    opacity: 1;
    text-align: center;
    padding: .75rem 0;
    font-size: 18px;
  }

  .navbar_button {
    width: 100%;
    background-color: var(--black);
    margin-top: 1rem;
    margin-left: 0;
    padding-top: .625rem;
    padding-bottom: .625rem;
  }

  .navbar_button.purple {
    color: var(--medium-purple);
    background-color: rgba(142, 111, 181, .25);
  }

  .navbar_button.blue {
    color: var(--slate-grey);
    background-color: rgba(99, 133, 150, .25);
  }

  .menu-icon1 {
    width: 48px;
    height: 48px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: -.5rem;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .menu-icon_line-middle-inner {
    width: 4px;
    height: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .home-punks_content-wrapper {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
  }

  .home-punks_component {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .home-sales_component {
    padding-left: 0;
    padding-right: 0;
  }

  .home-sales_mask {
    width: 50%;
  }

  .home-sales_slide {
    padding-right: 2rem;
  }

  .home-howto_component2 {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .home-howto_timeline-step {
    grid-column-gap: 24px;
  }

  .home-faq_content {
    grid-column-gap: 3rem;
    grid-row-gap: 4rem;
  }

  .footer_top-wrapper {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
    justify-content: center;
    justify-items: center;
  }

  .home-sales_content-top {
    grid-column-gap: 3rem;
  }

  .home-punks_heading-medium {
    font-size: 1.75rem;
  }

  .home-press_list {
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr;
  }

  .navbar_social-wrapper {
    justify-content: center;
    justify-items: center;
    margin-top: 2rem;
    margin-left: 0;
  }

  .navbar_social-link {
    opacity: 1;
  }

  .menu-icon1_line-bottom {
    width: 24px;
    height: 2px;
    background-color: #fff;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-icon1_line-middle {
    width: 24px;
    height: 2px;
    background-color: #fff;
    justify-content: center;
    align-items: center;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .menu-icon1_line-top {
    width: 24px;
    height: 2px;
    background-color: #fff;
    padding-bottom: 0;
    padding-right: 0;
  }

  .navbar_menu-button.w--open {
    background-color: rgba(0, 0, 0, 0);
  }

  .header1_component {
    min-height: auto;
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

  .image-3 {
    flex: 0 auto;
  }

  .button-3 {
    order: -1;
    align-self: flex-start;
    margin-right: 0;
    padding-right: 0;
  }

  .container {
    max-width: 728px;
  }

  .nav-menu-wrapper {
    background-color: rgba(0, 0, 0, 0);
  }

  .nav-menu-two {
    background-color: #fff;
    border-radius: 50px;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin-top: 10px;
    padding: 20px;
    display: flex;
    box-shadow: 0 8px 50px rgba(0, 0, 0, .05);
  }

  .nav-link {
    padding-left: 5px;
    padding-right: 5px;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: absolute;
  }

  .menu-button {
    padding: 12px;
  }

  .menu-button.w--open {
    color: #fff;
    background-color: #a6b1bf;
  }

  .nav-menu {
    background-color: #fff;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding-left: 0;
    display: flex;
  }

  .nav-button-wrapper {
    width: 100%;
    margin-left: 0;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 2rem;
  }

  h4 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  h5 {
    font-size: 1.25rem;
  }

  h6 {
    font-size: 1.125rem;
  }

  .text-rich-text figure {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .hide-mobile-landscape {
    display: none;
  }

  .show-mobile-landscape {
    display: block;
  }

  .max-width-full-mobile-landscape {
    width: 100%;
    max-width: none;
  }

  .margin-xsmall {
    margin: .75rem;
  }

  .margin-small {
    margin: 1.25rem;
  }

  .margin-medium {
    margin: 1.5rem;
  }

  .margin-large {
    margin: 2rem;
  }

  .margin-xlarge {
    margin: 2.5rem;
  }

  .margin-xxlarge {
    margin: 3rem;
  }

  .margin-huge {
    margin: 3.5rem;
  }

  .margin-xhuge {
    margin: 4rem;
  }

  .margin-xxhuge {
    margin: 5rem;
  }

  .padding-xsmall {
    padding: .75rem;
  }

  .padding-small {
    padding: 1.25rem;
  }

  .padding-medium {
    padding: 1.5rem;
  }

  .padding-large {
    padding: 2rem;
  }

  .padding-xlarge {
    padding: 2.5rem;
  }

  .padding-xxlarge {
    padding: 3rem;
  }

  .padding-huge {
    padding: 3.5rem;
  }

  .padding-xhuge {
    padding: 4rem;
  }

  .padding-xxhuge {
    padding: 5rem;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .text-style-nowrap {
    white-space: normal;
  }

  .text-size-medium {
    font-size: 1rem;
  }

  .button-row-grid.landscape-1-col {
    grid-auto-flow: row;
  }

  .text-size-large {
    font-size: 1.125rem;
  }

  .heading-xxlarge {
    font-size: 2.5rem;
  }

  .heading-medium {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .heading-large {
    font-size: 2rem;
  }

  .heading-xsmall {
    font-size: 1.125rem;
  }

  .heading-small {
    font-size: 1.25rem;
  }

  .text-style-quote {
    font-size: 1.125rem;
  }

  .heading-xlarge {
    font-size: 2.25rem;
  }

  .navbar_component {
    height: 4rem;
  }

  .section-home-punks {
    border-bottom-right-radius: 2rem;
    border-bottom-left-radius: 2rem;
  }

  .home-punks_content-wrapper {
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .home-punks_component {
    grid-column-gap: 0px;
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .section-home-sales {
    margin-top: -2rem;
    margin-bottom: -2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .home-sales_component {
    padding-bottom: 5.5rem;
  }

  .home-sales_mask {
    width: 80%;
  }

  .home-sales_slide {
    padding-right: 1.5rem;
  }

  .home-sales_image-wrapper {
    height: 100%;
  }

  .section-home-howto {
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
  }

  .home-howto_component2 {
    grid-template-columns: 1fr;
  }

  .home-howto_timeline-icon-wrapper {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .home-faq_content {
    grid-column-gap: 2.5rem;
    padding-top: 1.25rem;
    padding-bottom: 2.5rem;
  }

  .footer_link-list {
    grid-column-gap: 0px;
    grid-row-gap: 24px;
    grid-auto-flow: row;
    justify-items: center;
  }

  .footer_bottom-wrapper {
    grid-column-gap: 0rem;
    grid-row-gap: 1.5rem;
    grid-auto-flow: row;
    justify-items: center;
  }

  .footer_credit-text {
    margin-top: .5rem;
  }

  .home-sales_content-top {
    grid-row-gap: 2rem;
    flex-direction: column;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    align-items: flex-start;
    justify-items: start;
  }

  .home-punks_heading-medium {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .home-press_list {
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
  }

  .home-howto_progress-bar-wrapper {
    height: 72%;
    left: 2rem;
  }

  .rl-cta_component {
    text-align: center;
    flex-direction: column;
    padding-bottom: 4rem;
  }

  .rl-cta_text-wrapper {
    margin-bottom: 1.5rem;
    margin-right: 0;
  }

  .header1_component {
    grid-row-gap: 3rem;
  }

  .navbar-logo-left-container {
    max-width: 100%;
  }

  .navbar-brand {
    padding-left: 0;
  }

  .nav-menu-two {
    border-radius: 20px;
    flex-direction: column;
    padding-bottom: 30px;
  }

  .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .nav-dropdown {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .nav-dropdown-toggle {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-dropdown-list.shadow-three {
    box-shadow: 0 8px 50px rgba(0, 0, 0, .05);
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: relative;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide {
    box-shadow: none;
  }

  .nav-divider {
    width: 200px;
    height: 1px;
    max-width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .nav-link-accent {
    margin-right: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .mobile-margin-top-10 {
    margin-top: 10px;
  }

  .nav-menu {
    flex-direction: column;
    padding-bottom: 30px;
    padding-left: 0;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 2.5rem;
  }

  .show-mobile-portrait {
    display: block;
  }

  .hide-mobile-portrait {
    display: none;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .max-width-full-mobile-portrait {
    width: 100%;
    max-width: none;
  }

  .button-row-grid.mobile-1-col {
    grid-auto-flow: row;
  }

  .stylesystem-images_layout {
    grid-template-columns: 1fr;
  }

  .home-press_item-content-top {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .punks-slider_list {
    justify-content: center;
  }

  .punks-slider_image-wrapper {
    justify-content: center;
    align-items: flex-start;
  }

  .home-punks_content-wrapper, .home-punks_component {
    grid-template-columns: 1fr;
  }

  .home-punks_tabs-link {
    padding: 1.25rem;
  }

  .home-sales_mask {
    width: 95%;
  }

  .home-howto_component2 {
    grid-template-columns: 1fr;
  }

  .home-faq_content {
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
  }

  .home-press_item-content-bottom {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .header1_component {
    grid-template-columns: 1fr;
  }

  .text-block {
    flex-wrap: wrap;
  }

  .column {
    min-height: auto;
    flex-flow: wrap;
    align-content: flex-start;
  }

  .column-2 {
    min-height: 0;
    flex-wrap: nowrap;
  }

  .columns {
    flex-flow: wrap-reverse;
    align-content: center;
    display: flex;
    overflow: auto;
  }

  .container {
    max-width: none;
  }

  .nav-menu-two, .nav-menu {
    flex-direction: column;
  }

  .nav-button-wrapper {
    width: auto;
  }
}

#w-node-fbb2cfb0-0e22-75f4-4978-59c3b7e98b5d-3863c52e, #w-node-fbb2cfb0-0e22-75f4-4978-59c3b7e98b5f-3863c52e, #w-node-fbb2cfb0-0e22-75f4-4978-59c3b7e98b61-3863c52e, #w-node-fbb2cfb0-0e22-75f4-4978-59c3b7e98b63-3863c52e, #w-node-fbb2cfb0-0e22-75f4-4978-59c3b7e98b65-3863c52e, #w-node-fbb2cfb0-0e22-75f4-4978-59c3b7e98b67-3863c52e, #w-node-fbb2cfb0-0e22-75f4-4978-59c3b7e98b69-3863c52e, #w-node-fbb2cfb0-0e22-75f4-4978-59c3b7e98b6b-3863c52e, #w-node-eec378bd-d7c1-f0c8-11b1-631daca5078e-3863c52e, #w-node-fb36ae1f-5de5-1418-eeb9-4f9cfadbd542-3863c52e, #w-node-_7c26bdce-d3fb-a95c-fc14-2af5261498c4-3863c52e, #w-node-f5d40f60-120f-910e-e57c-39d5cd055ad6-3863c52e, #w-node-f5d40f60-120f-910e-e57c-39d5cd055ad8-3863c52e, #w-node-f5d40f60-120f-910e-e57c-39d5cd055ada-3863c52e, #w-node-f5d40f60-120f-910e-e57c-39d5cd055adc-3863c52e, #w-node-f5d40f60-120f-910e-e57c-39d5cd055ade-3863c52e, #w-node-f5d40f60-120f-910e-e57c-39d5cd055ae0-3863c52e, #w-node-f5d40f60-120f-910e-e57c-39d5cd055ae2-3863c52e, #w-node-f5d40f60-120f-910e-e57c-39d5cd055ae4-3863c52e, #w-node-f5d40f60-120f-910e-e57c-39d5cd055ae6-3863c52e, #w-node-f5d40f60-120f-910e-e57c-39d5cd055ae8-3863c52e, #w-node-f5d40f60-120f-910e-e57c-39d5cd055aea-3863c52e {
  justify-self: center;
}

#w-node-_55ea86a4-fe8d-90ae-2330-938fba89e0a0-3863c52e {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_32d1df33-6389-b5db-ec6e-66c1b82341e2-3863c52e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e1dfd3b5-39a9-e48c-dac8-9c89c9a849da-3863c52e {
  justify-self: start;
}

#w-node-e2be19a2-8d1c-5048-6c73-25c6027b0fc7-2e63c535 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-_79253995-45bb-4c4c-a5f1-2ef351b7cb1b-2e63c535 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-e1dfd3b5-39a9-e48c-dac8-9c89c9a849da-3863c52e {
    justify-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-e1dfd3b5-39a9-e48c-dac8-9c89c9a849f3-3863c52e {
    grid-area: 4 / 1 / 5 / 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-e1dfd3b5-39a9-e48c-dac8-9c89c9a849da-3863c52e {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Circularstd';
  src: url('../fonts/CircularStd-BookItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Circularstd';
  src: url('../fonts/CircularStd-Book.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Circularstd';
  src: url('../fonts/CircularStd-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Circularstd';
  src: url('../fonts/CircularStd-MediumItalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
