@font-face {
  font-family: Gilroy;
  src: url('../fonts/Gilroy-RegularItalic.ttf') format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Gilroy;
  src: url('../fonts/Gilroy-MediumItalic.ttf') format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

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

@font-face {
  font-family: Gilroy;
  src: url('../fonts/Gilroy-Medium.ttf') format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Gilroy;
  src: url('../fonts/Gilroy-SemiboldItalic.ttf') format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

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

@font-face {
  font-family: Lack UA;
  src: url('../fonts/LackUA-Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Lack UA;
  src: url('../fonts/LackUA-Italic.otf') format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  --bg-black: #0c0c0c;
  --text-black-primary: #000;
  --lack-ua: "Lack UA", Impact, sans-serif;
  --gilroy: Gilroy, Arial, sans-serif;
  --bubble-blue: #0b70fe;
  --bg-yellow: #fcff54;
  --bg-white: white;
  --text-black-secondary: #000c;
  --bg-blue: #46d4ff;
  --bg-green: #5cff7c;
  --bubble-pink: #b623cd;
  --bubble-purple: #7223cd;
  --text-white-primary: white;
  --text-white-secondary: #fffc;
  --bg-white-10: #ffffff1a;
  --bg-red: #ff0026;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.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-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 {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

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

.w-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

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

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  background-color: var(--bg-black);
  color: var(--text-black-primary);
  font-family: Gilroy, Arial, sans-serif;
  font-size: 1.25rem;
}

h1 {
  font-family: var(--lack-ua);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

h2 {
  font-family: var(--lack-ua);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
}

h3 {
  font-family: var(--lack-ua);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

h4 {
  font-family: var(--lack-ua);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

h5 {
  font-family: var(--lack-ua);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

h6 {
  font-family: var(--lack-ua);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

p {
  font-family: var(--gilroy);
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 140%;
}

a {
  text-decoration: underline;
}

ul, ol {
  font-family: var(--gilroy);
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
  font-size: 1.25rem;
  line-height: 140%;
}

li {
  margin-bottom: 1rem;
}

blockquote {
  font-family: var(--gilroy);
  border-left: 5px solid #e2e2e2;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 140%;
}

.form-input {
  color: #0a0d14;
  background-color: #0000;
  border: 1px solid #e2e4e9;
  border-radius: 12px;
  min-height: 3rem;
  margin-bottom: 0;
  padding: .875rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.43;
}

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

.form-input::placeholder {
  color: #868c98;
}

.form-input.is-text-area {
  min-height: 8rem;
  padding-top: .75rem;
  font-size: 1rem;
}

.form-input.is-select-input {
  color: #222;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  min-height: 7rem;
}

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

.heading-style-h1 {
  color: #0a0d14;
  margin-bottom: 0;
  font-size: 5rem;
  font-weight: 500;
  line-height: 1.2;
}

.margin-small {
  margin: 1rem;
}

.spacer-large {
  width: 100%;
  padding-top: 3rem;
}

.padding-large {
  padding: 3rem;
}

.hide {
  display: none;
}

.button {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-color: var(--bubble-blue);
  font-family: var(--gilroy);
  color: #fff;
  text-align: center;
  border-radius: 80px;
  justify-content: center;
  align-self: center;
  align-items: center;
  padding: .75rem 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  display: inline-flex;
}

.button.is-text {
  color: #0d61f8;
  background-color: #0000;
  border: 2px #0000;
  border-radius: 0;
  padding: 0;
  font-size: 1.125rem;
}

.button.is-large {
  padding: 1rem 2rem;
}

.button.is-icon {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.button.is-secondary {
  background-color: var(--bg-yellow);
  color: var(--bg-black);
}

.button.is-small {
  padding: .5rem 1rem;
}

.fs-styleguide-label {
  color: #fff;
  background-color: #0d61f8;
  border-radius: .25rem;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: .25rem .75rem .3rem;
  font-size: 1rem;
  font-weight: 400;
  display: flex;
}

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

.padding-top {
  padding: 70px 0 0;
}

.spacer-small {
  width: 100%;
  padding-top: 1rem;
}

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

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

.padding-section-large {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

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

.spacer-medium {
  width: 100%;
  padding-top: 2rem;
}

.spacer-tiny {
  width: 100%;
  padding-top: .125rem;
}

.aspect-ratio-square {
  aspect-ratio: 1;
  object-fit: cover;
}

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

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

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

.button-arrow-wrapper {
  width: 1.25rem;
  min-width: 1.25rem;
  height: 1.25rem;
  min-height: 1.25rem;
  position: relative;
  overflow: hidden;
}

.spacer-xsmall {
  width: 100%;
  padding-top: .5rem;
}

.margin-custom2 {
  margin: 2.5rem;
}

.margin-xxhuge {
  margin: 12rem;
}

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

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

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

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

.overflow-scroll {
  overflow: scroll;
}

.margin-medium {
  margin: 2rem;
}

.icon-height-medium {
  height: 2rem;
}

.icon-height-medium.rotate-90 {
  transform: none;
}

.text-size-regular {
  font-size: 1rem;
  line-height: 140%;
}

.padding-huge {
  padding: 6rem;
}

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

.fs-styleguide-3-col {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  width: 100%;
  display: grid;
}

.fs-styleguide-3-col.is-align-start {
  align-items: start;
}

.padding-section-medium {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

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

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

.aspect-ratio-widescreen {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.padding-xxhuge {
  padding: 12rem;
}

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

.overflow-visible {
  overflow: visible;
}

.padding-medium {
  padding: 2rem;
}

.margin-xxlarge {
  margin: 5rem;
}

.icon-height-large {
  height: 3rem;
}

.spacer-xhuge {
  width: 100%;
  padding-top: 8rem;
}

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

.form-message-success {
  color: #114e0b;
  background-color: #cef5ca;
  border-radius: 8px;
  padding: 1rem;
  font-size: 1rem;
}

.spacer-xxhuge {
  width: 100%;
  padding-top: 12rem;
}

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

.layer {
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0%;
}

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

.form-checkbox-icon {
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
}

.form-checkbox-icon.w--redirected-checked {
  background-size: 90%;
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
}

.form-checkbox-icon.w--redirected-focus {
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
  box-shadow: 0 0 .25rem 0 #3898ec;
}

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

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

.overflow-hidden {
  overflow: hidden;
}

.fs-styleguide-item-header {
  border-bottom: 1px solid #0000001a;
  width: 100%;
  padding-bottom: 2rem;
}

.icon-height-small {
  height: 1rem;
}

.fs-styleguide-item-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

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

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

.pointer-events-auto {
  pointer-events: auto;
}

.text-color-black-tertiary {
  color: #0009;
}

.form-radio-icon {
  width: .875rem;
  height: .875rem;
  margin-top: 0;
  margin-left: 0;
  margin-right: .5rem;
}

.form-radio-icon.w--redirected-checked {
  border-width: .25rem;
  width: .875rem;
  height: .875rem;
}

.form-radio-icon.w--redirected-focus {
  width: .875rem;
  height: .875rem;
  box-shadow: 0 0 .25rem 0 #3898ec;
}

.spacer-xlarge {
  width: 100%;
  padding-top: 4rem;
}

.padding-xlarge {
  padding: 4rem;
}

.fs-styleguide-item {
  grid-column-gap: 1.125rem;
  grid-row-gap: 1.125rem;
  border-bottom: 1px solid #0000001a;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start;
  padding-bottom: 3rem;
  display: grid;
  position: relative;
}

.fs-styleguide-item.is-stretch {
  justify-items: stretch;
}

.padding-custom1 {
  padding: 1.5rem;
}

.padding-xxlarge {
  padding: 5rem;
}

.aspect-ratio-landscape {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.heading-style-h3 {
  color: #0a0d14;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Lack UA, Impact, sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
}

.heading-style-h4 {
  font-family: var(--lack-ua);
  color: #0a0d14;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
}

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

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

.padding-custom3 {
  padding: 3.5rem;
}

.fs-styleguide-header-block {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: center start;
  display: grid;
}

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

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

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

.fs-styleguide-message {
  color: #5e5515;
  background-color: #fcf8d8;
  border-radius: .25rem;
  padding: .25rem .5rem;
  font-size: .875rem;
}

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

.padding-xhuge {
  padding: 8rem;
}

.fs-styleguide-section {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: start;
  display: grid;
}

.fs-styleguide-section.is-vertical {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-columns: 1fr;
}

.padding-section-small {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.button-group {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.icon-1x1-small {
  object-fit: contain;
  flex: none;
  width: 1.5rem;
  min-width: 1.5rem;
  height: 1.5rem;
  min-height: 1.5rem;
}

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

.icon-1x1-large {
  object-fit: contain;
  width: 2.5rem;
  min-width: 2.5rem;
  height: 2.5rem;
  min-height: 2.5rem;
}

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

.margin-huge {
  margin: 6rem;
}

.background-color-yellow {
  background-color: var(--bg-yellow);
}

.fs-styleguide-spacing-all {
  display: none;
}

.fs-styleguide-row {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.heading-style-h2 {
  color: #0a0d14;
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.3;
}

.fs-styleguide-2-col {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.fs-styleguide-2-col.is-align-start {
  align-items: start;
}

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

.margin-custom3 {
  margin: 3.5rem;
}

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

.spacer-xxsmall {
  width: 100%;
  padding-top: .25rem;
}

.fs-styleguide-background {
  border: 1px solid #0000001a;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.fs-styleguide-1-col {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

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

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

.text-rich-text {
  color: #525866;
}

.fs-styleguide-header {
  color: #0a0d14;
  background-color: #0d61f80d;
}

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

.icon-1x1-medium {
  object-fit: contain;
  width: 2rem;
  min-width: 2rem;
  height: 2rem;
  min-height: 2rem;
}

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

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

.fs-styleguide-section-header {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-bottom: 3rem;
  line-height: 1.4;
  display: grid;
}

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

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

.form-label {
  color: #0a0d14;
  margin-bottom: .5rem;
  font-size: .875rem;
  font-weight: 500;
}

.fs-styleguide-heading-header {
  font-size: 6rem;
}

.form-checkbox {
  flex-direction: row;
  align-items: center;
  margin-bottom: .5rem;
  padding-left: 0;
  display: flex;
}

.padding-custom2 {
  padding: 2.5rem;
}

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

.spacer-xxlarge {
  width: 100%;
  padding-top: 5rem;
}

.margin-custom1 {
  margin: 1.5rem;
}

.spacer-huge {
  width: 100%;
  padding-top: 6rem;
}

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

.fs-styleguide-spacer-box {
  background-color: #0d61f80d;
  border: 1px dashed #2d40ea;
  border-left-color: #0d61f8;
  width: 100%;
  position: relative;
}

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

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

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

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

.global-styles {
  display: block;
  position: fixed;
  inset: 0% auto auto 0%;
}

.fs-styleguide-4-col {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.margin-large {
  margin: 3rem;
}

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

.button-arrow {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 100%;
  height: 100%;
  min-height: 100%;
  display: flex;
}

.button-arrow.left {
  position: absolute;
  inset: 0% 0% 0% -100%;
}

.aspect-ratio-portrait {
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.text-style-link {
  color: #0d61f8;
  text-decoration: underline;
}

.pointer-events-none {
  pointer-events: none;
}

.overflow-auto {
  overflow: auto;
}

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

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

.fs-styleguide-heading-medium {
  font-size: 4rem;
}

.fs-styleguide-background-space {
  width: 1px;
  height: 1px;
  margin: 5rem;
}

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

.background-color-blue {
  background-color: var(--bg-blue);
}

.form-radio {
  flex-direction: row;
  align-items: center;
  margin-bottom: .5rem;
  padding-left: 0;
  display: flex;
}

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

.form-message-error {
  color: #3b0b0b;
  background-color: #f8e4e4;
  border-radius: 8px;
  margin-top: .75rem;
  padding: .75rem;
  font-size: 1rem;
}

.text-size-medium {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 130%;
}

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

.fs-styleguide-spacing {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-image: linear-gradient(0deg, #0d61f81a, #fff0);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start stretch;
  display: grid;
  position: relative;
}

.fs-styleguide-empty-box {
  z-index: -1;
  background-color: #0d61f80d;
  border: 1px dashed #0d61f8;
  min-width: 3rem;
  height: 3rem;
  position: relative;
}

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

.fs-styleguide-classes {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.heading-style-h6 {
  color: #0a0d14;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.fs-styleguide-hero-label {
  color: #fff;
  text-transform: uppercase;
  background-color: #0d61f8;
  border-radius: .25rem;
  padding: .25rem .375rem;
  font-size: .75rem;
  font-weight: 500;
  text-decoration: none;
}

.padding-vertical {
  padding-left: 4rem;
  padding-right: 4rem;
}

.margin-xhuge {
  margin: 8rem;
}

.padding-small {
  padding: 1rem;
}

.text-size-large {
  font-size: 1.4rem;
  font-weight: 500;
}

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

.padding-0 {
  padding: 0;
}

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

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

.heading-style-h5 {
  font-family: var(--lack-ua);
  color: #0a0d14;
  font-size: 1.3rem;
  line-height: 1.5;
}

.margin-xlarge {
  margin: 4rem;
}

.margin-0 {
  margin: 0;
}

.background-color-green {
  background-color: var(--bg-green);
}

.bubble-color-blue {
  background-color: var(--bubble-blue);
}

.bubble-color-pink {
  background-color: var(--bubble-pink);
}

.bubble-color-purple {
  background-color: var(--bubble-purple);
}

.paragraph {
  font-size: 1.2rem;
  font-weight: 500;
}

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

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

.text-color-white-tertiary {
  color: #fff9;
}

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

.section.hero {
  height: 100vh;
  min-height: 700px;
  display: block;
  overflow: clip;
}

.section.section-top {
  margin-top: -3rem;
}

.w100 {
  width: 100%;
}

.h100 {
  height: 100%;
}

.grid-2col {
  grid-template-rows: auto;
}

.grid-3col {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-3col.align-y-center {
  place-items: center;
}

.grid-4col {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.logo {
  max-width: 300px;
}

.hero-lego {
  z-index: 0;
  object-fit: contain;
  width: 65%;
  max-width: 65%;
  max-height: none;
  position: absolute;
  inset: auto -10% 0% auto;
}

.position-relative {
  position: relative;
}

.hero-lego-left {
  z-index: 0;
  object-fit: contain;
  width: 20%;
  max-width: 20%;
  max-height: none;
  position: absolute;
  inset: auto auto 0 -5%;
}

.line-text {
  font-family: var(--gilroy);
  text-transform: uppercase;
  flex: none;
  font-size: 2rem;
  font-weight: 400;
  line-height: 130%;
}

.gap-0-5rem {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
}

.gap-0-5rem.align-y-center {
  align-items: center;
}

.body-grid {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  align-items: start;
}

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

.bubble {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  align-items: stretch;
}

.bubble.horizontal {
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}

.bubble-tick {
  width: 70px;
  height: 70px;
}

.bubble-lego {
  z-index: 0;
  max-height: 170px;
  position: absolute;
  inset: auto -25px -80px auto;
}

.gap-1-5rem {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
}

.icon {
  object-fit: contain;
  width: 34px;
  height: 34px;
}

.gap-1rem {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
}

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

.lego-card {
  width: 300px;
  max-width: 300px;
  position: absolute;
  bottom: -130px;
  right: 20px;
}

.card {
  height: 400px;
}

.card._1 {
  transform: rotate(-4deg);
}

.card._2 {
  transform: rotate(4deg);
}

.card._3 {
  transform: rotate(-4deg);
}

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

.gap-2rem {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}

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

.image-section {
  z-index: 0;
  width: 100%;
  margin-top: -3rem;
  position: relative;
}

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

.large-quote-grid {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
}

.space-between {
  justify-content: space-between;
}

.space-between.align-y-center {
  justify-content: space-between;
  align-items: center;
}

.div-block {
  z-index: 999;
  position: sticky;
}

.navbar-div {
  z-index: 999;
  justify-content: center;
  align-items: center;
  padding: 2rem 2.5rem;
  display: flex;
  position: sticky;
  top: 0;
}

.navbar-container {
  background-color: var(--bg-white);
  border-radius: 100px;
  padding: .5rem;
  display: flex;
}

.nav-button {
  background-color: var(--bg-white);
  color: var(--text-black-primary);
  border-radius: 100px;
  padding: 1rem 1.5rem;
  font-size: 1.2rem;
  font-weight: 500;
  transition: all .3s;
}

.nav-button:hover, .nav-button.w--current {
  background-color: var(--bubble-blue);
  color: var(--text-white-primary);
}

.image-scheme.gap-2rem.align-center {
  justify-content: flex-start;
  align-items: center;
}

.image-scheme.gap-2-5rem {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
}

.image-scheme.gap-2-5rem.align-center, .image-scheme.gap-3rem.align-center, .image-scheme.gap-4rem.align-center, .image-scheme.align-center {
  justify-content: flex-start;
  align-items: center;
}

.image-card {
  border-radius: 20px;
  justify-content: flex-start;
  align-self: stretch;
  align-items: center;
  width: 100%;
  padding: 1.25rem;
  overflow: clip;
}

.image-card.background-color-white-10.border-12px {
  border-radius: 12px;
}

.image-card.background-color-white-10.border-12px.w100.align-center {
  justify-content: flex-start;
  align-items: center;
}

.image-card.background-color-white-10.border-12px.w100.align-center.align-y-center {
  justify-content: center;
  align-items: center;
}

.image-card.card-horizontal {
  flex-flow: row;
}

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

.icon-1x1-huge {
  object-fit: contain;
  width: 6rem;
  height: 6rem;
}

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

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

.flex-mobile {
  flex-flow: row;
}

.rotate-90 {
  transform: rotate(90deg);
}

.align-top {
  justify-content: flex-start;
  align-items: flex-start;
}

.background-color-red {
  background-color: var(--bg-red);
}

.card-image {
  z-index: 0;
  object-fit: contain;
  position: absolute;
  top: 0;
}

.card-image._30-position {
  z-index: 0;
  top: -30%;
}

.text-link {
  color: var(--bg-green);
}

@media screen and (min-width: 1920px) {
  .heading-style-h1 {
    font-size: 8rem;
  }

  .max-width-medium {
    max-width: 55rem;
  }

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

  .max-width-large {
    max-width: 70rem;
  }

  .max-width-small {
    max-width: 35rem;
  }

  .heading-style-h3 {
    font-size: 2.8rem;
  }

  .heading-style-h2 {
    font-size: 4rem;
  }

  .container-large, .container-large.h100 {
    max-width: 100rem;
  }

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

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

  .heading-style-h5 {
    font-size: 2rem;
  }

  .hero-lego {
    max-width: 60vw;
  }

  .hero-lego-left {
    max-width: 18vw;
  }

  .nav-button {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 991px) {
  .spacer-large {
    padding-top: 2.5rem;
  }

  .padding-large {
    padding: 2.5rem;
  }

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

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

  .padding-section-large {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

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

  .spacer-medium {
    padding-top: 1.5rem;
  }

  .margin-xxhuge {
    margin: 8rem;
  }

  .hide-tablet {
    display: none;
  }

  .margin-medium {
    margin: 1.5rem;
  }

  .padding-huge {
    padding: 5rem;
  }

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

  .padding-section-medium {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .padding-xxhuge {
    padding: 8rem;
  }

  .padding-medium {
    padding: 2rem;
  }

  .margin-xxlarge {
    margin: 4rem;
  }

  .spacer-xhuge {
    padding-top: 6rem;
  }

  .spacer-xxhuge {
    padding-top: 8rem;
  }

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

  .spacer-xlarge {
    padding-top: 3rem;
  }

  .padding-xlarge {
    padding: 3rem;
  }

  .padding-xxlarge {
    padding: 4rem;
  }

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

  .padding-xhuge {
    padding: 6rem;
  }

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

  .margin-huge {
    margin: 5rem;
  }

  .fs-styleguide-2-col {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .fs-styleguide-1-col {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

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

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

  .fs-styleguide-heading-header {
    font-size: 4rem;
  }

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

  .spacer-xxlarge {
    padding-top: 4rem;
  }

  .spacer-huge {
    padding-top: 5rem;
  }

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

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

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

  .margin-large {
    margin: 2.5rem;
  }

  .fs-styleguide-heading-medium {
    font-size: 3rem;
  }

  .margin-xhuge {
    margin: 6rem;
  }

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

  .margin-xlarge {
    margin: 3rem;
  }

  .section.section-top {
    margin-top: -1rem;
  }

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

  .hero-lego-left {
    left: -20px;
  }

  .body-grid {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
  }

  .border-40px {
    border-radius: 20px;
  }

  .card._3 {
    height: 260px;
  }

  .image-section {
    margin-top: -1rem;
  }

  .large-quote-grid {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .navbar-container {
    padding: .3rem;
  }

  .nav-button {
    flex: none;
    padding: .75rem 1rem;
    font-size: 1rem;
  }

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

@media screen and (max-width: 767px) {
  .heading-style-h1 {
    font-size: 4rem;
  }

  .spacer-large {
    padding-top: 1.5rem;
  }

  .padding-large {
    padding: 1.5rem;
  }

  .button.is-text {
    font-size: 1rem;
  }

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

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

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

  .padding-section-large {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

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

  .spacer-medium {
    padding-top: 1.25rem;
  }

  .margin-xxhuge {
    margin: 4.5rem;
  }

  .margin-medium {
    margin: 1.25rem;
  }

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

  .icon-height-medium {
    height: 1rem;
    transform: rotate(0);
  }

  .icon-height-medium.rotate-90 {
    transform: rotate(90deg);
  }

  .padding-huge {
    padding: 3.5rem;
  }

  .padding-section-medium {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .padding-xxhuge {
    padding: 4.5rem;
  }

  .padding-medium {
    padding: 2rem;
  }

  .margin-xxlarge {
    margin: 3rem;
  }

  .spacer-xhuge {
    padding-top: 4rem;
  }

  .spacer-xxhuge {
    padding-top: 4.5rem;
  }

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

  .spacer-xlarge {
    padding-top: 2rem;
  }

  .padding-xlarge {
    padding: 2rem;
  }

  .padding-xxlarge {
    padding: 3rem;
  }

  .heading-style-h3 {
    font-size: 1.5rem;
  }

  .heading-style-h4 {
    font-size: 1.25rem;
  }

  .padding-xhuge {
    padding: 4rem;
  }

  .padding-section-small {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .button-group {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
  }

  .margin-huge {
    margin: 3.5rem;
  }

  .heading-style-h2 {
    font-size: 2rem;
  }

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

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

  .fs-styleguide-section-header {
    font-size: .875rem;
  }

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

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

  .spacer-xxlarge {
    padding-top: 3rem;
  }

  .spacer-huge {
    padding-top: 3.5rem;
  }

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

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

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

  .margin-large {
    margin: 1.5rem;
  }

  .fs-styleguide-heading-medium {
    font-size: 2rem;
  }

  .heading-style-h6 {
    font-size: .875rem;
  }

  .margin-xhuge {
    margin: 4rem;
  }

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

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

  .margin-xlarge {
    margin: 2rem;
  }

  .section.hero.position-relative {
    height: auto;
  }

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

  .grid-3col {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    grid-template-columns: 1fr;
    display: flex;
  }

  .grid-3col.w100.gap-0-5rem {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
  }

  .grid-4col.w100.gap-0-5rem {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .gap-0-5rem.align-y-center.w100.flex-mobile {
    flex-flow: column;
  }

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

  .bubble-tick {
    height: 40px;
  }

  .bubble-tick.horizontal {
    width: 40px;
  }

  .lego-card {
    max-width: 260px;
  }

  .card {
    height: 260px;
  }

  .large-quote-grid {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  .navbar-div {
    padding: 1rem 0;
  }

  .navbar-container {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    background-color: #fff0;
    border-radius: 0;
    padding: 0 1.25rem;
    overflow: scroll;
  }

  .image-card.card-horizontal {
    text-align: center;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

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

@media screen and (max-width: 479px) {
  .heading-style-h1 {
    font-size: 3rem;
  }

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

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

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

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

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

  .overflow-hidden.padding-small {
    padding: .8rem;
  }

  .heading-style-h3 {
    font-size: 1.6rem;
  }

  .heading-style-h4 {
    font-size: 1.3rem;
  }

  .fs-styleguide-row {
    flex-wrap: wrap;
  }

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

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

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

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

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

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

  .padding-vertical {
    padding-left: 3rem;
    padding-right: 3rem;
  }

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

  .section.hero.position-relative {
    height: 100vh;
  }

  .grid-2col, .grid-2col.w100.gap-0-5rem {
    grid-template-columns: 1fr;
  }

  .grid-3col, .grid-4col {
    flex-flow: column;
    display: flex;
  }

  .logo {
    max-width: 280px;
  }

  .hero-lego {
    width: 100%;
    max-width: 100%;
    right: -30%;
  }

  .hero-lego-left {
    width: 40%;
    max-width: 40%;
    bottom: 15%;
    left: -15%;
  }

  .line-text {
    font-size: 1.5rem;
  }

  .body-grid {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  .bubble.horizontal {
    max-width: 100%;
  }

  .bubble-tick {
    height: 30px;
  }

  .bubble-tick.horizontal {
    width: 30px;
    max-width: 30px;
  }

  .bubble-lego {
    max-width: none;
    height: 140px;
    max-height: 170px;
    bottom: -80px;
    right: -40px;
  }

  .lego-card {
    max-width: none;
    height: 160px;
    max-height: 160px;
    bottom: -50px;
    right: 0;
  }

  .card {
    height: 260px;
  }

  .space-between.align-y-center {
    flex-flow: column;
  }

  .image-card {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .image-card.card-horizontal {
    flex-flow: column;
  }

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

  .quote-mark {
    width: 5rem;
    height: auto;
  }
}

#w-node-d40e023c-cf88-08a1-d30f-3f36fe43c17a-3faddafa, #w-node-_0a12ec6c-646f-3606-7360-6e8865a26b3b-3faddafa {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-e13f37ac-3bc4-4daa-3efa-5ed810690633-3faddafa {
  grid-area: 4 / 2 / 5 / 3;
}

#w-node-_2906c458-f393-f38a-54b2-865c699a2478-3faddafa {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-c3d3f4be-93c5-f1d3-8a63-02fd9576bf41-3faddafa {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-c3d3f4be-93c5-f1d3-8a63-02fd9576bf42-3faddafa {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5cd33f66-cc92-4478-5d97-de88433d17a9-3faddafa {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-ad917bb8-8272-d426-d462-a8b6231c2dc0-3faddafa, #w-node-c8c18aac-0d2c-cb6b-db8e-f3f5863ee774-3faddafa {
  grid-area: 2 / 1 / 3 / 4;
}

#w-node-_774991b5-1bb6-a833-efa5-37910615f1b2-3faddafa {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_774991b5-1bb6-a833-efa5-37910615f1b3-3faddafa {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3acbb793-061d-2134-23f7-e28d350e4b43-3faddafa {
  align-self: end;
}

#w-node-f1cc756b-0904-f827-5c6e-1c9d0ea2c252-3faddafa {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-f1cc756b-0904-f827-5c6e-1c9d0ea2c253-3faddafa {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_845beaf4-f762-4a8d-f541-f8f506cb9a7d-3faddafa {
  grid-area: 4 / 2 / 5 / 3;
}

#w-node-c809f6f1-4431-2838-be50-3efe64a85954-3faddafa {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_7dfcd079-12ef-c4bb-85d4-f05933361e96-d66b8c4e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7dfcd079-12ef-c4bb-85d4-f05933361eb2-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f05933361eb7-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f05933361ebc-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f05933361ec1-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f05933361ec7-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f05933361ecd-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f05933361ed3-d66b8c4e {
  justify-self: start;
}

#w-node-_7dfcd079-12ef-c4bb-85d4-f05933361fb5-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f05933361fbd-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f05933361fd4-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f05933361fed-d66b8c4e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7dfcd079-12ef-c4bb-85d4-f05933361ff0-d66b8c4e {
  justify-self: start;
}

#w-node-_7dfcd079-12ef-c4bb-85d4-f05933361ff2-d66b8c4e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7dfcd079-12ef-c4bb-85d4-f05933361ff5-d66b8c4e {
  justify-self: start;
}

#w-node-_7dfcd079-12ef-c4bb-85d4-f0593336204b-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f05933362050-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f05933362055-d66b8c4e, #w-node-afabaa8b-f912-263d-103a-d04241ff6ca8-d66b8c4e, #w-node-cb3771b5-2b1f-a3fd-17ee-f77e010bc6e3-d66b8c4e, #w-node-da653b4a-d813-e7bd-2fd7-b07d4f947219-d66b8c4e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7dfcd079-12ef-c4bb-85d4-f059333620cd-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f059333620d2-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f059333620d7-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f059333620dc-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f059333620e1-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f059333620e6-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f059333620f0-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f059333620f5-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f059333620fa-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f059333620ff-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f05933362104-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f05933362109-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f0593336210e-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f05933362113-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f05933362118-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f0593336211d-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f05933362122-d66b8c4e {
  justify-self: start;
}

#w-node-_7dfcd079-12ef-c4bb-85d4-f05933362126-d66b8c4e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7dfcd079-12ef-c4bb-85d4-f05933362127-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f0593336212c-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f05933362131-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f05933362136-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f0593336214a-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f0593336214f-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f05933362154-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f05933362159-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f0593336215e-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f05933362163-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f0593336216d-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f05933362172-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f05933362177-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f0593336217c-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f05933362181-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f05933362186-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f0593336218b-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f05933362190-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f05933362195-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f0593336219a-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f0593336219f-d66b8c4e {
  justify-self: start;
}

#w-node-_7dfcd079-12ef-c4bb-85d4-f059333621a3-d66b8c4e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7dfcd079-12ef-c4bb-85d4-f059333621a4-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f059333621a9-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f059333621ae-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f059333621b3-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f059333621c4-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f059333621c9-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f059333621ce-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f059333621d3-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f059333621d8-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f059333621dd-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f059333621e2-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f059333621e7-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f059333621ec-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f059333621f1-d66b8c4e {
  justify-self: start;
}

#w-node-_7dfcd079-12ef-c4bb-85d4-f059333621f5-d66b8c4e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7dfcd079-12ef-c4bb-85d4-f059333621f6-d66b8c4e {
  justify-self: start;
}

#w-node-_7dfcd079-12ef-c4bb-85d4-f059333621f9-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f0593336227a-d66b8c4e, #w-node-_7dfcd079-12ef-c4bb-85d4-f059333622a7-d66b8c4e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7dfcd079-12ef-c4bb-85d4-f059333622e5-d66b8c4e {
  justify-self: start;
}

@media screen and (max-width: 991px) {
  #w-node-_11fdc4e7-2d45-6bad-6d14-e4fad919d334-3faddafa {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_7481e3fc-4850-ab03-59c4-41a1dc6177ec-3faddafa {
    order: 9999;
  }

  #w-node-d40e023c-cf88-08a1-d30f-3f36fe43c17a-3faddafa {
    grid-column: span 1 / span 1;
  }

  #w-node-d40e023c-cf88-08a1-d30f-3f36fe43c17b-3faddafa {
    order: 9999;
  }

  #w-node-_0a12ec6c-646f-3606-7360-6e8865a26b3b-3faddafa {
    grid-column: span 1 / span 1;
  }

  #w-node-_0a12ec6c-646f-3606-7360-6e8865a26b3c-3faddafa {
    order: 9999;
  }

  #w-node-e13f37ac-3bc4-4daa-3efa-5ed810690633-3faddafa {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_836eacbe-0f75-bb32-c101-74a5b5a0c0de-3faddafa {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-c3d3f4be-93c5-f1d3-8a63-02fd9576bf41-3faddafa {
    grid-column: span 1 / span 1;
  }

  #w-node-c3d3f4be-93c5-f1d3-8a63-02fd9576bf42-3faddafa {
    order: 9999;
  }

  #w-node-ad917bb8-8272-d426-d462-a8b6231c2dd5-3faddafa {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-c8c18aac-0d2c-cb6b-db8e-f3f5863ee774-3faddafa {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-bf111194-7d90-6d8a-6e63-4654e39ae803-3faddafa {
    order: 9999;
  }

  #w-node-_774991b5-1bb6-a833-efa5-37910615f1b2-3faddafa {
    grid-column: span 1 / span 1;
  }

  #w-node-_774991b5-1bb6-a833-efa5-37910615f1b3-3faddafa {
    order: 9999;
  }

  #w-node-f1cc756b-0904-f827-5c6e-1c9d0ea2c252-3faddafa {
    grid-column: span 1 / span 1;
  }

  #w-node-f1cc756b-0904-f827-5c6e-1c9d0ea2c253-3faddafa {
    order: 9999;
  }

  #w-node-_845beaf4-f762-4a8d-f541-f8f506cb9a7d-3faddafa {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_11fdc4e7-2d45-6bad-6d14-e4fad919d334-3faddafa {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-d40e023c-cf88-08a1-d30f-3f36fe43c17a-3faddafa, #w-node-_0a12ec6c-646f-3606-7360-6e8865a26b3b-3faddafa {
    grid-column: span 1 / span 1;
  }

  #w-node-e13f37ac-3bc4-4daa-3efa-5ed810690633-3faddafa, #w-node-_8e4a1dad-3178-9469-687f-e3c7e4bccbf9-3faddafa {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-c3d3f4be-93c5-f1d3-8a63-02fd9576bf41-3faddafa {
    grid-column: span 1 / span 1;
  }

  #w-node-_22712dc1-5030-6683-a9c0-c871ddc1775d-3faddafa, #w-node-_5cd33f66-cc92-4478-5d97-de88433d17b1-3faddafa {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-ad917bb8-8272-d426-d462-a8b6231c2dc0-3faddafa {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-ad917bb8-8272-d426-d462-a8b6231c2dd0-3faddafa {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-ad917bb8-8272-d426-d462-a8b6231c2dd5-3faddafa {
    grid-column: 1 / 3;
  }

  #w-node-_11c78162-1acb-bab6-dfc7-8eb42fac0386-3faddafa {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_774991b5-1bb6-a833-efa5-37910615f1b2-3faddafa, #w-node-f1cc756b-0904-f827-5c6e-1c9d0ea2c252-3faddafa {
    grid-column: span 1 / span 1;
  }

  #w-node-_845beaf4-f762-4a8d-f541-f8f506cb9a7d-3faddafa {
    grid-column: 1 / 2;
  }
}


@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-RegularItalic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-SemiboldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Semibold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lack UA';
  src: url('../fonts/LackUA-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lack UA';
  src: url('../fonts/LackUA-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}