html, body {
  overflow-x: hidden !important;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --color-black: #000;
  --color-white: #fff;
  --color-yellow: #E7CD00;
  --color-green: #6FFF33;
  --color-pink: #FF00B6;
  --color-blue: #4431E0;
  --color-dark-yellow: rgb(154.5, 137.1103896104, 0);
  --color-dark-green: rgb(67.5, 229.5, 0);
  --color-dark-pink: rgb(178.5, 0, 127.4);
  --color-dark-blue: rgb(41.4556962025, 25.7025316456, 170.7974683544);
  --font-primary: como, sans-serif;
  --font-secondary: Krona One, sans-serif;
}

body {
  background-color: var(--color-black);
  font-family: var(--font-primary);
}

body * {
  box-sizing: border-box;
}

.container {
  width: 100%;
  padding: 0 1rem;
  display: block;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}
.container.container--fluid {
  max-width: 100%;
}
@media (min-width: 1200px) {
  .container.container--fluid {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1200px) {
  .flex {
    display: flex;
  }
}
.flex.flex--force {
  display: flex !important;
}
.flex .flex__column {
  position: initial;
}
.flex.flex--force {
  display: flex !important;
}
.flex.flex--column {
  flex-direction: column;
}
.flex.flex--row {
  flex-direction: row;
}
.flex.flex--align-start {
  align-items: flex-start;
}
.flex.flex--align-center {
  align-items: center;
}
.flex.flex--align-end {
  align-items: flex-end;
}
.flex.flex--align-stretch {
  align-items: stretch;
}
.flex.flex--align-baseline {
  align-items: baseline;
}
.flex.flex--justify-start {
  justify-content: flex-start;
}
.flex.flex--justify-center {
  justify-content: center;
}
.flex.flex--justify-end {
  justify-content: flex-end;
}
.flex.flex--justify-between {
  justify-content: space-between;
}
.flex.flex--justify-around {
  justify-content: space-around;
}
.flex.flex--wrap {
  flex-wrap: wrap;
}
.flex.flex--nowrap {
  flex-wrap: nowrap;
}

.gap-0 {
  gap: 0;
}

.row-gap-0 {
  row-gap: 0;
}

.column-gap-0 {
  column-gap: 0;
}

.gap-1 {
  gap: 0.25rem;
}

.row-gap-1 {
  row-gap: 0.25rem;
}

.column-gap-1 {
  column-gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.row-gap-2 {
  row-gap: 0.5rem;
}

.column-gap-2 {
  column-gap: 0.5rem;
}

.gap-3 {
  gap: 1rem;
}

.row-gap-3 {
  row-gap: 1rem;
}

.column-gap-3 {
  column-gap: 1rem;
}

.gap-4 {
  gap: 1.5rem;
}

.row-gap-4 {
  row-gap: 1.5rem;
}

.column-gap-4 {
  column-gap: 1.5rem;
}

.gap-5 {
  gap: 3rem;
}

.row-gap-5 {
  row-gap: 3rem;
}

.column-gap-5 {
  column-gap: 3rem;
}

.w-full {
  width: 100%;
}

.w-half {
  width: 50%;
}

.w-auto {
  width: auto;
}

.w-300 {
  width: 300px;
}

@media (min-width: 1200px) {
  .w-d-half {
    width: 50%;
  }
}
@media (max-width: 1199px) {
  .w-m-full {
    width: 100%;
  }
}
.h-full {
  height: 100%;
}

.h-auto {
  height: auto;
}

.d-block {
  display: block;
}

.d-inline {
  display: inline;
}

.d-inline-block {
  display: inline-block;
}

.d-flex {
  display: flex;
}

.d-none {
  display: none;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.p-initial {
  position: initial;
}

.p-absolute--center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.t-center {
  top: 50%;
  transform: translateY(-50%);
}

.t-0 {
  top: 0;
}

.l-0 {
  left: 0;
}

.c-pointer {
  cursor: pointer;
}

.hover-scale .hover-scale__child--centered {
  transition: transform 150ms ease;
}
.hover-scale:hover .hover-scale__child--centered {
  transform: scale(1.1) translate(-50%, -50%);
}

.bg-center {
  background-position: center center;
}

.bg-cover {
  background-size: cover;
}

.bg-no-repeat {
  background-repeat: no-repeat;
}

.o-hidden {
  overflow: hidden;
}

.obj-cover {
  object-fit: cover;
}

.obj-center {
  object-position: center;
}

.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

@media (min-width: 1200px) {
  .m-d-0 {
    margin: 0 !important;
  }
  .mt-d-0 {
    margin-top: 0 !important;
  }
  .mb-d-0 {
    margin-bottom: 0 !important;
  }
  .ml-d-0 {
    margin-left: 0 !important;
  }
  .mr-d-0 {
    margin-right: 0 !important;
  }
  .mx-d-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .my-d-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .p-d-0 {
    padding: 0 !important;
  }
  .pt-d-0 {
    padding-top: 0 !important;
  }
  .pb-d-0 {
    padding-bottom: 0 !important;
  }
  .pl-d-0 {
    padding-left: 0 !important;
  }
  .pr-d-0 {
    padding-right: 0 !important;
  }
  .px-d-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .py-d-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (max-width: 1199px) {
  .m-m-0 {
    margin: 0 !important;
  }
  .mt-m-0 {
    margin-top: 0 !important;
  }
  .mb-m-0 {
    margin-bottom: 0 !important;
  }
  .ml-m-0 {
    margin-left: 0 !important;
  }
  .mr-m-0 {
    margin-right: 0 !important;
  }
  .mx-m-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .my-m-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .p-m-0 {
    padding: 0 !important;
  }
  .pt-m-0 {
    padding-top: 0 !important;
  }
  .pb-m-0 {
    padding-bottom: 0 !important;
  }
  .pl-m-0 {
    padding-left: 0 !important;
  }
  .pr-m-0 {
    padding-right: 0 !important;
  }
  .px-m-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .py-m-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
.m-1 {
  margin: 0.25rem !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1 {
  margin-left: 0.25rem !important;
}

.mr-1 {
  margin-right: 0.25rem !important;
}

.mx-1 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1 {
  padding-left: 0.25rem !important;
}

.pr-1 {
  padding-right: 0.25rem !important;
}

.px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

@media (min-width: 1200px) {
  .m-d-1 {
    margin: 0.25rem !important;
  }
  .mt-d-1 {
    margin-top: 0.25rem !important;
  }
  .mb-d-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-d-1 {
    margin-left: 0.25rem !important;
  }
  .mr-d-1 {
    margin-right: 0.25rem !important;
  }
  .mx-d-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .my-d-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .p-d-1 {
    padding: 0.25rem !important;
  }
  .pt-d-1 {
    padding-top: 0.25rem !important;
  }
  .pb-d-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-d-1 {
    padding-left: 0.25rem !important;
  }
  .pr-d-1 {
    padding-right: 0.25rem !important;
  }
  .px-d-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .py-d-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
}
@media (max-width: 1199px) {
  .m-m-1 {
    margin: 0.25rem !important;
  }
  .mt-m-1 {
    margin-top: 0.25rem !important;
  }
  .mb-m-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-m-1 {
    margin-left: 0.25rem !important;
  }
  .mr-m-1 {
    margin-right: 0.25rem !important;
  }
  .mx-m-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .my-m-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .p-m-1 {
    padding: 0.25rem !important;
  }
  .pt-m-1 {
    padding-top: 0.25rem !important;
  }
  .pb-m-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-m-1 {
    padding-left: 0.25rem !important;
  }
  .pr-m-1 {
    padding-right: 0.25rem !important;
  }
  .px-m-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .py-m-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
}
.m-2 {
  margin: 0.5rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2 {
  margin-left: 0.5rem !important;
}

.mr-2 {
  margin-right: 0.5rem !important;
}

.mx-2 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2 {
  padding-left: 0.5rem !important;
}

.pr-2 {
  padding-right: 0.5rem !important;
}

.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

@media (min-width: 1200px) {
  .m-d-2 {
    margin: 0.5rem !important;
  }
  .mt-d-2 {
    margin-top: 0.5rem !important;
  }
  .mb-d-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-d-2 {
    margin-left: 0.5rem !important;
  }
  .mr-d-2 {
    margin-right: 0.5rem !important;
  }
  .mx-d-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .my-d-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .p-d-2 {
    padding: 0.5rem !important;
  }
  .pt-d-2 {
    padding-top: 0.5rem !important;
  }
  .pb-d-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-d-2 {
    padding-left: 0.5rem !important;
  }
  .pr-d-2 {
    padding-right: 0.5rem !important;
  }
  .px-d-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .py-d-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
}
@media (max-width: 1199px) {
  .m-m-2 {
    margin: 0.5rem !important;
  }
  .mt-m-2 {
    margin-top: 0.5rem !important;
  }
  .mb-m-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-m-2 {
    margin-left: 0.5rem !important;
  }
  .mr-m-2 {
    margin-right: 0.5rem !important;
  }
  .mx-m-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .my-m-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .p-m-2 {
    padding: 0.5rem !important;
  }
  .pt-m-2 {
    padding-top: 0.5rem !important;
  }
  .pb-m-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-m-2 {
    padding-left: 0.5rem !important;
  }
  .pr-m-2 {
    padding-right: 0.5rem !important;
  }
  .px-m-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .py-m-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
}
.m-3 {
  margin: 1rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.ml-3 {
  margin-left: 1rem !important;
}

.mr-3 {
  margin-right: 1rem !important;
}

.mx-3 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pl-3 {
  padding-left: 1rem !important;
}

.pr-3 {
  padding-right: 1rem !important;
}

.px-3 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

@media (min-width: 1200px) {
  .m-d-3 {
    margin: 1rem !important;
  }
  .mt-d-3 {
    margin-top: 1rem !important;
  }
  .mb-d-3 {
    margin-bottom: 1rem !important;
  }
  .ml-d-3 {
    margin-left: 1rem !important;
  }
  .mr-d-3 {
    margin-right: 1rem !important;
  }
  .mx-d-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .my-d-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .p-d-3 {
    padding: 1rem !important;
  }
  .pt-d-3 {
    padding-top: 1rem !important;
  }
  .pb-d-3 {
    padding-bottom: 1rem !important;
  }
  .pl-d-3 {
    padding-left: 1rem !important;
  }
  .pr-d-3 {
    padding-right: 1rem !important;
  }
  .px-d-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .py-d-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
}
@media (max-width: 1199px) {
  .m-m-3 {
    margin: 1rem !important;
  }
  .mt-m-3 {
    margin-top: 1rem !important;
  }
  .mb-m-3 {
    margin-bottom: 1rem !important;
  }
  .ml-m-3 {
    margin-left: 1rem !important;
  }
  .mr-m-3 {
    margin-right: 1rem !important;
  }
  .mx-m-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .my-m-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .p-m-3 {
    padding: 1rem !important;
  }
  .pt-m-3 {
    padding-top: 1rem !important;
  }
  .pb-m-3 {
    padding-bottom: 1rem !important;
  }
  .pl-m-3 {
    padding-left: 1rem !important;
  }
  .pr-m-3 {
    padding-right: 1rem !important;
  }
  .px-m-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .py-m-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
}
.m-4 {
  margin: 1.5rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4 {
  margin-left: 1.5rem !important;
}

.mr-4 {
  margin-right: 1.5rem !important;
}

.mx-4 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4 {
  padding-left: 1.5rem !important;
}

.pr-4 {
  padding-right: 1.5rem !important;
}

.px-4 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

@media (min-width: 1200px) {
  .m-d-4 {
    margin: 1.5rem !important;
  }
  .mt-d-4 {
    margin-top: 1.5rem !important;
  }
  .mb-d-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-d-4 {
    margin-left: 1.5rem !important;
  }
  .mr-d-4 {
    margin-right: 1.5rem !important;
  }
  .mx-d-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .my-d-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .p-d-4 {
    padding: 1.5rem !important;
  }
  .pt-d-4 {
    padding-top: 1.5rem !important;
  }
  .pb-d-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-d-4 {
    padding-left: 1.5rem !important;
  }
  .pr-d-4 {
    padding-right: 1.5rem !important;
  }
  .px-d-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .py-d-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
}
@media (max-width: 1199px) {
  .m-m-4 {
    margin: 1.5rem !important;
  }
  .mt-m-4 {
    margin-top: 1.5rem !important;
  }
  .mb-m-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-m-4 {
    margin-left: 1.5rem !important;
  }
  .mr-m-4 {
    margin-right: 1.5rem !important;
  }
  .mx-m-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .my-m-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .p-m-4 {
    padding: 1.5rem !important;
  }
  .pt-m-4 {
    padding-top: 1.5rem !important;
  }
  .pb-m-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-m-4 {
    padding-left: 1.5rem !important;
  }
  .pr-m-4 {
    padding-right: 1.5rem !important;
  }
  .px-m-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .py-m-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
}
.m-5 {
  margin: 3rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.ml-5 {
  margin-left: 3rem !important;
}

.mr-5 {
  margin-right: 3rem !important;
}

.mx-5 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.pl-5 {
  padding-left: 3rem !important;
}

.pr-5 {
  padding-right: 3rem !important;
}

.px-5 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

@media (min-width: 1200px) {
  .m-d-5 {
    margin: 3rem !important;
  }
  .mt-d-5 {
    margin-top: 3rem !important;
  }
  .mb-d-5 {
    margin-bottom: 3rem !important;
  }
  .ml-d-5 {
    margin-left: 3rem !important;
  }
  .mr-d-5 {
    margin-right: 3rem !important;
  }
  .mx-d-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .my-d-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .p-d-5 {
    padding: 3rem !important;
  }
  .pt-d-5 {
    padding-top: 3rem !important;
  }
  .pb-d-5 {
    padding-bottom: 3rem !important;
  }
  .pl-d-5 {
    padding-left: 3rem !important;
  }
  .pr-d-5 {
    padding-right: 3rem !important;
  }
  .px-d-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .py-d-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
}
@media (max-width: 1199px) {
  .m-m-5 {
    margin: 3rem !important;
  }
  .mt-m-5 {
    margin-top: 3rem !important;
  }
  .mb-m-5 {
    margin-bottom: 3rem !important;
  }
  .ml-m-5 {
    margin-left: 3rem !important;
  }
  .mr-m-5 {
    margin-right: 3rem !important;
  }
  .mx-m-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .my-m-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .p-m-5 {
    padding: 3rem !important;
  }
  .pt-m-5 {
    padding-top: 3rem !important;
  }
  .pb-m-5 {
    padding-bottom: 3rem !important;
  }
  .pl-m-5 {
    padding-left: 3rem !important;
  }
  .pr-m-5 {
    padding-right: 3rem !important;
  }
  .px-m-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .py-m-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
}
.m-6 {
  margin: 6.5rem !important;
}

.mt-6 {
  margin-top: 6.5rem !important;
}

.mb-6 {
  margin-bottom: 6.5rem !important;
}

.ml-6 {
  margin-left: 6.5rem !important;
}

.mr-6 {
  margin-right: 6.5rem !important;
}

.mx-6 {
  margin-left: 6.5rem !important;
  margin-right: 6.5rem !important;
}

.my-6 {
  margin-top: 6.5rem !important;
  margin-bottom: 6.5rem !important;
}

.p-6 {
  padding: 6.5rem !important;
}

.pt-6 {
  padding-top: 6.5rem !important;
}

.pb-6 {
  padding-bottom: 6.5rem !important;
}

.pl-6 {
  padding-left: 6.5rem !important;
}

.pr-6 {
  padding-right: 6.5rem !important;
}

.px-6 {
  padding-left: 6.5rem !important;
  padding-right: 6.5rem !important;
}

.py-6 {
  padding-top: 6.5rem !important;
  padding-bottom: 6.5rem !important;
}

@media (min-width: 1200px) {
  .m-d-6 {
    margin: 6.5rem !important;
  }
  .mt-d-6 {
    margin-top: 6.5rem !important;
  }
  .mb-d-6 {
    margin-bottom: 6.5rem !important;
  }
  .ml-d-6 {
    margin-left: 6.5rem !important;
  }
  .mr-d-6 {
    margin-right: 6.5rem !important;
  }
  .mx-d-6 {
    margin-left: 6.5rem !important;
    margin-right: 6.5rem !important;
  }
  .my-d-6 {
    margin-top: 6.5rem !important;
    margin-bottom: 6.5rem !important;
  }
  .p-d-6 {
    padding: 6.5rem !important;
  }
  .pt-d-6 {
    padding-top: 6.5rem !important;
  }
  .pb-d-6 {
    padding-bottom: 6.5rem !important;
  }
  .pl-d-6 {
    padding-left: 6.5rem !important;
  }
  .pr-d-6 {
    padding-right: 6.5rem !important;
  }
  .px-d-6 {
    padding-left: 6.5rem !important;
    padding-right: 6.5rem !important;
  }
  .py-d-6 {
    padding-top: 6.5rem !important;
    padding-bottom: 6.5rem !important;
  }
}
@media (max-width: 1199px) {
  .m-m-6 {
    margin: 6.5rem !important;
  }
  .mt-m-6 {
    margin-top: 6.5rem !important;
  }
  .mb-m-6 {
    margin-bottom: 6.5rem !important;
  }
  .ml-m-6 {
    margin-left: 6.5rem !important;
  }
  .mr-m-6 {
    margin-right: 6.5rem !important;
  }
  .mx-m-6 {
    margin-left: 6.5rem !important;
    margin-right: 6.5rem !important;
  }
  .my-m-6 {
    margin-top: 6.5rem !important;
    margin-bottom: 6.5rem !important;
  }
  .p-m-6 {
    padding: 6.5rem !important;
  }
  .pt-m-6 {
    padding-top: 6.5rem !important;
  }
  .pb-m-6 {
    padding-bottom: 6.5rem !important;
  }
  .pl-m-6 {
    padding-left: 6.5rem !important;
  }
  .pr-m-6 {
    padding-right: 6.5rem !important;
  }
  .px-m-6 {
    padding-left: 6.5rem !important;
    padding-right: 6.5rem !important;
  }
  .py-m-6 {
    padding-top: 6.5rem !important;
    padding-bottom: 6.5rem !important;
  }
}
.m-7 {
  margin: 10rem !important;
}

.mt-7 {
  margin-top: 10rem !important;
}

.mb-7 {
  margin-bottom: 10rem !important;
}

.ml-7 {
  margin-left: 10rem !important;
}

.mr-7 {
  margin-right: 10rem !important;
}

.mx-7 {
  margin-left: 10rem !important;
  margin-right: 10rem !important;
}

.my-7 {
  margin-top: 10rem !important;
  margin-bottom: 10rem !important;
}

.p-7 {
  padding: 10rem !important;
}

.pt-7 {
  padding-top: 10rem !important;
}

.pb-7 {
  padding-bottom: 10rem !important;
}

.pl-7 {
  padding-left: 10rem !important;
}

.pr-7 {
  padding-right: 10rem !important;
}

.px-7 {
  padding-left: 10rem !important;
  padding-right: 10rem !important;
}

.py-7 {
  padding-top: 10rem !important;
  padding-bottom: 10rem !important;
}

@media (min-width: 1200px) {
  .m-d-7 {
    margin: 10rem !important;
  }
  .mt-d-7 {
    margin-top: 10rem !important;
  }
  .mb-d-7 {
    margin-bottom: 10rem !important;
  }
  .ml-d-7 {
    margin-left: 10rem !important;
  }
  .mr-d-7 {
    margin-right: 10rem !important;
  }
  .mx-d-7 {
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }
  .my-d-7 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .p-d-7 {
    padding: 10rem !important;
  }
  .pt-d-7 {
    padding-top: 10rem !important;
  }
  .pb-d-7 {
    padding-bottom: 10rem !important;
  }
  .pl-d-7 {
    padding-left: 10rem !important;
  }
  .pr-d-7 {
    padding-right: 10rem !important;
  }
  .px-d-7 {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }
  .py-d-7 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
}
@media (max-width: 1199px) {
  .m-m-7 {
    margin: 10rem !important;
  }
  .mt-m-7 {
    margin-top: 10rem !important;
  }
  .mb-m-7 {
    margin-bottom: 10rem !important;
  }
  .ml-m-7 {
    margin-left: 10rem !important;
  }
  .mr-m-7 {
    margin-right: 10rem !important;
  }
  .mx-m-7 {
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }
  .my-m-7 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .p-m-7 {
    padding: 10rem !important;
  }
  .pt-m-7 {
    padding-top: 10rem !important;
  }
  .pb-m-7 {
    padding-bottom: 10rem !important;
  }
  .pl-m-7 {
    padding-left: 10rem !important;
  }
  .pr-m-7 {
    padding-right: 10rem !important;
  }
  .px-m-7 {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }
  .py-m-7 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
}
.img-responsive {
  width: 100%;
  height: auto;
}

.radius-0 {
  border-radius: 0;
}

.radius-1 {
  border-radius: 0.125rem;
}

.radius-2 {
  border-radius: 0.25rem;
}

.radius-3 {
  border-radius: 0.5rem;
}

.radius-4 {
  border-radius: 1rem;
}

.radius-5 {
  border-radius: 2rem;
}

.radius-full {
  border-radius: 9999px;
}

@media (max-width: 1199px) {
  .hide-on-mobile {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hide-on-desktop {
    display: none !important;
  }
}
.c-pointer {
  cursor: pointer;
}

.z-index-10 {
  z-index: 10;
  pointer-events: none;
}

.d-table {
  display: table;
}

strong {
  font-weight: 700;
}

.txt.txt--primary {
  font-family: var(--font-primary);
}
.txt.txt--secondary {
  font-family: var(--font-secondary);
}
.txt.txt--12 {
  font-size: 0.75rem;
}
.txt.txt--14 {
  font-size: 0.875rem;
}
.txt.txt--16 {
  font-size: 1rem;
}
.txt.txt--18 {
  font-size: 1.125rem;
}
.txt.txt--20 {
  font-size: 1.25rem;
}
.txt.txt--24 {
  font-size: 1.5rem;
}
.txt.txt--28 {
  font-size: 1.75rem;
}
.txt.txt--32 {
  font-size: 2rem;
}
.txt.txt--36 {
  font-size: 2.25rem;
}
.txt.txt--42 {
  font-size: 2.625rem;
}
.txt.txt--black {
  color: var(--color-black);
}
.txt.txt--white {
  color: var(--color-white);
}
.txt.txt--yellow {
  color: var(--color-yellow);
}
.txt.txt--green {
  color: var(--color-green);
}
.txt.txt--pink {
  color: var(--color-pink);
}
.txt.txt--blue {
  color: var(--color-blue);
}
.txt.txt--nowrap {
  white-space: nowrap;
}
.txt.txt--break {
  word-break: break-word;
}
.txt.txt--center {
  text-align: center;
}
.txt.txt--left {
  text-align: left;
}
.txt.txt--right {
  text-align: right;
}
.txt.txt--uppercase {
  text-transform: uppercase;
}
.txt.txt--lowercase {
  text-transform: lowercase;
}
.txt.txt--capitalize {
  text-transform: capitalize;
}
.txt.txt--bold {
  font-weight: 700;
}
.txt.txt--regular {
  font-weight: 400;
}
.txt.txt--wysiwyg p {
  margin-bottom: 1rem;
}
.txt.txt--wysiwyg ul {
  list-style-type: disc;
  padding-left: 1.1rem;
  margin-bottom: 1rem;
}
.txt.lh-100 {
  line-height: 1;
}
.txt.lh-105 {
  line-height: 1.05;
}
.txt.lh-110 {
  line-height: 1.1;
}
.txt.lh-115 {
  line-height: 1.15;
}
.txt.lh-120 {
  line-height: 1.2;
}
.txt.lh-150 {
  line-height: 1.5;
}
.txt.ls-5 {
  letter-spacing: 5%;
}

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

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

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

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

.vector--black path {
  stroke: var(--color-black);
  transition: all 150ms ease;
}

.navbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 998;
  background: var(--color-black);
}
.navbar__logo {
  width: 200px;
  height: auto;
}
@media (min-width: 1200px) {
  .navbar__logo {
    width: 300px;
  }
}
.navbar__menu .navbar-item a {
  text-decoration: none;
  color: var(--color-white);
  opacity: 0.52;
  transition: opacity 150ms ease;
  font-size: 16px;
}
.navbar__menu .navbar-item a:hover {
  opacity: 1;
}
@media (max-width: 1199px) {
  .navbar .menu-items {
    position: fixed;
    height: calc(100vh - 75px);
    width: 0;
    top: 75px;
    left: 0;
    background: var(--color-black);
    z-index: 999;
    overflow: hidden;
    padding: 2rem 0;
    transition: all 300ms cubic-bezier(0.77, 0, 0.175, 1);
  }
  .navbar .menu-items li {
    margin-bottom: 2.5rem;
  }
  .navbar .menu-items li a {
    opacity: 1;
  }
  .navbar.active .menu-items {
    width: 100%;
    padding: 2rem 1rem;
  }
}

.btn {
  text-align: center;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.125rem;
}
.btn svg {
  pointer-events: none;
  transition: all 150ms ease;
}
.btn svg path {
  transition: all 150ms ease;
}
.btn.btn--primary {
  background: var(--color-blue);
  color: var(--color-white);
  transition: background 150ms ease;
}
.btn.btn--primary:hover {
  background: var(--color-dark-blue);
}
.btn.btn--white {
  background: var(--color-white);
  color: var(--color-black);
  transition: background 150ms ease, color 150ms ease;
}
.btn.btn--white:hover {
  background: var(--color-black);
  color: var(--color-white);
}
.btn.btn--white:hover .vector--black path {
  stroke: var(--color-white);
}
.btn.btn--black {
  background: var(--color-black);
  border: 1px solid var(--color-white);
  color: var(--color-white);
  transition: background 150ms ease, color 150ms ease;
}
.btn.btn--black:hover {
  background: var(--color-white);
  color: var(--color-black);
}
.btn.btn--black:hover svg path {
  stroke: var(--color-black);
}
.btn.d-table svg {
  margin-left: 10px;
}

.keen-slider .keen-slider__slide {
  max-width: 324px;
}
.keen-slider .keen-slider__slide .slide__image {
  height: 600px;
  border-radius: 10px;
  overflow: hidden;
}
.keen-slider .keen-slider__slide .slide__image .bg-image {
  transition: all 300ms cubic-bezier(0.77, 0, 0.175, 1);
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.keen-slider .keen-slider__slide .slide__image .slide__logo img {
  max-height: 40px;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
}
.keen-slider .keen-slider__slide .slide__image .slide__content {
  position: absolute;
  z-index: 2;
  bottom: 15px;
  left: 15px;
  padding-right: 15px;
}
.keen-slider .keen-slider__slide .slide__image .slide__content .content__inner {
  opacity: 0;
  transition: all 200ms cubic-bezier(0.77, 0, 0.175, 1);
}
.keen-slider .keen-slider__slide .slide__image .slide__content .content__inner p {
  overflow: hidden;
}
.keen-slider .keen-slider__slide .slide__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.29);
  z-index: 1;
  transition: background 200ms ease-in-out;
}
.keen-slider .keen-slider__slide .slide__image:hover .bg-image {
  width: 110%;
  height: 110%;
}
.keen-slider .keen-slider__slide .slide__image:hover .slide__content .content__inner {
  height: var(--el-height) !important;
  opacity: 1;
}
.keen-slider .keen-slider__slide .slide__image:hover::after {
  background: rgba(0, 0, 0, 0.5);
}

.form label {
  display: block;
  margin-bottom: 15px;
  color: var(--color-white);
  font-size: 18px;
  font-family: "como", sans-serif;
}
.form input, .form textarea {
  border-radius: 8px;
  background: var(--color-white);
  border: rgba(0, 0, 0, 0.6);
  font-size: 16px;
  font-family: "como", sans-serif;
  padding: 10px 15px;
  display: block;
  width: 100%;
  outline: none;
  resize: none;
}
.form .forminator-field {
  position: relative;
}
.form .forminator-description {
  position: absolute;
  bottom: -20px;
  right: 0;
  font-size: 12px;
  color: var(--color-white);
}
.form button {
  display: block;
  width: 100%;
  margin-top: 45px;
  border-radius: 8px;
  border: none;
  background: var(--color-black);
  color: var(--color-white);
  font-family: "como", sans-serif;
  font-size: 16px;
  padding: 15px 15px;
  cursor: pointer;
}
.form .forminator-response-message.forminator-error.forminator-accessible {
  display: none;
}
.form .forminator-edit-module {
  display: none;
}
.form .forminator-error-message {
  color: var(--color-white);
  display: block;
  margin-top: 8px;
  margin-bottom: 8px;
  position: relative;
  padding-left: 15px;
}
.form .forminator-error-message::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 3px;
  background: var(--color-pink);
}

.header {
  position: relative;
}
@media (max-width: 1199px) {
  .header {
    margin-top: 80px;
  }
}
@media (min-width: 1200px) {
  .header {
    margin-top: 110px;
  }
}
.header .header__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  opacity: 0;
  pointer-events: none;
}
.header.active {
  pointer-events: none;
}
.header.active svg {
  display: none;
}
.header.active .header__video {
  opacity: 1;
  pointer-events: initial;
}
.header.active .img-responsive {
  opacity: 0;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: top;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
}
@media (min-width: 1200px) {
  .modal {
    align-items: center;
  }
}
.modal__body {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  transition: all 300ms cubic-bezier(0.77, 0, 0.175, 1);
}
.modal__body .video {
  height: 80vh;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
}
@media (max-width: 1199px) {
  .modal__body {
    overflow-y: auto;
  }
}
.modal__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-black);
  opacity: 0;
  z-index: 1;
  transition: all 300ms cubic-bezier(0.77, 0, 0.175, 1);
}
.modal.active {
  pointer-events: initial;
  z-index: 9999;
  opacity: 1;
}
.modal.active .modal__body {
  transform: translateY(0);
  opacity: 1;
}
.modal.active .modal__backdrop {
  opacity: 1;
}

.area-section svg {
  height: 65px;
  width: auto;
}
@media (min-width: 1200px) {
  .area-section svg {
    max-width: 100%;
    height: auto;
  }
}
@media (max-height: 767px) and (min-width: 1200px) {
  .area-section svg {
    height: 65px;
  }
}
@media (max-height: 767px) and (min-width: 1200px) {
  .area-section .content-area {
    padding-top: 3rem !important;
    padding-bottom: 2rem !important;
    display: flex;
    height: 100%;
    flex-direction: column;
  }
}

/*# sourceMappingURL=main.css.map */
