html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
html,
body {
  width: 100%;
  text-rendering: optimizeLegibility;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-family: var(--fontface__neueMontrealRegular), sans-serif;
}
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
*:focus {
  border: none;
  outline: none;
}
a,
a:active,
a:focus,
a:hover,
a:visited {
  text-decoration: none;
}
input {
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  background-color: transparent;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}
img {
  object-fit: cover;
  object-position: center;
}
.disable-pointer-events,
.disable-pointer-events * {
  pointer-events: none !important;
}

:root {
  --fontface__lexendZettaLight: "LexendZetta-Light";
  --fontface__lexendZettaMedium: "LexendZetta-Medium";
  --fontface__neueMontrealRegular: "NeueMontreal-Regular";
  --fontface__neueMontrealMedium: "NeueMontreal-Medium";
  --viewportWidth: 100vw;
  --viewportHeight: 100vh;
  --red: #e1251b;
  --black: #000000;
  --white: #ffffff;
  --gray: #888888;
}
@font-face {
  font-family: "LexendZetta-Light";
  src: url("assets/fonts/LexendZetta/LexendZetta-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "LexendZetta-Medium";
  src: url("assets/fonts/LexendZetta/LexendZetta-Medium.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "NeueMontreal-Regular";
  src: url("assets/fonts/NeueMontreal/PPNeueMontreal-Regular.woff2") format("woff2"), url("assets/fonts/NeueMontreal/PPNeueMontreal-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "NeueMontreal-Medium";
  src: url("assets/fonts/NeueMontreal/PPNeueMontreal-Medium.woff2") format("woff2"), url(".assets/fonts/NeueMontreal/PPNeueMontreal-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: block;
}

.nav {
  position: relative;
  width: var(--viewportWidth);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 42px;
  padding-bottom: 42px;
}
.nav-share {
  position: absolute;
  right: 56px;
  top: 48px;
}

.sharePopup__linkCopiedMessage {
  align-items: center;
  background-color: #000;
  border-radius: 5px;
  color: #fff;
  display: flex;
  left: 50%;
  opacity: 0;
  padding: 10px 10px 12px 12px;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 7px);
  transform: translateX(-50%) translateY(10px);
  transition: opacity 0.2s cubic-bezier(0.39, 0.575, 0.565, 1), transform 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
  white-space: nowrap;
  font-size: 13px;
  line-height: 15px;
}
.sharePopup__linkCopiedMessageTick {
  margin-right: 5px;
}
.sharePopup__linkCopiedMessageArrow {
  height: 10px;
  left: calc(50% - 5px);
  position: absolute;
  top: -5px;
  width: 10px;
  z-index: 0;
}
.sharePopup__linkCopiedMessage.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.container {
  position: relative;
  width: var(--viewportWidth);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.grid {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  column-gap: 60px;
}

.grid-left,
.grid-right {
  width: 100%;
}

.videoContainer {
  position: relative;
  cursor: pointer;
  width: 330px;
  max-width: 330px;
}
.videoContainer video {
  position: relative;
  width: 100%;
  height: auto;
  border: 1px solid #f1f1f1;
}
.videoContainer video::-webkit-media-controls-fullscreen-button {
  display: none;
}
/* .videoContainer video::-webkit-media-controls-mute-button {
  display: none;
}
.videoContainer video::-webkit-media-controls-volume-slider {
  display: none;
} */

/* .videoContainer::after {
  background-image: url("assets/vectors/icon_play.svg");
  background-position: 50%;
  background-size: contain;
  content: "";
  height: 40px;
  left: calc(50% - 20px);
  position: absolute;
  top: calc(50% - 20px);
  width: 40px;
  will-change: transform;
}
.videoContainer.pause::after {
  content: "";
  background-image: none;
} */
/* .video-greetText {
  margin-top: 3px;
  font-size: 13px;
  line-height: 15px;
  font-family: var(--fontface__neueMontrealRegular);
  visibility: hidden;
  opacity: 0;
  display: none;
} */
.banner-title {
  font-family: var(--fontface__neueMontrealRegular);
  font-size: 52px;
  line-height: 52px;
  color: var(--black);
  word-break: normal;
}
.c-red {
  color: var(--red);
}
.copyright {
  color: var(--gray);
  font-size: 13px;
  line-height: 20px;
  margin-top: 36px;
  text-align: center;
}
.copyright a {
  color: inherit;
  display: inline-block;
}

.buttonGroup {
  margin-top: 40px;
}
.c-button {
  display: block;
  width: 100%;
  padding: 12px;
  text-align: center;
  font-size: 13px;
  line-height: 15px;
  font-family: var(--fontface__neueMontrealRegular);
  color: var(--white);
  background-color: var(--black);
  border-radius: 5px;
}
.c-button:disabled {
  opacity: 0.5;
  cursor: progress;
}
.c-button.-secondary {
  background-color: var(--white);
  border: 1px solid var(--black);
  color: var(--black);
}
.-second-step {
  margin-top: 10px;
}
.is-mobile {
  display: none;
}
.is-desktop {
  display: block;
}
/* Text Input */
.c-textInput__wrapper {
  position: relative;
}
.c-textInput__wrapper.is-focused .c-textInput__input {
  border: 1px solid #dfdfdf;
}
.c-textInput__wrapper .c-inputError {
  align-items: flex-start;
  display: flex;
  flex-flow: row wrap;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.c-inputError:before {
  content: "";
  padding-top: 11px;
  width: 100%;
}
.c-inputError__text {
  font-size: 11px;
  line-height: 15px;
  color: #e1251b;
  flex: 1;
  margin-left: 5px;
}
.c-textInput__wrapper.is-invalid .c-inputError,
.c-textInput__wrapper.is-empty .c-inputError {
  max-height: 48px;
}

.c-textInput__label {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  font-size: 20px;
  line-height: 20px;
  padding-bottom: 10px;
}
.c-textInput__label.-smallFont {
  font-size: 20px;
  line-height: 20px;
}

.c-textInput__input {
  display: block;
  width: 100%;
  height: 50px;
  padding: 0 15px;
  border-radius: 5px;
  border: 1px solid transparent;
  background-color: #f5f5f5;
  font-size: 13px;
  line-height: 15px;
  color: black;
}
.c-textInput__input::placeholder {
  color: #727272;
}
/* Dropdown Input */
.c-dropdownInput__wrapper {
  position: relative;
  cursor: pointer;
}
.c-dropdownInput__wrapper::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 15px;
  width: 10px;
  height: 10px;
  background-image: url("assets/vectors/icon_dropdown-arrow.svg");
  background-size: 10px auto;
  background-position: center;
  background-repeat: no-repeat;
}
.c-dropdownInput__wrapper.is-opened::after {
  transform: rotate(180deg);
}
.c-dropdownInput__wrapper.is-opened .c-dropdownInput__input {
  transition: border-color 0s linear, border-radius 0s ease 0s;
  border: 1px solid #dfdfdf;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.c-dropdownInput__label {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  font-size: 20px;
  line-height: 20px;
  padding-bottom: 10px;
}
.c-dropdownInput__label.-smallFont {
  font-size: 13px;
}

.c-dropdownInput__input {
  display: block;
  position: relative;
  width: 100%;
  height: 50px;
  padding: 0 15px;
  border-radius: 5px;
  border: 1px solid transparent;
  transition: border-color 0.4s linear, border-radius 0s ease 0.4s;
  background-color: #f5f5f5;
  font-size: 13px;
  line-height: 15px;
  color: black;
  cursor: pointer;
  padding-right: 30px;
}
.c-dropdownInput__input::placeholder {
  color: #727272;
}

.c-dropdownInput__options {
  position: absolute;
  z-index: 9;
  top: 100%;
  left: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  background-color: white;
  border-left: 1px solid #dfdfdf;
  border-right: 1px solid #dfdfdf;
  border-radius: 0px 0px 5px 5px;
}
.c-dropdownInput__options::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #dfdfdf;
}
.c-dropdownInput__options > :first-child {
  padding-top: 15px;
}
.c-dropdownInput__options > :last-child {
  padding-bottom: 15px;
}
.c-dropdownInput__options > :not(:first-child) {
  margin-top: 20px;
}

.c-dropdownInput__option {
  font-size: 13px;
  line-height: 15px;
  padding-left: 15px;
  padding-right: 15px;
}
[data-page]:nth-child(n + 2) {
  opacity: 0;
  display: none;
}
[data-page="second"] .buttonGroup,
[data-page="third"] .buttonGroup {
  display: flex;
  flex-direction: row;
  column-gap: 10px;
}
[data-page="second"] .buttonGroup .c-button.-secondary,
[data-page="third"] .buttonGroup .c-button.-secondary {
  width: auto;
  min-width: 128px;
}
[data-page="second"] .step-title {
  font-size: 20px;
  line-height: 25px;
  font-family: var(--fontface__neueMontrealRegular);
  margin-bottom: 20px;
}

.greeting-form {
  display: flex;
  flex-direction: column;
  /* row-gap: 10px; */
}

.greeting-form > :nth-child(n + 2) {
  margin-top: 10px;
}

.greeting-form > :last-child {
  margin-top: 0;
}

[data-page="third"] .third-title {
  font-size: 30px;
  line-height: 30px;
  font-family: var(--fontface__neueMontrealRegular);
}

.fourth-title {
  font-size: 30px;
  line-height: 30px;
  font-family: var(--fontface__neueMontrealRegular);
}

.para {
  font-size: 17px;
  line-height: 22px;
  font-family: var(--fontface__neueMontrealRegular);
  margin-top: 8px;
}

.fourth-step .c-button {
  max-width: 182px;
}

.c-button.loading .c-button__text {
  display: none;
}

.c-button .c-button__submitting {
  display: none;
}
.c-button.loading .c-button__submitting {
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-button__submittingDots {
  display: flex;
  margin-left: 10px;
}
.c-button__submittingDot {
  animation: dotFlashing 0.6s infinite alternate;
  background-color: var(--white);
  height: 4px;
  opacity: 1;
  width: 4px;
}
.c-button__submittingDots > :not(:first-child) {
  margin-left: 3px;
}
.c-button__submittingDot:first-of-type {
  animation-delay: 0.6s;
}
.c-button__submittingDot:nth-of-type(2) {
  animation-delay: 0.7s;
}
.c-button__submittingDot:nth-of-type(3) {
  animation-delay: 0.8s;
}
/* share popup */
.sharePopup {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: 232px;
  border: 1px solid #c4c4c4;
  background-color: white;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 200ms cubic-bezier(0.39, 0.575, 0.565, 1), transform 400ms cubic-bezier(0.39, 0.575, 0.565, 1);
  pointer-events: none;
}
.sharePopup.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 9;
}
.sharePopup__heading {
  padding: 20px;
  font-size: 13px;
  line-height: 15px;
  color: black;
  background-color: #f3f3f3;
  border-bottom: 1px solid #c4c4c4;
}
.sharePopup__socialMediaLinks {
  padding: 20px;
  width: 100%;
  display: flex;
  flex-flow: row wrap;
}
.sharePopup__socialMediaLinks > :nth-child(n + 4) {
  margin-top: 20px;
}
.sharePopup__socialMediaLinks > :not(:nth-child(3n + 1)) {
  margin-left: 15px;
}
.sharePopup__socialMediaLink {
  position: relative;
  width: 53px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sharePopup__socialMediaLink.is-active .sharePopup__socialMediaIconCircle,
.sharePopup__socialMediaLink:hover .sharePopup__socialMediaIconCircle {
  opacity: 0.23;
}
.sharePopup__socialMediaLink.is-active .sharePopup__socialMediaLinkText,
.sharePopup__socialMediaLink:hover .sharePopup__socialMediaLinkText {
  opacity: 0.47;
}
.sharePopup__socialMediaLinkIcon {
  width: 30px;
  height: 30px;
}
.sharePopup__socialMediaIconCircle {
  fill: black;
  opacity: 1;
  will-change: opacity;
  transition: opacity 200ms ease;
}
.sharePopup__socialMediaLinkText {
  margin-top: 5px;
  font-size: 11px;
  line-height: 15px;
  letter-spacing: 0.05em;
  color: black;
  opacity: 1;
  will-change: opacity;
  transition: opacity 200ms ease;
}
.sharePopup__linkCopiedMessage {
  position: absolute;
  top: calc(100% + 7px);
  left: 50%;
  display: flex;
  align-items: center;
  padding: 10px 10px 12px 12px;
  background-color: black;
  border-radius: 5px;
  font-size: 11px;
  line-height: 14px;
  color: white;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-50%) translateY(10px);
  transition: opacity 200ms cubic-bezier(0.39, 0.575, 0.565, 1), transform 400ms cubic-bezier(0.39, 0.575, 0.565, 1);
  pointer-events: none;
}
.sharePopup__linkCopiedMessage.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.sharePopup__linkCopiedMessageArrow {
  position: absolute;
  z-index: 0;
  top: -5px;
  left: calc(50% - 5px);
  width: 10px;
  height: 10px;
}
.sharePopup__linkCopiedMessageTick {
  margin-right: 5px;
}

/* modal bottom css */
.showcaseDiscoverModal {
  position: fixed;
  display: none;
  max-width: 318px;
  bottom: 20px;
  right: 20px;
  background-color: #fff;
  border: 1px solid #000;
  padding: 20px;
  z-index: 25;
  opacity: 0;
  transform: translateY(100%);
  z-index: 100;
}
.backdrop {
  opacity: 0;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
}
@media only screen and (max-width: 1023px) {
  .showcaseDiscoverModal {
    /* bottom: 20px; */
    max-width: 250px;
    bottom: 0;
    top: 0;
    right: 0;
    left: 0;
    max-height: fit-content;
    margin: auto;
  }
}
.showcaseDiscoverModal__close {
  position: absolute;
  top: 9px;
  right: 9px;
}
.showcaseDiscoverModal__title {
  font-size: 20px;
  line-height: 25px;
  padding-right: 24px;
}
@media only screen and (max-width: 1023px) {
  .showcaseDiscoverModal__title {
    font-size: 15px;
    letter-spacing: 0.02em;
    line-height: 20px;
    padding-right: 0;
  }
}
.showcaseDiscoverModal .c-button {
  margin-top: 20px;
}
@media only screen and (max-width: 1023px) {
  .showcaseDiscoverModal .c-button {
    margin-top: 10px;
  }
}
.showcaseDiscoverModal.-openState {
  opacity: 1;
  display: block;
  transform: translateY(0);
  transition: 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.backdrop.-openState {
  display: block;
  opacity: 1;
  /* transform: translateY(0); */
  transition: 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.showcaseDiscoverModal.-closeState {
  opacity: 0;
  display: none;
  /* transform: translateY(100%); */
  transition: 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.backdrop.-closeState {
  opacity: 0;
  display: none;
  transform: translateY(100%);
  transition: 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

/* mobile */
@media only screen and (max-width: 710px) {
  .is-mobile {
    display: block;
  }
  .is-desktop {
    display: block;
  }
  .nav {
    padding-top: 10px;
    padding-bottom: 10px;
    /* padding-top: 20px;
    padding-bottom: 20px; */
  }
  .nav-share {
    right: 15px;
    top: 12px;
  }
  .nav-logo {
    width: 95px;
  }
  .sharePopup__linkCopiedMessage {
    z-index: 9;
    left: -3px;
  }
  .sharePopup__linkCopiedMessageArrow {
    right: 10px;
    left: unset;
  }
  .grid {
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap;
  }
  .grid-left,
  .grid-right {
    width: 100%;
  }
  .videoContainer {
    width: 100%;
    max-width: unset;
  }
  .banner-title {
    margin-top: 15px;
    /* margin-top: 20px; */
    font-size: 30px;
    line-height: 30px;
  }
  .buttonGroup {
    margin-top: 20px;
  }
  .copyright {
    position: relative;
    margin-top: 20px;
    padding-bottom: 20px;
  }
  .step-title,
  .third-title,
  .fourth-title {
    margin-top: 20px;
  }
}

@keyframes dotFlashing {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
