/* ------------------------- Styleguide Generales -------------------------------------------------- */

/* ------------------------- Fonts -------------------------------------------------- */

/* @font-face {
   font-family: 'Mundial';
   src: url('../../assets/fonts/mundial/Mundial-Regular.woff2') format('woff2'),
       url('../../assets/fonts/mundial/Mundial-Regular.woff') format('woff');
   font-weight: normal;
   font-style: normal;
   font-display: swap;
}

@font-face {
   font-family: 'Mundial';
   src: url('../../assets/fonts/mundial/Mundial-Bold.woff2') format('woff2'),
       url('../../assets/fonts/mundial/Mundial-Bold.woff') format('woff');
   font-weight: bold;
   font-style: normal;
   font-display: swap;
}

@font-face {
   font-family: 'Mundial';
   src: url('../../assets/fonts/mundial/Mundial-Light.woff2') format('woff2'),
       url('../../assets/fonts/mundial/Mundial-Light.woff') format('woff');
   font-weight: 300;
   font-style: normal;
   font-display: swap;
} 

@font-face {
   font-family: 'Mundial';
   src: url('../../assets/fonts/mundial/Mundial-Demibold.woff2') format('woff2'),
       url('../../assets/fonts/mundial/Mundial-Demibold.woff') format('woff');
   font-weight: 600;
   font-style: normal;
   font-display: swap;
}
*/

/* @font-face {
   font-family: 'Roc Grotesk Condensed';
   src: url('../../assets/fonts/roc_grotesk/RocGrotesk-CondensedBlack.woff2') format('woff2'),
       url('../../assets/fonts/roc_grotesk/RocGrotesk-CondensedBlack.woff') format('woff');
   font-weight: 900;
   font-style: normal;
   font-display: swap;
}

@font-face {
   font-family: 'Roc Grotesk Condensed ExLight';
   src: url('../../assets/fonts/roc_grotesk/RocGrotesk-CondensedExtraLight.woff2') format('woff2'),
       url('../../assets/fonts/roc_grotesk/RocGrotesk-CondensedExtraLight.woff') format('woff');
   font-weight: 200;
   font-style: normal;
   font-display: swap;
}

@font-face {
   font-family: 'Roc Grotesk Condensed';
   src: url('../../assets/fonts/roc_grotesk/RocGrotesk-CondensedMedium.woff2') format('woff2'),
       url('../../assets/fonts/roc_grotesk/RocGrotesk-CondensedMedium.woff') format('woff');
   font-weight: 500;
   font-style: normal;
   font-display: swap;
} */

@font-face {
  font-family: Matter;
  src: url("../../assets/fonts/matter/matter-light.woff2") format("woff2"),
    url("../../assets/fonts/matter/matter-light.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Matter;
  src: url("../../assets/fonts/matter/matter-regular.woff2") format("woff2"),
    url("../../assets/fonts/matter/matter-regular.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Matter";
  src: url("../../assets/fonts/matter/Matter-SemiBold.woff2") format("woff2"),
    url("../../assets/fonts/matter/Matter-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Matter;
  src: url("../../assets/fonts/matter/matter-bold.woff2") format("woff2"),
    url("../../assets/fonts/matter/matter-bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Matter;
  src: url("../../assets/fonts/matter/matter-boldItalic.woff2") format("woff2"),
    url("../../assets/fonts/matter/matter-boldItalic.woff") format("woff");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* ------------------------- Colors -------------------------------------------------- */

:root {
  --color-primary: #000;
  --color-secondary: #f4efb3;
  --bg-primary: #000;
  --bg-secondary: #f4efb3;
  --color-lc: 155, 250, 0;

  --color-light: #fff;
  --color-dark: #5f615e;

  --color-alert-error: var(--color-primary);
  --color-alert-success: #14a846;

  --animation-fast: 0.2s cubic-bezier(0.9, 0, 0.1, 1);
  --animation-cursor: 0.4s cubic-bezier(0.5, 0, 0.25, 1);
  --animation-primary: 0.5s cubic-bezier(0.6, 0, 0.1, 1);
  --animation-tile: 0.4s cubic-bezier(0.4, 0, 0.1, 1);
  /* --animation-smooth: 1.5s cubic-bezier(.7, 0, .3, 1); */
  --animation-smooth: 0.6s cubic-bezier(0.7, 0, 0.3, 1);

  --section-padding: min(8vw, 8em);
  --container-padding: clamp(1.33em, 3vw, 3em);

  --container-width: calc(100% - 2 * var(--grid-margin));

  --grid-columns: 4;
  --grid-gutter: 0.625rem;

  /* --grid-margin: 0.625rem; */
  --grid-margin: calc(8 * var(--vw, 1vw));

  --font-size-h1: 2.25rem;
  --font-size-h2: 1.75rem;
  --font-size-h3: 1.5rem;
  --font-size-h4: 1.25rem;
  --font-size-h5: 1.125rem;
  --font-size-h6: 1rem;
}

@media (min-width: 700px) {
  :root {
    --grid-columns: 12;
    --grid-gutter: 1rem;
    --grid-margin: 1.25rem;
  }
}

[data-theme-section="dark"],
[data-theme-item="dark"] {
  --color-border: rgba(var(--color-light-rgb), 0.25);
  --color-text: rgba(var(--color-light-rgb), 0.7);
}

@media screen and (max-width: 540px) {
  :root {
    --section-padding: max(2.5em, 12vh);
    --container-padding: 5vw;
  }
}

/* ------------------------- Body -------------------------------------------------- */

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
li,
ul,
figure {
  padding: 0;
  margin: 0;
  list-style: none;
}

html {
  scroll-behavior: initial;
}

body {
  font-family: Matter;
  text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
  text-rendering: optimizeLegibility;
  font-synthesis: none;
  font-size: 1rem;
  line-height: 1.2;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  /* background-image: linear-gradient(229deg, #7e64b3 40% , #53d9e4 100%); */
  background: #fff;
  color: #111;
}

html,
body {
  width: 100%;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Selection */
::selection {
  background-color: var(--color-light);
  color: var(--color-dark);
  text-shadow: none;
}

::-moz-selection {
  background-color: var(--color-light);
  color: var(--color-dark);
  text-shadow: none;
}

/* General */
canvas,
img,
video,
picture,
figure {
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
  display: block;
}

svg {
  max-width: none;
  height: auto;
  box-sizing: border-box;
}

audio,
canvas,
iframe,
img,
svg,
video,
picture,
figure {
  vertical-align: middle;
}

/* ------------------------- Hide Scrollbar -------------------------------------------------- */

/* Chrome, Safari, Opera */
body::-webkit-scrollbar {
  display: none;
}

/* IE & Edge */
body {
  -ms-overflow-style: none;
}

/* Firefox */
html {
  scrollbar-width: none;
}

/* ------------------------- Typography -------------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
ul,
ol,
span,
strong,
em {
  padding: 0;
  margin: 0;
  font-style: normal;
  letter-spacing: normal;
}
h1,
h2 {
  font-weight: 800;
}

h3,
h4,
h5,
h6 {
  font-weight: 600;
}
h1 {
  font-family: Matter;
  font-size: 2.25rem;
  line-height: 1;
}
h1.big-text {
  font-size: 5rem;
  text-transform: uppercase;
}
h2 {
  font-family: Matter;
  font-size: 1.875rem;
  line-height: 1;
}

h3 {
  font-family: Matter;
  font-size: 1.5rem;
  line-height: 1;
}

h4 {
  font-family: Matter;
  font-size: 1.25rem;
  line-height: 1;
}

h5 {
  font-family: Matter;
  font-size: 1.125rem;
  line-height: 1;
}
h6 {
  font-size: 1rem;
}

[section="light"] {
  background: #fff;
}

:is([section="light"]) :is(h1, h2, h2, h3, h4, h5, p) {
  color: #000;
}

[section="dark"] {
  background: #000;
  background-image: radial-gradient(rgb(255 255 255 / 30%) 5%, transparent 0);
  background-size: 55px 55px;
}
:is([section="dark"]) :is(h1, h2, h2, h3, h4, h5, p) {
  color: #fff;
}

p {
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 1.2;
  color: #000;
  margin-bottom: 1.25rem;
}
p strong {
  font-weight: bold;
}
span {
  font-weight: inherit;
  color: inherit;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

:is([data-theme-section="dark"], [data-theme-item="dark"]) strong {
  color: var(--color-light);
}

a {
  /* color: unset; */
  text-decoration: none;
  transition: var(--animation-primary);
}

/* ------------------------- Styled - Typography -------------------------------------------------- */

.styled-content :is(h1, h2, h3, p, figure) {
  margin-bottom: 1em;
}

.styled-content :is(h1, h2, h3, p):last-child {
  margin-bottom: 0;
}

.styled-content p > a {
  position: relative;
  transition: color var(--animation-fast);
}

.styled-content p > a::after {
  content: "";
  position: absolute;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background-color: var(--color-primary);
  left: 0;
  transition: background-color var(--animation-fast);
}

:is([data-theme-section="dark"], [data-theme-item="dark"])
  .styled-content
  p
  > a::after {
  background-color: rgba(var(--color-light-rgb), 0.3);
}

.styled-content p > a:hover::after {
  background-color: var(--color-primary);
}

:is([data-theme-section="dark"], [data-theme-item="dark"])
  .styled-content
  p
  > a:hover::after {
  background-color: var(--color-primary);
}

.styled-content ul {
  display: flex;
  flex-direction: column;
  padding-left: 1em;
  padding-bottom: 1em;
}

.styled-content ul li {
  position: relative;
  color: var(--color-text);
}

:is([data-theme-section="dark"], [data-theme-item="dark"])
  .styled-content
  ul
  li {
  color: var(--color-text-light);
}
.styled-content ul li::before {
  content: "";
  left: -1em;
  top: 50%;
  transform: translateY(-50%);
  height: 0.3em;
  width: 0.3em;
  background: var(--color-primary);
  position: absolute;
  border-radius: 50%;
}

:is([data-theme-section="dark"], [data-theme-item="dark"])
  .styled-content
  ul
  li::before {
  background: var(--color-light);
}

/* ------------------------- Main Elements -------------------------------------------------- */

.section {
  /* padding-top: var(--section-padding);
   padding-bottom: var(--section-padding); */
  padding-top: 5.625rem;
  padding-bottom: 5.625rem;
  position: relative;
}

.section-wrap {
  position: relative;
}

.container {
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;

  /* max-width: 1280px;
    margin: 0 auto; */
}

.container.full {
  max-width: 100%;
  position: relative;
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.o-container {
  width: 100%;
  max-width: var(--container-width);
  margin-right: auto;
  margin-left: auto;
  position: relative;
  z-index: 9;
}

@media (min-width: 700px) {
  .o-container {
    padding-right: 30px;
    padding-left: 30px;
  }
}

.row {
  display: flex;
  width: 100%;
  position: relative;
}

.col {
  position: relative;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.overlay.overlay-dark {
  background-color: rgba(var(--color-black-rgb), 0.5);
}

img.overlay,
video.overlay {
  object-fit: cover;
}

picture.overlay img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stripe {
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color-border);
}

.no-select {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* ------------------------- Most Used -------------------------------------------------- */

/* Basic 2 Col Grid */

.row-grid {
  flex-wrap: wrap;
  gap: var(--row-padding) var(--gap);
  --gap: var(--col-padding);
  --columns: 2;
}

.row-grid > .col {
  width: calc(
    (99.95% / var(--columns)) -
      (var(--gap) * ((var(--columns) - 1) / var(--columns)))
  );
}

@media screen and (max-width: 1024px) {
  .row-grid {
    --columns: 1;
  }
}

/* ------------------------- Main -------------------------------------------------- */

main {
  overflow: hidden;
  background-color: #fff;
  box-sizing: border-box;
  position: relative;
  width: 100%;
  display: block;
}

main#home:before {
  /* position: absolute;
   top: 0;
   left: 0;
   height: 100%;
   width: 100%;
   content: "";
   background-image: url(../../assets/images/noise.png);
   background-size: 276px 276px;
   pointer-events: none;
   z-index: 1; */
}

[data-theme-page="dark"] main {
  background-color: var(--color-dark);
}

.main-wrap {
  will-change: transform;
  box-sizing: border-box;
  z-index: 0;
  position: relative;

  background: #000;
  background: #cdea67;
  /* background-image: linear-gradient(120deg, #F6F8FF 0%, #ebedee 100%); */
  background-image: linear-gradient(120deg, #f5f8ff 0%, #f6f8ff 100%);
  position: relative;
  z-index: 9;
  background: transparent;
}

footer {
  margin-bottom: -1px;
}

/* ------------------------- Split Words -------------------------------------------------- */

.split-words-wrap .single-word {
  position: relative;
  overflow: hidden;
  transform: translateY(0) rotate(0.001deg);
  margin: 0 0 -0.1em 0;
  line-height: 1.2;
}
#intro .c-heading .split-words-wrap .single-word {
  margin: -30px 0 -0.1em 0;
}
#intro-page .split-words-wrap .single-word {
  margin: -30px 0 -0.1em 0;
}
.split-words-wrap .single-word .single-word-inner {
  position: relative;
  transform: translateY(0) rotate(0.001deg);
}

/* ------------------------- Buttons -------------------------------------------------- */
.btn {
  display: inline-block;
  margin: 0 12px;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  color: #fff;
  background-color: #000;
  border: 1px solid #fff;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out;
  position: relative;
}

.btn:hover,
.btn:focus {
  color: #fff;
  background-color: #000;
}

/* 
.btn_inner:before {
   content: "";
   z-index: -1;
   position: absolute;
   inset: 0;
   border-radius: inherit;
   border: 1px solid var(--button-color-text);
   opacity: .3;
}

.btn_inner:after {
   content: "";
   z-index: -1;
   position: absolute;
   top: 0;
   left: 0;
   display: block;
   width: 100%;
   height: 100%;
   background-color: #fff;
   border-radius: 100%;
   opacity: 0;
   transform: translate(0, 100%);
   transition: opacity .45s cubic-bezier(0.215, 0.61, 0.355, 1),border-radius 0s .45s,transform 0s .45s;
}
*/
/* span.btn_inner {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   background-color: transparent;
   background-color: #000;
   border-radius: inherit;
   overflow: hidden;
   -webkit-mask-image: -webkit-radial-gradient(white, black);
   padding: 0.45rem 1rem;
}

span.btn_label {
   display: block;
   font-size: 1rem;
   text-transform: uppercase;
   white-space: nowrap;
} */
/*
.btn:hover .btn_inner:after {
   opacity: 1;
   border-radius: 0;
   transform: translate(0);
   transition: border-radius .45s cubic-bezier(0.215, 0.61, 0.355, 1),transform .45s cubic-bezier(0.215, 0.61, 0.355, 1);
} */

.btn:hover {
  top: 2px;
  left: 2px;
  transition: all 0.15s ease-in-out;
}

.btn:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  background: #fff;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  z-index: 0;
}

.btn:hover:before {
  top: 0;
  left: 0;
}

#h-about .btn_black:before {
  background: #000;
}

/* BTN 2 */

.btn2 {
  font-size: 1rem;
  line-height: 1.5;
  --line-height: 1.5rem;
  color: #fff;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition-property: all;
  background: transparent;
  background: #000;
  padding: 0.75rem 1rem;
  border: solid 0.0625rem rgb(255, 255, 255);
  /* border-radius: 0.25rem; */
  gap: 0.5rem;
  text-decoration: none;
  transition: all var(--animation-smooth);
  transition: all 0.15s ease-out;
  line-height: 1;
  text-transform: uppercase;
}
.btn2:hover {
  transform: translate(-0.25rem, -0.25rem);
  box-shadow: 0.25rem 0.25rem 0rem rgb(255, 255, 255);
  transition: all var(--animation-smooth);
  transition: all 0.15s ease-out;
  color: #fff;
}

.btn-big {
  font-size: 1.2rem;
  text-transform: uppercase;
}

.btn2.btn_black {
  color: #000;
  border: solid 0.0625rem rgb(0, 0, 0);
  background: #fff;
}
.btn2.btn_black:hover {
  color: #000;
  box-shadow: 0.25rem 0.25rem 0rem rgb(0, 0, 0);
}

span.btn_inner {
  display: flex;
  align-items: center;
}

span.btn_inner svg {
  margin-left: 6px;
}

/* ------------------------- Section - Styleguide -------------------------------------------------- */

.section-styleguide {
  overflow: hidden;
}

.section-styleguide .row {
  border-bottom: 1px solid var(--color-border);
  padding: var(--row-padding) 0;
}

.section-styleguide .row-btn {
  padding: 0;
}

.section-styleguide .row:last-child {
  border-bottom: 0px;
  padding-bottom: 0;
}

.section-styleguide .row-sub-title {
  padding-bottom: 0;
  border-bottom: 0px;
}

.section-styleguide .row-color-blocks {
  --gap: var(--col-padding-small);
  --columns: 4;
}

.section-styleguide .color-block {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/5;
  border-radius: var(--border-radius);
}

/* ------------------------- Styled Image -------------------------------------------------- */

.styled-image {
  display: flex;
  flex-direction: column;
  position: relative;
}

.styled-image img {
  border-radius: var(--border-radius);
}

.styled-image[data-ratio-status="true"] img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* ------------------------- Styled Form -------------------------------------------------- */

.styled-form {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.styled-form .form-col {
  width: 100%;
  padding-bottom: 1em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.styled-form .form-label {
  margin-bottom: 0.5em;
}

.styled-form .form-label span {
  font-size: 0.8em;
  text-transform: uppercase;
  font-weight: 500;
}

.styled-form abbr[title] {
  color: var(--color-alert-error);
  text-decoration: none;
  padding-left: 0.25em;
}

.styled-form input {
  display: block;
}

/* Text */

.styled-form input:is([type="text"], [type="email"], [type="tel"]) {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: 0;
  border-bottom: 1px solid transparent;
  padding: 1em 1em;
  width: 100%;
  border-radius: var(--border-radius);
}

/* Textarea */

.styled-form textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: 0;
  border-bottom: 1px solid transparent;
  resize: vertical;
  min-height: 10em;
  padding: 1em 1em;
  width: 100%;
  border-radius: var(--border-radius);
}

/* Checkbox */

.styled-form .form-col-checkbox {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}

.styled-form input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: 0;
  width: 1em;
  height: 1em;
  border: 1px solid var(--color-border);
  transition: background-color 0.3s ease-in-out;
  background-color: var(--color-light);
  margin-right: 0.5em;
  border-radius: calc(var(--border-radius) * 0.33);
}

.styled-form input[type="checkbox"]:focus {
  border-radius: calc(var(--border-radius) * 0.33);
}

.styled-form input[type="checkbox"]:checked {
  background-color: var(--color-dark);
}

.styled-form .form-col-checkbox label {
  font-weight: 400;
}

/* Error */

.styled-form :is(input, textarea).has-error {
  border-bottom: 1px solid var(--color-alert-error);
}

.styled-form input[type="checkbox"].has-error {
  border: 1px solid var(--color-alert-error);
}

.styled-form .has-error + .form-error-message {
  display: flex;
}

.form-error-message {
  width: 100%;
  display: none;
  color: var(--color-alert-error);
  font-size: 0.8em;
  font-weight: 500;
}

/* Focus */

.styled-form :is(input, textarea):focus {
  outline: 0;
  outline-width: 1px !important;
  outline-offset: 0px;
  border-bottom: 1px solid var(--color-dark);
}

.styled-form input[type="checkbox"]:focus {
  border: 1px solid var(--color-dark);
}

/* Submit */

.styled-form input[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: 0;
  padding: 1em;
  background: var(--color-primary);
  color: var(--color-light);
  cursor: pointer;
  border-radius: var(--border-radius);
}

/* Autofill */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: #000;
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
  box-shadow: 0 0 0px 1000px #fff inset;
  transition: background-color 5000s ease-in-out 0s;
}

/* --------------------------- GRID ------------------------------ */

.o-grid {
  display: grid;
  width: 100%;
}

.o-grid:is(ul, ol) {
  margin: 0;
  padding: 0;
  list-style: none;
}

.o-grid.-cols {
  grid-template-columns: repeat(var(--grid-columns), 1fr);
}

.o-grid.-col-12 {
  grid-template-columns: repeat(12, 1fr);
}

.o-grid.-col-8 {
  grid-template-columns: repeat(8, 1fr);
}

.o-grid.-col-4 {
  grid-template-columns: repeat(4, 1fr);
}

.o-grid.-col-3 {
  grid-template-columns: repeat(3, 1fr);
}

.o-grid.-col-2 {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 1000px) {
  .o-grid.-col-12\@from-medium {
    grid-template-columns: repeat(12, 1fr);
  }
}

.o-grid.-gutters {
  gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}
.o-grid.-col-4.-gutters {
  gap: 45px;
  -moz-column-gap: 45px;
  column-gap: 45px;
}
.o-grid.-full-height {
  height: 100%;
}

.o-grid.-top-items {
  align-items: start;
}

.o-grid.-right-items {
  justify-items: end;
}

.o-grid.-bottom-items {
  align-items: end;
}

.o-grid.-left-items {
  justify-items: start;
}

.o-grid.-center-items {
  align-items: center;
  justify-items: center;
}

.o-grid.-center-items-x {
  justify-items: center;
}

.o-grid.-center-items-y {
  align-items: center;
}

.o-grid_item {
  grid-column: 1 / -1;
}

.o-grid_item.-align-end {
  align-self: end;
}

/*-----------------------------------------------*/

@media (min-width: 1000px) {
  .u-gc-1\/4 {
    grid-column-start: 1;
    grid-column-end: 4;
  }
  .u-gc-1\/5 {
    grid-column-start: 1;
    grid-column-end: 5;
  }
  .u-gc-2\/6 {
    grid-column-start: 2;
    grid-column-end: 6;
  }
  .u-gc-2\/7 {
    grid-column-start: 2;
    grid-column-end: 7;
  }
  .u-gc-2\/8 {
    grid-column-start: 2;
    grid-column-end: 8;
  }
  .u-gc-1\/8 {
    grid-column-start: 1;
    grid-column-end: 8;
  }

  .u-gc-5\/9 {
    grid-column-start: 5;
    grid-column-end: 9;
  }
  .u-gc-5\/13 {
    grid-column-start: 5;
    grid-column-end: 13;
  }
  .u-gc-7\/11 {
    grid-column-start: 7;
    grid-column-end: 11;
  }
  .u-gc-8\/12 {
    grid-column-start: 8;
    grid-column-end: 12;
  }
  .u-gc-9\/13 {
    grid-column-start: 9;
    grid-column-end: 13;
  }
}

@media (min-width: 700px) {
  .u-gc-1\/2\@from-small {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}

@media (min-width: 700px) {
  .u-gc-1\/3\@from-small {
    grid-column-start: 1;
    grid-column-end: 3;
  }
}

@media (min-width: 700px) {
  .u-gc-1\/4\@from-small {
    grid-column-start: 1;
    grid-column-end: 4;
  }
}

@media (min-width: 700px) {
  .u-gc-1\/5\@from-small {
    grid-column-start: 1;
    grid-column-end: 5;
  }
}

@media (min-width: 700px) {
  .u-gc-1\/7\@from-small {
    grid-column-start: 1;
    grid-column-end: 7;
  }
}

@media (min-width: 700px) {
  .u-gc-1\/9\@from-small {
    grid-column-start: 1;
    grid-column-end: 9;
  }
}

@media (min-width: 700px) {
  .u-gc-1\/10\@from-small {
    grid-column-start: 1;
    grid-column-end: 10;
  }
}

@media (min-width: 700px) {
  .u-gc-3\/11\@from-small {
    grid-column-start: 3;
    grid-column-end: 11;
  }
}

@media (min-width: 700px) {
  .u-gc-3\/13\@from-small {
    grid-column-start: 3;
    grid-column-end: 13;
  }
}

@media (min-width: 700px) {
  .u-gc-4\/6\@from-small {
    grid-column-start: 4;
    grid-column-end: 6;
  }
}

@media (min-width: 700px) {
  .u-gc-5\/9\@from-small {
    grid-column-start: 5;
    grid-column-end: 9;
  }
}

@media (min-width: 700px) {
  .u-gc-5\/12\@from-small {
    grid-column-start: 5;
    grid-column-end: 12;
  }
}

@media (min-width: 700px) {
  .u-gc-5\/13\@from-small {
    grid-column-start: 5;
    grid-column-end: 13;
  }
}

@media (min-width: 700px) {
  .u-gc-7\/11\@from-small {
    grid-column-start: 7;
    grid-column-end: 11;
  }
}

@media (min-width: 700px) {
  .u-gc-7\/13\@from-small {
    grid-column-start: 7;
    grid-column-end: 13;
  }
}

@media (min-width: 700px) {
  .u-gc-9\/13\@from-small {
    grid-column-start: 9;
    grid-column-end: 13;
  }
}
@media (min-width: 1000px) {
  .u-gc-1\/3\@from-medium {
    grid-column-start: 1;
    grid-column-end: 3;
  }
}
@media (min-width: 1000px) {
  .u-gc-1\/4\@from-medium {
    grid-column-start: 1;
    grid-column-end: 4;
  }
}

@media (min-width: 1000px) {
  .u-gc-1\/6\@from-medium {
    grid-column-start: 1;
    grid-column-end: 6;
  }
}
@media (min-width: 1000px) {
  .u-gc-2\/5\@from-medium {
    grid-column-start: 2;
    grid-column-end: 5;
  }
}
@media (min-width: 1000px) {
  .u-gc-2\/7\@from-medium {
    grid-column-start: 2;
    grid-column-end: 7;
  }
}
@media (min-width: 1000px) {
  .u-gc-2\/11\@from-medium {
    grid-column-start: 2;
    grid-column-end: 11;
  }
}
@media (min-width: 1000px) {
  .u-gc-2\/12\@from-medium {
    grid-column-start: 2;
    grid-column-end: 12;
  }
}

@media (min-width: 1000px) {
  .u-gc-4\/8\@from-medium {
    grid-column-start: 4;
    grid-column-end: 8;
  }
}
@media (min-width: 1000px) {
  .u-gc-5\/8\@from-medium {
    grid-column-start: 5;
    grid-column-end: 8;
  }
}
@media (min-width: 1000px) {
  .u-gc-5\/9\@from-medium {
    grid-column-start: 5;
    grid-column-end: 9;
  }
}

@media (min-width: 1000px) {
  .u-gc-5\/12\@from-medium {
    grid-column-start: 5;
    grid-column-end: 12;
  }
}

@media (min-width: 1000px) {
  .u-gc-5\/13\@from-medium {
    grid-column-start: 5;
    grid-column-end: 13;
  }
}
@media (min-width: 1000px) {
  .u-gc-6\/8\@from-medium {
    grid-column-start: 6;
    grid-column-end: 8;
  }
}
@media (min-width: 1000px) {
  .u-gc-6\/9\@from-medium {
    grid-column-start: 6;
    grid-column-end: 9;
  }
}
@media (min-width: 1000px) {
  .u-gc-7\/12\@from-medium {
    grid-column-start: 7;
    grid-column-end: 12;
  }
}
@media (min-width: 1000px) {
  .u-gc-9\/12\@from-medium {
    grid-column-start: 9;
    grid-column-end: 12;
  }
}
@media (min-width: 1000px) {
  .u-gc-7\/13\@from-medium {
    grid-column-start: 7;
    grid-column-end: 13;
  }
}
@media (min-width: 1000px) {
  .u-gc-8\/11\@from-medium {
    grid-column-start: 8;
    grid-column-end: 11;
  }
}
@media (min-width: 1000px) {
  .u-gc-8\/13\@from-medium {
    grid-column-start: 8;
    grid-column-end: 13;
  }
}

@media (min-width: 1000px) {
  .u-gc-9\/13\@from-medium {
    grid-column-start: 9;
    grid-column-end: 13;
  }
}

@media (min-width: 1200px) {
  .u-gc-1\/6\@from-large {
    grid-column-start: 1;
    grid-column-end: 6;
  }
}

@media (min-width: 1200px) {
  .u-gc-1\/9\@from-large {
    grid-column-start: 1;
    grid-column-end: 9;
  }
}

@media (min-width: 1200px) {
  .u-gc-6\/9\@from-large {
    grid-column-start: 6;
    grid-column-end: 9;
  }
}

/* -------------------- CABECERAS --------------- */

.c-heading {
  margin-bottom: 1.875rem;
}
.type_title_1 {
  font-size: 4.25rem;
  text-transform: uppercase;
  font-family: Matter;
  font-weight: 200;
  line-height: 0.9;
}
.type_title_borded {
  border: 1px solid rgb(0 0 0 / 30%);
  padding: 30px;
}
.c-sub {
  font-family: Matter;
  font-size: 23px;
  color: #fff;
  font-weight: 400;
  line-height: 0;
}
.c-heading.-h1 {
  font-size: var(--font-size-h1);
  font-family: Matter;
  font-size: 2.25rem;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}

.c-heading.-h2 {
  font-size: var(--font-size-h2);
  font-size: 2.25rem;
  line-height: 1;
}

.c-heading.-h3 {
  font-size: var(--font-size-h3);
  font-size: 2.25rem;
  line-height: 1;
}

.c-heading.-h4 {
  font-size: var(--font-size-h4);
  font-size: 2.25rem;
  line-height: 1;
}

.c-heading.-h5 {
  font-size: var(--font-size-h5);
  font-size: 2.25rem;
  line-height: 1;
}

.c-heading.-h6 {
  font-size: var(--font-size-h6);
  font-size: 2.25rem;
  line-height: 1;
}

.c-button {
  padding: 0.9375rem 1.25rem;
  background-color: #d3d3d3;
}

.c-button:focus,
.c-button:hover {
  background-color: #a9a9a9;
}

/* --------------------------- Wysiwyg ------------------------------ */

.c-wysiwyg p {
  margin-bottom: 1.25rem;
}

@media (max-width: 699px) {
  .c-wysiwyg {
    font-size: 14px;
  }
}

.c-wysiwyg > :first-child {
  margin-top: 0;
}

.c-wysiwyg > :last-child {
  margin-bottom: 0;
}

.c-wysiwyg.-text-indent :first-child {
  text-indent: 24.72222vw;
}

.c-wysiwyg strong,
.c-wysiwyg b {
  font-weight: 700;
}

.c-wysiwyg a:not(.c-button) {
  color: currentColor;
  text-decoration: underline;
  font-weight: 700;
}

.c-wysiwyg a:not(.c-button):hover {
  opacity: 0.8;
}

.c-wysiwyg.-big-text p {
  font-weight: inherit;
  position: relative;
  line-height: 1.1;
  margin-bottom: 1.875rem;
  letter-spacing: -0.015em;
  font-size: clamp(2rem, 3.19444vw, 2.875rem);
  margin-bottom: 3.75rem;
}

.c-wysiwyg.-big-text :first-child {
  margin-top: 0;
}

.c-wysiwyg.-big-text :last-child {
  margin-bottom: 0;
}

.c-wysiwyg.-medium-text p {
  letter-spacing: -0.015em;
  line-height: 1.4;
  margin-bottom: 3.75rem;
}

@media (min-width: 1000px) {
  .c-wysiwyg.-medium-text p {
    font-size: 2rem;
  }
}

@media (min-width: 700px) and (max-width: 999px) {
  .c-wysiwyg.-medium-text p {
    font-size: 28px;
  }
}

@media (max-width: 699px) {
  .c-wysiwyg.-medium-text p {
    font-size: 1.5rem;
  }
}

.c-wysiwyg.-medium-text :first-child {
  margin-top: 0;
}

.c-wysiwyg.-medium-text :last-child {
  margin-bottom: 0;
}

.c-wysiwyg.-regular-text p {
  font-weight: inherit;
  position: relative;
  line-height: 1.2;
  letter-spacing: -0.035em;
  line-height: 1.4;
  margin-bottom: 2.5rem;
}

.c-wysiwyg.-regular-text p.-bold {
  font-weight: 700;
}

@media (min-width: 1000px) {
  .c-wysiwyg.-regular-text p {
    font-size: 1.375rem;
  }
}

@media (max-width: 999px) {
  .c-wysiwyg.-regular-text p {
    font-size: 1.25rem;
  }
}

.c-wysiwyg.-regular-text :first-child {
  margin-top: 0;
}

.c-wysiwyg.-regular-text :last-child {
  margin-bottom: 0;
}

.c-wysiwyg h1,
.c-wysiwyg h2,
.c-wysiwyg h3,
.c-wysiwyg h4,
.c-wysiwyg h5,
.c-wysiwyg h6 {
  margin: 2.5em 0 1em 0;
}

.c-wysiwyg h1 {
  letter-spacing: -0.015em;
  font-size: clamp(2rem, 3.19444vw, 2.875rem);
}

.c-wysiwyg h2 {
  letter-spacing: -0.015em;
}

@media (min-width: 1000px) {
  .c-wysiwyg h2 {
    font-size: 2rem;
  }
}

@media (min-width: 700px) and (max-width: 999px) {
  .c-wysiwyg h2 {
    font-size: 28px;
  }
}

@media (max-width: 699px) {
  .c-wysiwyg h2 {
    font-size: 1.5rem;
  }
}

@media (min-width: 1000px) {
  .c-wysiwyg h3 {
    font-size: 1.5625rem;
  }
}

@media (min-width: 700px) and (max-width: 999px) {
  .c-wysiwyg h3 {
    font-size: 20px;
  }
}

@media (max-width: 699px) {
  .c-wysiwyg h3 {
    font-size: 1rem;
  }
}

.c-wysiwyg h4 {
  font-weight: 700;
}

@media (min-width: 1000px) {
  .c-wysiwyg h4 {
    font-size: 1.25rem;
  }
}

@media (max-width: 999px) {
  .c-wysiwyg h4 {
    font-size: 1.125rem;
  }
}

@media (min-width: 1000px) {
  .c-wysiwyg h5 {
    font-size: 1.25rem;
  }
}

@media (max-width: 999px) {
  .c-wysiwyg h5 {
    font-size: 1.125rem;
  }
}

.c-wysiwyg h6 {
  font-size: 1.125rem;
}

.c-wysiwyg table {
  width: 100%;
  margin: var(--spacing-large) 0;
}

.c-wysiwyg table td {
  font-weight: inherit;
  position: relative;
  line-height: 1.2;
  font-size: 1rem;
  padding: 0.625rem 0.9375rem;
}

.c-wysiwyg table td.-bold {
  font-weight: 700;
}

@media (max-width: 699px) {
  .c-wysiwyg table td {
    font-size: 14px;
  }
}

.c-wysiwyg ol,
.c-wysiwyg ul {
  list-style: none;
  margin-left: 0;
  margin-top: var(--spacing-small);
  margin-bottom: var(--spacing-small);
}

.c-wysiwyg ol li:not(:last-child),
.c-wysiwyg ul li:not(:last-child) {
  margin-bottom: 0.3125rem;
}

.c-wysiwyg ul li {
  position: relative;
  padding-left: 1.2em;
}

.c-wysiwyg ul li + li {
  margin-top: 0;
}

.c-wysiwyg ul li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "â€¢";
  color: var(--color-primary);
}

.c-wysiwyg ol {
  counter-reset: counter;
}

.c-wysiwyg ol li {
  counter-increment: counter;
  position: relative;
  padding-left: 1.2em;
}

.c-wysiwyg ol li + li {
  margin-top: 0;
}

.c-wysiwyg ol li::before {
  content: counter(counter) ". ";
  color: var(--color-primary);
  position: absolute;
  top: 0;
  left: 0;
}

.c-wysiwyg iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  margin-top: var(--spacing-small);
  margin-bottom: var(--spacing-small);
}

.c-wysiwyg img {
  max-width: 100%;
  height: auto;
  margin-top: var(--spacing-small);
  margin-bottom: var(--spacing-small);
}

.c-wysiwyg blockquote {
  padding: 0;
  margin-left: auto;
  margin-right: auto;
  margin-top: var(--spacing-small);
  margin-bottom: var(--spacing-small);
  quotes: "â€œ" "â€" "â€™" "â€™";
}

.c-wysiwyg blockquote * {
  width: 100%;
  font-weight: inherit;
  position: relative;
  line-height: 1.1;
  margin-bottom: 1.875rem;
  letter-spacing: -0.015em;
  font-size: clamp(2rem, 3.19444vw, 2.875rem);
}

.c-wysiwyg blockquote p {
  padding: 0;
  max-width: 100%;
}

.c-wysiwyg blockquote p::before,
.c-wysiwyg blockquote p::after {
  display: inline-block;
}

.c-wysiwyg blockquote p::before {
  padding-right: 5px;
  content: "â€œ";
}

.c-wysiwyg blockquote p::after {
  padding-left: 5px;
  content: "â€";
}

/*---------------------------------------------------------------------*/

/* ------------------------- Page Transition -------------------------------------------------- */

.no-scroll-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 900;
  display: none;
}

.loading-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 800;
  pointer-events: none;
  background: transparent;
}

.loading-screen {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  will-change: top;
  background: rgba(var(--color-lc), 1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading-screen::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transform: translateY(-100%);
  background: linear-gradient(
    to top,
    rgba(var(--color-lc), 1) 0%,
    rgba(var(--color-lc), 0.738) 19%,
    rgba(var(--color-lc), 0.541) 34%,
    rgba(var(--color-lc), 0.382) 47%,
    rgba(var(--color-lc), 0.278) 56.5%,
    rgba(var(--color-lc), 0.194) 65%,
    rgba(var(--color-lc), 0.126) 73%,
    rgba(var(--color-lc), 0.075) 80.2%,
    rgba(var(--color-lc), 0.042) 86.1%,
    rgba(var(--color-lc), 0.021) 91%,
    rgba(var(--color-lc), 0.008) 95.2%,
    rgba(var(--color-lc), 0.002) 98.2%,
    rgba(var(--color-lc), 0) 100%
  );
  /* background: linear-gradient(to top, rgb(155, 250, 0) 0%, #fff0 100%); */
}

.loading-screen::after {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transform: translateY(100%);
  background: linear-gradient(
    to bottom,
    rgba(var(--color-lc), 1) 0%,
    rgba(var(--color-lc), 0.738) 19%,
    rgba(var(--color-lc), 0.541) 34%,
    rgba(var(--color-lc), 0.382) 47%,
    rgba(var(--color-lc), 0.278) 56.5%,
    rgba(var(--color-lc), 0.194) 65%,
    rgba(var(--color-lc), 0.126) 73%,
    rgba(var(--color-lc), 0.075) 80.2%,
    rgba(var(--color-lc), 0.042) 86.1%,
    rgba(var(--color-lc), 0.021) 91%,
    rgba(var(--color-lc), 0.008) 95.2%,
    rgba(var(--color-lc), 0.002) 98.2%,
    rgba(var(--color-lc), 0) 100%
  );
  /* background: linear-gradient(to bottom, rgb(155, 250, 0) 0%, #fff0 100%); */
}

/* Animation long text */

.loading-container .gh-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.loading-container .gh-text h3 {
  display: block;
}

.loading-container .gh-text h3 .part {
  display: flex;
  gap: 0.2em;
  font-size: min(6vw, 0.66em);
}

.loading-container .gh-text .serif {
  font-family: "GH Serif", sans-serif;
  font-weight: 400;
}

.loading-container .gh-text .span-outer {
  color: var(--color-dark);
  overflow: hidden;
  position: relative;
  display: block;
}

.loading-container .gh-text .span-inner {
  position: relative;
  display: block;
  opacity: 0;
}

@media screen and (max-width: 1024px) {
  #awwwards {
    opacity: 0;
  }
}

/* Animation Logo */

.loading-container .gh-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.loading-container .gh-logo-wrapper {
  position: relative;
  display: block;
  overflow: hidden;
}

.loading-container svg {
  width: 8vw;
  transform: translateY(110%) rotate(10deg);
}

@media screen and (max-width: 1024px) {
  .no-scroll-overlay {
    height: calc(var(--vh, 1vh) * 100);
  }

  .loading-container {
    height: calc(var(--vh, 1vh) * 100);
  }
}

@media screen and (max-width: 720px) {
  .loading-container svg {
    width: 20vw;
  }
}

/* ------------------------- ANIMATION -------------------------------------------------- */

.u-anim {
  opacity: 0;
  transform: translateY(84px);
  transition: opacity 0.9s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 0.9s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.is-inview .u-anim {
  opacity: 1;
  transform: translateY(0);
}

.u-anim.-delay-1 {
  opacity: 0;
  transform: translateY(85px);
}

.is-inview .u-anim.-delay-1 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.u-anim.-delay-2 {
  opacity: 0;
  transform: translateY(85px);
}

.is-inview .u-anim.-delay-2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.u-anim.-delay-3 {
  opacity: 0;
  transform: translateY(85px);
}

.is-inview .u-anim.-delay-3 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.u-anim.-delay-4 {
  opacity: 0;
  transform: translateY(25px);
}

.is-inview .u-anim.-delay-4 {
  opacity: 1;
  transform: none;
  transition-delay: 0.4s;
}

.u-anim.-delay-5 {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.is-inview .u-anim.-delay-5 {
  opacity: 1;
  transform: none;
  transition-delay: 0.5s;
}

.u-anim.-delay-6 {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.is-inview .u-anim.-delay-6 {
  opacity: 1;
  transform: none;
  transition-delay: 0.6s;
}

.u-anim.-delay-7 {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.is-inview .u-anim.-delay-7 {
  opacity: 1;
  transform: none;
  transition-delay: 0.7s;
}

.u-anim.-delay-8 {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.is-inview .u-anim.-delay-8 {
  opacity: 1;
  transform: none;
  transition-delay: 0.8s;
}

.u-anim.-delay-9 {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.is-inview .u-anim.-delay-9 {
  opacity: 1;
  transform: none;
  transition-delay: 0.9s;
}

.u-anim.-delay-10 {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.is-inview .u-anim.-delay-10 {
  opacity: 1;
  transform: none;
  transition-delay: 1s;
}

.u-anim.-delay-11 {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.is-inview .u-anim.-delay-11 {
  opacity: 1;
  transform: none;
  transition-delay: 1.1s;
}

.u-anim.-delay-12 {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.is-inview .u-anim.-delay-12 {
  opacity: 1;
  transform: none;
  transition-delay: 1.2s;
}

.u-anim.-delay-13 {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.is-inview .u-anim.-delay-13 {
  opacity: 1;
  transform: none;
  transition-delay: 1.3s;
}

.u-anim.-delay-14 {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.is-inview .u-anim.-delay-14 {
  opacity: 1;
  transform: none;
  transition-delay: 1.4s;
}

.u-anim.-delay-15 {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.is-inview .u-anim.-delay-15 {
  opacity: 1;
  transform: none;
  transition-delay: 1.5s;
}

.u-anim.-delay-16 {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.is-inview .u-anim.-delay-16 {
  opacity: 1;
  transform: none;
  transition-delay: 1.6s;
}

.u-anim.-delay-17 {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.is-inview .u-anim.-delay-17 {
  opacity: 1;
  transform: none;
  transition-delay: 1.7s;
}

.u-anim.-delay-18 {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.is-inview .u-anim.-delay-18 {
  opacity: 1;
  transform: none;
  transition-delay: 1.8s;
}

.u-anim.-delay-19 {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.is-inview .u-anim.-delay-19 {
  opacity: 1;
  transform: none;
  transition-delay: 1.9s;
}

.u-anim.-delay-20 {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.is-inview .u-anim.-delay-20 {
  opacity: 1;
  transform: none;
  transition-delay: 2s;
}
