@font-face {
  font-family: Messina Sans;
  src: url('../fonts/MessinaSans-SemiBold.ttf') format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Messina Sans;
  src: url('../fonts/MessinaSans-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --placeholder-text-color: #a19fb899;
  --white: white;
  --black: black;
}

.bg-body {
  background-color: #131313;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100vw;
  height: auto;
  display: flex;
  position: static;
  overflow: auto;
}

.form_content-wrapper {
  z-index: 10;
  background-image: linear-gradient(144deg, #202020, #202020 48% 56%, #202020 67%, #1f1f1f 75%, #202020 89%, #2e2e2e);
  border-radius: 1.5em;
  flex-flow: column;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  width: 95%;
  max-width: 1920px;
  height: 93%;
  min-height: 85%;
  margin: 0 32px 32px;
  display: block;
  position: fixed;
  overflow: auto;
}

.content-wrapper-left {
  width: 55%;
  height: 90%;
  padding: 2em 0 0;
  overflow: auto;
}

.content-wrapper-right {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 38%;
  height: 90%;
  padding: 0 0 2em;
  display: flex;
  overflow: auto;
}

.form-heading {
  color: #fff;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Messina Sans, sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.25;
}

.body {
  background-color: #131313;
  max-width: 1920px;
  font-size: .9vw;
}

.form-subheading {
  color: #8d8d8d;
  letter-spacing: -.5px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Messina Sans, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.25;
}

.field-label {
  color: #fff;
  letter-spacing: -.3px;
  margin-top: 1.5em;
  margin-bottom: 8px;
  font-family: Messina Sans, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.form-block {
  margin-top: 2.5em;
  margin-bottom: 0;
}

.text-field {
  color: #fff;
  background-color: #0d0c12;
  border: 1px solid #524e73b3;
  border-radius: 8px;
  height: auto;
  margin-bottom: 0;
  padding: 16px 20px;
  font-family: Messina Sans, sans-serif;
}

.text-field:focus {
  border-color: #6f68a8;
}

.text-field::placeholder {
  color: var(--placeholder-text-color);
}

.form_name-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
}

.text-field_first-name {
  color: #fff;
  background-color: #0d0c12;
  border: 1px solid #524e73b3;
  border-radius: 8px;
  width: 50%;
  height: auto;
  margin-bottom: 0;
  margin-right: .5em;
  padding: 16px 20px;
  font-family: Messina Sans, sans-serif;
}

.text-field_first-name:focus {
  border-color: #6f68a8;
}

.text-field_first-name::placeholder {
  color: #a19fb899;
  -webkit-text-stroke-color: var(--placeholder-text-color);
}

.text-field_last-name {
  color: #fff;
  background-color: #0d0c12;
  border: 1px solid #524e73b3;
  border-radius: 8px;
  width: 50%;
  height: auto;
  margin-bottom: 0;
  margin-left: .5em;
  margin-right: 0;
  padding: 16px 20px;
  font-family: Messina Sans, sans-serif;
}

.text-field_last-name:focus {
  border-color: #6f68a8;
}

.text-field_last-name::placeholder {
  color: #a19fb899;
  -webkit-text-stroke-color: var(--placeholder-text-color);
}

.form-element-left {
  width: 50%;
  margin-right: .5em;
}

.form_flex-wrap {
  display: flex;
}

.form-element-right {
  width: 50%;
  margin-left: .5em;
}

.submit-button {
  color: #000;
  letter-spacing: -.5px;
  background-color: #fff;
  border-radius: 3em;
  margin-top: 2.5em;
  padding: 8px 28px;
  font-family: Messina Sans, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.submit-button:hover {
  background-color: #e3e1e6;
}

.checkbox-field {
  margin-top: 2em;
}

.checkbox-label {
  color: #a19fb8;
  margin-left: 12px;
  font-family: Messina Sans, sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.checkbox {
  background-color: #0d0c12;
  border-color: #524e73b3;
  border-radius: 4px;
  width: 20px;
  height: 20px;
  margin-top: 0;
}

.checkbox.w--redirected-checked {
  background-color: #30223c;
  background-image: url('../images/check-round-2.svg');
  background-size: 14px 14px;
  border-color: #3f304b;
}

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

.content-wrapper-divider {
  justify-content: center;
  align-items: center;
  width: 3%;
  height: 75vh;
  min-height: 500px;
  margin-left: 2em;
  margin-right: 2em;
  display: flex;
}

.form-divider {
  background-color: #2e2e2e;
  width: 1px;
  height: 100%;
  margin-top: 0;
}

.img-wrapper {
  background-image: url('../images/rituals-associate.webp');
  background-size: cover;
  border-radius: 10px;
  width: 100%;
  height: 25vh;
  min-height: 180px;
}

.content-flex-wrap {
  object-fit: fill;
  justify-content: center;
  height: auto;
  margin-top: 0;
  padding-left: 6em;
  padding-right: 6em;
  display: flex;
}

.close-wrapper {
  border-radius: 0;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: auto;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  display: flex;
  position: relative;
}

.info-wrapper {
  margin-top: 2.5em;
}

.info-label {
  color: #acacac;
  margin-top: 0;
  margin-bottom: 21px;
  font-family: Messina Sans, sans-serif;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.3;
  display: block;
}

.heading {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Messina Sans, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.05;
}

.details-paragraph {
  color: #7c7c7c;
  width: 100%;
  margin-top: 4px;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.3;
}

.logo-wrapper {
  width: 100%;
}

.logo-divider {
  background-color: #2e2e2e;
  width: 100%;
  height: 1px;
  margin-top: 2.5em;
  margin-bottom: 0;
}

.logo_box-wrapper {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.logo-box {
  width: 20%;
  height: auto;
  margin-left: 0;
  margin-right: 0;
}

.close-icon {
  background-color: #fffefe1a;
  border-radius: 100px;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-top: 24px;
  margin-bottom: 24px;
  margin-right: 24px;
  display: flex;
  position: sticky;
}

.close-icon:hover {
  background-color: #fffefe33;
}

.cross_line-1 {
  background-color: #fff;
  width: 21px;
  height: 1px;
  transform: rotate(45deg);
}

.cross_line-2 {
  background-color: #fff;
  width: 21px;
  height: 1px;
  margin-left: -21px;
  transform: rotate(-45deg);
}

.close-icon-wrapper {
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: flex;
}

.s-hero {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 90vh;
  display: flex;
}

.display_hero-section {
  z-index: 2;
  color: #fff;
  letter-spacing: -.4px;
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Messina Sans, sans-serif;
  font-size: 4em;
  font-weight: 600;
  line-height: 1.05;
  display: flex;
  position: absolute;
  inset: 0%;
}

.heading-2 {
  color: #a18686;
}

.new-black_background-video {
  z-index: 1;
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
}

.bg-video_color-overlay {
  z-index: 1;
  background-image: radial-gradient(circle, #17101eb3, #0705096b 21%, #00000080);
  width: 100vw;
  height: 100vh;
  position: absolute;
  inset: 0%;
}

.s_info {
  background-color: #1a1723;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: auto;
  display: flex;
  position: relative;
}

.heading-1 {
  z-index: 3;
  color: #fff;
  text-align: center;
  letter-spacing: -.5px;
  justify-content: center;
  align-items: center;
  width: 45%;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-family: Messina Sans, sans-serif;
  font-size: 3em;
  font-weight: 600;
  line-height: 1.25;
  display: flex;
  position: relative;
}

.sign-up-btn-right {
  background-color: #c4baef33;
  border: 1px solid #4b4b4b;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 12.5em;
  margin-top: 0;
  margin-left: .5em;
  padding: 1.3em 0;
  display: flex;
}

.sign-up-btn-right:hover {
  background-color: #c4baef1f;
}

.s-info_content-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1700px;
  padding-top: 7.5em;
  padding-bottom: 7.5em;
  display: flex;
}

.btn-label_black {
  color: #1a1723;
  margin-bottom: 0;
  font-family: Messina Sans, sans-serif;
  font-size: 1.125em;
  line-height: 1;
  text-decoration: none;
}

.s-info_btn-wrapper {
  z-index: 5;
  justify-content: center;
  align-items: center;
  margin-top: 2.5em;
  display: flex;
  position: relative;
}

.sign-up-btn-left {
  background-color: #fff;
  border: 1px solid #8a8a8a;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 12.5em;
  margin-top: 0;
  margin-right: .5em;
  padding: 1.3em 0;
  text-decoration: none;
  display: flex;
}

.sign-up-btn-left:hover {
  background-color: #dadada;
}

.btn-label_white {
  color: #fff;
  margin-bottom: 0;
  font-family: Messina Sans, sans-serif;
  font-size: 1.125em;
  line-height: 1;
}

.form-container_flex-wrapper {
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  padding: 32px;
  display: none;
  position: static;
  overflow: hidden;
}

.form_bg-color-overlay {
  z-index: 4;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: #000000bf;
  width: 100vw;
  height: 100vh;
  position: fixed;
}

.paragraph {
  z-index: 2;
  color: #fff;
  text-align: center;
  letter-spacing: -.2px;
  margin-top: 0;
  margin-bottom: 48px;
  font-family: Messina Sans, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.05;
  position: absolute;
  inset: auto 0% 0%;
}

.s_images {
  background-color: #131313;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 1700px;
  height: auto;
  display: flex;
}

.s-images_flex-wrap {
  background-color: #131313;
  justify-content: center;
  align-items: center;
  width: 100vw;
  display: flex;
}

.s-images_content-wrap {
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
  display: flex;
}

.s-images_img-wrapper {
  width: 58em;
  height: 37em;
  margin-right: 16px;
}

.s-images_dyson-store {
  border-radius: 1.5em;
  width: 100%;
  height: 100%;
}

.div-block {
  display: flex;
}

.s-images_small-img-container_top {
  width: 27.25em;
  height: auto;
  margin-bottom: 16px;
  position: relative;
}

.s-images_dyson-location-pick {
  border-radius: 1.5em;
  width: 100%;
  height: auto;
  position: static;
}

.s-images_small-img-container_bottom {
  width: 27.25em;
  height: 50%;
  margin-top: 0;
}

.dyson-location_info-field {
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  background-color: #131313;
  border-radius: 12px;
  width: 280px;
  height: auto;
  margin-bottom: 16px;
  margin-left: 16px;
  margin-right: 16px;
  padding: 12px 16px;
  text-decoration: none;
  position: absolute;
  inset: auto auto 0% 0%;
}

.location-field_detail-heading {
  color: #fff;
  margin-bottom: 0;
  font-family: Messina Sans, sans-serif;
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.2;
}

.location-field_detail-subheading {
  color: #ffffff80;
  margin-bottom: 0;
  font-family: Messina Sans, sans-serif;
  font-size: .7rem;
  font-weight: 400;
  line-height: 1.4;
}

.success-message {
  color: #fff;
  background-color: #86c8861a;
  border-radius: 14px;
  padding-top: 48px;
  padding-bottom: 48px;
  font-family: Messina Sans, sans-serif;
  font-size: 2em;
}

.text-block {
  line-height: 1.2;
}

.img_form-success {
  width: 2em;
  height: 2em;
  margin-bottom: 8px;
}

.text-block-2 {
  font-size: 21px;
  font-weight: 400;
}

.s-images_partner-logos {
  justify-content: center;
  align-items: center;
  display: flex;
}

.partner-logos_flex-wrap {
  background-color: #131313;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 75vw;
  height: auto;
  margin-bottom: 0;
  padding-bottom: 0;
  display: flex;
}

.partner-logos_content-wrap {
  justify-content: center;
  align-items: center;
  width: 78vw;
  height: auto;
  display: flex;
}

.partner-logo-container {
  justify-content: center;
  align-items: center;
  width: 16.6%;
  height: auto;
  display: flex;
}

.partner-logo-img {
  height: 120px;
}

.partner-logos_divider {
  background-color: #3a3848;
  width: 75vw;
  height: 1px;
  margin-bottom: 10vw;
  position: relative;
}

.s_event-info {
  background-color: #131313;
  max-width: 1700px;
}

.s_event-info_flex-wrapper {
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: auto;
  display: flex;
}

.s_event-info_content-wrapper {
  width: 55vw;
  height: auto;
}

.heading-1_event-info {
  color: #fff;
  text-align: left;
  letter-spacing: -.5px;
  justify-content: center;
  align-items: center;
  width: auto;
  margin-top: -4px;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-family: Messina Sans, sans-serif;
  font-size: 3.5em;
  font-weight: 400;
  line-height: 1.25;
  display: block;
}

.event-info_location-date-wrapper {
  justify-content: center;
  align-items: center;
  margin-top: 5em;
  margin-bottom: 5em;
  display: flex;
}

.event-info-block {
  flex-direction: column;
  justify-content: flex-start;
  width: 50%;
  height: auto;
  display: flex;
}

.event-info_heading-2 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Messina Sans, sans-serif;
  font-size: 2em;
  font-weight: 600;
  line-height: 1.05;
}

.event-info_subheading {
  color: #919191;
  margin-top: 4px;
  margin-bottom: 0;
  font-family: Messina Sans, sans-serif;
  font-size: 1.6em;
  font-weight: 400;
  line-height: 1.4;
  display: block;
}

.event-info_divider {
  width: 100%;
  height: 1px;
  margin-bottom: 80px;
  padding-top: 0;
  padding-bottom: 0;
}

.partner-logos_divider-copy {
  background-color: #3a3848;
  width: 100%;
  height: 1px;
}

.heading-2_event-info {
  color: #fff;
  text-align: left;
  letter-spacing: -.5px;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-family: Messina Sans, sans-serif;
  font-size: 2.5em;
  font-weight: 600;
  line-height: 1.25;
  display: block;
}

.event-info_paragraph-wrap {
  margin-top: 5em;
}

.event-info_paragraph {
  color: #ffffff80;
  letter-spacing: -.2px;
  margin-top: 16px;
  margin-bottom: 0;
  font-family: Messina Sans, sans-serif;
  font-size: 1.4em;
  font-weight: 400;
  line-height: 1.5;
}

.s-event-info_btn-wrapper {
  justify-content: flex-start;
  align-items: center;
  margin-top: 5em;
  display: flex;
}

.s-footer {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 1920px;
  margin-top: 32px;
  display: flex;
}

.footer_content-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 55vw;
  display: flex;
}

.footer-divider {
  background-color: #2a2739;
  width: 55vw;
  height: 1px;
  margin-top: 5em;
}

.footer-p {
  color: #fff;
  width: auto;
  margin-top: 1.5em;
  margin-bottom: 0;
  padding-left: 1.5em;
  padding-right: 1.5em;
  font-family: Messina Sans, sans-serif;
  font-size: .75em;
  font-weight: 400;
  line-height: 1.8;
}

.footer_text-wrap {
  justify-content: flex-start;
  align-items: center;
  width: 55vw;
  padding-bottom: 2vh;
  display: flex;
}

.footer-p-dark, .footer-p-first {
  color: #fff;
  width: auto;
  margin-top: 1.5em;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 1.5em;
  font-family: Messina Sans, sans-serif;
  font-size: .75em;
  font-weight: 400;
  line-height: 1.8;
}

.footer_text-flex {
  justify-content: center;
  align-items: center;
  width: 55vw;
  display: flex;
}

.btn_more-info {
  text-decoration: none;
}

.html-embed {
  display: block;
}

.navbar {
  width: 100vw;
  height: auto;
}

.nav_flex-wrap {
  justify-content: center;
  align-items: flex-start;
  width: auto;
  height: auto;
  display: flex;
}

.nav_content-wrap {
  z-index: 10;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 5em;
  display: flex;
  position: fixed;
  top: 0;
}

.nav_logo-wrapper {
  background-image: url('../images/RetailRunsoniOS_v3.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain;
  justify-content: center;
  align-items: center;
  width: 12em;
  height: 1rem;
  margin-top: .25rem;
  display: flex;
}

.nav_btn-wrapper {
  padding-top: 0;
}

.nav_btn-text {
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
  color: #fff;
  background-color: #c4baef33;
  border: 1px solid #5a5a5a;
  border-radius: 2em;
  padding: .7vw 1.2vw;
  font-family: Messina Sans, sans-serif;
  font-size: 1em;
  text-decoration: none;
}

.nav_btn-text:hover {
  background-color: #c4baef1f;
}

.nav_width-wrap {
  z-index: 3;
  justify-content: space-between;
  align-items: center;
  width: 75%;
  max-width: 1800px;
  display: flex;
  position: absolute;
}

.nav_btn-link {
  text-decoration: none;
}

.nav_bg-color {
  z-index: 2;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: #13131380;
  width: 100%;
  height: 5em;
  position: absolute;
}

.nav-logo.w--current {
  text-decoration: none;
}

.s-info_bg-gradient-wrap {
  position: absolute;
}

.bg-gradient {
  opacity: 1;
  -webkit-text-fill-color: inherit;
  mix-blend-mode: normal;
  background-color: #131313;
  background-image: linear-gradient(#252525, #131313 51%);
  background-clip: padding-box;
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
}

.wrap-lane-1 {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  display: flex;
}

.wrap-lane-2 {
  justify-content: center;
  align-items: center;
  margin-top: -21px;
  display: flex;
}

.text-span {
  color: #fff;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(169deg, #b381ff, #fff);
  -webkit-background-clip: text;
  background-clip: text;
}

.text-span-2 {
  color: #fff;
  -webkit-text-stroke-color: #fff;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(169deg, #b381ff, #fff);
  -webkit-background-clip: text;
  background-clip: text;
}

.mobile_info-wrapper {
  display: none;
}

.heading-3-mobile {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Messina Sans, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.05;
}

.info-label-mobile {
  color: #8e8bac;
  margin-top: 0;
  margin-bottom: 16px;
  font-family: Messina Sans, sans-serif;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.3;
  display: block;
}

.mobile_details-paragraph {
  color: #8e8bac;
  width: 100%;
  margin-top: 16px;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.3;
}

.mobile-form_info-wrap {
  display: none;
}

.mobile-form_heading {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Messina Sans, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.05;
}

.mobile-form_info-label {
  color: #8e8bac;
  margin-top: 0;
  margin-bottom: 16px;
  font-family: Messina Sans, sans-serif;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.3;
  display: block;
}

.mobile-form_details-paragraph {
  color: #8e8bac;
  width: 100%;
  margin-top: 16px;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.3;
}

.logo-chip {
  margin-left: 4px;
  text-decoration: none;
}

.logo-chip_text {
  color: #000;
  background-color: #fff;
  border-radius: 3px;
  padding: 4px;
  font-family: Messina Sans, sans-serif;
  font-size: 7px;
  line-height: 1;
  text-decoration: none;
}

.svg-wrapper {
  width: 60%;
  margin-bottom: .5rem;
}

.form_svg-wrapper {
  width: 75%;
}

.new-black_background-video_mobile {
  z-index: 1;
  width: 100vw;
  height: 100vh;
  display: none;
  position: absolute;
  top: 0;
}

.image-3 {
  margin-bottom: .5rem;
}

@media screen and (min-width: 1920px) {
  .form_content-wrapper {
    max-height: 1080px;
    overflow: hidden;
  }

  .content-wrapper-divider {
    max-height: 900px;
  }

  .img-wrapper {
    background-image: url('../images/Rituals11oct23-551637.webp');
    max-height: 285px;
  }

  .info-label {
    font-size: 1.1rem;
  }

  .heading {
    font-size: 1.8rem;
  }

  .details-paragraph {
    margin-top: 8px;
    font-size: 1.3rem;
    display: block;
  }

  .display_hero-section {
    font-size: 4.5rem;
  }

  .heading-1 {
    width: 40%;
    font-size: 3rem;
  }

  .sign-up-btn-right {
    width: 11rem;
    padding-top: 1.2em;
    padding-bottom: 1.2em;
  }

  .s-info_content-wrapper {
    max-width: 1800px;
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .btn-label_black {
    font-size: 1.25rem;
  }

  .s-info_btn-wrapper {
    z-index: 2;
    margin-top: 3rem;
    font-size: 1.1rem;
    position: relative;
  }

  .sign-up-btn-left {
    width: 11rem;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }

  .btn-label_white {
    font-size: 1.25rem;
  }

  .form-container_flex-wrapper {
    align-items: center;
    padding-top: 32px;
    padding-bottom: 32px;
    display: none;
  }

  .paragraph {
    font-size: 1rem;
  }

  .s_images {
    max-width: 100vw;
  }

  .s-images_content-wrap {
    max-width: 1600px;
  }

  .s-images_img-wrapper {
    width: 57.5rem;
    height: 100%;
  }

  .s-images_dyson-store {
    border-radius: 1.7rem;
    width: 100%;
    height: auto;
  }

  .s-images_small-img-wrapper {
    width: auto;
    height: 100%;
  }

  .s-images_small-img-container_top {
    width: 28rem;
  }

  .s-images_dyson-location-pick {
    border-radius: 1.7rem;
    width: 100%;
    height: 50%;
  }

  .s-images_small-img-container_bottom {
    width: 28rem;
  }

  .dyson-location_info-field {
    width: 320px;
  }

  .location-field_detail-heading {
    font-size: 1rem;
    line-height: 1.3;
  }

  .location-field_detail-subheading {
    width: 80%;
    font-size: .9rem;
  }

  .partner-logos_content-wrap, .partner-logos_divider {
    max-width: 1475px;
  }

  .s_event-info_content-wrapper {
    width: 65rem;
    max-width: 1700px;
  }

  .heading-1_event-info {
    font-size: 3.2rem;
  }

  .event-info_location-date-wrapper {
    margin-top: 5.5rem;
    margin-bottom: 5.5rem;
  }

  .event-info_heading-2 {
    font-size: 2rem;
  }

  .event-info_subheading {
    margin-top: 8px;
    font-size: 1.7rem;
  }

  .heading-2_event-info {
    font-size: 2.8rem;
  }

  .event-info_paragraph-wrap {
    margin-top: 5.5rem;
  }

  .event-info_paragraph {
    font-size: 1.5rem;
  }

  .s-event-info_btn-wrapper {
    margin-top: 5.5rem;
  }

  .s-footer {
    max-width: 100vw;
  }

  .footer_content-wrap {
    width: 70rem;
  }

  .footer-divider {
    width: 70rem;
    margin-top: 6rem;
  }

  .footer-p {
    font-size: .9rem;
  }

  .footer_text-wrap {
    justify-content: flex-start;
    width: 65rem;
    max-width: 1500px;
  }

  .footer-p-dark, .footer-p-first {
    font-size: .9rem;
  }

  .footer_text-flex {
    width: 100vw;
  }

  .nav_content-wrap {
    height: 5.5rem;
  }

  .nav_logo-wrapper {
    width: auto;
  }

  .nav_btn-text {
    padding: 1.1rem 1.3rem;
    font-size: 1.1rem;
  }

  .nav_width-wrap {
    width: 80rem;
  }

  .nav_bg-color {
    height: 5.5rem;
  }

  .image {
    width: 11rem;
  }

  .form_svg-wrapper {
    width: 30rem;
  }

  .image-2 {
    width: 35rem;
  }
}

@media screen and (max-width: 991px) {
  .form_content-wrapper {
    z-index: 12;
    justify-content: flex-start;
    height: 90%;
    min-height: 90%;
    margin-top: 0;
    display: flex;
    overflow: auto;
  }

  .content-wrapper-left {
    width: 50%;
    height: auto;
  }

  .content-wrapper-right {
    width: 35%;
  }

  .form-heading {
    font-size: 32px;
  }

  .form-subheading {
    font-size: 24px;
  }

  .checkbox-label {
    font-size: 12px;
    line-height: 1.3;
  }

  .content-wrapper-divider {
    height: auto;
    min-height: 550px;
    margin-left: 24px;
    margin-right: 24px;
  }

  .content-flex-wrap {
    padding-left: 48px;
    padding-right: 48px;
  }

  .info-label {
    font-size: 12px;
  }

  .heading {
    font-size: 16px;
  }

  .details-paragraph {
    font-size: 14px;
  }

  .logo_box-wrapper {
    flex-wrap: wrap;
    place-content: stretch flex-start;
  }

  .logo-box {
    width: 25%;
    height: auto;
  }

  .display_hero-section {
    letter-spacing: -.4px;
    font-size: 40px;
  }

  .heading-1 {
    width: 55%;
    font-size: 28px;
  }

  .sign-up-btn-right {
    width: 150px;
    margin-left: 8px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .btn-label_black {
    font-size: 14px;
  }

  .sign-up-btn-left {
    width: 150px;
    margin-right: 8px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .btn-label_white {
    font-size: 14px;
  }

  .form-container_flex-wrapper {
    align-items: center;
    display: none;
  }

  .form_bg-color-overlay {
    z-index: 11;
  }

  .s-images_content-wrap {
    flex-direction: column;
    width: 75%;
  }

  .s-images_img-wrapper {
    width: 100%;
    height: 400px;
    margin-right: 0;
  }

  .s-images_small-img-wrapper {
    justify-content: center;
    width: 100%;
    display: flex;
  }

  .s-images_small-img-container_top {
    width: 50%;
    height: auto;
    margin-top: 16px;
    margin-bottom: 0;
    margin-right: 8px;
  }

  .s-images_dyson-location-pick {
    height: auto;
  }

  .s-images_small-img-container_bottom {
    width: 50%;
    margin-top: 16px;
    margin-left: 8px;
  }

  .location-field_detail-heading {
    font-size: 12px;
  }

  .location-field_detail-subheading {
    font-size: 10px;
  }

  .text-block-2 {
    line-height: 1.2;
  }

  .partner-logos_flex-wrap {
    margin-bottom: 80px;
  }

  .partner-logo-img {
    height: auto;
  }

  .s_event-info_content-wrapper {
    width: 500px;
  }

  .heading-1_event-info {
    width: 100%;
    font-size: 29px;
  }

  .event-info_heading-2 {
    font-size: 21px;
  }

  .event-info_subheading {
    font-size: 16px;
  }

  .heading-2_event-info {
    font-size: 21px;
  }

  .event-info_paragraph {
    font-size: 14px;
  }

  .footer_content-wrap {
    width: 65%;
  }

  .footer-divider {
    width: 100%;
  }

  .footer-p {
    font-size: 9px;
  }

  .footer_text-wrap {
    width: 100%;
  }

  .footer-p-dark, .footer-p-first {
    font-size: 9px;
  }

  .footer_text-flex {
    width: 65%;
  }

  .nav_content-wrap {
    height: 64px;
  }

  .nav_logo-wrapper {
    width: 120px;
  }

  .nav_btn-text {
    padding: 10px 19px;
    font-size: 13px;
  }

  .nav_bg-color {
    height: 100%;
  }

  .bg-gradient {
    background-color: #1a1724;
    background-position: 50% 0;
    background-size: auto 102%;
  }

  .wrap-lane-1 {
    flex-wrap: wrap;
  }

  .info-label-mobile, .mobile-form_info-label {
    font-size: 12px;
  }
}

@media screen and (max-width: 767px) {
  .form_content-wrapper {
    height: 90vh;
    min-height: 100px;
    margin-top: 32px;
  }

  .form-heading {
    font-size: 4.3vw;
  }

  .form-subheading {
    font-size: 3vw;
  }

  .checkbox-label {
    font-size: 12px;
  }

  .content-wrapper-divider {
    min-height: 600px;
  }

  .content-flex-wrap {
    flex-direction: row;
    display: flex;
  }

  .close-wrapper {
    position: sticky;
    top: 0;
  }

  .heading {
    font-size: 3vw;
  }

  .details-paragraph {
    font-size: 2.2vw;
  }

  .close-icon {
    position: relative;
  }

  .display_hero-section {
    font-size: 28px;
  }

  .heading-1 {
    width: 65%;
    font-size: 24px;
  }

  .s-info_content-wrapper {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .form-container_flex-wrapper {
    flex-direction: row;
    display: none;
  }

  .s-images_content-wrap {
    width: 85%;
  }

  .partner-logo-container {
    width: 18%;
  }

  .s_event-info_content-wrapper {
    width: 450px;
  }

  .heading-1_event-info {
    width: 100%;
    font-size: 28px;
  }

  .s-event-info_btn-wrapper {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .footer_content-wrap, .footer_text-flex, .nav_width-wrap {
    width: 80%;
  }

  .wrap-lane-2 {
    margin-top: -16px;
    display: flex;
  }

  .heading-3-mobile {
    font-size: 3vw;
  }

  .mobile_details-paragraph {
    font-size: 2.2vw;
  }

  .mobile-form_heading {
    font-size: 3vw;
  }

  .mobile-form_details-paragraph {
    font-size: 2.2vw;
  }
}

@media screen and (max-width: 479px) {
  .form_content-wrapper {
    z-index: 12;
    border-radius: 16px;
    width: 93%;
    height: 93%;
    min-height: auto;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
  }

  .content-wrapper-left {
    width: 100%;
    height: 100%;
    padding-top: 0;
  }

  .content-wrapper-right {
    width: 100%;
    display: none;
  }

  .heading-wrapper {
    margin-bottom: 32px;
  }

  .form-heading {
    font-size: 9vw;
  }

  .form-subheading {
    font-size: 5.5vw;
  }

  .form-block {
    margin-top: 0;
    padding-bottom: 0;
  }

  .form_name-wrapper {
    flex-direction: column;
  }

  .text-field_first-name {
    width: 100%;
    margin-right: 0;
  }

  .text-field_last-name {
    width: 100%;
    margin-top: 12px;
    margin-left: 0;
    margin-right: 0;
  }

  .form-element-left {
    width: 100%;
    margin-right: 0;
  }

  .form_flex-wrap {
    flex-direction: column;
  }

  .form-element-right {
    width: 100%;
    margin-left: 0;
  }

  .submit-button {
    margin-top: 24px;
    padding: 12px 32px;
    font-size: 16px;
  }

  .checkbox-field {
    height: auto;
    margin-top: 24px;
    padding-left: 24px;
  }

  .checkbox-label {
    margin-bottom: 0;
  }

  .checkbox {
    width: 24px;
    height: 24px;
    margin-left: -24px;
  }

  .content-wrapper-divider {
    display: none;
  }

  .content-flex-wrap {
    flex-direction: column;
    height: auto;
    margin-top: 0;
    padding-top: 0;
    padding-left: 32px;
    padding-right: 32px;
  }

  .close-wrapper {
    position: sticky;
    top: 0;
  }

  .info-wrapper {
    margin-top: 24px;
  }

  .info-label {
    margin-top: 8px;
    margin-bottom: 12px;
  }

  .heading {
    font-size: 14px;
  }

  .details-paragraph {
    margin-top: 12px;
  }

  .close-icon {
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px);
    margin-top: 12px;
    margin-right: 12px;
    position: relative;
  }

  .display_hero-section {
    text-align: center;
    font-size: 1000%;
  }

  .new-black_background-video {
    display: none;
  }

  .s_info {
    margin-top: 4.8rem;
  }

  .heading-1 {
    text-align: center;
    width: 85%;
    font-size: 28px;
  }

  .sign-up-btn-right {
    width: 120px;
  }

  .s-info_content-wrapper {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .s-info_btn-wrapper {
    margin-top: 16px;
  }

  .sign-up-btn-left {
    width: 120px;
  }

  .form-container_flex-wrapper {
    align-items: flex-start;
    padding: 32px;
    display: none;
    overflow: hidden;
  }

  .form_bg-color-overlay {
    z-index: 11;
    margin-top: -32px;
  }

  .s-images_content-wrap {
    width: 85%;
  }

  .s-images_img-wrapper {
    height: auto;
  }

  .s-images_small-img-container_top {
    height: auto;
    margin-top: 12px;
    margin-right: 6px;
  }

  .s-images_dyson-location-pick {
    height: auto;
  }

  .s-images_small-img-container_bottom {
    margin-top: 12px;
    margin-left: 6px;
  }

  .dyson-location_info-field {
    border-radius: 8px;
    margin-bottom: 8px;
    margin-left: 8px;
    margin-right: 8px;
    padding: 10px;
    display: none;
  }

  .location-field_detail-heading {
    font-size: 10px;
  }

  .location-field_detail-subheading {
    font-size: 9px;
  }

  .img_form-success {
    width: 24px;
    height: 24px;
  }

  .partner-logos_flex-wrap {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    place-items: center stretch;
    width: 85vw;
    margin-top: 32px;
    margin-bottom: 56px;
    display: grid;
  }

  .partner-logos_content-wrap {
    width: 100%;
  }

  .partner-logo-container {
    border: 1px solid #363636;
    border-radius: .5rem;
    width: 100%;
  }

  .partner-logo-img {
    width: 100%;
  }

  .partner-logos_divider {
    width: auto;
  }

  .s_event-info_content-wrapper {
    width: 85%;
  }

  .heading-1_event-info {
    width: 100%;
    margin-top: 0;
    font-size: 6vw;
    font-weight: 400;
  }

  .event-info_location-date-wrapper {
    flex-flow: column;
    align-items: flex-start;
  }

  .event-info-block {
    width: 100%;
  }

  .event-info_heading-2 {
    margin-right: 16px;
    padding-right: 0;
    font-size: 24px;
    line-height: 1.15;
  }

  .event-info_subheading {
    color: #fff;
    margin-bottom: 24px;
    margin-right: 16px;
    line-height: 1.3;
  }

  .partner-logos_divider-copy {
    margin-top: 0;
  }

  .heading-2_event-info {
    font-size: 22px;
  }

  .event-info_paragraph-wrap {
    margin-top: 24px;
  }

  .event-info_paragraph {
    margin-top: 8px;
    margin-bottom: 32px;
    font-size: 15px;
    line-height: 1.6;
  }

  .s-footer {
    margin-top: 16px;
  }

  .footer_content-wrap {
    width: 85%;
  }

  .footer_text-wrap {
    flex-wrap: wrap;
  }

  .footer-p-dark {
    padding-left: 0;
  }

  .footer-p-first {
    margin-top: 14px;
    padding-right: 8px;
  }

  .footer_text-flex {
    width: 85%;
  }

  .html-embed {
    display: none;
  }

  .nav_btn-text {
    font-size: 12px;
  }

  .nav_width-wrap {
    width: 90%;
  }

  .form {
    padding-bottom: 48px;
  }

  .text-span-2 {
    color: #c6b9ff;
  }

  .heading-3-mobile {
    font-size: 16px;
  }

  .info-label-mobile {
    margin-bottom: 12px;
  }

  .mobile_details-paragraph {
    margin-top: 12px;
    font-size: 14px;
  }

  .mobile_info-wrapper_divider {
    background-color: #524e73b3;
    width: 100%;
    height: 1px;
    margin-top: 32px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .mobile-form_info-wrap {
    display: none;
  }

  .mobile-form_heading {
    font-size: 18px;
  }

  .mobile-form_info-label {
    margin-bottom: 21px;
  }

  .mobile-form_details-paragraph {
    margin-top: 4px;
    font-size: 14px;
  }

  .mobile-form_divider {
    background-color: #524e73b3;
    width: 100%;
    height: 1px;
    margin-top: 24px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .svg-wrapper, .form_svg-wrapper {
    width: 100%;
  }

  .new-black_background-video_mobile {
    display: block;
  }
}


@font-face {
  font-family: 'Messina Sans';
  src: url('../fonts/MessinaSans-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Messina Sans';
  src: url('../fonts/MessinaSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}