@import url("https://use.typekit.net/vre6zsy.css");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap");
html, body {
  margin: 0;
  padding: 0;
  background-color: #000;
  font-family: sans-serif;
  font-family: "Open Sans", sans-serif;
  user-select: none;
}
html *, body * {
  box-sizing: border-box;
}

div.container {
  width: 1440px;
  max-width: calc(100vw - 48px);
  width: calc(100vw - 128px - 64px);
  margin: auto;
  color: white;
}
@media screen and (max-width: 1000px) {
  div.container {
    width: calc(100vw - 48px);
  }
}

body {
  width: 100vw;
  overflow-x: hidden;
}

footer {
  padding: 24px;
  color: white;
  text-align: center;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  opacity: 0.4;
}

span.thanks {
  font-weight: initial;
  font-size: 24px !important;
  font-family: "Open Sans", sans-serif;
  margin: 0 !important;
}

div.pageclip-form__success {
  background-color: black;
}

header {
  position: absolute;
  z-index: 128;
  top: 100vh;
  left: 0;
  right: 0;
  padding: 12px 42px;
  padding: 24px;
  transition: 240ms background-color, 240ms opacity;
  background-color: rgba(0, 0, 0, 0);
  justify-content: flex-start;
  display: flex;
}
header.filled {
  opacity: 1;
  position: fixed;
  top: 0;
}
header.filled img {
  transform: scale(1) !important;
}
header img.logo {
  display: block;
  width: 48px;
  transition: 320ms;
  transform: scale(1.4);
}

div.hero-wrapper {
  color: white;
  font-weight: 300;
  font-size: "Open Sans", sans-serif !important;
}
div.hero-wrapper h1, div.hero-wrapper h2 {
  font-weight: 300;
  margin: 0;
}
div.hero-wrapper h1 {
  white-space: nowrap;
  text-align: center;
}
div.hero-wrapper img.logo-overlay {
  position: absolute;
  top: 12px;
  display: block;
  margin: auto;
  width: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1024;
  position: fixed;
  z-index: 1;
}
div.hero-wrapper div.video {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  position: fixed;
  z-index: -20;
  display: flex;
  justify-content: center;
  align-items: center;
}
div.hero-wrapper div.video h1 {
  font-size: 72px;
  padding: 0 24px;
  animation: title 2800ms ease-in-out forwards;
}
@media screen and (max-width: 1000px) {
  div.hero-wrapper div.video h1 {
    font-size: 48px;
  }
}
div.hero-wrapper div.video h1::after {
  width: 240px;
  height: 4px;
  display: block;
  content: "";
  background-color: #ed164c;
  margin: auto;
  margin-top: 64px;
}
div.hero-wrapper div.video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  animation: appear 800ms ease-in-out forwards 2000ms;
}
@media screen and (max-width: 100vh) {
  div.hero-wrapper div.video video {
    object-fit: cover;
  }
}
div.hero-wrapper div.video img.poster {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: 3.6s;
  transform: scale(0.78);
}
div.hero-wrapper div.video img.poster.loaded {
  opacity: 1;
  animation: appear 2.4s forwards ease-in-out;
  animation-delay: 1.2s;
}
div.hero-wrapper div.video img.scroll {
  position: fixed;
  bottom: 24px;
  left: calc(50% - 40px);
  margin: auto;
  filter: invert(1);
  height: 80px;
  width: 80px;
  z-index: 1024;
  transition: 320ms;
  opacity: 0;
  animation: appear 800ms ease-in-out forwards 7s, floating infinite alternate 1800ms ease-in-out;
  cursor: pointer;
}
div.hero-wrapper div.video img.scroll.hidden {
  opacity: 0;
  pointer-events: none;
}
div.hero-wrapper div.title {
  z-index: 12;
  padding: 80px 0;
  text-align: center;
  margin: auto;
}
@media screen and (max-width: 1000px) {
  div.hero-wrapper div.title {
    padding: 160px 0;
  }
}
div.hero-wrapper div.title img {
  width: 128px;
  margin-bottom: 64px;
  position: fixed;
  left: 50%;
  top: 64px;
  transform: translateX(-50%) translateY(-100%) translateY(-64px);
  display: none;
}
div.hero-wrapper div.title h1 {
  font-size: 72px;
  padding: 0 24px;
}
@media screen and (max-width: 1000px) {
  div.hero-wrapper div.title h1 {
    font-size: 48px;
  }
}
div.hero-wrapper div.title h1::after {
  width: 240px;
  height: 4px;
  display: block;
  content: "";
  background-color: #ed164c;
  margin: auto;
  margin-top: 64px;
}
div.hero-wrapper div.title-content-wrapper {
  background-color: black;
  position: relative;
  z-index: 2;
  padding-bottom: 512px;
}
div.hero-wrapper div.title-content {
  margin: auto;
  margin-top: calc(100vh + 128px);
  max-width: 640px;
  width: calc(100vw - 48px);
  position: relative;
}
div.hero-wrapper div.title-content h2 {
  text-align: center;
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 24px;
}

@keyframes floating {
  0% {
    transform: translateY(6px);
  }
  100% {
    transform: translateY(-6px);
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes title {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
div#testimonials div.container {
  display: flex;
  flex-direction: row-reverse;
  display: grid;
  grid-template-columns: 2fr 2.5fr;
  grid-template-areas: "list video";
  grid-gap: 42px;
}
@media screen and (max-width: 1000px) {
  div#testimonials div.container {
    grid-template-columns: auto;
    grid-template-rows: auto auto;
    grid-template-areas: "video" "list";
    grid-gap: 24px;
  }
}
div#testimonials div#testimonial-video {
  flex: 1;
  background-color: black;
  overflow: hidden;
  grid-area: video;
  will-change: transform;
  transition: 20ms;
  overflow: hidden;
}
@media screen and (min-width: 1000px) {
  div#testimonials div#testimonial-video {
    position: sticky;
  }
}
@media screen and (min-width: 1000px) {
  div#testimonials div#testimonial-video {
    height: calc(100vh - 84px);
    top: 42px;
    margin: 42px 0;
  }
}
@media screen and (max-width: 1000px) {
  div#testimonials div#testimonial-video {
    height: calc(100vh - 48px);
    top: 24px;
    margin-top: 24px;
    display: none;
  }
}
div#testimonials div#testimonial-video video {
  height: 106%;
  object-position: top left;
  transform: translateX(-10%);
  transform-origin: 30% 50%;
  will-change: transform;
  transition: 20ms;
}
div#testimonials div.testimonial-list {
  flex: 1;
  background: black;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1000px) {
  div#testimonials div.testimonial-list {
    margin: 42px 0;
  }
}
@media screen and (max-width: 1000px) {
  div#testimonials div.testimonial-list {
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 1000px) {
  div#testimonials div.testimonial-list {
    padding: 128px 0;
  }
}
@media screen and (max-width: 1000px) {
  div#testimonials div.testimonial-list {
    padding: 128px 0;
    padding-bottom: 0;
  }
}
div#testimonials div.testimonial-list div.testimonial-wrapper {
  will-change: opacity;
  transition: opacity 1200ms;
  max-width: 70%;
}
div#testimonials div.testimonial-list div.testimonial-wrapper:not(:last-of-type) {
  margin-bottom: 160px;
}
@media screen and (max-width: 1000px) {
  div#testimonials div.testimonial-list div.testimonial-wrapper:not(:last-of-type) {
    margin-bottom: 240px;
  }
}
div#testimonials div.testimonial-list div.testimonial-wrapper:last-of-type {
  margin-bottom: 240px;
}
@media screen and (max-width: 1000px) {
  div#testimonials div.testimonial-list div.testimonial-wrapper:last-of-type {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1000px) {
  div#testimonials div.testimonial-list div.testimonial-wrapper {
    margin: auto;
    max-width: 100%;
  }
}
div#testimonials div.testimonial-list div.testimonial-wrapper img {
  height: calc(2em - 0px);
  margin-right: 12px;
  margin-bottom: 0px;
  object-fit: contain;
  filter: sepia(100%) saturate(300%) brightness(70%) hue-rotate(180deg) invert(100%);
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
  transform: translate(-80%, -120%);
}
div#testimonials div.testimonial-list div.testimonial-wrapper p.content {
  position: relative;
  font-family: "Open Sans", sans-serif;
  color: white;
  font-size: 20px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.64);
  font-weight: 300;
}
@media screen and (max-width: 1000px) {
  div#testimonials div.testimonial-list div.testimonial-wrapper p.content {
    font-size: 20px;
  }
}
div#testimonials div.testimonial-list div.testimonial-wrapper p.content strong {
  color: white;
  display: block;
  font-size: 24px;
  font-weight: 300;
}
div#testimonials div.testimonial-list div.testimonial-wrapper p.content strong::after {
  width: 80px;
  height: 3px;
  display: block;
  content: "";
  background-color: #ed164c;
  margin-top: 8px;
  margin-bottom: 12px;
}

div.buffer {
  height: 60vh;
}
@media screen and (max-width: 1000px) {
  div.buffer {
    display: none;
  }
}

div#testimonial-ipad-wrapper {
  height: 100vh;
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  div#testimonial-ipad-wrapper {
    display: none;
  }
}
div#testimonial-ipad-wrapper div#testimonial-ipad {
  width: 100vw;
  height: calc(100vw / 4 * 3);
  will-change: width;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
div#testimonial-ipad-wrapper div#testimonial-ipad video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
div#testimonial-ipad-wrapper div#testimonial-ipad img {
  position: absolute;
  top: -8px;
  left: -8px;
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  object-position: center;
  object-fit: cover;
}

div#section {
  color: white;
  margin: auto;
  margin-bottom: 0;
  padding-top: 128px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 42px;
}
@media screen and (max-width: 1000px) {
  div#section {
    margin-top: 128px;
    margin-bottom: 0px;
    width: 100vw;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    padding-top: 32px;
    margin: 0;
  }
}
div#section div.furniture-wrapper {
  flex: 1;
  margin-right: 0px;
}
@media screen and (min-width: 1000px) {
  div#section div.furniture-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 1000px) {
  div#section div.furniture-wrapper {
    width: calc(100vw - 48px);
    margin: auto;
    margin-bottom: 32px;
    margin-top: 128px;
  }
}
div#section div.furniture-wrapper img {
  display: block;
  width: 80%;
  margin: auto;
}
div#section div.content {
  flex: 1;
  box-sizing: border-box;
  padding: 42px;
}
@media screen and (max-width: 1000px) {
  div#section div.content {
    padding: 32px;
    width: 100vw;
  }
}
div#section div.content h3 {
  font-size: 56px;
  font-weight: 300;
  margin: 0;
  text-transform: uppercase;
  will-change: opacity;
  transition: opacity 1200ms;
  transition-delay: 320ms;
}
@media screen and (max-width: 1000px) {
  div#section div.content h3 {
    margin-top: 0px;
    font-size: 48px;
  }
}
div#section div.content h3::after {
  width: 160px;
  height: 4px;
  display: block;
  content: "";
  background-color: #ed164c;
  margin-top: 32px;
  margin-bottom: 0px;
}
div#section div.content span {
  display: block;
  margin-top: 24px;
  font-size: 24px;
  font-weight: 300;
  font-family: "Open Sans", sans-serif;
}
@media screen and (max-width: 1000px) {
  div#section div.content span {
    font-size: 20px;
  }
}
div#section div.content span.gray {
  opacity: 0.64;
  font-size: 20px;
}
div#section div.content span.highlight {
  font-size: 36px;
  font-family: "Open Sans", sans-serif;
  margin-top: 64px;
  margin-bottom: 12px;
  transition: opacity 1200ms;
  transition-delay: 320ms;
  opacity: 1;
}
@media screen and (max-width: 1000px) {
  div#section div.content span.highlight {
    font-size: 24px;
  }
}
div#section div.content p.description {
  padding-top: 24px;
  transition: opacity 1200ms;
  transition-delay: 320ms;
  opacity: 1;
}

div#consultation {
  margin-top: 512px;
}
div#consultation div.content {
  width: 60%;
}
div#consultation div.content h3 {
  font-size: 64px;
  font-weight: initial;
  margin: 0;
  text-transform: uppercase;
}

div.contact-wrapper {
  color: white;
}
div.contact-wrapper div.content {
  margin: auto;
  margin-top: 128px;
  margin-bottom: 24px;
  padding: 64px 24px;
  border-radius: 8px;
  border-width: 1px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
div.contact-wrapper input {
  background: rgba(255, 255, 255, 0.12);
  border: none;
  min-width: 240px;
  height: 64px;
  border-radius: 8px;
  padding: 0 24px;
  font-size: 18px;
  font-family: "Open Sans", sans-serif;
  display: block;
  outline: none;
  transition: 320ms;
  color: white;
}
div.contact-wrapper input:focus {
  background-color: rgba(255, 255, 255, 0.2);
}
div.contact-wrapper span.title {
  font-family: "Open Sans", sans-serif;
  font-size: 42px;
  font-weight: 300;
  line-height: 1.14;
  text-align: center;
  display: block;
  margin: auto;
}
div.contact-wrapper span.caption {
  font-family: "Open Sans", sans-serif;
  opacity: 0.82;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.14;
  text-align: center;
  display: block;
  margin: auto;
  margin-top: 24px;
  margin-bottom: 48px;
  opacity: 0.64;
}
div.contact-wrapper input::placeholder {
  color: white;
  opacity: 0.4;
}
div.contact-wrapper button {
  display: block;
  background: #ed164c;
  border: none;
  height: 64px;
  margin: 0;
  border-radius: 6px;
  padding: 0 32px;
  font-size: 18px;
  font-weight: 600;
  color: white;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  margin-left: 12px;
  cursor: pointer;
  transition: 320ms;
  outline: none;
}
div.contact-wrapper button:hover {
  background-color: #920b2d;
}
div.contact-wrapper button:active {
  background-color: #330410;
}
div.contact-wrapper form {
  display: flex;
  margin-bottom: 0px;
  transition: opacity 1200ms;
  transition-delay: 320ms;
  max-width: 500px;
  margin: auto;
}
@media screen and (max-width: 1000px) {
  div.contact-wrapper form {
    flex-direction: column;
  }
  div.contact-wrapper form button {
    margin-left: 0;
    margin-top: 24px;
  }
}
div.contact-wrapper form input {
  flex-shrink: 0;
}
@media screen and (min-width: 1000px) {
  div.contact-wrapper form input {
    flex: 1;
  }
}

div.columns-wrapper {
  color: white;
  font-family: "Open Sans", sans-serif;
  margin-top: 128px;
  font-weight: 300 !important;
}
div.columns-wrapper h2 {
  font-size: 56px;
  font-weight: 300;
  margin: 0;
  will-change: opacity;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  div.columns-wrapper h2 {
    margin-top: 0px;
    font-size: 48px;
  }
}
div.columns-wrapper h2::after {
  width: 160px;
  height: 4px;
  display: block;
  content: "";
  background-color: #ed164c;
  margin: auto;
  margin-top: 48px;
  margin-bottom: 48px;
}
div.columns-wrapper div.columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 24px;
  margin: auto;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  div.columns-wrapper div.columns {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    padding: 0;
    grid-gap: 48px;
  }
}
div.columns-wrapper div.columns div.column {
  padding: 32px 0;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 20px;
  color: rgba(255, 255, 255, 0.64);
}
div.columns-wrapper div.columns div.column h3 {
  margin: 0;
  color: white;
  margin-bottom: 0px;
  font-weight: 300;
  font-size: 24px;
  text-transform: initial;
}
div.columns-wrapper div.columns div.column h3::after {
  width: 60px;
  height: 3px;
  display: block;
  content: "";
  background-color: #ed164c;
  margin: auto;
  margin-top: 24px;
  margin-bottom: 24px;
}
div.columns-wrapper div.columns div.column span {
  display: block;
  margin: 0 32px;
}

div.body {
  width: 100vw;
  background-color: black;
  z-index: 2;
  position: relative;
}
