:root {
  --black: #2f2f2f;
  --medium-aquamarine: #82cbac;
  --light-coral: #ff7f96;
  --gold: #ead71b;
}

.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;
}

.w-pagination-wrapper {
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.w-pagination-previous, .w-pagination-next {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-page-count {
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  width: 12px;
  height: 12px;
  border: 1px solid #ccc;
  border-radius: 2px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

body {
  color: var(--black);
  letter-spacing: -.03em;
  cursor: none;
  font-family: Outfit, sans-serif;
  font-size: 1rem;
  line-height: 1;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Outfit, sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}

h2 {
  font-family: Outfit, sans-serif;
  line-height: 1;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Outfit, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Outfit, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Outfit, sans-serif;
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.5;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Outfit, sans-serif;
  font-size: .75rem;
  font-weight: 700;
  line-height: 1.5;
}

p {
  margin-bottom: 0;
}

a {
  cursor: none;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 1.25rem;
}

li {
  margin-bottom: .25rem;
}

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

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

blockquote {
  border-left: .25rem solid #e2e2e2;
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

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

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

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

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

.styleguide-3-col {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 80px;
  display: grid;
}

.styleguide-3-col.border-radius.box-shadow.second {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.text-bold {
  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;
}

.styleguide-color-sample {
  background-color: #f5f5f5;
  margin-top: .5rem;
  padding: 5rem;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-hidden.display-flex-vertical {
  position: relative;
}

.overflow-hidden.display-flex-vertical.hide {
  display: none;
}

.overflow-hidden.image-border {
  z-index: 1;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  position: relative;
}

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

.button {
  width: auto;
  height: 50px;
  background-color: var(--black);
  color: #fff;
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 0 31px;
  font-weight: 600;
  display: flex;
}

.button.w--current {
  background-color: var(--black);
  color: #fff;
}

.button.position-relative {
  z-index: 1;
  width: 100%;
  height: 44px;
  cursor: none;
  padding-left: 40px;
  padding-right: 40px;
  transition: background-color .2s;
}

.button.position-relative:hover {
  background-color: rgba(0, 0, 0, 0);
}

.button.position-relative.w--current {
  cursor: none;
}

.button.position-relative.background-none {
  color: var(--black);
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #000;
  font-family: Outfit, sans-serif;
  font-size: 25px;
  font-weight: 800;
}

.button.position-relative.background-none.border-radius {
  transition: color .6s, background-color .6s;
}

.button.position-relative.background-none.border-radius:hover {
  background-color: var(--black);
  color: #fff;
}

.button.position-relative.background-none.border-radius.hover {
  font-size: 20px;
}

.button.position-relative.background-none.border-radius.hover.w--current {
  background-color: var(--black);
  color: #fff;
}

.button.next {
  z-index: 2;
  color: var(--black);
  background-color: rgba(0, 0, 0, 0);
  margin-left: 0;
  margin-right: 0;
  padding-left: 42px;
  padding-right: 42px;
  font-size: 24px;
  text-decoration: none;
  position: relative;
}

.button.next.border-radius {
  transition: color .6s, background-color .6s;
}

.button.next.border-radius:hover {
  background-color: var(--black);
  color: #fff;
}

.heading-medium {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.heading-large {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

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

.text-size-large {
  font-size: 24px;
}

.text-size-regular {
  font-size: 18px;
}

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

.styleguide-section {
  grid-column-gap: 0rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: grid;
}

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

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

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

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

.background-color-gray {
  background-color: rgba(168, 193, 216, .2);
}

.hide {
  display: none;
}

.styleguide-section-type {
  color: var(--black);
  text-align: left;
  padding: 1.25rem 1.25rem 1.25rem 0;
  font-family: Outfit, sans-serif;
  font-size: 50px;
  font-weight: 800;
  position: -webkit-sticky;
  position: sticky;
  top: 140px;
}

.text-size-medium {
  font-size: 20px;
}

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

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

.text-link {
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.text-link.w--current {
  color: var(--medium-aquamarine);
}

.text-link.margin-right.margin-large.primary-font.absolute {
  color: var(--medium-aquamarine);
  position: absolute;
  bottom: -100%;
}

.text-link.margin-right.margin-large.primary-font.hover {
  display: block;
}

.text-link.primary-font.text-weight-medium {
  color: var(--black);
  display: block;
}

.text-link.primary-font.text-weight-medium.margin-bottom.margin-xsmall {
  color: var(--black);
  transition: color .4s;
}

.text-link.primary-font.text-weight-medium.margin-bottom.margin-xsmall:hover {
  color: var(--medium-aquamarine);
}

.text-link.primary-font.text-weight-medium.hover {
  transition: color .4s;
}

.text-link.primary-font.text-weight-medium.hover:hover {
  color: var(--medium-aquamarine);
}

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

.text-size-small {
  font-size: 14px;
}

.text-rich-text h1 {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  font-family: Outfit, sans-serif;
}

.text-rich-text h2, .text-rich-text h3, .text-rich-text h4 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-family: Outfit, sans-serif;
}

.text-rich-text h5 {
  margin-top: 1.25rem;
  margin-bottom: .75rem;
  font-family: Outfit, sans-serif;
}

.text-rich-text h6 {
  margin-top: 1.25rem;
  margin-bottom: .5rem;
  font-family: Outfit, sans-serif;
}

.text-rich-text p, .text-rich-text blockquote {
  margin-bottom: .75rem;
}

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

.max-width-medium {
  width: 100%;
  max-width: 563px;
}

.heading-xlarge {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}

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

.form-input {
  min-height: 3rem;
  background-color: rgba(0, 0, 0, 0);
  margin-bottom: .75rem;
  padding: .5rem 1rem;
}

.form-input.border-radius {
  min-height: 40px;
  border: 1px solid var(--black);
}

.form-input.border-radius.white {
  color: #fff;
  border-color: #fff;
}

.form-input.border-radius.white.min-heignt {
  min-height: 130px;
  color: #fff;
}

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

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

.container-large {
  width: 95%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 200px;
}

.container-large.text-align-center.display-flex-vertical {
  align-items: center;
}

.container-large.text-align-center.display-flex-vertical.padding-vertical.padding-custom-third {
  padding-top: 110px;
  padding-bottom: 0;
}

.container-large.text-align-center.display-flex-vertical.padding-horizontal.padding-xlarge {
  align-items: center;
  padding-top: 6.5rem;
  padding-bottom: 103px;
  display: none;
}

.container-large.text-align-center.display-flex-vertical.padding-horizontal.padding-xlarge.no-padding-top {
  padding-top: 0;
}

.container-large.text-align-center.display-flex-vertical.padding-horizontal.padding-xlarge.hide {
  display: none;
}

.container-large.display-flex-horizontal {
  align-items: stretch;
}

.container-large.margin {
  margin-bottom: 140px;
}

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

.text-style-quote {
  border-left: .25rem solid #e2e2e2;
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.styleguide-classes {
  display: none;
}

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

.styleguide-1-col {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding: 80px;
  display: grid;
}

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

.page-padding {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.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: #fff;
}

.background-color-white.field-label.field-label-wrapper.padding-bottom.box-shadow {
  color: var(--black);
}

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

.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 {
  z-index: 1;
  text-align: center;
  flex-direction: column;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: 17%;
  display: flex;
  position: relative;
  bottom: -35px;
}

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

.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;
}

.button-secondary {
  z-index: 1;
  height: 40px;
  color: #fff;
  text-align: center;
  cursor: none;
  background-color: #2f2f2f;
  border: .125rem #2f2f2f;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
  font-size: 14px;
  font-weight: 600;
  transition: background-color .2s, border .2s;
  display: flex;
  position: relative;
}

.button-secondary:hover {
  border-style: none;
  border-color: var(--light-coral);
  background-color: rgba(0, 0, 0, 0);
}

.button-secondary.contact {
  padding-left: 40px;
  padding-right: 40px;
}

.button-secondary.contact.background-color-white {
  color: var(--black);
  background-color: #fff;
}

.button-secondary.contact.background-color-white:hover {
  background-color: var(--black);
  color: #fff;
}

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

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

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

.margin-small {
  margin: 1rem;
}

.margin-medium {
  margin: 2rem;
}

.margin-large {
  margin: 3rem;
}

.margin-xlarge {
  margin: 4rem;
}

.margin-xxlarge {
  margin: 5rem;
}

.margin-huge {
  margin: 6rem;
}

.margin-xhuge {
  margin: 8rem;
}

.margin-xxhuge {
  margin: 12rem;
}

.margin-0 {
  margin: 0;
}

.padding0 {
  padding: 0;
}

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

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

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

.padding-small {
  padding: 1rem;
}

.padding-medium {
  padding: 2rem;
}

.padding-large {
  padding: 3rem;
}

.padding-xlarge {
  padding: 4rem;
}

.padding-xxlarge {
  padding: 5rem;
}

.padding-huge {
  padding: 6rem;
}

.padding-xhuge {
  padding: 8rem;
}

.padding-xxhuge {
  padding: 12rem;
}

.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-bottom.margin-xsmall-copy.primary-font.text-weight-medium {
  margin-bottom: 5px;
}

.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;
}

.overflow-scroll {
  overflow: scroll;
}

.overflow-auto {
  overflow: auto;
}

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

.heading-small {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

.heading-xsmall {
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.5;
}

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

.styleguide-page-header {
  border-bottom: 2px solid #e6e6e6;
  margin-bottom: 2rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.background-primary-color {
  background-color: var(--light-coral);
}

.background-secondary-color {
  background-color: var(--medium-aquamarine);
}

.background-tertiary-color {
  background-color: var(--gold);
}

.navbar {
  border-radius: 30px;
  padding: 14px 28px;
}

.navbar.container-large.background-color-white.display-flex-horizzontal {
  align-items: center;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
  box-shadow: 0 -4px 19px 12px rgba(0, 0, 0, .03);
}

.brand-link {
  width: 76px;
  height: 31px;
}

.brand-image {
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: 50% 8%;
}

.brand-image.footer-brand {
  object-fit: contain;
  object-position: 50% 2%;
}

.display-flex-horizontal {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.display-flex-horizontal.center {
  width: 50%;
  justify-content: space-between;
}

.nav-menu {
  margin-right: auto;
}

.nav-menu.margin-left.margin-xlarge {
  flex: 1;
}

.nav-menu.margin-left.margin-xlarge.display-flex-horizontal.border-radius.background-color-white {
  flex-direction: row;
}

.nav-menu.margin-left.margin-xlarge.display-flex-horizontal.border-radius.background-color-white.box-shadow {
  box-shadow: none;
  background-color: rgba(0, 0, 0, 0);
}

.social-wrap {
  margin-left: auto;
}

.social-wrap.left {
  margin-left: 0;
}

.social-wrap.left.margin-top {
  margin-top: 2em;
}

.social-link {
  width: 18px;
  height: 18px;
  color: var(--black);
  margin-left: 19px;
  transition: color .4s ease-in-out;
  overflow: hidden;
}

.social-link:hover {
  background-image: linear-gradient(to right, var(--gold), var(--light-coral) 50%, var(--medium-aquamarine));
  color: var(--medium-aquamarine);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.social-link.footer, .social-link.hover.no-margion {
  margin-left: 0;
}

.footer {
  border-radius: 20px;
  box-shadow: 0 -4px 19px 12px rgba(0, 0, 0, .03);
}

.footer.container-large.padding-horizontal.padding-xlarge {
  margin-top: 20px;
  padding-bottom: 25px;
  position: relative;
  bottom: 20px;
}

.row.padding-top.padding-xlarge.display-flex-horizontal {
  align-items: stretch;
}

.row.display-flex-horizontal {
  justify-content: space-between;
  align-items: flex-end;
}

.row.display-flex-horizontal.is-tablet-vertical {
  align-items: stretch;
}

.row.display-flex-horizontal.is-tablet-vertical.reverse {
  align-items: stretch;
  margin-top: 84px;
  margin-bottom: 89px;
}

.row.display-flex-horizontal.left {
  justify-content: flex-start;
}

.row.display-flex-horizontal.margin-vertical.margin-custom-first {
  margin-top: 25px;
  margin-bottom: 20px;
  margin-right: auto;
}

.row.padding-vertical.about {
  padding-top: 60px;
  padding-bottom: 60px;
}

.row.padding-vertical.about.display-flex-horizontal {
  align-items: center;
}

.grid-4-columns {
  grid-column-gap: 80px;
  grid-row-gap: 120px;
  grid-template-columns: auto auto auto auto;
}

.grid-4-columns.margin-bottom {
  grid-column-gap: 72px;
  grid-template-columns: auto auto auto auto;
}

.column.max-width-large {
  max-width: 460px;
}

.column._50 {
  width: 50%;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.column._50.is-tablet-full {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 0;
  display: flex;
  position: static;
}

.column._50.is-tablet-full.text-align-left {
  flex-direction: column;
  padding-right: 60px;
}

.column._50.is-tablet-full.text-align-left.padding-horizontal.padding-large {
  height: auto;
  justify-content: center;
  padding-right: 0;
}

.column._50.padding-left.padding-xxlarge.heading-medium.text-align-left.margin-bottom {
  margin-bottom: 31px;
}

.column._50.display-flex-horizontal {
  width: 640px;
  flex-direction: row;
  padding-right: 0;
}

.column._40 {
  width: 40%;
}

.column.min-height {
  height: 510px;
}

.column.min-height.max-width-50 {
  padding-left: 21px;
  position: relative;
}

.column.min-height.max-width-50.is-tablet-full {
  width: 50%;
  margin-bottom: 0;
}

.column.display-flex-horizontal {
  margin-right: auto;
}

.column._60 {
  width: 60%;
}

.footer-brand-link {
  width: 121px;
  height: 50px;
}

.main-text {
  color: var(--black);
  text-decoration: none;
}

.main-text.heading-medium.primary-font.margin-bottom.margin-xsmall {
  line-height: .8;
}

.main-text.heading-medium.primary-font.text-weight-xbold {
  font-size: 26px;
}

.main-text.heading-medium.text-weight-xbold.primary-font.margin-bottom {
  margin-bottom: auto;
}

.main-text.text-style-link.primary-font {
  font-weight: 500;
}

.main-text.text-size-small.yext-color-secondary {
  color: var(--medium-aquamarine);
}

.main-text.text-size-regular.primary-font {
  color: var(--light-coral);
}

.main-text.text-size-regular.text-color-white {
  margin-top: 30px;
  margin-bottom: .55rem;
  margin-left: 1rem;
}

.main-text.text-size-regular.text-color-white.primary-font {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.main-text.text-size-regular.text-color-white.no-margin-top {
  margin-top: 20px;
}

.main-text.text-size-regular.margin-auto {
  margin-right: auto;
}

.main-text.text-size-regular.margin-auto.text-weight-bold.margin-right {
  margin-left: .5rem;
}

.main-text.avatar {
  font-size: 11px;
}

.main-text.avatar.text-weight-bold.primary-font.second {
  font-size: 16px;
}

.main-text.avatar.primary-font.second {
  font-size: 12px;
}

.main-text.avatar.second {
  font-size: 13px;
}

.main-text.text-weight-bold.pagination {
  margin-top: 15px;
  font-family: Outfit, sans-serif;
  font-weight: 800;
}

.main-text.heading-xlarge.text-span-gradient.margin-bottom {
  margin-bottom: 30px;
}

.main-text.heading-xlarge.text-span-gradient.primary-font {
  margin-bottom: 10px;
}

.primary-font {
  font-family: Outfit, sans-serif;
}

.main-paragraph.primary-font.text-size-medium.margin-bottom {
  line-height: 1.3;
}

.main-paragraph.primary-font.text-size-medium.margin-bottom.margin-small.second {
  line-height: 1.6;
}

.main-paragraph.primary-font.text-size-medium.margin-bottom.margin-medium, .main-paragraph.primary-font.text-size-medium.margin-bottom.margin-medium.text-weight-light {
  line-height: 1.3;
}

.main-paragraph.primary-font.text-size-medium.margin-bottom.margin-large.text-weight-light.text-align-center {
  width: 50%;
  text-align: left;
  line-height: 1.3;
}

.main-paragraph.primary-font.text-size-medium.margin-bottom.text-size-medium.text-align-left {
  font-weight: 600;
}

.main-paragraph.text-align-left.text-size-large.text-weight-medium.primary-font, .main-paragraph.text-align-left.text-size-medium.text-weight-light {
  line-height: 1.2;
}

.main-paragraph.text-align-left.text-size-medium.text-weight-light.margin-top {
  margin-top: 43px;
}

.main-paragraph.text-size-large.text-align-center.margin-bottom {
  margin-bottom: auto;
}

.main-paragraph.text-size-large.text-align-center.margin-bottom.primary-font {
  font-weight: 600;
}

.main-paragraph.text-size-large.text-align-center.margin-bottom.primary-font.para-left {
  text-align: left;
}

.text-field {
  width: 327px;
  height: 41px;
  color: #000;
  background-color: #f6f6f6;
  border-radius: 20px;
  margin-bottom: 0;
}

.text-field.primary-font.text-weight-semibold {
  height: 40px;
  border: 1px #000;
}

.link {
  color: var(--light-coral);
  transition: color .4s;
}

.link:hover {
  color: var(--medium-aquamarine);
}

.page-wrapper {
  margin-top: 60px;
  padding-top: 20px;
}

.page-wrapper.overflow-hidden {
  text-decoration: none;
}

.hero-section.padding-vertical.padding-custom1 {
  padding-top: 180px;
  padding-bottom: 280px;
}

.hero-section.padding-vertical.padding-custom1.display-flex-horizontal.is-mobile-vertical {
  margin-bottom: 140px;
  padding-top: 50px;
  padding-bottom: 180px;
  display: flex;
}

.main-heading.heading-xlarge.primary-font {
  font-weight: 700;
}

.main-heading.heading-xlarge.primary-font.margin-bottom.margin-xsmall {
  color: var(--black);
  font-weight: 800;
}

.main-heading.heading-xlarge.primary-font.margin-bottom.margin-xsmall.width-50 {
  width: 55%;
  margin-bottom: 24px;
}

.main-heading.heading-xlarge.primary-font.margin-bottom.margin-small.auto {
  margin-right: auto;
}

.main-heading.heading-xlarge.primary-font.margin-bottom.margin-small.text-span-gradient {
  text-align: left;
  text-transform: none;
  margin-right: auto;
}

.main-heading.heading-xlarge.primary-font.margin-bottom.margin-small.text-span-gradient.instruction {
  font-size: 8rem;
}

.main-heading.heading-xlarge.primary-font.margin-bottom.margin-small.text-weight-xbold {
  font-weight: 800;
}

.main-heading.heading-xlarge.text-align-center.primary-font.margin-top.margin-large {
  z-index: 3;
  width: 100%;
  max-width: 687px;
  position: relative;
}

.main-heading.heading-medium.primary-font {
  line-height: 1;
}

.main-heading.text-align-left.heading-large.margin-top.margin-xlarge {
  line-height: 1.4;
}

.main-heading.text-span-gradient.about {
  font-size: 96px;
}

.main-heading.text-span-gradient.about.text-align-left {
  line-height: 1.2;
  overflow: visible;
}

.text-span-gradient {
  background-image: linear-gradient(to right, var(--gold), var(--light-coral) 44%, var(--medium-aquamarine) 66%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.horizontal-move {
  justify-content: flex-start;
  margin-bottom: 41px;
  display: flex;
}

.horizontal-move.second {
  justify-content: flex-end;
}

.horizontal-move.image.second {
  align-items: flex-end;
}

.wrapper-images {
  flex: none;
  align-items: center;
  display: flex;
}

.image-moved {
  width: 10.5vw;
  height: 10.5vw;
  object-fit: cover;
}

.image-moved.brand {
  width: 87px;
  height: auto;
  opacity: .12;
  margin-left: 72px;
}

.image-moved.brand.second {
  width: 55px;
}

.border-radius {
  border-radius: 30px;
}

.box-shadow {
  box-shadow: 0 -4px 19px 12px rgba(0, 0, 0, .03);
}

.tabs.padding-vertical {
  padding-top: 40px;
  padding-bottom: 50px;
  display: block;
}

.text-button {
  font-size: 28px;
}

.text-button.text-weight-xbold {
  font-size: 22px;
  position: static;
}

.tab-image {
  width: 100%;
  height: 395px;
  object-fit: contain;
}

.tab-image.border-radius {
  height: 596px;
  object-fit: cover;
  object-position: 50% 50%;
}

.tab-image.border-radius.first {
  width: 585px;
  height: 450px;
  max-width: 100%;
}

.work-section.padding-vertical.padding-huge.text-align-center {
  padding-top: 0;
}

.banner.padding-vertical.padding-xxlarge.background-secondary-color {
  position: relative;
}

.display-flex-vertical {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.collection-list-wrapper-category.margin-top.margin-large {
  width: 100%;
}

.collection-list-category {
  grid-column-gap: 63px;
  grid-row-gap: 70px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-items: stretch;
  display: grid;
}

.collection-item-category {
  width: 100%;
  position: relative;
}

.category-card {
  width: 100%;
  text-decoration: none;
}

.category-card.border-radius.overflow-hidden.box-shadow {
  z-index: 1;
  height: 100%;
  background-color: #fff;
  position: relative;
}

.category-card.box-shadow.border-radius.position-relative {
  perspective: 1196px;
  transform: perspective(1176px);
}

.category-image-card {
  z-index: 1;
  width: 100%;
  height: 221px;
  object-fit: cover;
  position: relative;
}

.category-image-card.border-radius {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.wrap-text-category-card.padding-custom-second {
  padding: 33px 50px;
}

.wrap-text-category-card.padding-custom-second.text-align-left {
  z-index: 1;
  position: relative;
}

.wrap-text-category-card.padding-custom-second.text-align-left.background-color-white.border-radius {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.wrap-text-category-card.padding-custom-third {
  padding: 25px 20px;
}

.wrap-text-category-card.padding-custom-third.text-align-left.display-flex-horizontal {
  z-index: 2;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}

.collection-list-product {
  grid-column-gap: 38px;
  grid-row-gap: 38px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.collection-list-wrapper-product {
  align-self: stretch;
}

.collection-list-wrapper-product.margin-top.margin-large {
  width: 100%;
}

.categor-image-card {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.categor-image-card.border-radius {
  z-index: 1;
  position: relative;
}

.hero-category.display-flex-vertical {
  align-items: center;
}

.hero-category.display-flex-vertical.padding-vertical.padding-large {
  padding-bottom: 18.1rem;
  position: relative;
}

.hero-category.display-flex-vertical.padding-vertical.padding-large.overflow-hidden {
  padding-bottom: 24.1rem;
}

.collection-list-wrapper-button {
  align-self: stretch;
}

.collection-list-button {
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: auto auto auto;
  grid-auto-columns: 1fr;
  justify-items: center;
}

.collection-item-button {
  margin-bottom: 10px;
  margin-left: 0;
  margin-right: 10px;
  display: inline-block;
}

.image-hero {
  width: 350px;
  height: 350px;
}

.image-hero.absolute {
  width: 410px;
  height: 410px;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.image-hero.absolute.border-radius {
  width: 410px;
  height: 410px;
}

.image-hero.border-radius {
  width: 325px;
  height: 325px;
  margin-left: 0;
}

.social-icon {
  width: 100%;
}

.work-wrap-text {
  width: 585px;
  height: 100%;
  max-width: 100%;
}

.work-wrap-text.border-radius.box-shadow.horizontal-padding.padding-xlarge {
  height: auto;
}

.work-wrap-text.border-radius.box-shadow.horizontal-padding.padding-xlarge.display-flex-vertical {
  text-align: left;
  justify-content: center;
}

.work-wrap-text.border-radius.box-shadow.horizontal-padding.padding-xlarge.display-flex-vertical.contact {
  min-height: 596px;
  justify-content: space-between;
  align-items: center;
  padding-top: 144px;
  padding-bottom: 114px;
}

.work-wrap-text.border-radius.box-shadow.horizontal-padding.padding-xlarge.display-flex-vertical.contact.align-left {
  align-items: flex-start;
}

.order-wrap.border-radius.background-secondary-color {
  height: 35px;
  align-items: center;
  margin-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.order-wrap.border-radius.background-primary-color, .order-wrap.border-radius.background-tertiary-color {
  height: 35px;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.text-color-white {
  color: #fff;
}

.image {
  width: auto;
  height: auto;
  max-width: none;
  object-fit: fill;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 51vw;
  right: auto;
}

.image.second {
  left: 0;
}

.faq-wrapper {
  width: 100%;
  margin-top: 0;
  padding-top: 25px;
}

.faq-bar.border-radius.text-span-gradient {
  text-align: left;
  -webkit-text-fill-color: inherit;
  background-image: linear-gradient(to right, rgba(234, 215, 27, .51), rgba(255, 127, 150, .53) 52%, rgba(130, 203, 172, .47));
  background-clip: border-box;
  padding: 26px;
  position: relative;
}

.faq-bar.border-radius.text-span-gradient.display-flex-horizontal {
  justify-content: space-between;
}

.wrapper-faq.display-flex-horizontal {
  justify-content: flex-start;
}

.wrapper-faq.display-flex-horizontal.is-mobile-vertical, .wrapper-faq.display-flex-horizontal.is-mobile-vertical.relative-position {
  position: relative;
}

.wrapper-faq.display-flex-horizontal.is-mobile-vertical.relative-position.border-radius {
  text-align: left;
  align-items: flex-start;
  padding-left: 27px;
  padding-right: 27px;
}

.wrapper-faq.display-flex-horizontal.is-mobile-vertical.relative-position.border-radius.box-shadow {
  margin-top: 0;
  margin-bottom: 0;
  top: 12px;
}

.illustrations-wrap-text.max-width-medium.margin-right.margin-huge {
  margin-top: 2rem;
  margin-bottom: 4rem;
}

.illustrations-wrap-text.max-width-medium.margin-left.margin-medium {
  margin-top: 2rem;
}

.paragraph {
  width: 100%;
  max-width: 374px;
  font-size: 18px;
  line-height: 1.3;
}

.paragraph.margin-top {
  white-space: normal;
}

.paragraph.margin-top.margin-xxsmall.max-width-full {
  max-width: none;
}

.cursor {
  z-index: 9999;
  width: 100px;
  height: 100px;
  justify-content: center;
  align-items: center;
  margin-top: -50px;
  margin-left: -50px;
  display: flex;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.big-circle {
  width: 20px;
  height: 20px;
  background-color: var(--light-coral);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  display: block;
  position: absolute;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
}

.big-circle.second {
  background-color: rgba(0, 0, 0, 0);
  background-image: radial-gradient(circle closest-side at 50% 50%, var(--light-coral), rgba(234, 215, 27, 0) 90%);
}

.big-circle.third {
  width: 22px;
  height: 22px;
  background-color: rgba(0, 0, 0, 0);
  background-image: radial-gradient(circle closest-side at 50% 50%, var(--light-coral), rgba(255, 127, 150, 0));
}

.cursor-clickable {
  display: none;
}

.button-tab {
  width: auto;
  height: 50px;
  border: 1px solid var(--black);
  color: var(--black);
  text-align: center;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  padding: 0 31px;
  font-weight: 600;
  display: flex;
}

.button-tab.w--current {
  background-color: var(--black);
  color: #fff;
}

.button-tab.margin-horizontal.margin-medium {
  border: 1px solid var(--black);
}

.button-tab.margin-horizontal.margin-medium.hover {
  margin-left: .5rem;
  margin-right: .5rem;
}

.button-tab.hover {
  cursor: none;
  flex: 1;
  transition: color .8s, background-color .8s;
}

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

.background-video {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0);
  margin-top: auto;
  margin-bottom: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

._404-text {
  color: #fff;
  text-align: left;
  margin-bottom: 40px;
  font-family: Outfit, sans-serif;
  font-size: 198px;
  font-weight: 800;
}

._404-heading {
  text-align: left;
  font-family: Outfit, sans-serif;
  font-size: 64px;
  font-weight: 800;
}

.wrapper-images-brands {
  flex: none;
  align-items: center;
  display: flex;
}

.icon-card {
  width: 18px;
  height: 18px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.button-card {
  padding: 10px;
}

.button-card.border-radius {
  z-index: 2;
  color: var(--black);
  transition: color .4s;
  position: relative;
}

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

.button-card.border-radius.background-primary-color {
  margin-left: 8px;
}

.button-card.border-radius.background-secondary-color {
  background-color: #13ecb8;
  margin-left: 8px;
  margin-right: 0;
  padding-left: 15px;
  padding-right: 15px;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.bg-card.position-absolute {
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.bg-card.position-absolute.border-radius {
  z-index: 6;
}

.bg-card.position-absolute.border-radius.text-span-gradient {
  z-index: 0;
  opacity: .66;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
}

.bg-card.position-absolute.border-radius.text-span-gradient.box-shadow {
  opacity: .35;
  padding-bottom: 0;
}

.wrap-hover-button.border-radius.overflow-hidden.box-shadow.margin-top.margin-xlarge {
  position: relative;
}

.wrap-hover-button.border-radius.overflow-hidden.box-shadow.margin-top.margin-xlarge.background-primary-color {
  background-color: rgba(255, 127, 150, 0);
}

.wrap-hover-button.border-radius.overflow-hidden.box-shadow.margin-top.margin-xlarge.background-primary-color:hover {
  background-color: #ff7f96;
}

.wrap-hover-button.border-radius.overflow-hidden.box-shadow.background-primary-color {
  flex-direction: column;
  justify-content: space-around;
  display: flex;
}

.wrap-hover-button.border-radius.overflow-hidden.box-shadow.background-primary-color.margin-bottom.margin-xlarge {
  background-color: rgba(255, 127, 150, 0);
  margin-top: 4rem;
}

.wrap-hover-button.border-radius.overflow-hidden.box-shadow.background-primary-color.margin-bottom.margin-xlarge:hover {
  background-color: #ff7f96;
}

.wrap-hover-button.border-radius.overflow-hidden.background-primary-color {
  background-color: rgba(255, 127, 150, 0);
  border-radius: 30px;
  position: relative;
}

.wrap-hover-button.border-radius.overflow-hidden.background-primary-color:hover {
  background-color: #ff7f96;
}

.wrap-hover-button.border-radius.overflow-hidden.background-primary-color.margin-left.auto {
  margin-left: auto;
}

.wrap-hover-button.border-radius.overflow-hidden.card {
  border-radius: 50%;
  position: relative;
}

.wrap-hover-button.border-radius.overflow-hidden.card.margin-xsmall {
  border-radius: 30px;
  justify-content: center;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.wrap-hover-button.border-radius.overflow-hidden.card.background-color-gray {
  transition: background-color .4s;
}

.wrap-hover-button.border-radius.overflow-hidden.card.background-color-gray:hover {
  background-color: var(--light-coral);
}

.wrap-hover-button.border-radius.overflow-hidden.background-primary-color {
  border-radius: 30px;
  position: relative;
}

.gradient-radius.text-span-gradient {
  width: 200px;
  height: 200px;
  background-image: radial-gradient(circle farthest-side at 50% 50%, var(--gold), #82cbac 43%, #ff7f96 93%);
  opacity: 0;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  border-radius: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.gradient-radius.text-span-gradient.segond {
  width: 400px;
  height: 400px;
}

.gradient-radius.text-span-gradient {
  width: 200px;
  height: 200px;
  -webkit-text-fill-color: inherit;
  background-image: radial-gradient(circle farthest-side, #ead71b, #82cbac 43%, #ff7f96 93%);
  background-clip: border-box;
  border-radius: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.hero-product-page.padding-vertical.padding-xhuge {
  padding-top: 6.2rem;
}

.image-product-wrapper {
  width: 475px;
  height: 477px;
}

.main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rapper-text-product {
  height: auto;
  flex: 1;
}

.rapper-text-product.border-radius.box-shadow.margin-left.margin-small.padding-horizontal.padding-huge {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding-left: 6rem;
  padding-right: 6rem;
  display: flex;
}

.row.display-flex-horizontal.text-span-gradient {
  margin-right: auto;
}

.signature-image {
  width: auto;
  height: 118px;
  position: absolute;
  top: auto;
  bottom: -9%;
  left: auto;
  right: 0%;
}

.tabs-content {
  overflow: visible;
}

.style-guide-heading {
  font-size: 144px;
}

.style-guide-heading.text-span-gradient {
  text-align: center;
  font-family: Outfit, sans-serif;
  font-weight: 700;
  line-height: 1.3;
  overflow: visible;
}

.wrap-text-color {
  text-align: center;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 20px;
  display: flex;
}

.wrap-tipography.background-color-white {
  width: 99px;
  height: 99px;
  background-color: var(--black);
  color: #fff;
  justify-content: center;
  align-items: center;
  display: flex;
}

.wrap-tipography.background-color-white.border-radius {
  font-size: 50px;
}

.licensing-container {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  padding: 40px;
}

.licensing-container.border-radius.box-shadow {
  margin-bottom: 60px;
}

.licensing-container.border-radius.box-shadow.margin-top {
  margin-top: 100px;
}

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

.licensing-paragraph {
  text-align: center;
  margin-bottom: 0;
  font-size: 18px;
}

.image-licensing {
  width: 100%;
  border: 1px solid #272727;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  display: flex;
}

.image-licensing.first {
  width: 100%;
  min-height: 150px;
  background-image: url('../images/aldi-sigun-pmACe385Ruo-unsplash.jpg');
  background-position: 50% 90%;
  background-size: cover;
  border-style: none;
}

.image-licensing.third {
  min-height: 150px;
  background-image: url('../images/v-c.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-style: none;
  border-color: #272727;
}

.image-licensing.second {
  min-height: 300px;
  background-image: url('../images/gfdgnbhgf.jpg');
  background-position: 50%;
  background-size: cover;
  border-style: none;
}

.image-licensing.fourth {
  min-height: 150px;
  background-image: url('../images/photo2.jpg');
  background-position: 50%;
  background-size: cover;
  border-style: none;
}

.image-licensing.fifth {
  min-height: 150px;
  background-image: url('../images/irene-strong-A6XhSbJuLXk-unsplash.jpg');
  background-position: 50%;
  background-size: cover;
  border-style: none;
}

.image-licensing.sixth {
  min-height: 300px;
  background-image: url('../images/photo1.jpg');
  background-position: 50%;
  background-size: cover;
  border-style: none;
}

.source-link {
  color: #333;
  background-color: rgba(0, 0, 0, 0);
  margin-right: 20px;
  font-weight: 400;
  transition: color .4s;
}

.source-link:hover {
  color: var(--light-coral);
}

.images-grid {
  width: 100%;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 20px;
  display: grid;
}

.licensing-link-wrapper {
  align-items: center;
  display: flex;
}

.license-link {
  color: #333;
  font-weight: 400;
  transition: color .4s ease-in-out;
}

.license-link:hover {
  color: var(--light-coral);
}

.category-moved-image {
  width: auto;
  height: 150px;
  max-width: none;
  margin-right: 30px;
}

.avatar-wrap {
  height: 33px;
  background-color: rgba(255, 255, 255, .85);
}

.avatar-wrap.display-flex-horizontal.border-radius {
  width: 105px;
  padding-left: 8px;
}

.avatar-wrap.display-flex-horizontal.border-radius.position-absolute {
  top: 15px;
  left: -19px;
}

.avatar-wrap.display-flex-horizontal.border-radius.position-absolute.box-shadow.second {
  width: 159px;
  height: 55px;
  padding-left: 11px;
  top: auto;
  bottom: 22px;
  left: 106px;
}

.avatar-image {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.avatar-image.second {
  width: 41px;
  height: 41px;
}

.wrap-text-avatar {
  margin-left: 5px;
}

.wrap-text-avatar.second {
  flex-direction: column;
  justify-content: center;
  margin-left: 12px;
  display: flex;
}

.changelog-section {
  height: auto;
  min-height: 100vh;
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.changelog-container {
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #525252;
  padding: 55px;
}

.changelog-text {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 28px;
  font-weight: 300;
  line-height: 1.2;
}

.succes-message.border-radius.background-secondary-color {
  color: #fff;
  text-align: center;
  padding-top: 20px;
  font-size: 20px;
}

.succes-message.border-radius.background-secondary-color.border {
  border: 1px solid #fff;
  margin-top: 10px;
}

.error-message.border-radius {
  padding: 19px 23px;
}

.error-message.border-radius.background-primary-color {
  color: #fff;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  font-size: 20px;
}

.instruction-grid {
  width: 70%;
  grid-template-columns: .25fr 1fr;
  margin-top: 40px;
}

.list {
  padding-left: 2.75rem;
}

.list-item {
  margin-bottom: 2rem;
}

.text-span {
  background-color: var(--medium-aquamarine);
  color: #fff;
  border-radius: 6px;
  padding-left: 6px;
  padding-right: 6px;
}

.nft-image-card {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.text {
  color: #fff;
  font-size: 14px;
}

.pagination {
  margin-top: 78px;
  margin-bottom: 10px;
}

.body {
  cursor: auto;
}

.collection-list-wrapper {
  margin-left: 10px;
}

.empty-state {
  background-color: var(--light-coral);
  color: #fff;
  font-size: 20px;
}

.video-background {
  width: 100%;
  height: 497px;
}

.video-background.border-radius {
  filter: grayscale();
}

.quote {
  width: 100%;
  max-width: 451px;
  margin-left: auto;
}

.container-form {
  z-index: 1;
  background-color: var(--medium-aquamarine);
  flex-direction: column;
  justify-content: center;
  padding: 41px 60px;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.link-block-social {
  width: 120px;
  height: 120px;
}

.link-block-social.border-radius.box-shadow {
  z-index: 1;
  color: var(--black);
  background-color: #fff;
  justify-content: center;
  align-items: center;
  padding: 26px;
  transition: color .5s ease-in-out;
  display: flex;
  position: relative;
}

.link-block-social.border-radius.box-shadow:hover {
  color: var(--light-coral);
}

.close {
  width: 18px;
  height: auto;
  color: #303030;
  align-self: center;
  align-items: center;
  display: flex;
}

.close.position-absolute {
  color: #fff;
  top: 6%;
  bottom: auto;
  left: auto;
  right: 6%;
}

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

.social-link-container.border-radius.position-relative {
  margin-right: 39px;
}

.text-span-2 {
  text-transform: none;
  font-style: normal;
  text-decoration: none;
}

.answer-content {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.p---l {
  font-size: 24px;
  line-height: 1.4em;
}

.checkbox-field {
  text-align: center;
  flex-direction: column;
  order: -1;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.checkbox-field.bottom-margin-16 {
  order: 1;
}

.field-label {
  order: -1;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5em;
}

.field-label.switch-label {
  color: #a7a7d3;
  order: 1;
}

.field-label.bottom-margin-16 {
  color: var(--black);
}

.field-label.white {
  color: #fff;
}

.field-label.white.email {
  cursor: text;
  font-size: 18px;
  transition: all .2s ease-out;
  display: none;
}

.p---m {
  color: #fff;
  font-size: 16px;
  display: block;
}

.switch-checkbox {
  width: 60px;
  height: 80px;
  cursor: pointer;
  background-image: url('../images/Switch-button.svg'), url('../images/Switch-Track.svg');
  background-position: 50% 0, 50%;
  background-repeat: no-repeat, no-repeat;
  background-size: contain, contain;
  border-style: none;
  margin-top: 0;
  margin-left: 0;
  transition: all .2s;
}

.switch-checkbox.w--redirected-checked {
  background-color: rgba(0, 0, 0, 0);
  background-image: url('../images/Switch-button.svg'), url('../images/Switch-Track.svg');
  background-position: 50% 100%, 50%;
  background-repeat: no-repeat, no-repeat;
  background-size: contain, contain;
}

.switch-checkbox.bottom-margin-16 {
  background-image: url('../images/651288eab36f359952edd3ee_Switch-button.svg'), url('../images/651288eab36f359952edd3ef_Switch-Track.svg');
}

.switch-checkbox.bottom-margin-16.w--redirected-focus {
  box-shadow: none;
}

.success-message {
  width: 500px;
  height: 500px;
  background-color: rgba(0, 0, 0, 0);
  background-image: url('../images/star-background.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.content-wrap {
  width: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.heading {
  font-size: 32px;
}

.heading.l {
  font-size: 64px;
  line-height: 1.1em;
}

.heading.l.margin-bottom {
  margin-bottom: 40px;
}

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

.email-input-wrap {
  position: relative;
}

.question-icon-wrap {
  color: #a7a7d3;
}

.question-icon-wrap:hover {
  color: #1c19c8;
}

.question-icon-wrap.photos {
  margin-right: -20px;
  padding-left: 8px;
}

.question-icon-wrap.producer {
  width: 5rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.question-icon-wrap.button {
  width: 2rem;
  height: 2rem;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid rgba(0, 0, 0, 0);
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
}

.question-icon-wrap.location {
  width: 5rem;
  justify-content: center;
  display: flex;
}

.question-icon-wrap.gifs {
  margin-right: -20px;
  padding-left: 8px;
}

.question-icon-wrap.products {
  margin-right: 0;
  padding-left: 8px;
}

.success-wrap {
  height: 100%;
  color: #fff;
  justify-content: center;
  align-items: center;
  padding: 111px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5rem;
  display: flex;
}

.flex {
  display: flex;
}

.hero {
  min-height: 100vh;
  justify-content: center;
  display: flex;
}

.hero.padding {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.flex-between-row {
  justify-content: space-between;
  display: flex;
}

.text-field-2 {
  max-width: 10rem;
  color: var(--black);
  text-align: right;
  background-color: rgba(0, 0, 0, 0);
  border: 1px #000;
  font-size: 20px;
  line-height: 1.5rem;
  display: block;
}

.text-field-2.square {
  width: 60px;
  height: 60px;
  background-color: var(--black);
  color: #fff;
  text-align: center;
  border: 1px #000;
  border-radius: 100%;
  font-size: 24px;
  line-height: 1.2em;
}

.field-label-wrapper {
  display: flex;
}

.form-column {
  width: 75%;
  justify-content: center;
  align-items: center;
  padding: 4rem 0 4rem 6rem;
  display: flex;
}

.counter-button-wrapper {
  width: 2rem;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.question-icon {
  margin-left: 0;
}

.submit-button-2 {
  background-color: rgba(0, 0, 0, 0);
  background-image: url('../images/fluent_send-28-filled.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.dollar {
  font-size: 48px;
  line-height: 1.5em;
}

.round-checkbox {
  width: 40px;
  height: 40px;
  background-color: var(--medium-aquamarine);
  cursor: pointer;
  border-style: none;
  border-radius: 100%;
  margin-top: 0;
  margin-left: 0;
}

.round-checkbox.w--redirected-checked {
  background-color: var(--gold);
  background-image: url('../images/fluent_checkmark-12-filled.svg');
}

.round-checkbox.w--redirected-focus {
  box-shadow: none;
}

.total-field {
  background-color: #f8fff4;
  border: 1px #000;
  font-size: 48px;
  line-height: 1.5em;
}

.total-field.margin-top-16 {
  cursor: default;
  margin-top: 16px;
}

.total-field.margin-top-16.margin-mobile-0 {
  color: var(--black);
}

.form-2 {
  width: 100%;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border: 1px solid rgba(47, 47, 47, .3);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.email-field {
  background-color: rgba(0, 0, 0, 0);
  border: 1px #fff;
  border-bottom: 2px solid #fff;
}

.email-field.margin-top-16 {
  color: #fff;
  margin-top: 16px;
  padding-left: 0;
  padding-right: 27px;
  font-size: 16px;
  font-weight: 500;
}

.email-field.margin-top-16::-ms-input-placeholder {
  color: #fff;
}

.email-field.margin-top-16::placeholder {
  color: #fff;
}

.question-answer {
  width: 100%;
  height: 100%;
  grid-column-gap: 16px;
  opacity: 0;
  color: #fff;
  background-color: #1c19c8;
  grid-template-rows: auto auto;
  grid-template-columns: .75fr 1fr;
  grid-auto-columns: 1fr;
  padding: 7px;
  display: flex;
  position: absolute;
}

.question-answer.stylist, .question-answer.products, .question-answer.location, .question-answer.photos, .question-answer.gifs, .question-answer.pet, .question-answer.producer, .question-answer.model, .question-answer.hand {
  background-color: var(--black);
}

.question-wrapper {
  width: 100%;
  height: 10rem;
  color: var(--black);
  margin-top: 32px;
  position: relative;
}

.form-block-2 {
  border: 1px solid rgba(47, 47, 47, .3);
  padding: 1.4rem;
  position: relative;
}

.form-block-2.center {
  border-color: rgba(47, 47, 47, .5);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.form-block-2.blue {
  background-color: var(--black);
}

.div-block {
  margin-top: 220px;
}

.expandable-single {
  cursor: pointer;
  background-color: rgba(21, 21, 22, 0);
  border-radius: 18px;
  padding: 0;
}

.expandable-top {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.faq-h3 {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 24px;
  font-size: 20px;
}

.plus-expand-master {
  width: 40px;
  height: 40px;
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.plus-line {
  width: 18px;
  height: 2px;
  background-color: var(--black);
  border-radius: 1px;
}

.plus-line.vertical {
  background-color: var(--black);
  position: absolute;
  transform: rotate(-90deg);
}

.expandable-bottom {
  width: 90%;
  transform-origin: 50% 0;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.faq-paragraph {
  transform-origin: 50% 0;
  margin-bottom: 0;
  padding-top: 16px;
  padding-bottom: 12px;
}

@media screen and (min-width: 1440px) {
  .utility-form-block {
    margin: auto auto 25vh 42vw;
  }

  .horizontal-move.image.second {
    justify-content: flex-start;
  }

  .wrapper-images {
    width: auto;
  }

  .image-moved {
    width: 152px;
    height: 152px;
  }

  .category-image-card.border-radius:hover {
    border-radius: 20px 20px 0 0;
  }

  .image-hero.absolute.border-radius, .image-hero.border-radius {
    border-radius: 30px;
  }

  .image {
    height: auto;
    left: auto;
    right: 0;
  }

  .background-video {
    width: 100vw;
    height: 100vh;
    flex: 0 auto;
  }

  .wrap-hover-button.border-radius.overflow-hidden.box-shadow.margin-top.margin-xlarge.background-primary-color {
    align-self: auto;
    align-items: stretch;
  }

  .licensing-container {
    width: 100%;
    max-width: none;
    border-style: solid;
    border-color: #000;
  }

  .licensing-paragraph {
    text-align: center;
    font-weight: 400;
  }

  .image-licensing {
    width: 100%;
    border: 1px solid #ebebeb;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    display: flex;
  }

  .category-moved-image {
    height: 12vw;
    margin-right: 30px;
  }

  .changelog-container {
    background-color: rgba(0, 0, 0, 0);
  }
}

@media screen and (max-width: 991px) {
  body {
    cursor: auto;
  }

  .styleguide-3-col.border-radius.box-shadow.second {
    padding-left: 60px;
    padding-right: 60px;
  }

  .hide-tablet {
    display: none;
  }

  .styleguide-section {
    grid-column-gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  .styleguide-section-type {
    position: static;
  }

  .text-link:focus {
    color: var(--medium-aquamarine);
  }

  .text-link.w--current {
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(135deg, #ead71b, #ff7f96 44%, #82cbac 66%);
    -webkit-background-clip: text;
    background-clip: text;
  }

  .text-link.margin-right.margin-large.primary-font {
    margin-bottom: 1rem;
    font-size: 40px;
    font-weight: 700;
  }

  .text-link.margin-right.margin-large.primary-font.hover {
    margin-bottom: 1.5rem;
  }

  .container-large {
    width: 92%;
  }

  .container-large.display-flex-vertical {
    padding-left: 0;
  }

  .container-large.text-align-center {
    width: 91%;
  }

  .container-large.text-align-center.display-flex-vertical.padding-vertical.padding-custom-third {
    padding-bottom: 40px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .container-large.text-align-center.display-flex-vertical.padding-horizontal.padding-xlarge {
    padding-top: 40px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .container-large.display-flex-horizontal.is-tablet-vertical {
    flex-direction: column;
  }

  .page-padding {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .show-tablet {
    display: block;
  }

  .utility-component {
    background-color: #e2a6ad;
    justify-content: center;
  }

  .utility-form-block {
    margin-right: auto;
  }

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

  .margin-medium {
    margin: 1.5rem;
  }

  .margin-large {
    margin: 2.5rem;
  }

  .margin-xlarge {
    margin: 3rem;
  }

  .margin-xxlarge {
    margin: 4rem;
  }

  .margin-huge {
    margin: 5rem;
  }

  .margin-xhuge {
    margin: 6rem;
  }

  .margin-xxhuge {
    margin: 8rem;
  }

  .padding-medium {
    padding: 1.5rem;
  }

  .padding-large {
    padding: 2.5rem;
  }

  .padding-xlarge {
    padding: 3rem;
  }

  .padding-xxlarge {
    padding: 4rem;
  }

  .padding-huge {
    padding: 5rem;
  }

  .padding-xhuge {
    padding: 6rem;
  }

  .padding-xxhuge {
    padding: 8rem;
  }

  .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;
  }

  .navbar.container-large.background-color-white.display-flex-horizzontal {
    width: 92%;
    width: 92%;
    align-items: center;
  }

  .display-flex-horizontal.center {
    width: 100%;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    display: grid;
  }

  .nav-menu.margin-left.margin-xlarge.display-flex-horizontal {
    margin-top: 1rem;
    margin-left: 0;
  }

  .nav-menu.margin-left.margin-xlarge.display-flex-horizontal.border-radius.background-color-white {
    padding: 67px 30px;
  }

  .nav-menu.margin-left.margin-xlarge.display-flex-horizontal.border-radius.background-color-white.box-shadow {
    background-color: #fff;
    box-shadow: 0 -4px 19px 12px rgba(0, 0, 0, .03);
  }

  .social-wrap {
    margin-top: 24px;
    margin-bottom: 24px;
    display: flex;
  }

  .social-wrap.left {
    margin-bottom: 0;
  }

  .social-link.hover {
    margin-left: 0;
    margin-right: 20px;
  }

  .footer.container-large.padding-horizontal.padding-xlarge {
    width: 92%;
  }

  .row.display-flex-horizontal {
    flex-direction: row;
    align-items: flex-end;
  }

  .row.display-flex-horizontal.is-tablet-vertical {
    flex-direction: column;
  }

  .row.display-flex-horizontal.is-tablet-vertical.reverse {
    flex-direction: column-reverse;
  }

  .row.display-flex-horizontal.is-tablet-vertical.second {
    margin-top: 48px;
  }

  .row.padding-vertical.about.display-flex-horizontal {
    flex-direction: column;
  }

  .grid-4-columns.margin-bottom {
    grid-template-columns: auto auto auto;
  }

  .column.max-width-large {
    max-width: none;
  }

  .column._50.is-tablet-full {
    width: 100%;
    margin-bottom: 40px;
    padding-left: 0;
  }

  .column._50.is-tablet-full.text-align-left {
    margin-bottom: 0;
  }

  .column._50.is-tablet-full.text-align-left.padding-horizontal.padding-large, .column._50.is-tablet-full.padding-left.padding-large {
    padding-left: 0;
  }

  .column._50.display-flex-horizontal {
    margin-bottom: 30px;
  }

  .column.min-height.max-width-50.is-tablet-full {
    width: 100%;
    height: 550px;
    margin-top: 40px;
    padding-left: 0;
  }

  .main-paragraph.text-align-left.text-size-large.text-weight-medium.primary-font {
    font-size: 20px;
  }

  .main-paragraph.text-align-left.text-size-medium.text-weight-light.margin-top {
    margin-top: 20px;
    font-size: 18px;
  }

  .page-wrapper {
    margin-top: 0;
  }

  .page-wrapper.overflow-hidden {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-section.padding-vertical.padding-custom1.display-flex-horizontal.is-mobile-vertical {
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px;
  }

  .main-heading.heading-xlarge.primary-font.margin-bottom.margin-xsmall.width-50 {
    width: auto;
    overflow: hidden;
  }

  .image-moved {
    width: 15vw;
    height: 15vw;
  }

  .menu-button {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

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

  .tabs.padding-vertical {
    padding-bottom: 40px;
  }

  .tab-image.border-radius.first {
    width: 100%;
  }

  .work-section.padding-vertical.padding-huge.text-align-center {
    padding-left: 0;
    padding-right: 0;
  }

  .banner.padding-vertical.padding-xxlarge.background-secondary-color {
    padding-left: 40px;
    padding-right: 40px;
  }

  .collection-list-category {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr;
  }

  .collection-list-product {
    grid-template-columns: 1fr 1fr;
  }

  .image-hero.absolute.border-radius {
    width: 450px;
    height: 450px;
  }

  .image-hero.border-radius {
    width: 425px;
    height: 425px;
  }

  .work-wrap-text.border-radius.box-shadow.horizontal-padding.padding-xlarge.display-flex-vertical {
    width: 100%;
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
  }

  .work-wrap-text.border-radius.box-shadow.horizontal-padding.padding-xlarge.display-flex-vertical.contact {
    min-height: auto;
  }

  .work-wrap-text.border-radius.box-shadow.horizontal-padding.padding-xlarge.display-flex-vertical.contact.position-relative.overflow-hidden {
    min-height: 600px;
    margin-top: 29px;
  }

  .image {
    left: 46vw;
  }

  .illustrations-wrap-text.max-width-medium.margin-right.margin-huge {
    margin-right: 1rem;
  }

  .paragraph {
    font-size: 14px;
  }

  .paragraph.margin-top {
    font-size: 16px;
  }

  .cursor {
    display: none;
  }

  .background-video {
    width: 100vh;
    height: 50vw;
    background-color: #cf98a5;
    flex: 0 auto;
    align-self: auto;
    padding-top: 0;
    top: 0%;
    bottom: 0%;
    left: auto;
    right: auto;
    overflow: visible;
    transform: rotate(90deg);
  }

  ._404-text {
    text-align: center;
    font-size: 150px;
  }

  ._404-heading {
    font-size: 44px;
  }

  .wrap-hover-button.border-radius.overflow-hidden.background-primary-color.margin-left.margin-large {
    margin-left: 0;
  }

  .hero-product-page.padding-vertical.padding-xhuge {
    padding-top: 3.1rem;
    padding-left: 40px;
    padding-right: 40px;
  }

  .image-product-wrapper.overflow-hidden.border-radius.is-tablet-large {
    width: 100%;
    margin-bottom: 40px;
  }

  .rapper-text-product.border-radius.box-shadow.margin-left.margin-small.padding-horizontal.padding-huge {
    margin-left: 0;
    padding-top: 4.1rem;
    padding-bottom: 4.1rem;
  }

  .line-top-meu {
    width: 5px;
    height: 3px;
    background-color: var(--black);
    border-radius: 2px;
    padding-bottom: 0;
    padding-right: 18px;
  }

  .lene-center {
    width: 30px;
    height: 3px;
    background-color: var(--black);
    border-radius: 2px;
    margin-top: 5px;
    margin-bottom: 5px;
    padding-bottom: 0;
    padding-right: 18px;
  }

  .line-bottom {
    width: 5px;
    height: 3px;
    background-color: var(--black);
    border-radius: 2px;
    margin-left: auto;
    padding-bottom: 0;
    padding-right: 18px;
  }

  .signature-image {
    height: 90px;
    bottom: 0%;
  }

  .licensing-container {
    width: 100%;
  }

  .image-licensing.third, .image-licensing.fourth {
    min-height: 300px;
  }

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

  .instruction-grid {
    width: 100%;
  }

  .quote {
    font-size: 24px;
  }

  .close.position-absolute.hover {
    display: none;
  }

  .content-wrap {
    width: 100%;
  }

  .hero.padding {
    height: auto;
    max-width: none;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .answer-image {
    height: 10rem;
  }

  .form-column {
    width: 100%;
    padding-left: 0;
  }

  .question-answer.stylist {
    width: 100%;
  }

  .question-answer.products {
    opacity: 1;
  }

  .question-answer.pet {
    z-index: 200;
    height: auto;
  }

  .question-wrapper {
    z-index: 100;
    width: 100%;
    height: 10rem;
    display: flex;
    position: fixed;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }
}

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

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1rem;
  }

  .styleguide-3-col {
    grid-template-columns: 1fr 1fr;
  }

  .styleguide-3-col.border-radius.box-shadow {
    padding-left: 40px;
    padding-right: 40px;
  }

  .styleguide-3-col.border-radius.box-shadow.second {
    grid-template-columns: 1fr 1fr;
    padding-left: 40px;
    padding-right: 40px;
  }

  .styleguide-color-sample {
    padding: 2.5rem 2rem;
  }

  .button.position-relative.background-none.border-radius.hover {
    font-size: 16px;
  }

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

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

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

  .styleguide-section-type {
    font-size: 3.6rem;
  }

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

  .form-input.border-radius.white.min-heignt {
    min-height: 80px;
  }

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

  .container-large.text-align-center.display-flex-vertical.padding-vertical.padding-custom-third {
    padding-top: 60px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .container-large.text-align-center.display-flex-vertical.padding-horizontal.padding-xlarge, .container-large.margin {
    padding-left: 20px;
    padding-right: 20px;
  }

  .styleguide-1-col.border-radius.box-shadow {
    padding-left: 40px;
    padding-right: 40px;
  }

  .page-padding {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

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

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

  .margin-medium {
    margin: 1.25rem;
  }

  .margin-large {
    margin: 1.5rem;
  }

  .margin-xlarge {
    margin: 2rem;
  }

  .margin-xxlarge {
    margin: 3rem;
  }

  .margin-huge {
    margin: 3.5rem;
  }

  .margin-xhuge {
    margin: 4rem;
  }

  .margin-xxhuge {
    margin: 4.5rem;
  }

  .padding-medium {
    padding: 1.25rem;
  }

  .padding-large {
    padding: 1.5rem;
  }

  .padding-xlarge {
    padding: 2rem;
  }

  .padding-xxlarge {
    padding: 3rem;
  }

  .padding-huge {
    padding: 3.5rem;
  }

  .padding-xhuge {
    padding: 4rem;
  }

  .padding-xxhuge {
    padding: 4.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;
  }

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

  .styleguide-page-header {
    margin-bottom: 0;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .navbar.container-large.background-color-white.display-flex-horizzontal {
    padding-left: 20px;
    padding-right: 20px;
  }

  .display-flex-horizontal.center {
    width: auto;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    display: grid;
  }

  .social-wrap.left {
    justify-content: center;
  }

  .social-link.hover {
    margin-left: 10px;
    margin-right: 10px;
  }

  .row.display-flex-horizontal {
    flex-direction: column;
    align-items: flex-start;
  }

  .row.display-flex-horizontal.is-tablet-vertical.reverse {
    margin-top: 40px;
  }

  .row.display-flex-horizontal.left.margin-bottom.margin-small, .row.display-flex-horizontal.margin-vertical.margin-custom-first {
    flex-direction: row;
  }

  .grid-4-columns.margin-bottom {
    grid-column-gap: 41px;
    grid-row-gap: 59px;
    grid-template-columns: auto auto;
  }

  .column._50.padding-left.padding-xxlarge.heading-medium.text-align-left.margin-bottom {
    margin-top: 2rem;
    padding-left: 0;
  }

  .column._50.display-flex-horizontal, .column._60 {
    width: 100%;
  }

  .main-text.text-style-link.primary-font {
    margin-top: 10px;
  }

  .main-text.text-size-regular.text-color-white {
    margin-top: 20px;
  }

  .main-text.text-size-regular.text-color-white.no-margin-top {
    margin-top: 10px;
  }

  .main-paragraph.primary-font.text-size-medium.margin-bottom.margin-large.text-weight-light.text-align-center {
    width: auto;
  }

  .main-paragraph.text-size-large.text-align-center.margin-bottom.primary-font {
    margin-top: 1.3rem;
  }

  .page-wrapper.overflow-hidden {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-section.padding-vertical.padding-custom1.display-flex-horizontal.is-mobile-vertical {
    padding-left: 20px;
    padding-right: 20px;
  }

  .main-heading.heading-xlarge.primary-font.margin-bottom.margin-small.text-span-gradient.instruction {
    font-size: 5.6rem;
  }

  .main-heading.text-span-gradient.about.text-align-left {
    font-size: 65px;
  }

  .about-section.padding-vertical.padding-huge.text-align-center {
    padding-left: 20px;
    padding-right: 20px;
  }

  .tabs.padding-vertical {
    padding-bottom: 20px;
  }

  .tab-image {
    height: auto;
  }

  .tab-image.border-radius, .tab-image.border-radius.first {
    height: 400px;
  }

  .work-section.padding-vertical.padding-huge.text-align-center {
    padding-left: 0;
    padding-right: 0;
  }

  .banner.padding-vertical.padding-xxlarge.background-secondary-color {
    padding-bottom: 14rem;
  }

  .collection-list-category, .collection-list-product {
    grid-template-columns: 1fr;
  }

  .image-hero.absolute.border-radius {
    width: 80%;
    height: auto;
  }

  .image-hero.border-radius {
    width: 70%;
    height: auto;
  }

  .work-wrap-text.border-radius.box-shadow.horizontal-padding.padding-xlarge.display-flex-vertical.contact {
    min-height: auto;
    padding-top: 81px;
    padding-bottom: 56px;
  }

  .work-wrap-text.border-radius.box-shadow.horizontal-padding.padding-xlarge.display-flex-vertical.contact.position-relative.overflow-hidden {
    min-height: auto;
    padding-top: 168px;
    padding-bottom: 168px;
  }

  .image {
    left: 0;
  }

  .wrapper-faq.display-flex-horizontal.is-mobile-vertical {
    flex-direction: column;
  }

  .illustrations-wrap-text.max-width-medium.margin-left.margin-medium {
    margin-left: 0;
  }

  .background-video {
    height: 100vw;
    margin-top: 0;
    margin-right: 0;
    top: auto;
    bottom: auto;
    left: auto;
  }

  .rapper-text-product.border-radius.box-shadow.margin-left.margin-small.padding-horizontal.padding-huge {
    padding-left: 20px;
    padding-right: 20px;
  }

  .row.display-flex-horizontal.text-span-gradient {
    flex-direction: row;
  }

  .line-top-meu, .lene-center, .line-bottom {
    height: 3px;
  }

  .style-guide-heading.text-span-gradient {
    font-size: 80px;
  }

  .licensing-container {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .image-licensing.first, .image-licensing.third, .image-licensing.fourth, .image-licensing.fifth {
    min-height: 300px;
  }

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

  .category-moved-image {
    flex: none;
  }

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

  .container-form {
    padding: 0 43px;
  }

  .link-block-social.border-radius.box-shadow {
    width: 100px;
    height: 100px;
  }

  .text-block-2 {
    font-size: 3.3rem;
  }

  .flex {
    align-items: flex-end;
  }

  .answer-image {
    height: 9.5rem;
  }

  .dollar {
    margin-bottom: 0;
    line-height: 60px;
  }

  .total-field.margin-top-16 {
    height: 60px;
    align-self: stretch;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 6px;
    line-height: 60px;
  }

  .question-answer {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: .75fr 1fr;
    grid-auto-columns: 1fr;
    align-items: center;
    display: flex;
  }

  .question-wrapper {
    display: none;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .faq-h3 {
    font-size: 18px;
  }

  .faq-paragraph {
    font-size: 15px;
    line-height: 135%;
  }
}

@media screen and (max-width: 479px) {
  .styleguide-3-col.border-radius.box-shadow {
    grid-column-gap: 0rem;
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr;
    padding-left: 20px;
    padding-right: 20px;
  }

  .styleguide-3-col.border-radius.box-shadow.second {
    grid-template-columns: 1fr 1fr;
    padding-left: 0;
    padding-right: 0;
  }

  .styleguide-color-sample.is-secondary.background-secondary-color.border-radius, .styleguide-color-sample.background-primary-color.border-radius, .styleguide-color-sample.background-tertiary-color.border-radius {
    height: 100px;
  }

  .overflow-hidden.display-flex-vertical {
    align-items: center;
  }

  .button.position-relative {
    height: 30px;
    padding-left: 18px;
    padding-right: 18px;
    font-size: 14px;
  }

  .button.position-relative.background-none.border-radius.hover {
    height: 30px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 14px;
  }

  .button.next.border-radius.hover {
    height: 30px;
    padding-left: 24px;
    padding-right: 24px;
    font-size: 14px;
  }

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

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

  .styleguide-section-type {
    font-size: 2.4rem;
  }

  .form.display-flex-horizontal.is-mobile-vertical {
    flex-direction: column;
    align-items: stretch;
  }

  .container-large {
    width: 90%;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .container-large.text-align-center {
    padding-top: 36px;
  }

  .container-large.text-align-center.display-flex-vertical.padding-vertical.padding-custom-third {
    padding-left: 0;
    padding-right: 0;
  }

  .container-large.text-align-center.display-flex-vertical.padding-horizontal.padding-xlarge {
    padding-top: 20px;
    padding-left: 0;
    padding-right: 0;
  }

  .styleguide-1-col.border-radius.box-shadow {
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-padding {
    padding-left: .125rem;
    padding-right: .125rem;
  }

  .utility-component {
    position: relative;
  }

  .button-secondary {
    width: 100%;
  }

  .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;
  }

  .display-flex-horizontal.center {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    text-align: left;
    flex-direction: row;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: center;
    display: grid;
  }

  .nav-menu.margin-left.margin-xlarge.display-flex-horizontal {
    width: 100%;
    flex: none;
    margin-left: 0;
  }

  .nav-menu.margin-left.margin-xlarge.display-flex-horizontal.border-radius.background-color-white {
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .social-wrap {
    justify-content: flex-start;
  }

  .social-wrap.left {
    margin-top: 15px;
  }

  .social-wrap.center {
    justify-content: center;
  }

  .footer.container-large.padding-horizontal.padding-xlarge {
    padding-left: 20px;
    padding-right: 20px;
  }

  .row.display-flex-horizontal {
    text-align: center;
    align-items: flex-start;
  }

  .row.display-flex-horizontal.is-tablet-vertical.second {
    margin-top: 0;
    padding-top: 40px;
  }

  .row.display-flex-horizontal.margin-vertical.margin-custom-first {
    flex-direction: row;
  }

  .column._50.is-tablet-full {
    align-items: center;
  }

  .column._50.is-tablet-full.text-align-left {
    align-items: flex-start;
    padding-right: 0;
  }

  .column._50.is-tablet-full.text-align-left.padding-horizontal.padding-large.center {
    align-items: center;
    margin-bottom: 0;
  }

  .column._50.padding-left.padding-xxlarge.heading-medium.text-align-left.margin-bottom {
    width: 100%;
  }

  .column._50.display-flex-horizontal {
    flex-direction: row;
  }

  .column.min-height.max-width-50.is-tablet-full {
    height: auto;
  }

  .main-text.heading-medium.primary-font.text-weight-xbold {
    font-size: 22px;
  }

  .main-text.text-size-regular.primary-font.margin-bottom.margin-small {
    margin-bottom: .25rem;
  }

  .main-text.text-size-regular.text-color-white.primary-font {
    font-size: 14px;
  }

  .main-text.text-size-regular.margin-auto {
    font-size: 18px;
  }

  .main-text.text-size-large.primary-font.text-weight-semibold {
    font-size: 14px;
  }

  .main-text.avatar.text-weight-bold.primary-font.second, .main-text.avatar.second {
    font-size: 12px;
  }

  .main-text.text-weight-bold.pagination, .main-paragraph.primary-font.text-size-medium.margin-bottom, .main-paragraph.primary-font.text-size-medium.margin-bottom.margin-medium {
    font-size: 14px;
  }

  .main-paragraph.primary-font.text-size-medium.margin-bottom.margin-medium.text-weight-light {
    text-align: left;
    margin-bottom: 0;
    font-size: 14px;
  }

  .main-paragraph.primary-font.text-size-medium.margin-bottom.margin-medium.text-weight-light.center {
    margin-bottom: 24px;
    font-size: 16px;
  }

  .main-paragraph.primary-font.text-size-medium.margin-bottom.margin-medium.center {
    text-align: center;
    font-size: 14px;
  }

  .text-field.primary-font.text-weight-semibold {
    width: auto;
    text-align: center;
    margin-bottom: 10px;
  }

  .hero-section.padding-vertical.padding-custom1.display-flex-horizontal.is-mobile-vertical {
    padding-top: 44px;
  }

  .main-heading.heading-xlarge.primary-font.margin-bottom.margin-xsmall.width-50, .main-heading.heading-xlarge.primary-font.margin-bottom.margin-small {
    font-size: 36px;
  }

  .main-heading.heading-xlarge.primary-font.margin-bottom.margin-small.text-span-gradient.instruction {
    font-size: 2.8rem;
  }

  .main-heading.heading-xlarge.primary-font.margin-bottom.margin-small.text-weight-xbold {
    text-align: center;
    margin-top: 0;
    font-size: 36px;
  }

  .main-heading.heading-xlarge.text-align-center.primary-font.margin-top.margin-large {
    font-size: 30px;
  }

  .main-heading.heading-medium.primary-font.margin-bottom.margin-small.text-weight-xbold, .main-heading.heading-medium.primary-font.margin-bottom.margin-xsmall {
    font-size: 18px;
  }

  .main-heading.heading-medium.primary-font.text-weight-xbold.text-style-allcaps.text-span-gradient.margin-bottom.margin-xsmall {
    font-size: 36px;
  }

  .main-heading.heading-large.primary-font.text-weight-xbold.margin-bottom.margin-medium.center {
    text-align: center;
    font-size: 36px;
  }

  .main-heading.text-span-gradient.about.text-align-left {
    font-size: 34px;
  }

  .horizontal-move.display-flex-horizzontal {
    margin-bottom: 0;
  }

  .horizontal-move.second {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .horizontal-move.image.second {
    height: 122px;
    margin-bottom: 0;
  }

  .about-section.padding-vertical.padding-huge.text-align-center {
    padding-top: 30px;
    padding-left: 0;
    padding-right: 0;
  }

  .menu-button {
    margin-left: auto;
    padding-right: 0;
  }

  .text-button.text-weight-xbold {
    margin-top: auto;
    margin-bottom: auto;
    font-size: 14px;
  }

  .tab-image.border-radius, .tab-image.border-radius.first {
    height: 300px;
  }

  .banner.padding-vertical.padding-xxlarge.background-secondary-color {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-category.display-flex-vertical.padding-vertical.padding-large.overflow-hidden {
    padding-bottom: 10.3rem;
    padding-left: 20px;
    padding-right: 20px;
  }

  .collection-list-wrapper-button {
    align-self: stretch;
    align-items: stretch;
  }

  .collection-list-button {
    grid-template-columns: auto;
  }

  .collection-item-button {
    margin-bottom: 8px;
    margin-right: 8px;
    display: inline-block;
  }

  .image-hero.absolute.border-radius {
    width: 178px;
    bottom: -88px;
  }

  .image-hero.border-radius {
    width: 140px;
    margin-left: 29px;
  }

  .social-icon {
    width: 100%;
  }

  .work-wrap-text.border-radius.box-shadow.horizontal-padding.padding-xlarge.display-flex-vertical {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .work-wrap-text.border-radius.box-shadow.horizontal-padding.padding-xlarge.display-flex-vertical.contact {
    margin-bottom: 10px;
  }

  .work-wrap-text.border-radius.box-shadow.horizontal-padding.padding-xlarge.display-flex-vertical.contact.position-relative.overflow-hidden {
    min-height: 500px;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .order-wrap.border-radius.background-primary-color, .order-wrap.border-radius.background-tertiary-color {
    height: 30px;
  }

  .illustrations-wrap-text.max-width-medium.margin-right.margin-huge {
    margin-bottom: 0;
  }

  .illustrations-wrap-text.max-width-medium.margin-left.margin-medium {
    margin-bottom: 2.3rem;
  }

  .paragraph.margin-top.margin-xxsmall.max-width-full {
    font-size: 14px;
  }

  .button-tab.margin-horizontal.margin-medium.hover {
    margin: 0 10px 0 0;
    padding-left: 21px;
    padding-right: 21px;
    display: inline-block;
  }

  .button-tab.hover {
    height: 30px;
    margin-bottom: 10px;
    margin-right: 10px;
    padding: .4rem 22px;
    display: inline-block;
  }

  .background-video {
    width: 100vh;
    height: 100vw;
    margin-top: -38px;
    top: auto;
    left: auto;
    right: auto;
    transform: translate(0)rotate(90deg);
  }

  ._404-text {
    font-size: 114px;
  }

  ._404-heading {
    text-align: center;
    font-size: 30px;
  }

  .wrap-hover-button.border-radius.overflow-hidden.box-shadow.background-primary-color.margin-bottom.margin-xlarge {
    margin-top: 2rem;
  }

  .wrap-hover-button.border-radius.overflow-hidden.background-primary-color.margin-left.margin-xsmall {
    margin-left: 0;
  }

  .hero-product-page.padding-vertical.padding-xhuge {
    padding-left: 20px;
    padding-right: 20px;
  }

  .image-product-wrapper.overflow-hidden.border-radius.is-tablet-large {
    margin-bottom: 20px;
  }

  .line-top-meu, .lene-center, .line-bottom {
    height: 3px;
    border-radius: 2px;
  }

  .signature-image {
    height: 71px;
    margin-left: auto;
    position: static;
  }

  .style-guide-heading.text-span-gradient {
    font-size: 40px;
  }

  .licensing-container {
    width: 100%;
    padding: 20px;
  }

  .licensing-paragraph, .source-link {
    font-size: 16px;
  }

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

  .licensing-head {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 18px;
  }

  .license-link {
    font-size: 16px;
  }

  .category-moved-image {
    width: 1397px;
    height: 122px;
    object-fit: cover;
    object-position: 50% 100%;
  }

  .avatar-wrap.display-flex-horizontal.border-radius.position-absolute.box-shadow {
    left: -21px;
    right: auto;
  }

  .avatar-wrap.display-flex-horizontal.border-radius.position-absolute.box-shadow.second {
    height: 42px;
    bottom: -63px;
    left: 0;
  }

  .avatar-image.second {
    width: 30px;
    height: 30px;
  }

  .changelog-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .changelog-container {
    padding: 25px;
  }

  .changelog-text {
    font-size: 19px;
  }

  .instruction-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .text-block {
    font-size: 14px;
  }

  .quote {
    margin-left: -1px;
  }

  .container-form {
    min-height: 500px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .link-block-social.border-radius.box-shadow {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    margin-right: 10px;
    padding: 14px;
  }

  .close.position-absolute.hover {
    top: 3%;
  }

  .heading.l.margin-bottom {
    font-size: 40px;
  }

  .answer-image {
    height: 8rem;
  }

  .text-field-2 {
    max-width: 5rem;
  }

  .total-field.margin-top-16 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .total-field.margin-top-16.margin-mobile-0 {
    margin-top: 0;
  }

  .form-2 {
    border-style: none;
    grid-template-columns: 1fr 1fr;
  }

  .question-wrapper {
    display: block;
  }

  .expandable-single {
    padding: 16px;
  }

  .faq-h3 {
    margin-bottom: 0;
  }
}

#w-node-_9d613b56-51df-1fef-7a73-6316157b1d25-e5ca4c1c {
  justify-self: stretch;
}

#w-node-f0ac1d4f-378e-a4ef-0d11-598c81f75a84-81f75a5d {
  justify-self: end;
}

#w-node-f0ac1d4f-378e-a4ef-0d11-598c81f75a93-81f75a5d {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-_27c948af-bb35-ba6d-670b-85c2b632c2fc-e5ca4c21 {
  justify-self: stretch;
}

#w-node-_0666c8b0-fe86-8ff6-f29d-79746036b7ff-e5ca4c25 {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#videotype.w-node-e76487db-ed74-459f-44a6-83cccc2e9b6e-e5ca4c25 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8f59efd4-8969-4008-deeb-fbf78fd2ed49-e5ca4c25 {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-_0666c8b0-fe86-8ff6-f29d-79746036b809-e5ca4c25, #w-node-_0666c8b0-fe86-8ff6-f29d-79746036b815-e5ca4c25, #w-node-_0666c8b0-fe86-8ff6-f29d-79746036b821-e5ca4c25, #w-node-_0666c8b0-fe86-8ff6-f29d-79746036b82a-e5ca4c25, #w-node-_0666c8b0-fe86-8ff6-f29d-79746036b84f-e5ca4c25, #w-node-_0666c8b0-fe86-8ff6-f29d-79746036b856-e5ca4c25, #w-node-_0666c8b0-fe86-8ff6-f29d-79746036b85d-e5ca4c25 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_9d613b56-51df-1fef-7a73-6316157b1d25-e5ca4c25 {
  justify-self: stretch;
}

#w-node-_56ccab43-e6fd-e980-4713-80cc1f74f0d2-e5ca4c26, #w-node-c20a84c6-79e3-2df2-52f3-759cc97e6a13-e5ca4c26, #w-node-_67c5afb2-cb2d-3e6d-7efd-c9a918678ccc-e5ca4c26, #w-node-e6fc2f3d-261c-72ea-45f0-abc766e3231d-e5ca4c26, #w-node-b86da347-d5ed-dc40-b4b6-d717371a431d-e5ca4c26, #w-node-_839e54db-9020-f0b3-9279-9a6894ca77c2-e5ca4c26 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c57e53e8-7c3d-9e51-e4b8-129a2aca838f-e5ca4c2b, #w-node-d4560edd-1788-bd44-a8a4-0e07f70ee77f-e5ca4c2b {
  align-self: start;
}

#w-node-d801492f-ebfc-0468-3163-dd842ce5ad72-e5ca4c2b, #w-node-ceb91ed9-9842-7c85-8406-c5b0a624d1f3-e5ca4c2b, #w-node-f7a7abc0-d1d8-bc00-8603-48875cb6403a-e5ca4c2b, #w-node-_6a727c99-b81b-ce34-bb2b-5686c0d19c55-e5ca4c2b {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-c57e53e8-7c3d-9e51-e4b8-129a2aca83ac-e5ca4c2b {
  align-self: start;
}

@media screen and (max-width: 991px) {
  #w-node-f0ac1d4f-378e-a4ef-0d11-598c81f75a84-81f75a5d {
    grid-area: span 1 / span 3 / span 1 / span 3;
    justify-self: end;
  }

  #w-node-f0ac1d4f-378e-a4ef-0d11-598c81f75a93-81f75a5d {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }
}

@media screen and (max-width: 767px) {
  #w-node-f0ac1d4f-378e-a4ef-0d11-598c81f75a60-81f75a5d {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-f0ac1d4f-378e-a4ef-0d11-598c81f75a84-81f75a5d {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: end;
  }

  #w-node-f0ac1d4f-378e-a4ef-0d11-598c81f75a93-81f75a5d {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_0666c8b0-fe86-8ff6-f29d-79746036b7f8-e5ca4c25 {
    align-self: center;
    justify-self: center;
  }
}

@media screen and (max-width: 479px) {
  #w-node-fd3b70b7-e3d1-cf6a-a21d-08167b5faeb1-e5ca4c23 {
    justify-self: stretch;
  }

  #w-node-_0666c8b0-fe86-8ff6-f29d-79746036b7ff-e5ca4c25, #w-node-_8f59efd4-8969-4008-deeb-fbf78fd2ed49-e5ca4c25 {
    grid-column: span 2 / span 2;
  }

  #w-node-_63974fcf-d3e7-5e68-4f70-8c36b139a7c6-e5ca4c29 {
    justify-self: stretch;
  }
}


