@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");

/* ------------------------------------------------*/
/* Fonts End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Variables Start */
/* ------------------------------------------------*/
:root {
  --_size: 1.6rem;
  --_font-default: "Inter", serif;
  --_font-accent: "Inter", serif;
  --_radius: 2rem;
  --_radius-s: 1rem;
  --_animspeed-fast: 0.1s;
  --_animspeed-medium: 0.3s;
  --_animspeed-slow: 0.6s;
  --_animbezier: cubic-bezier(0.23, 0.65, 0.74, 1.09);
  /* light color scheme */
  --base--light: #ffffff;
  --base-rgb--light: 186, 190, 200;
  --base-shade--light: #989ba3;
  --base-tint--light: #d8dde7;
  --stroke-controls--light: #2c2e34;
  --stroke-elements--light: #8f93a1;
  --font-weight-base--light: 400;
  --font-weight-medium--light: 600;
  --t-bright--light: #151617;
  --t-medium--light: #44474a;
  --t-muted--light: #797d83;
  --t-opp-bright--light: #f2f5fc;
  --t-opp-medium--light: #aeb5c5;
  --t-opp-muted--light: #3e4045;
  --neutral-bright--light: #000000;
  /* dark color scheme */
  --base--dark: #ffffff;
  --base-rgb--dark: 20, 20, 20;
  --base-shade--dark: #000000;
  --base-tint--dark: #242424;
  --stroke-controls--dark: #f2f5fc;
  --stroke-elements--dark: #535762;
  --font-weight-base--dark: 300;
  --font-weight-medium--dark: 500;
  --t-bright--dark: #f2f5fc;
  --t-medium--dark: #aeb5c5;
  --t-muted--dark: #505258;
  --t-opp-bright--dark: #151617;
  --t-opp-medium--dark: #313437;
  --t-opp-muted--dark: #797d83;
  --neutral-bright--dark: #ffffff;
  /* permanent colors */
  --per-base: #141414;
  --t-per-bright-light: #f2f5fc;
  --t-per-medium-light: #aeb5c5;
  --t-per-muted-light: #3e4045;
  --t-per-bright-dark: #151617;
  --t-per-medium-dark: #313437;
  --t-per-muted-dark: #797d83;
  --per-stroke-controls: #f2f5fc;
  --per-stroke-elements: #8f93a1;
  /* neutral colors */
  --neutral-white: #ffffff;
  --neutral-black: #000000;
  --neutral-gray: #878787;
  --neutral-gray-dark: #404040;
}

/* ------------------------- Osmo [https://osmo.supply/] ------------------------- */
/* ------------------------- Variables ------------------------------------------- */

:root {
  --color-light: var(--color-neutral-200);
  --color-dark: var(--color-neutral-800);
  --color-primary: #ff4c24;
  --color-neutral-100: #ffffff;
  --color-neutral-200: #efeeec;
  --color-neutral-300: #e3e1de;
  --color-neutral-400: #cbc8c5;
  --color-neutral-500: #818180;
  --color-neutral-600: #2c2c2c;
  --color-neutral-700: #1f1f1f;
  --color-neutral-800: #131313;
  --color-neutral-900: #000000;
  --color-white: var(--color-neutral-100);
  --color-black: var(--color-neutral-900);
  --color-error: var(--color-primary);
  --color-success: #0ba954;
  --cubic-default: cubic-bezier(0.65, 0.05, 0, 1);
  --duration-default: 0.735s;
  --animation-default: var(--duration-default) var(--cubic-default);
  --gap: 2em;
  --section-padding: calc(3.5em + (var(--gap) * 2));
  --container-padding: 2em;
  --header-height: calc(1.5em + (var(--gap) * 2));
  --footer-height: calc(2.785em + (var(--gap) * 2));
  --size-unit: 16; /* body font-size in design - no px */
  --size-container-ideal: 1440; /* screen-size in design - no px */
  --size-container-min: 992px;
  --size-container-max: 1920px;
  --size-container: clamp(
    var(--size-container-min),
    100vw,
    var(--size-container-max)
  );
  --size-font: calc(
    var(--size-container) / (var(--size-container-ideal) / var(--size-unit))
  );
}

/* Tablet */
@media screen and (max-width: 991px) {
  :root {
    --container-padding: 1.5em;
  }
}

/* Mobile Landscape */
@media screen and (max-width: 767px) {
  :root {
    --container-padding: 1em;
  }
}

/* Mobile Portrait */
@media screen and (max-width: 479px) {
  :root {
  }
}

/* ------------------------- Scaling System by Osmo [https://osmo.supply/] -------------------------  */

/* Tablet */
@media screen and (max-width: 991px) {
  :root {
    --size-container-ideal: 834; /* screen-size in design - no px */
    --size-container-min: 768px;
    --size-container-max: 991px;
  }
}

/* Mobile Landscape */
@media screen and (max-width: 767px) {
  :root {
    --size-container-ideal: 390; /* screen-size in design - no px */
    --size-container-min: 480px;
    --size-container-max: 767px;
  }
}

/* Mobile Portrait */
@media screen and (max-width: 479px) {
  :root {
    --size-container-ideal: 390; /* screen-size in design - no px */
    --size-container-min: 320px;
    --size-container-max: 479px;
  }
}

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

body ::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
} /* Chrome, Safari, Opera */
body {
  -ms-overflow-style: none;
} /* IE & Edge */
html {
  scrollbar-width: none;
} /* Firefox */

/* ------------------------- Reset -------------------------------------------------- */

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: initial;
}

html,
body {
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

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

/* defaults */
@media (prefers-color-scheme: light) {
  :root {
    --base: var(--base--light);
    --base-rgb: var(--base-rgb--light);
    --base-shade: var(--base-shade--light);
    --base-tint: var(--base-tint--light);
    --stroke-controls: var(--stroke-controls--light);
    --stroke-elements: var(--stroke-elements--light);
    --font-weight-base: var(--font-weight-base--light);
    --font-weight-medium: var(--font-weight-medium--light);
    --t-bright: var(--t-bright--light);
    --t-medium: #fe5f55;
    --t-muted: var(--t-muted--light);
    --t-opp-bright: var(--t-opp-bright--light);
    --t-opp-medium: var(--t-opp-medium--light);
    --t-opp-muted: var(--t-opp-muted--light);
    --neutral-bright: var(--neutral-bright--light);
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --base: var(--base--dark);
    --base-rgb: var(--base-rgb--dark);
    --base-shade: var(--base-shade--dark);
    --base-tint: var(--base-tint--dark);
    --stroke-controls: var(--stroke-controls--dark);
    --stroke-elements: var(--stroke-elements--dark);
    --font-weight-base: var(--font-weight-base--dark);
    --font-weight-medium: var(--font-weight-medium--dark);
    --t-bright: var(--t-bright--dark);
    --t-medium: var(--t-medium--dark);
    --t-muted: var(--t-muted--dark);
    --t-opp-bright: var(--t-opp-bright--dark);
    --t-opp-medium: var(--t-opp-medium--dark);
    --t-opp-muted: var(--t-opp-muted--dark);
    --neutral-bright: var(--neutral-bright--dark);
  }
}

[color-scheme="light"] {
  --base: var(--base--light);
  --base-rgb: var(--base-rgb--light);
  --base-shade: var(--base-shade--light);
  --base-tint: var(--base-tint--light);
  --stroke-controls: var(--stroke-controls--light);
  --stroke-elements: var(--stroke-elements--light);
  --font-weight-base: var(--font-weight-base--light);
  --font-weight-medium: var(--font-weight-medium--light);
  --t-bright: var(--t-bright--light);
  --t-medium: #fe5f55;
  --t-muted: var(--t-muted--light);
  --t-opp-bright: var(--t-opp-bright--light);
  --t-opp-medium: var(--t-opp-medium--light);
  --t-opp-muted: var(--t-opp-muted--light);
  --neutral-bright: var(--neutral-bright--light);
}

[color-scheme="dark"] {
  --base: var(--base--dark);
  --base-rgb: var(--base-rgb--dark);
  --base-shade: var(--base-shade--dark);
  --base-tint: var(--base-tint--dark);
  --stroke-controls: var(--stroke-controls--dark);
  --stroke-elements: var(--stroke-elements--dark);
  --font-weight-base: var(--font-weight-base--dark);
  --font-weight-medium: var(--font-weight-medium--dark);
  --t-bright: var(--t-bright--dark);
  --t-medium: var(--t-medium--dark);
  --t-muted: var(--t-muted--dark);
  --t-opp-bright: var(--t-opp-bright--dark);
  --t-opp-medium: var(--t-opp-medium--dark);
  --t-opp-muted: var(--t-opp-muted--dark);
  --neutral-bright: var(--neutral-bright--dark);
}

/* ------------------------------------------------*/
/* Variables End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Template Backgrounds Start */
/* ------------------------------------------------*/
.main-image-1 {
  background-image: url("https://dummyimage.com/1400x1000/414141/636363");
}

.main-image-2 {
  background-image: url("https://dummyimage.com/1920x1080/414141/636363");
}

.about-image-1 {
  background-image: url("https://dummyimage.com/1400x1000/4d4d4d/636363");
}

.marquee-image-single-1 {
  background-image: url("https://dummyimage.com/1000x1300/4d4d4d/636363");
}

.marquee-image-single-2 {
  background-image: url("https://dummyimage.com/1000x1300/4d4d4d/636363");
}

.marquee-image-single-3 {
  background-image: url("https://dummyimage.com/1000x1300/4d4d4d/636363");
}

.marquee-image-single-4 {
  background-image: url("https://dummyimage.com/1000x1300/4d4d4d/636363");
}

.marquee-image-single-5 {
  background-image: url("https://dummyimage.com/1000x1300/4d4d4d/636363");
}

.marquee-image-single-6 {
  background-image: url("https://dummyimage.com/1000x1300/4d4d4d/636363");
}

.portfolio-item-1 {
  background-image: url("https://dummyimage.com/1920x1080/686868/737373");
}

.portfolio-item-2 {
  background-image: url("https://dummyimage.com/1920x1080/414141/636363");
}

.portfolio-item-3 {
  background-image: url("https://dummyimage.com/1920x1080/686868/737373");
}

.portfolio-item-4 {
  background-image: url("https://dummyimage.com/1920x1080/414141/636363");
}

.portfolio-item-5 {
  background-image: url("../img/sub/Yatas01.jpg");
}

.portfolio-item-6 {
  background-image: url("https://dummyimage.com/1600x1200/414141/636363");
}

.portfolio-item-7 {
  background-image: url("https://dummyimage.com/1600x1200/686868/737373");
}

.portfolio-item-8 {
  background-image: url("https://dummyimage.com/1600x1200/414141/636363");
}

.project-image-bg-1 {
  background-image: url("https://dummyimage.com/1920x1280/4d4d4d/636363");
}

.project-image-bg-2 {
  background-image: url("https://dummyimage.com/1920x1080/4d4d4d/636363");
}

.project-image-bg-3 {
  background-image: url("https://dummyimage.com/1920x1080/4d4d4d/636363");
}

/* ------------------------------------------------*/
/* Template Backgrounds End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Basic Styles Start */
/* ------------------------------------------------*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: clip;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

button:active,
button:focus {
  outline: none !important;
}

button::-moz-focus-inner {
  border: 0 !important;
}

input::-moz-focus-inner {
  border: 0 !important;
}

a:focus,
button:focus,
input:focus,
textarea:focus {
  -webkit-tap-highlight-color: transparent;
}

input,
textarea,
button,
select,
a {
  -webkit-tap-highlight-color: transparent;
}

::-moz-selection {
  background-color: var(--base-tint);
  color: var(--t-medium);
  text-shadow: none;
}

::selection {
  background-color: var(--base-tint);
  color: var(--t-medium);
  text-shadow: none;
}

::-webkit-scrollbar {
  display: none;
  width: 0;
  background: var(--base-shade);
}

@media only screen and (min-width: 768px) {
  ::-webkit-scrollbar {
    display: block;
  }
}

::-webkit-scrollbar-track {
  background-color: var(--base-shade);
}

::-webkit-scrollbar-thumb {
  background-color: var(--base-tint);
  border-radius: var(--_radius-s);
}

html {
  width: 100%;
  height: 100%;
  font-family: sans-serif;
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  position: relative;
  width: 100%;
  min-width: 360px;
  overflow-x: unset !important;
  font: normal 400 var(--_size) / 1.4 var(--_font-default);
  text-rendering: optimizeLegibility;
  background-color: var(--base);
  color: var(--t-medium);
}

section {
  position: relative;
  min-width: 360px;
}

a {
  text-decoration: none;
  outline: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-transition: all var(--_animspeed-medium) var(--_animbezier);
  -moz-transition: all var(--_animspeed-medium) var(--_animbezier);
  transition: all var(--_animspeed-medium) var(--_animbezier);
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.overflow-hidden {
  overflow: hidden !important;
}

.components {
  position: relative;
}

.components__item {
  position: relative;
  padding: 8rem 10%;
  border-bottom: 1px solid var(--stroke-elements);
}

.components__caption {
  display: block;
  font: normal 400 1.3rem/1 var(--_font-default);
  color: var(--t-medium);
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  margin-bottom: 2rem;
}

.spacer {
  height: 300px;
}

/* ------------------------------------------------*/
/* Basic Styles End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Animations - Transitions Start */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Animations - Transitions End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Animations - Backgrounds Start */
/* ------------------------------------------------*/
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
}

.video {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-position: center center;
  -moz-background-size: contain;
  background-size: contain;
  -o-object-fit: cover;
  object-fit: cover;
}

/* ------------------------------------------------*/
/* Animations - Backgrounds End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Elements - Typography Start */
/* ------------------------------------------------*/
h1 {
  font: normal 400 5.6rem var(--_font-accent);
  color: var(--t-bright);
}

@media only screen and (min-width: 768px) {
  h1 {
    font-size: 9rem;
  }
}

@media only screen and (min-width: 1200px) {
  h1 {
    font-size: 11rem;
  }
}

@media only screen and (min-width: 1400px) {
  h1 {
    font-size: 12.6rem;
  }
}

@media only screen and (min-width: 1600px) {
  h1 {
    font-size: 16rem;
  }
}

@media only screen and (min-width: 992px) {
  .headline-80-desktop .headline__title {
    max-width: 67rem;
  }
}

@media only screen and (min-width: 1200px) {
  .headline-80-desktop .headline__title {
    max-width: none;
  }
}

.headline__subtitle.space-top {
  margin-top: 4.6rem;
}

.headline__subtitle.space-bottom {
  margin-bottom: 3.8rem;
}

@media only screen and (min-width: 768px) {
  .headline__subtitle.space-top {
    margin-top: 5.7rem;
  }

  .headline__subtitle.space-bottom {
    margin-bottom: 4.2rem;
  }
}

@media only screen and (min-width: 992px) {
  .headline__subtitle.space-top {
    margin-top: 6.4rem;
  }

  .headline__subtitle.space-bottom {
    margin-bottom: 4.9rem;
  }
}

@media only screen and (min-width: 1200px) {
  .headline__subtitle.space-top {
    margin-top: 5.8rem;
  }

  .headline__subtitle.space-bottom {
    margin-bottom: 4rem;
  }
}

@media only screen and (min-width: 1400px) {
  .headline__subtitle.space-top {
    margin-top: 6.3rem;
  }

  .headline__subtitle.space-bottom {
    margin-bottom: 5.7rem;
  }
}

@media only screen and (min-width: 1600px) {
  .headline__subtitle.space-top {
    margin-top: 6.8rem;
  }

  .headline__subtitle.space-bottom {
    margin-bottom: 4.1rem;
  }
}

h2 {
  font: normal 400 4.6rem var(--_font-accent);
  color: var(--t-bright);
}

@media only screen and (min-width: 768px) {
  h2 {
    font-size: 8rem;
  }
}

@media only screen and (min-width: 1200px) {
  h2 {
    font-size: 9rem;
  }
}

@media only screen and (min-width: 1400px) {
  h2 {
    font-size: 10rem;
  }
}

@media only screen and (min-width: 1600px) {
  h2 {
    font-size: 14rem;
  }
}

.h2__text {
  margin-top: 4.5rem;
}

@media only screen and (min-width: 768px) {
  .h2__text {
    margin-top: 5.7rem;
    max-width: 67rem;
  }
}

@media only screen and (min-width: 992px) {
  .h2__text {
    margin-top: 6.4rem;
  }
}

@media only screen and (min-width: 1200px) {
  .h2__text {
    margin-top: 5.9rem;
    max-width: 78rem;
  }

  .h2__text.text-half {
    max-width: 54%;
  }

  .h2__text.text-twothirds {
    max-width: 67%;
  }
}

@media only screen and (min-width: 1400px) {
  .h2__text {
    margin-top: 6.6rem;
  }

  .h2__text.text-half {
    max-width: 50%;
  }
}

@media only screen and (min-width: 1600px) {
  .h2__text {
    margin-top: 6.9rem;
  }

  .h2__text.text-half {
    max-width: 45%;
  }
}

h3 {
  font: normal 400 3.4rem var(--_font-accent);
  color: var(--t-bright);
}

h3.dark {
  color: var(--t-per-bright-dark);
  font-weight: 400;
}

h3.light {
  color: var(--t-per-bright-light);
  font-weight: 300;
}

@media only screen and (min-width: 768px) {
  h3 {
    font-size: 4.4rem;
  }
}

@media only screen and (min-width: 1200px) {
  h3 {
    font-size: 5rem;
  }
}

@media only screen and (min-width: 1400px) {
  h3 {
    font-size: 5.6rem;
  }
}

@media only screen and (min-width: 1600px) {
  h3 {
    font-size: 6.4rem;
  }
}

h4 {
  font: normal 400 2.6rem var(--_font-accent);
  color: var(--t-bright);
}

@media only screen and (min-width: 1400px) {
  h4 {
    font-size: 3rem;
  }
}

@media only screen and (min-width: 1600px) {
  h4 {
    font-size: 3.6rem;
  }
}

h5 {
  font: normal 500 2.2rem var(--_font-accent);
  color: var(--t-bright);
}

h6 {
  font: normal var(--font-weight-base) 1.8rem/1.6 var(--_font-default);
  color: var(--t-bright);
}

@media only screen and (min-width: 1200px) {
  h6 {
    font-size: 2rem;
  }
}

@media only screen and (min-width: 1400px) {
  h6 {
    font-size: 2.2rem;
  }
}

@media only screen and (min-width: 1600px) {
  h6 {
    font-size: 2.6rem;
  }
}

.section-name {
  position: relative;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: flex-start;
  font: normal var(--font-weight-base) 1.8rem/1.4 var(--_font-default);
  color: var(--t-bright);
}

.section-name .section-name-caption,
.section-name i {
  position: relative;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.section-name i {
  font-size: 2.3rem;
  overflow: hidden;
}

.section-name.icon-left .section-name-caption {
  margin-left: 1rem;
}

.section-name.icon-right .section-name-caption {
  margin-right: 1rem;
}

@media only screen and (min-width: 1200px) {
  .section-name {
    font-size: 2rem;
  }

  .section-name i {
    font-size: 2.5rem;
  }
}

@media only screen and (min-width: 1400px) {
  .section-name {
    font-size: 2.2rem;
  }

  .section-name i {
    font-size: 2.7rem;
  }
}

@media only screen and (min-width: 1600px) {
  .section-name {
    font-size: 2.6rem;
  }

  .section-name i {
    font-size: 3.2rem;
  }
}

.tagline-chapter {
  font: normal var(--font-weight-medium) 1.8rem var(--_font-default);
  color: var(--t-bright);
}

.tagline-chapter.small {
  font-size: 1.6rem;
}

.tagline-chapter::before {
  content: "[";
  display: inline;
  padding-right: 0.24em;
}

.tagline-chapter::after {
  content: "]";
  display: inline;
  padding-left: 0.24em;
}

@media only screen and (min-width: 1200px) {
  .tagline-chapter {
    font-size: 2rem;
  }
}

@media only screen and (min-width: 1400px) {
  .tagline-chapter {
    font-size: 2.2rem;
  }
}

@media only screen and (min-width: 1600px) {
  .tagline-chapter {
    font-size: 2.6rem;
  }

  .tagline-chapter.small {
    font-size: 1.8rem;
  }
}

.tagline-tool {
  font: normal 500 1.8rem var(--_font-default);
  color: var(--t-bright);
}

@media only screen and (min-width: 1200px) {
  .tagline-tool {
    font-size: 2rem;
  }
}

@media only screen and (min-width: 1400px) {
  .tagline-tool {
    font-size: 2.2rem;
  }
}

@media only screen and (min-width: 1600px) {
  .tagline-tool {
    font-size: 2.6rem;
  }
}

p {
  font: normal var(--font-weight-base) 1.8rem var(--_font-default);
  color: var(--t-bright);
}

p.type-basic-160lh {
  line-height: 1.6;
}

p.type-basic-140lh {
  line-height: 1.4;
}

p.small {
  font-size: 1.6rem;
  line-height: 1.4;
}

p.dark {
  color: var(--t-per-bright-dark);
  font-weight: 400;
}

p.light {
  color: var(--t-per-bright-light);
  font-weight: 300;
}

@media only screen and (min-width: 1200px) {
  p {
    font-size: 2rem;
  }
}

@media only screen and (min-width: 1400px) {
  p {
    font-size: 2.2rem;
  }
}

@media only screen and (min-width: 1600px) {
  p {
    font-size: 2.6rem;
  }

  p.small {
    font-size: 1.8rem;
  }
}

a {
  font: normal var(--font-weight-base) 1.8rem var(--_font-default);
  color: var(--t-bright);
  text-decoration: none;
}

a.link-small {
  font-size: 1.6rem;
}

a.link-small-underline {
  font-size: 1.6rem;
  text-decoration: underline;
}

a.link-small-160lh {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 1.6rem;
  line-height: 1.6;
}

.no-touch a:hover.link-small {
  color: var(--t-medium);
}

.no-touch a:hover.link-small-underline {
  color: var(--t-medium);
}

.no-touch a:hover.link-small-160lh {
  color: var(--t-medium);
}

@media only screen and (min-width: 1200px) {
  a {
    font-size: 2rem;
  }
}

@media only screen and (min-width: 1400px) {
  a {
    font-size: 2.2rem;
  }
}

@media only screen and (min-width: 1600px) {
  a {
    font-size: 2.6rem;
  }

  a.link-small {
    font-size: 1.8rem;
  }

  a.link-small-underline {
    font-size: 1.8rem;
    text-decoration: underline;
  }

  a.link-small-160lh {
    font-size: 1.8rem;
    line-height: 1.6;
  }
}

blockquote {
  font: normal 300 3.2rem/1.4 var(--_font-default);
  color: var(--t-bright);
}

@media only screen and (min-width: 768px) {
  blockquote {
    font-size: 4.4rem;
    max-width: 76rem;
  }
}

@media only screen and (min-width: 1200px) {
  blockquote {
    font-size: 5rem;
    max-width: none;
  }
}

@media only screen and (min-width: 1400px) {
  blockquote {
    font-size: 5.6rem;
  }
}

@media only screen and (min-width: 1600px) {
  blockquote {
    font-size: 6.8rem;
  }
}

.logo-text {
  font: normal 600 1.8rem var(--_font-default);
  color: var(--t-bright);
}

@media only screen and (min-width: 768px) {
  .logo-text {
    font-size: 2rem;
  }
}

@media only screen and (min-width: 1400px) {
  .logo-text {
    font-size: 2.2rem;
  }
}

@media only screen and (min-width: 1600px) {
  .logo-text {
    font-size: 2.6rem;
  }
}

.menu-link {
  font: normal 500 1.6rem var(--_font-default);
}

@media only screen and (min-width: 1600px) {
  .menu-link {
    font-size: 1.8rem;
  }
}

.text-link {
  color: inherit;
  text-decoration: none;
  background: -webkit-gradient(
      linear,
      left top,
      right top,
      from(rgba(0, 0, 0, 0)),
      to(rgba(0, 0, 0, 0))
    ),
    -webkit-gradient(linear, left top, right top, from(var(--t-bright)), to(var(--t-bright)));
  background: -moz-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
    -moz-linear-gradient(left, var(--t-bright), var(--t-bright));
  background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
    linear-gradient(to right, var(--t-bright), var(--t-bright));
  -moz-background-size: 100% 1px, 0 1px;
  background-size: 100% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  -webkit-transition: background-size 400ms, color 300ms;
  -moz-transition: background-size 400ms, color 300ms,
    -moz-background-size 400ms;
  transition: background-size 400ms, color 300ms;
  transition: background-size 400ms, color 300ms, -moz-background-size 400ms;
}

.text-link.text-link-medium {
  background: -webkit-gradient(
      linear,
      left top,
      right top,
      from(rgba(0, 0, 0, 0)),
      to(rgba(0, 0, 0, 0))
    ),
    -webkit-gradient(linear, left top, right top, from(var(--t-muted)), to(var(--t-muted)));
  background: -moz-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
    -moz-linear-gradient(left, var(--t-muted), var(--t-muted));
  background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
    linear-gradient(to right, var(--t-muted), var(--t-muted));
  -moz-background-size: 100% 1px, 0 1px;
  background-size: 100% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  -webkit-transition: background-size 400ms, color 300ms;
  -moz-transition: background-size 400ms, color 300ms,
    -moz-background-size 400ms;
  transition: background-size 400ms, color 300ms;
  transition: background-size 400ms, color 300ms, -moz-background-size 400ms;
}

.no-touch .text-link:hover {
  -moz-background-size: 0 1px, 100% 1px;
  background-size: 0 1px, 100% 1px;
}

/* ------------------------------------------------*/
/* Elements - Typography End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Elements - Controls Start */
/* ------------------------------------------------*/
.btn {
  position: relative;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: none;
  outline: 0;
  padding: 0;
  font: inherit;
  background-color: transparent;
  cursor: pointer;
  text-decoration: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.btn-line {
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  font: normal var(--font-weight-medium) 1.8rem/1.4 var(--_font-default);
  color: var(--t-bright);
}

.btn-line .btn-caption,
.btn-line i {
  position: relative;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.btn-line i {
  font-size: 2.3rem;
  overflow: hidden;
}

.btn-line.icon-left .btn-caption {
  margin-left: 1rem;
}

.btn-line.icon-right .btn-caption {
  margin-right: 1rem;
}

.btn-line:hover {
  color: var(--t-medium);
}

@media only screen and (min-width: 1200px) {
  .btn-line {
    font-size: 2rem;
  }

  .btn-line i {
    font-size: 2.5rem;
  }
}

@media only screen and (min-width: 1400px) {
  .btn-line {
    font-size: 2.2rem;
  }

  .btn-line i {
    font-size: 2.7rem;
  }
}

@media only screen and (min-width: 1600px) {
  .btn-line {
    font-size: 2.6rem;
  }

  .btn-line i {
    font-size: 3.2rem;
  }
}

.btn-line-small {
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  font: normal var(--font-weight-medium) 1.4rem/1.4 var(--_font-default);
  color: var(--t-bright);
}

.btn-line-small .btn-caption,
.btn-line-small i {
  position: relative;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.btn-line-small i {
  font-size: 1.6rem;
  overflow: hidden;
}

.btn-line-small.icon-left .btn-caption {
  margin-left: 1rem;
}

.btn-line-small.icon-right .btn-caption {
  margin-right: 1rem;
}

.btn-line-small:hover {
  color: var(--t-medium);
}

@media only screen and (min-width: 768px) {
  .btn-line-small {
    font-size: 1.6rem;
  }

  .btn-line-small i {
    font-size: 1.9rem;
  }
}

@media only screen and (min-width: 1600px) {
  .btn-line-small {
    font-size: 1.8rem;
  }

  .btn-line-small i {
    font-size: 2.2rem;
    padding-bottom: 0.2rem;
  }
}

.btn-default {
  width: 100%;
  height: 10rem;
  padding: 0 7.6rem;
  -moz-border-radius: 5rem;
  border-radius: 5rem;
  border: 1px solid var(--neutral-bright);
  background-color: var(--neutral-bright);
  font: normal var(--font-weight-medium) 1.8rem/10rem var(--_font-default);
  color: var(--t-opp-bright);
}

@media only screen and (min-width: 576px) {
  .btn-default {
    width: auto;
  }
}

@media only screen and (min-width: 1200px) {
  .btn-default {
    border: 1px solid var(--stroke-controls);
    background-color: transparent;
    font-size: 2rem;
    color: var(--t-bright);
  }

  .btn-default .btn-caption {
    display: block;
    position: relative;
  }
}

@media only screen and (min-width: 1400px) {
  .btn-default {
    font-size: 2.2rem;
  }
}

@media only screen and (min-width: 1600px) {
  .btn-default {
    height: 11rem;
    line-height: 11rem;
    -moz-border-radius: 6rem;
    border-radius: 6rem;
    font-size: 2.6rem;
  }
}

@media only screen and (min-width: 1200px) {
  .hover-default {
    position: relative;
    overflow: hidden;
    -webkit-transition: color 0.3s 0s, background-color 0s 0s,
      -webkit-transform 0.3s ease-in-out;
    transition: color 0.3s 0s, background-color 0s 0s,
      -webkit-transform 0.3s ease-in-out;
    -moz-transition: color 0.3s 0s, background-color 0s 0s,
      transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
    transition: color 0.3s 0s, background-color 0s 0s,
      transform 0.3s ease-in-out;
    transition: color 0.3s 0s, background-color 0s 0s,
      transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out,
      -moz-transform 0.3s ease-in-out;
  }

  .hover-default em {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: var(--t-bright);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
    -moz-transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .no-touch .hover-default:hover {
    color: var(--t-opp-bright);
    background-color: var(--t-bright);
    -webkit-transition: color 0.3s 0s, background-color 0.3s 0.2s,
      -webkit-box-shadow 0.5s, -webkit-transform 0.3s ease-in-out;
    transition: color 0.3s 0s, background-color 0.3s 0.2s,
      -webkit-box-shadow 0.5s, -webkit-transform 0.3s ease-in-out;
    -moz-transition: color 0.3s 0s, background-color 0.3s 0.2s, box-shadow 0.5s,
      transform 0.3s ease-in-out, -moz-box-shadow 0.5s,
      -moz-transform 0.3s ease-in-out;
    transition: color 0.3s 0s, background-color 0.3s 0.2s, box-shadow 0.5s,
      transform 0.3s ease-in-out;
    transition: color 0.3s 0s, background-color 0.3s 0.2s, box-shadow 0.5s,
      transform 0.3s ease-in-out, -webkit-box-shadow 0.5s, -moz-box-shadow 0.5s,
      -webkit-transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
  }

  .no-touch .hover-default:hover em {
    width: 225%;
    height: 22.5rem;
  }
}

.btn-circle-text {
  width: 10rem;
  height: 10rem;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid var(--neutral-bright);
  background-color: var(--neutral-bright);
  font: normal var(--font-weight-medium) 1.2rem var(--_font-default);
  color: var(--t-opp-bright);
}

@media only screen and (min-width: 1200px) {
  .btn-circle-text {
    width: 11rem;
    height: 11rem;
    font-size: 1.4rem;
    border: 1px solid var(--stroke-controls);
    background-color: transparent;
    color: var(--t-bright);
  }

  .btn-circle-text .btn-caption {
    display: block;
    position: relative;
  }
}

@media only screen and (min-width: 1400px) {
  .btn-circle-text {
    width: 14rem;
    height: 14rem;
    font-size: 1.6rem;
  }
}

@media only screen and (min-width: 1600px) {
  .btn-circle-text {
    width: 16rem;
    height: 16rem;
    font-size: 1.8rem;
  }
}

@media only screen and (min-width: 1200px) {
  .hover-circle {
    position: relative;
    overflow: hidden;
    -webkit-transition: color 0.3s 0s, background-color 0s 0s,
      -webkit-transform 0.3s ease-in-out;
    transition: color 0.3s 0s, background-color 0s 0s,
      -webkit-transform 0.3s ease-in-out;
    -moz-transition: color 0.3s 0s, background-color 0s 0s,
      transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
    transition: color 0.3s 0s, background-color 0s 0s,
      transform 0.3s ease-in-out;
    transition: color 0.3s 0s, background-color 0s 0s,
      transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out,
      -moz-transform 0.3s ease-in-out;
  }

  .hover-circle em {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: var(--t-bright);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
    -moz-transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .no-touch .hover-circle:hover {
    color: var(--t-opp-bright);
    background-color: var(--t-bright);
    -webkit-transition: color 0.3s 0s, background-color 0.3s 0.2s,
      -webkit-box-shadow 0.5s, -webkit-transform 0.3s ease-in-out;
    transition: color 0.3s 0s, background-color 0.3s 0.2s,
      -webkit-box-shadow 0.5s, -webkit-transform 0.3s ease-in-out;
    -moz-transition: color 0.3s 0s, background-color 0.3s 0.2s, box-shadow 0.5s,
      transform 0.3s ease-in-out, -moz-box-shadow 0.5s,
      -moz-transform 0.3s ease-in-out;
    transition: color 0.3s 0s, background-color 0.3s 0.2s, box-shadow 0.5s,
      transform 0.3s ease-in-out;
    transition: color 0.3s 0s, background-color 0.3s 0.2s, box-shadow 0.5s,
      transform 0.3s ease-in-out, -webkit-box-shadow 0.5s, -moz-box-shadow 0.5s,
      -webkit-transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
  }

  .no-touch .hover-circle:hover em {
    width: 225%;
    height: 225%;
  }

  .no-touch .hover-circle:hover i {
    color: var(--t-opp-bright);
    -webkit-transition: color 0.3s 0s;
    -moz-transition: color 0.3s 0s;
    transition: color 0.3s 0s;
  }
}

.btn-circle-icon {
  width: 10rem;
  height: 10rem;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid var(--neutral-bright);
  background-color: var(--neutral-bright);
  font-size: 2.4rem;
  color: var(--t-opp-bright);
}

@media only screen and (min-width: 768px) {
  .btn-circle-icon {
    width: 15.4rem;
    height: 15.4rem;
    font-size: 3.6rem;
  }
}

@media only screen and (min-width: 1200px) {
  .btn-circle-icon {
    width: 17.4rem;
    height: 17.4rem;
    border: 1px solid var(--stroke-controls);
    background-color: transparent;
    color: var(--t-bright);
    font-size: 3.8rem;
  }

  .btn-circle-icon i {
    display: block;
    position: relative;
    overflow: hidden;
  }
}

@media only screen and (min-width: 1400px) {
  .btn-circle-icon {
    width: 19rem;
    height: 19rem;
    font-size: 4rem;
  }
}

@media only screen and (min-width: 1600px) {
  .btn-circle-icon {
    width: 26.6rem;
    height: 26.6rem;
    font-size: 5rem;
  }
}

.btn-line-circle-icon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font: normal var(--font-weight-medium) 1.8rem var(--_font-default);
  color: var(--t-bright);
}

.btn-line-circle-icon .btn-caption {
  position: relative;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 2rem;
}

.btn-line-circle-icon .circle {
  position: relative;
  width: 10rem;
  height: 10rem;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid var(--neutral-bright);
  background-color: var(--neutral-bright);
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn-line-circle-icon .circle em {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: var(--t-bright);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
  -moz-transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
}

.btn-line-circle-icon .circle i {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  font-size: 2.3rem;
  color: var(--t-opp-bright);
  z-index: 2;
  overflow: hidden;
  -webkit-transition: color 0.3s 0s;
  -moz-transition: color 0.3s 0s;
  transition: color 0.3s 0s;
}

.btn-line-circle-icon:hover {
  color: var(--t-medium);
}

.btn-line-circle-icon.permanent-dark {
  color: var(--t-per-bright-dark);
}

.btn-line-circle-icon.permanent-dark .circle {
  border: 1px solid var(--t-per-bright-dark);
  background-color: var(--t-per-bright-dark);
}

.btn-line-circle-icon.permanent-dark em {
  background: var(--t-per-bright-dark);
}

.btn-line-circle-icon.permanent-dark i {
  color: var(--t-per-bright-light);
}

@media only screen and (min-width: 1200px) {
  .btn-line-circle-icon {
    font-size: 2rem;
  }

  .btn-line-circle-icon .circle {
    border: 1px solid var(--stroke-controls);
    background-color: transparent;
  }

  .btn-line-circle-icon .circle i {
    font-size: 2.5rem;
    color: var(--t-bright);
  }
}

@media only screen and (min-width: 1400px) {
  .btn-line-circle-icon {
    font-size: 2.2rem;
  }

  .btn-line-circle-icon .circle i {
    font-size: 2.7rem;
  }
}

@media only screen and (min-width: 1600px) {
  .btn-line-circle-icon {
    font-size: 2.6rem;
  }

  .btn-line-circle-icon .circle i {
    font-size: 3.2rem;
  }
}

.btn-to-top {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  width: 4rem;
  height: 4rem;
  -moz-border-radius: var(--_radius-s);
  border-radius: var(--_radius-s);
  background-color: rgba(0, 0, 0, 0.03);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: var(--t-bright);
  font-size: 1.8rem;
  z-index: 9;
  overflow: hidden;
}

.btn-to-top i {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  overflow: hidden;
}

@media only screen and (min-width: 768px) {
  .btn-to-top {
    position: fixed;
    right: 5rem;
    bottom: 3rem;
  }
}

@media only screen and (min-width: 1200px) {
  .btn-to-top {
    font-size: 1.9rem;
  }

  .no-touch .btn-to-top:hover {
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
  }
}

@media only screen and (min-width: 1400px) {
  .btn-to-top {
    width: 5rem;
    height: 5rem;
  }
}

@media only screen and (min-width: 1600px) {
  .btn-to-top {
    font-size: 2.2rem;
  }
}

.slide-right:hover i::before {
  -webkit-animation: 0.4s ease-in-out 0s 1 both slideRight;
  -moz-animation: 0.4s ease-in-out 0s 1 both slideRight;
  animation: 0.4s ease-in-out 0s 1 both slideRight;
}

.slide-right-up:hover i::before {
  -webkit-animation: 0.4s ease-in-out 0s 1 both slideRightUp;
  -moz-animation: 0.4s ease-in-out 0s 1 both slideRightUp;
  animation: 0.4s ease-in-out 0s 1 both slideRightUp;
}

.slide-right-down:hover i::before {
  -webkit-animation: 0.4s ease-in-out 0s 1 both slideRightDown;
  -moz-animation: 0.4s ease-in-out 0s 1 both slideRightDown;
  animation: 0.4s ease-in-out 0s 1 both slideRightDown;
}

.slide-left:hover i::before {
  -webkit-animation: 0.4s ease-in-out 0s 1 both slideLeft;
  -moz-animation: 0.4s ease-in-out 0s 1 both slideLeft;
  animation: 0.4s ease-in-out 0s 1 both slideLeft;
}

.slide-left-up:hover i::before {
  -webkit-animation: 0.4s ease-in-out 0s 1 both slideLeftUp;
  -moz-animation: 0.4s ease-in-out 0s 1 both slideLeftUp;
  animation: 0.4s ease-in-out 0s 1 both slideLeftUp;
}

.slide-left-down:hover i::before {
  -webkit-animation: 0.4s ease-in-out 0s 1 both slideLeftDown;
  -moz-animation: 0.4s ease-in-out 0s 1 both slideLeftDown;
  animation: 0.4s ease-in-out 0s 1 both slideLeftDown;
}

.slide-down:hover i::before {
  -webkit-animation: 0.4s ease-in-out 0s 1 both slideDown;
  -moz-animation: 0.4s ease-in-out 0s 1 both slideDown;
  animation: 0.4s ease-in-out 0s 1 both slideDown;
}

.slide-up:hover i::before {
  -webkit-animation: 0.4s ease-in-out 0s 1 both slideUp;
  -moz-animation: 0.4s ease-in-out 0s 1 both slideUp;
  animation: 0.4s ease-in-out 0s 1 both slideUp;
}

@-webkit-keyframes slideRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  51% {
    opacity: 0;
  }

  52% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    opacity: 0;
  }

  53% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-moz-keyframes slideRight {
  0% {
    -moz-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -moz-transform: translateX(100%);
    transform: translateX(100%);
  }

  51% {
    opacity: 0;
  }

  52% {
    -moz-transform: translateX(-100%);
    transform: translateX(-100%);
    opacity: 0;
  }

  53% {
    opacity: 1;
  }

  100% {
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideRight {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    transform: translateX(100%);
  }

  51% {
    opacity: 0;
  }

  52% {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    transform: translateX(-100%);
    opacity: 0;
  }

  53% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes slideRightUp {
  0% {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }

  50% {
    -webkit-transform: translateX(100%) translateY(-100%);
    transform: translateX(100%) translateY(-100%);
  }

  51% {
    opacity: 0;
  }

  52% {
    -webkit-transform: translateX(-100%) translateY(100%);
    transform: translateX(-100%) translateY(100%);
    opacity: 0;
  }

  53% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}

@-moz-keyframes slideRightUp {
  0% {
    -moz-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }

  50% {
    -moz-transform: translateX(100%) translateY(-100%);
    transform: translateX(100%) translateY(-100%);
  }

  51% {
    opacity: 0;
  }

  52% {
    -moz-transform: translateX(-100%) translateY(100%);
    transform: translateX(-100%) translateY(100%);
    opacity: 0;
  }

  53% {
    opacity: 1;
  }

  100% {
    -moz-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}

@keyframes slideRightUp {
  0% {
    -webkit-transform: translateX(0) translateY(0);
    -moz-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }

  50% {
    -webkit-transform: translateX(100%) translateY(-100%);
    -moz-transform: translateX(100%) translateY(-100%);
    transform: translateX(100%) translateY(-100%);
  }

  51% {
    opacity: 0;
  }

  52% {
    -webkit-transform: translateX(-100%) translateY(100%);
    -moz-transform: translateX(-100%) translateY(100%);
    transform: translateX(-100%) translateY(100%);
    opacity: 0;
  }

  53% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0) translateY(0);
    -moz-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}

@-webkit-keyframes slideRightDown {
  0% {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }

  50% {
    -webkit-transform: translateX(100%) translateY(100%);
    transform: translateX(100%) translateY(100%);
  }

  51% {
    opacity: 0;
  }

  52% {
    -webkit-transform: translateX(-100%) translateY(-100%);
    transform: translateX(-100%) translateY(-100%);
    opacity: 0;
  }

  53% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}

@-moz-keyframes slideRightDown {
  0% {
    -moz-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }

  50% {
    -moz-transform: translateX(100%) translateY(100%);
    transform: translateX(100%) translateY(100%);
  }

  51% {
    opacity: 0;
  }

  52% {
    -moz-transform: translateX(-100%) translateY(-100%);
    transform: translateX(-100%) translateY(-100%);
    opacity: 0;
  }

  53% {
    opacity: 1;
  }

  100% {
    -moz-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}

@keyframes slideRightDown {
  0% {
    -webkit-transform: translateX(0) translateY(0);
    -moz-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }

  50% {
    -webkit-transform: translateX(100%) translateY(100%);
    -moz-transform: translateX(100%) translateY(100%);
    transform: translateX(100%) translateY(100%);
  }

  51% {
    opacity: 0;
  }

  52% {
    -webkit-transform: translateX(-100%) translateY(-100%);
    -moz-transform: translateX(-100%) translateY(-100%);
    transform: translateX(-100%) translateY(-100%);
    opacity: 0;
  }

  53% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0) translateY(0);
    -moz-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}

@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  51% {
    opacity: 0;
  }

  52% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 0;
  }

  53% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-moz-keyframes slideLeft {
  0% {
    -moz-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -moz-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  51% {
    opacity: 0;
  }

  52% {
    -moz-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 0;
  }

  53% {
    opacity: 1;
  }

  100% {
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideLeft {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  51% {
    opacity: 0;
  }

  52% {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 0;
  }

  53% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes slideLeftUp {
  0% {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }

  50% {
    -webkit-transform: translateX(-100%) translateY(-100%);
    transform: translateX(-100%) translateY(-100%);
  }

  51% {
    opacity: 0;
  }

  52% {
    -webkit-transform: translateX(100%) translateY(100%);
    transform: translateX(100%) translateY(100%);
    opacity: 0;
  }

  53% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}

@-moz-keyframes slideLeftUp {
  0% {
    -moz-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }

  50% {
    -moz-transform: translateX(-100%) translateY(-100%);
    transform: translateX(-100%) translateY(-100%);
  }

  51% {
    opacity: 0;
  }

  52% {
    -moz-transform: translateX(100%) translateY(100%);
    transform: translateX(100%) translateY(100%);
    opacity: 0;
  }

  53% {
    opacity: 1;
  }

  100% {
    -moz-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}

@keyframes slideLeftUp {
  0% {
    -webkit-transform: translateX(0) translateY(0);
    -moz-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }

  50% {
    -webkit-transform: translateX(-100%) translateY(-100%);
    -moz-transform: translateX(-100%) translateY(-100%);
    transform: translateX(-100%) translateY(-100%);
  }

  51% {
    opacity: 0;
  }

  52% {
    -webkit-transform: translateX(100%) translateY(100%);
    -moz-transform: translateX(100%) translateY(100%);
    transform: translateX(100%) translateY(100%);
    opacity: 0;
  }

  53% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0) translateY(0);
    -moz-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}

@-webkit-keyframes slideLeftDown {
  0% {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }

  50% {
    -webkit-transform: translateX(-100%) translateY(100%);
    transform: translateX(-100%) translateY(100%);
  }

  51% {
    opacity: 0;
  }

  52% {
    -webkit-transform: translateX(100%) translateY(-100%);
    transform: translateX(100%) translateY(-100%);
    opacity: 0;
  }

  53% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}

@-moz-keyframes slideLeftDown {
  0% {
    -moz-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }

  50% {
    -moz-transform: translateX(-100%) translateY(100%);
    transform: translateX(-100%) translateY(100%);
  }

  51% {
    opacity: 0;
  }

  52% {
    -moz-transform: translateX(100%) translateY(-100%);
    transform: translateX(100%) translateY(-100%);
    opacity: 0;
  }

  53% {
    opacity: 1;
  }

  100% {
    -moz-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}

@keyframes slideLeftDown {
  0% {
    -webkit-transform: translateX(0) translateY(0);
    -moz-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }

  50% {
    -webkit-transform: translateX(-100%) translateY(100%);
    -moz-transform: translateX(-100%) translateY(100%);
    transform: translateX(-100%) translateY(100%);
  }

  51% {
    opacity: 0;
  }

  52% {
    -webkit-transform: translateX(100%) translateY(-100%);
    -moz-transform: translateX(100%) translateY(-100%);
    transform: translateX(100%) translateY(-100%);
    opacity: 0;
  }

  53% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0) translateY(0);
    -moz-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}

@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }

  51% {
    opacity: 0;
  }

  52% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 0;
  }

  53% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-moz-keyframes slideDown {
  0% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -moz-transform: translateY(100%);
    transform: translateY(100%);
  }

  51% {
    opacity: 0;
  }

  52% {
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 0;
  }

  53% {
    opacity: 1;
  }

  100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideDown {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    transform: translateY(100%);
  }

  51% {
    opacity: 0;
  }

  52% {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 0;
  }

  53% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  51% {
    opacity: 0;
  }

  52% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
  }

  53% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-moz-keyframes slideUp {
  0% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  51% {
    opacity: 0;
  }

  52% {
    -moz-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
  }

  53% {
    opacity: 1;
  }

  100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideUp {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  51% {
    opacity: 0;
  }

  52% {
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
  }

  53% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}

/* ------------------------------------------------*/
/* Elements - Controls End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Elements - Forms Start */
/* ------------------------------------------------*/
.form-container {
  position: relative;
}

.form__item {
  padding: 0 1rem;
  margin-bottom: 3rem;
}

.form__item:last-of-type {
  margin-bottom: 0;
}

@media only screen and (min-width: 768px) {
  .form__item {
    padding: 0 1.5rem;
  }
}

@media only screen and (min-width: 1600px) {
  .form__item {
    padding: 0 2.5rem;
    margin-bottom: 5rem;
  }
}

form {
  position: relative;
  width: 100%;
}

form input,
form textarea,
form select {
  position: relative;
  display: block;
  width: 100%;
  border: none;
  outline: none;
  margin: 0;
  padding: 1.6rem 0.4rem 1.6rem 0.4rem;
  background-color: transparent;
  border-bottom: 1px solid var(--stroke-elements);
  font: normal 400 1.8rem var(--_font-default);
  color: var(--t-bright);
  border-radius: 0;
}

form input:focus,
form textarea:focus,
form select:focus {
  border-bottom: 1px solid var(--stroke-controls);
}

form textarea {
  height: 16rem;
  resize: none;
}

form ::-webkit-input-placeholder {
  color: var(--t-muted);
}
select {
  color: var(--t-muted) !important;
  font-size: 2.2rem !important;
}

form :-moz-placeholder {
  color: var(--t-muted);
}

form ::-moz-placeholder {
  color: var(--t-muted);
}

form :-ms-input-placeholder {
  color: var(--t-muted);
}

form input:focus:required:invalid,
form textarea:focus:required:invalid,
form select:focus:required:invalid {
  color: var(--t-bright);
}

form input:required:valid,
form textarea:required:valid,
form select:required:valid {
  color: var(--t-bright);
}

@media only screen and (min-width: 768px) {
  form input,
  form textarea {
    font-size: 2rem;
  }

  form textarea {
    height: 20rem;
  }
}

@media only screen and (min-width: 1400px) {
  form input,
  form textarea {
    font-size: 2.2rem;
  }
}

@media only screen and (min-width: 1600px) {
  form input,
  form textarea {
    font-size: 2.6rem;
  }
}

.reply__icon {
  display: block;
  font-size: 6rem;
  color: var(--t-bright);
  margin-bottom: 1rem;
}

.reply__title {
  font: normal var(--font-weight-base) 2.6rem var(--_font-accent);
  color: var(--t-bright);
  margin-bottom: 1rem;
}

.reply__text {
  display: block;
  font: normal var(--font-weight-base) 1.8rem var(--_font-default);
  color: var(--t-bright);
}

/* ------------------------------------------------*/
/* Elements - Forms End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Sections Main Start */
/* ------------------------------------------------*/
.main {
  position: relative;
  padding-top: 6rem;
  overflow: hidden;
}

@media only screen and (min-width: 768px) {
  .main {
    padding-top: 7rem;
  }
}

@media only screen and (min-width: 1200px) {
  .main {
    padding-top: 0;
  }
}

.main__intro {
  position: relative;
  height: auto;
  margin-bottom: 3.4rem;
}

.main__intro.intro-95-desktop {
  margin-bottom: 11.5rem;
}

.main__intro.intro-fullheight-centered {
  margin-bottom: 12rem;
}

@media only screen and (min-width: 768px) {
  .main__intro {
    margin-bottom: 4.4rem;
  }

  .main__intro.intro-95-desktop {
    margin-bottom: 14.5rem;
  }

  .main__intro.intro-fullheight-centered {
    margin-bottom: 14.3rem;
  }
}

@media only screen and (max-width: 800px) {
  .main__intro {
    padding-top: 0vh !important;
  }
}

@media only screen and (min-width: 1200px) {
  .main__intro {
    height: 100vh;
    margin-bottom: 0;
  }

  .main__intro.intro-95-desktop {
    height: 95vh;
    margin-bottom: 0;
    padding-top: 7rem;
  }

  .main__intro.intro-fullheight-centered {
    margin-bottom: 0;
    padding-top: 7rem;
  }
}

@media only screen and (min-width: 1400px) {
  .main__intro.intro-95-desktop,
  .main__intro.intro-fullheight-centered {
    padding-top: 8rem;
  }
}

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

.intro__background.intro-bg-01 img,
.intro__background.intro-bg-02 img {
  display: block;
  width: 100%;
  height: auto;
}

.intro-bg__shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(78%, rgba(var(--base-rgb), 0)),
    color-stop(97%, rgba(var(--base-rgb), 1))
  );
  background: -moz-linear-gradient(
    top,
    rgba(var(--base-rgb), 0) 78%,
    rgba(var(--base-rgb), 1) 97%
  );
  background: linear-gradient(
    to bottom,
    rgba(var(--base-rgb), 0) 78%,
    rgba(var(--base-rgb), 1) 97%
  );
}

.intro-bg-01__01,
.intro-bg-01__02,
.intro-bg-02__01,
.intro-bg-02__02,
.intro-bg-03__01,
.intro-bg-03__02 {
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  -moz-background-size: cover;
  background-size: cover;
}

.intro-bg-01__01 {
  top: -160px;
  right: -100px;
  width: 320px;
  height: 320px;
}

@media only screen and (min-width: 768px) {
  .intro-bg-01__01 {
    top: -320px;
    right: -20px;
    width: 500px;
    height: 500px;
  }
}

@media only screen and (min-width: 992px) {
  .intro-bg-01__01 {
    top: -280px;
  }
}

@media only screen and (min-width: 1200px) {
  .intro-bg-01__01 {
    top: -160px;
    right: -80px;
    width: 660px;
    height: 660px;
  }
}

@media only screen and (min-width: 1400px) {
  .intro-bg-01__01 {
    top: -200px;
    right: 0;
    width: 770px;
    height: 770px;
  }
}

@media only screen and (min-width: 1600px) {
  .intro-bg-01__01 {
    top: -300px;
    right: 0;
    width: 860px;
    height: 860px;
  }
}

.intro-bg-01__02 {
  bottom: -80px;
  left: auto;
  right: 0;
  width: 150px;
  height: 150px;
}

@media only screen and (min-width: 768px) {
  .intro-bg-01__02 {
    bottom: -120px;
    left: auto;
    right: 0;
    width: 240px;
    height: 240px;
  }
}

@media only screen and (min-width: 1200px) {
  .intro-bg-01__02 {
    bottom: -40px;
    left: -96px;
    width: 300px;
    height: 300px;
  }
}

@media only screen and (min-width: 1400px) {
  .intro-bg-01__02 {
    bottom: -10px;
    left: -86px;
    width: 360px;
    height: 360px;
  }
}

@media only screen and (min-width: 1600px) {
  .intro-bg-01__02 {
    bottom: -60px;
    left: -175px;
    width: 500px;
    height: 500px;
  }
}

.intro-bg-02__01 {
  top: auto;
  bottom: -60px;
  right: 0;
  width: 160px;
  height: auto;
}

@media only screen and (min-width: 768px) {
  .intro-bg-02__01 {
    top: auto;
    bottom: -100px;
    right: 0;
    width: 260px;
    height: auto;
  }
}

@media only screen and (min-width: 992px) {
  .intro-bg-02__01 {
    top: auto;
    bottom: -80px;
    right: 0;
    width: 340px;
    height: auto;
  }
}

@media only screen and (min-width: 1200px) {
  .intro-bg-02__01 {
    top: auto;
    bottom: 80px;
    right: 0;
    width: 330px;
    height: auto;
  }
}

@media only screen and (min-width: 1400px) {
  .intro-bg-02__01 {
    top: auto;
    bottom: 100px;
    right: 0;
    width: 350px;
    height: auto;
  }
}

@media only screen and (min-width: 1600px) {
  .intro-bg-02__01 {
    top: auto;
    bottom: 60px;
    right: 0;
    width: 530px;
    height: auto;
  }
}

.intro-bg-02__02 {
  bottom: -160px;
  top: auto;
  left: -30px;
  width: 100px;
  height: auto;
}

@media only screen and (min-width: 768px) {
  .intro-bg-02__02 {
    bottom: -200px;
    top: auto;
    left: -42px;
    width: 140px;
    height: auto;
  }
}

@media only screen and (min-width: 992px) {
  .intro-bg-02__02 {
    bottom: -200px;
    top: auto;
    left: -30px;
    width: 140px;
    height: auto;
  }
}

@media only screen and (min-width: 1200px) {
  .intro-bg-02__02 {
    bottom: auto;
    top: 150px;
    left: -68px;
    width: 200px;
    height: auto;
  }
}

@media only screen and (min-width: 1400px) {
  .intro-bg-02__02 {
    bottom: auto;
    top: 210px;
    left: -82px;
    width: 240px;
    height: auto;
  }
}

@media only screen and (min-width: 1600px) {
  .intro-bg-02__02 {
    top: 150px;
    bottom: auto;
    left: -120px;
    width: 350px;
    height: auto;
  }
}

.intro-bg-03__01 {
  height: 440px;
  width: auto;
  bottom: -300px;
  right: -40px;
}

.intro-bg-03__01 img {
  display: block;
  height: 100%;
  width: auto;
}

@media only screen and (min-width: 768px) {
  .intro-bg-03__01 {
    height: 910px;
    width: auto;
    bottom: -150px;
    right: -80px;
  }
}

@media only screen and (min-width: 992px) {
  .intro-bg-03__01 {
    height: 910px;
    width: auto;
    bottom: -150px;
    right: -60px;
  }
}

@media only screen and (min-width: 1200px) {
  .intro-bg-03__01 {
    height: 110vh;
    width: auto;
    bottom: -25vh;
    right: -60px;
  }
}

@media only screen and (min-width: 1400px) {
  .intro-bg-03__01 {
    height: 110vh;
    width: auto;
    bottom: -25vh;
    right: -60px;
  }
}

@media only screen and (min-width: 1600px) {
  .intro-bg-03__01 {
    height: 126vh;
    width: auto;
    bottom: -34vh;
    right: -80px;
  }
}

.intro-bg-03__02 {
  height: 180px;
  width: auto;
  bottom: -220px;
  left: 40px;
}

.intro-bg-03__02 img {
  display: block;
  height: 100%;
  width: auto;
}

@media only screen and (min-width: 768px) {
  .intro-bg-03__02 {
    height: 350px;
    width: auto;
    bottom: -340px;
    left: 80px;
  }
}

@media only screen and (min-width: 992px) {
  .intro-bg-03__02 {
    height: 400px;
    width: auto;
    bottom: -340px;
    left: 150px;
  }
}

@media only screen and (min-width: 1200px) {
  .intro-bg-03__02 {
    height: 420px;
    width: auto;
    bottom: -210px;
    left: auto;
    right: 220px;
  }
}

@media only screen and (min-width: 1400px) {
  .intro-bg-03__02 {
    height: 450px;
    width: auto;
    bottom: -245px;
    right: 220px;
  }
}

@media only screen and (min-width: 1600px) {
  .intro-bg-03__02 {
    height: 540px;
    width: auto;
    bottom: -265px;
    right: 320px;
  }
}

.headline {
  position: relative;
  padding: 0 2rem;
  margin-top: 11.2rem;
}

.headline.headline-95-desktop,
.headline.headline-centered {
  margin-top: 9.5rem;
}

@media only screen and (min-width: 768px) {
  .headline {
    padding: 0 5rem;
    margin-top: 14.2rem;
  }

  .headline.headline-95-desktop,
  .headline.headline-centered {
    margin-top: 10.9rem;
  }
}

@media only screen and (min-width: 1200px) {
  .headline {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 0;
  }

  .headline.headline-95-desktop {
    position: absolute;
    bottom: 0;
    left: 0;
    padding-bottom: 9rem;
  }

  .headline.headline-centered {
    bottom: auto;
    left: auto;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    margin-top: 0;
  }
}

@media only screen and (min-width: 1400px) {
  .headline.headline-95-desktop {
    padding-bottom: 9.9rem;
  }
}

@media only screen and (min-width: 1600px) {
  .headline.headline-95-desktop {
    padding-bottom: 11.3rem;
  }
}

@media only screen and (min-width: 768px) {
  .headline__title.fullwidth {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
  }
}

.title__line {
  position: relative;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.title__line em {
  font: normal var(--font-weight-base) 1.8rem/1.4 var(--_font-default);
  color: var(--t-bright);
}

.title__line em,
.title__line .btn {
  display: none;
}

@media only screen and (min-width: 768px) {
  .title__line span {
    white-space: nowrap;
  }

  .title__line .btn {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-left: 3rem;
    margin-top: 0.5rem;
  }
}

@media only screen and (min-width: 992px) {
  .title__line {
    padding: 0 3rem;
  }

  .title__line .btn {
    margin-left: 4rem;
  }
}

@media only screen and (min-width: 1200px) {
  .title__line em {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    max-width: 260px;
    margin-right: 5rem;
    padding-top: 3.7rem;
    font-size: 1.8rem;
  }

  .title__line .btn {
    margin-left: 5rem;
  }
}

@media only screen and (min-width: 1400px) {
  .title__line em {
    max-width: 300px;
    padding-top: 4.3rem;
    font-size: 2rem;
  }
}

@media only screen and (min-width: 1600px) {
  .title__line {
    padding: 0 5rem;
  }

  .title__line em {
    max-width: 370px;
    padding-top: 6rem;
    font-size: 2.4rem;
  }
}

.headline__datamobile {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  text-align: left;
  margin-top: 4.5rem;
}

.headline__datamobile p {
  font: normal var(--font-weight-base) 1.8rem/1.4 var(--_font-default);
  color: var(--t-bright);
  margin-bottom: 6rem;
}

@media only screen and (min-width: 768px) {
  .headline__datamobile {
    margin-top: 5.4rem;
    padding: 0 3rem;
    text-align: center;
  }

  .headline__datamobile p {
    max-width: 370px;
    margin: 0 auto;
    font-size: 2rem;
  }

  .headline__datamobile .btn {
    display: none;
  }
}

@media only screen and (min-width: 992px) {
  .headline__datamobile {
    margin-top: 6.1rem;
  }
}

@media only screen and (min-width: 1200px) {
  .headline__datamobile {
    display: none;
  }
}

.headline__btn {
  margin-top: 9.7rem;
}

@media only screen and (min-width: 768px) {
  .headline__btn {
    margin-top: 11.9rem;
  }
}

@media only screen and (min-width: 1200px) {
  .headline__btn {
    margin-top: 5.9rem;
    margin-bottom: 4.4rem;
  }
}

@media only screen and (min-width: 1400px) {
  .headline__btn {
    margin-top: 11rem;
  }
}

@media only screen and (min-width: 1600px) {
  .headline__btn {
    margin-top: 10.1rem;
  }
}

.intro__btn {
  position: relative;
  padding: 0 2rem;
}

@media only screen and (min-width: 768px) {
  .intro__btn {
    padding: 0 5rem;
  }
}

.intro__btn-absolute {
  display: none;
}

@media only screen and (min-width: 1200px) {
  .intro__btn-absolute {
    display: block;
    position: absolute;
    right: 5rem;
    bottom: 4.4rem;
  }
}

.main__media {
  position: relative;
}

.main__media.media-grid-bottom {
  padding-bottom: 2.5rem;
}

.main__media.media-stack-bottom {
  padding-bottom: 0;
}

@media only screen and (min-width: 768px) {
  .main__media.media-grid-bottom {
    padding-bottom: 3.5rem;
  }
}

@media only screen and (min-width: 1200px) {
  .main__media.media-grid-bottom {
    padding-bottom: 3.7rem;
  }
}

@media only screen and (min-width: 1400px) {
  .main__media.media-grid-bottom {
    padding-bottom: 4.5rem;
  }
}

@media only screen and (min-width: 1600px) {
  .main__media.media-grid-bottom {
    padding-bottom: 5.5rem;
  }
}

/* ------------------------------------------------*/
/* Sections Main End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Sections Inner Start */
/* ------------------------------------------------*/
.inner {
  position: relative;
}

.inner.inner-grid-bottom {
  padding: 11rem 0 2.5rem 0;
}

.inner.inner-stack {
  padding: 2.2rem 0 0.5rem 0;
}

.inner.inner-stack-bottom {
  padding: 11rem 0 0.5rem 0;
}

.inner.inner-type-bottom {
  padding: 11rem 0 2.2rem 0;
}

.inner.no-padding-top {
  padding-top: 0 !important;
}

.inner.no-padding-bottom {
  padding-bottom: 0 !important;
}

.inner.pre-no-padding-top {
  padding: 11rem 0 4.7rem 0;
}

@media only screen and (min-width: 768px) {
  .inner.inner-grid-bottom {
    padding: 16rem 0 3.5rem 0;
  }

  .inner.inner-stack {
    padding: 5.3rem 0 0.5rem 0;
  }

  .inner.inner-stack-bottom {
    padding: 16rem 0 0.5rem 0;
  }

  .inner.inner-type-bottom {
    padding: 16rem 0 2.9rem 0;
  }

  .inner.pre-no-padding-top {
    padding: 16rem 0 8.8rem 0;
  }
}

@media only screen and (min-width: 1200px) {
  .inner.inner-grid-bottom {
    padding: 16rem 0 3.7rem 0;
  }

  .inner.inner-stack {
    padding: 8.3rem 0 0.7rem 0;
  }

  .inner.inner-stack-bottom {
    padding: 16rem 0 0.7rem 0;
  }

  .inner.inner-type-bottom {
    padding: 16rem 0 3.1rem 0;
  }

  .inner.pre-no-padding-top {
    padding: 16rem 0 12rem 0;
  }
}

@media only screen and (min-width: 1400px) {
  .inner.inner-grid-bottom {
    padding: 18rem 0 4.5rem 0;
  }

  .inner.inner-stack {
    padding: 9.5rem 0 1.5rem 0;
  }

  .inner.inner-stack-bottom {
    padding: 18rem 0 1.5rem 0;
  }

  .inner.inner-type-bottom {
    padding: 18rem 0 3.9rem 0;
  }

  .inner.pre-no-padding-top {
    padding: 18rem 0 14rem 0;
  }
}

@media only screen and (min-width: 1600px) {
  .inner.inner-grid-bottom {
    padding: 21rem 0 5.5rem 0;
  }

  .inner.inner-stack {
    padding: 13.5rem 0 0.5rem 0;
  }

  .inner.inner-stack-bottom {
    padding: 21rem 0 0.5rem 0;
  }

  .inner.inner-type-bottom {
    padding: 21rem 0 4.8rem 0;
  }

  .inner.pre-no-padding-top {
    padding: 21rem 0 19rem 0;
  }
}

.inner__wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.inner__name {
  margin-bottom: 0.4rem;
}

@media only screen and (min-width: 768px) {
  .inner__name {
    margin-bottom: 1.2rem;
  }
}

@media only screen and (min-width: 1200px) {
  .inner__name {
    margin-bottom: 0;
    margin-top: 1.6rem;
  }
}

@media only screen and (min-width: 1400px) {
  .inner__name {
    margin-top: 1.8rem;
  }
}

@media only screen and (min-width: 1600px) {
  .inner__name {
    margin-top: 2.6rem;
  }
}

.inner__content {
  position: relative;
  width: 100%;
}

.bottom__background {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.bottom__background.bottom-bg-01 img,
.bottom__background.bottom-bg-02 img,
.bottom__background.bottom-bg-03 img {
  display: block;
  width: 100%;
  height: auto;
}

.bottom-bg__shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(78%, rgba(var(--base-rgb), 0)),
    color-stop(97%, rgba(var(--base-rgb), 1))
  );
  background: -moz-linear-gradient(
    top,
    rgba(var(--base-rgb), 0) 78%,
    rgba(var(--base-rgb), 1) 97%
  );
  background: linear-gradient(
    to bottom,
    rgba(var(--base-rgb), 0) 78%,
    rgba(var(--base-rgb), 1) 97%
  );
}

.bottom-bg-01__01,
.bottom-bg-01__02,
.bottom-bg-02__01,
.bottom-bg-02__02,
.bottom-bg-03__01,
.bottom-bg-03__02 {
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  -moz-background-size: cover;
  background-size: cover;
}

.bottom-bg-01__01 {
  bottom: 100px;
  right: -50px;
  width: 200px;
  height: auto;
}

@media only screen and (min-width: 768px) {
  .bottom-bg-01__01 {
    bottom: 130px;
    right: -50px;
    width: 200px;
    height: auto;
  }
}

@media only screen and (min-width: 992px) {
  .bottom-bg-01__01 {
    bottom: 120px;
    right: -75px;
    width: 260px;
    height: auto;
  }
}

@media only screen and (min-width: 1200px) {
  .bottom-bg-01__01 {
    bottom: 65px;
    right: -105px;
    width: 360px;
    height: auto;
  }
}

@media only screen and (min-width: 1400px) {
  .bottom-bg-01__01 {
    bottom: 70px;
    right: -120px;
    width: 400px;
    height: auto;
  }
}

@media only screen and (min-width: 1600px) {
  .bottom-bg-01__01 {
    bottom: 80px;
    right: -150px;
    width: 510px;
    height: auto;
  }
}

.bottom-bg-01__02 {
  bottom: 140px;
  left: -30px;
  width: 100px;
  height: auto;
}

@media only screen and (min-width: 768px) {
  .bottom-bg-01__02 {
    bottom: 200px;
    left: -50px;
    width: 150px;
    height: auto;
  }
}

@media only screen and (min-width: 992px) {
  .bottom-bg-01__02 {
    bottom: 200px;
    left: -60px;
    width: 170px;
    height: auto;
  }
}

@media only screen and (min-width: 1200px) {
  .bottom-bg-01__02 {
    bottom: 200px;
    left: -65px;
    width: 240px;
    height: auto;
  }
}

@media only screen and (min-width: 1400px) {
  .bottom-bg-01__02 {
    bottom: 200px;
    left: -80px;
    width: 280px;
    height: auto;
  }
}

@media only screen and (min-width: 1600px) {
  .bottom-bg-01__02 {
    bottom: 260px;
    left: -100px;
    width: 350px;
    height: auto;
  }
}

.bottom-bg-02__01 {
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: auto;
}

@media only screen and (min-width: 768px) {
  .bottom-bg-02__01 {
    bottom: -40px;
    right: -60px;
  }
}

@media only screen and (min-width: 992px) {
  .bottom-bg-02__01 {
    bottom: -50px;
    right: -70px;
    width: 230px;
  }
}

@media only screen and (min-width: 1200px) {
  .bottom-bg-02__01 {
    width: 300px;
  }
}

@media only screen and (min-width: 1400px) {
  .bottom-bg-02__01 {
    bottom: -60px;
    right: -80px;
    width: 340px;
  }
}

@media only screen and (min-width: 1600px) {
  .bottom-bg-02__01 {
    width: 360px;
  }
}

.bottom-bg-02__02 {
  display: none;
}

@media only screen and (min-width: 768px) {
  .bottom-bg-02__02 {
    display: block;
    top: 50px;
    left: -35px;
    width: 140px;
    height: auto;
  }
}

@media only screen and (min-width: 992px) {
  .bottom-bg-02__02 {
    top: 50px;
    left: -35px;
    width: 140px;
  }
}

@media only screen and (min-width: 1200px) {
  .bottom-bg-02__02 {
    top: 50px;
    left: -60px;
    width: 240px;
  }
}

@media only screen and (min-width: 1400px) {
  .bottom-bg-02__02 {
    top: 60px;
    left: -70px;
    width: 280px;
  }
}

@media only screen and (min-width: 1600px) {
  .bottom-bg-02__02 {
    top: 60px;
    left: -75px;
    width: 300px;
  }
}

.bottom-bg-03__01 {
  bottom: 100px;
  right: -30px;
  width: 180px;
  height: auto;
}

@media only screen and (min-width: 768px) {
  .bottom-bg-03__01 {
    bottom: 180px;
    right: -30px;
    width: 180px;
  }
}

@media only screen and (min-width: 992px) {
  .bottom-bg-03__01 {
    bottom: 150px;
    right: -30px;
    width: 180px;
  }
}

@media only screen and (min-width: 1200px) {
  .bottom-bg-03__01 {
    bottom: 170px;
    right: -70px;
    width: 280px;
  }
}

@media only screen and (min-width: 1400px) {
  .bottom-bg-03__01 {
    bottom: 170px;
    right: -80px;
    width: 320px;
  }
}

@media only screen and (min-width: 1600px) {
  .bottom-bg-03__01 {
    bottom: 200px;
    right: -80px;
    width: 360px;
  }
}

.bottom-bg-03__02 {
  display: none;
}

@media only screen and (min-width: 768px) {
  .bottom-bg-03__02 {
    display: block;
    top: auto;
    bottom: -30px;
    left: -100px;
    width: 240px;
  }
}

@media only screen and (min-width: 992px) {
  .bottom-bg-03__02 {
    top: auto;
    bottom: -30px;
    left: -100px;
    width: 240px;
  }
}

@media only screen and (min-width: 1200px) {
  .bottom-bg-03__02 {
    top: auto;
    bottom: -50px;
    left: -150px;
    width: 360px;
  }
}

@media only screen and (min-width: 1400px) {
  .bottom-bg-03__02 {
    top: auto;
    bottom: -60px;
    left: -170px;
    width: 400px;
  }
}

@media only screen and (min-width: 1600px) {
  .bottom-bg-03__02 {
    top: auto;
    bottom: -70px;
    left: -180px;
    width: 440px;
  }
}

/* ------------------------------------------------*/
/* Sections Inner End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Blocks Common Start */
/* ------------------------------------------------*/
.page-content {
  position: relative;
  width: 100%;
  min-width: 360px;
  height: auto;
  z-index: 3;
}

.fullheight-desktop {
  position: relative;
  height: auto;
}

@media only screen and (min-width: 1200px) {
  .fullheight-desktop {
    height: 100%;
  }
}

.grid-item {
  padding: 0 1rem;
  margin-top: 2rem;
}

@media only screen and (min-width: 768px) {
  .grid-item {
    padding: 0 1.5rem;
    margin-top: 3rem;
  }
}

@media only screen and (min-width: 1600px) {
  .grid-item {
    padding: 0 2.5rem;
    margin-top: 5rem;
  }
}

.grid-item-s {
  padding: 0 1rem;
  margin-top: 2rem;
}

.content__block {
  position: relative;
  padding: 0 2rem;
}

.content__block.no-padding {
  padding: 0;
}

.content__block.name-block {
  padding: 0 2rem;
}

.content__block.grid-block {
  padding: 0 1rem;
}

@media only screen and (min-width: 768px) {
  .content__block {
    padding: 0 5rem;
  }

  .content__block.name-block {
    padding: 0 5rem;
  }

  .content__block.grid-block {
    padding: 0 3.5rem;
  }
}

@media only screen and (min-width: 1200px) {
  .content__block.name-block {
    padding: 0 0 0 5rem;
  }
}

@media only screen and (min-width: 1600px) {
  .content__block.grid-block {
    padding: 0 2.5rem;
  }
}

.content__block.section-title {
  margin-bottom: 4rem;
}

.content__block.section-grid-title {
  margin-bottom: 3.6rem;
}

.content__block.section-grid-text-title {
  margin-bottom: 4rem;
}

.content__block.section-stack-title {
  margin-bottom: 0;
}

.content__block.section-tagline-title {
  margin-bottom: 4.8rem;
}

.content__block.section-form-title {
  margin-bottom: 3.5rem;
}

.content__block.large-text-block {
  margin: 10.3rem 0 10.8rem 0;
}

.content__block.large-text-block.pre-stack {
  margin-bottom: 2.8rem;
}

.content__block.pre-grid-items {
  margin-bottom: 4.8rem;
}

.content__block.pre-text-items {
  margin-bottom: 6rem;
}

.content__block.pre-offcanvas-text-block {
  margin-bottom: 12.7rem;
}

.content__block.pre-offcanvas-grid-block {
  margin-bottom: 14rem;
}

.content__block.pre-stack-block {
  position: relative;
  z-index: 1000;
  margin-bottom: -2.4rem;
}

.content__block.pre-stack-text-block {
  position: relative;
  z-index: 1000;
  margin-bottom: -2rem;
}

@media only screen and (min-width: 768px) {
  .content__block.section-text-title {
    margin-bottom: 2.7rem;
  }

  .content__block.section-grid-title {
    margin-bottom: 3.8rem;
  }

  .content__block.section-grid-text-title {
    margin-bottom: 4.9rem;
  }

  .content__block.section-stack-title {
    margin-bottom: 0;
  }

  .content__block.section-tagline-title {
    margin-bottom: 6rem;
  }

  .content__block.section-form-title {
    margin-bottom: 5.4rem;
  }

  .content__block.large-text-block {
    margin: 12.6rem 0 13.4rem 0;
  }

  .content__block.large-text-block.pre-stack {
    margin-bottom: 3.4rem;
  }

  .content__block.pre-grid-items {
    margin-bottom: 5.8rem;
  }

  .content__block.pre-text-items {
    margin-bottom: 8rem;
  }

  .content__block.pre-offcanvas-text-block {
    margin-bottom: 17.8rem;
  }

  .content__block.pre-offcanvas-grid-block {
    margin-bottom: 20rem;
  }

  .content__block.pre-stack-block {
    margin-bottom: -3.2rem;
  }

  .content__block.pre-stack-text-block {
    margin-bottom: -2.1rem;
  }
}

@media only screen and (min-width: 992px) {
  .content__block.section-text-title {
    margin-bottom: 3.4rem;
  }

  .content__block.section-grid-title {
    margin-bottom: 4.5rem;
  }

  .content__block.section-grid-text-title {
    margin-bottom: 5.6rem;
  }

  .content__block.section-stack-title {
    margin-bottom: 0;
  }

  .content__block.section-tagline-title {
    margin-bottom: 6.7rem;
  }

  .content__block.section-form-title {
    margin-bottom: 6.1rem;
  }

  .content__block.large-text-block.pre-stack {
    margin-bottom: 3.4rem;
  }

  .content__block.pre-grid-items {
    margin-bottom: 6.5rem;
  }

  .content__block.pre-text-items {
    margin-bottom: 8.7rem;
  }

  .content__block.pre-stack-block {
    margin-bottom: -2.5rem;
  }

  .content__block.pre-stack-text-block {
    margin-bottom: -1.4rem;
  }
}

@media only screen and (min-width: 1200px) {
  .content__block.section-text-title {
    margin-bottom: 3.9rem;
  }

  .content__block.section-grid-title {
    margin-bottom: 4.2rem;
  }

  .content__block.section-grid-text-title {
    margin-bottom: 5.6rem;
  }

  .content__block.section-stack-title {
    margin-bottom: 0;
  }

  .content__block.section-tagline-title {
    margin-bottom: 6.3rem;
  }

  .content__block.section-form-title {
    margin-bottom: 6.1rem;
  }

  .content__block.large-text-block {
    margin: 14.3rem 0 15.2rem 0;
  }

  .content__block.large-text-block.pre-stack {
    margin-bottom: 5.2rem;
  }

  .content__block.pre-grid-items {
    margin-bottom: 7.5rem;
  }

  .content__block.pre-text-items {
    margin-bottom: 8.6rem;
  }

  .content__block.pre-offcanvas-text-block {
    margin-bottom: 19.5rem;
  }

  .content__block.pre-offcanvas-grid-block {
    margin-bottom: 22rem;
  }

  .content__block.pre-stack-block {
    margin-bottom: -2.8rem;
  }

  .content__block.pre-stack-text-block {
    margin-bottom: -1.4rem;
  }
}

@media only screen and (min-width: 1400px) {
  .content__block.section-text-title {
    margin-bottom: 3.6rem;
  }

  .content__block.section-grid-title {
    margin-bottom: 5rem;
  }

  .content__block.section-grid-text-title {
    margin-bottom: 6.5rem;
  }

  .content__block.section-stack-title {
    margin-bottom: 0;
  }

  .content__block.section-tagline-title {
    margin-bottom: 7rem;
  }

  .content__block.section-form-title {
    margin-bottom: 6.8rem;
  }

  .content__block.large-text-block {
    margin: 17rem 0 17.9rem 0;
  }

  .content__block.large-text-block.pre-stack {
    margin-bottom: 7rem;
  }

  .content__block.pre-grid-items {
    margin-bottom: 7.5rem;
  }

  .content__block.pre-text-items {
    margin-bottom: 9.5rem;
  }

  .content__block.pre-offcanvas-text-block {
    margin-bottom: 22.2rem;
  }

  .content__block.pre-offcanvas-grid-block {
    margin-bottom: 25rem;
  }

  .content__block.pre-stack-block {
    margin-bottom: -3rem;
  }

  .content__block.pre-stack-text-block {
    margin-bottom: -1.5rem;
  }
}

@media only screen and (min-width: 1600px) {
  .content__block.section-text-title {
    margin-bottom: 1.9rem;
  }

  .content__block.section-grid-title {
    margin-bottom: 3.5rem;
  }

  .content__block.section-grid-text-title {
    margin-bottom: 5.8rem;
  }

  .content__block.section-stack-title {
    margin-bottom: 0;
  }

  .content__block.section-tagline-title {
    margin-bottom: 7.3rem;
  }

  .content__block.section-form-title {
    margin-bottom: 7.9rem;
  }

  .content__block.large-text-block {
    margin: 16.3rem 0 17.6rem 0;
  }

  .content__block.large-text-block.pre-stack {
    margin-bottom: 6.6rem;
  }

  .content__block.pre-grid-items {
    margin-bottom: 7rem;
  }

  .content__block.pre-text-items {
    margin-bottom: 10.8rem;
  }

  .content__block.pre-offcanvas-text-block {
    margin-bottom: 26.2rem;
  }

  .content__block.pre-offcanvas-grid-block {
    margin-bottom: 30rem;
  }

  .content__block.pre-stack-block {
    margin-bottom: -2.5rem;
  }

  .content__block.pre-stack-text-block {
    margin-bottom: -0.2rem;
  }
}

.block__subtitle.grid-block-subtitle {
  padding: 0 1rem;
}

@media only screen and (min-width: 768px) {
  .block__subtitle.grid-block-subtitle {
    padding: 0 1.5rem;
  }
}

@media only screen and (min-width: 1600px) {
  .block__subtitle.grid-block-subtitle {
    padding: 0 2.5rem;
  }
}

.block__subtitle {
  margin-bottom: 6.3rem;
}

.block__subtitle.grid-block-subtitle {
  margin-bottom: 4.3rem;
}

@media only screen and (min-width: 768px) {
  .block__subtitle {
    margin-bottom: 8.3rem;
  }

  .block__subtitle.grid-block-subtitle {
    margin-bottom: 5.3rem;
  }
}

@media only screen and (min-width: 992px) {
  .block__subtitle {
    margin-bottom: 9rem;
  }

  .block__subtitle.grid-block-subtitle {
    margin-bottom: 6rem;
  }
}

@media only screen and (min-width: 1200px) {
  .block__subtitle {
    margin-bottom: 9rem;
  }

  .block__subtitle.grid-block-subtitle {
    margin-bottom: 6rem;
  }
}

@media only screen and (min-width: 1400px) {
  .block__subtitle {
    margin-bottom: 9.9rem;
  }

  .block__subtitle.grid-block-subtitle {
    margin-bottom: 6.9rem;
  }
}

@media only screen and (min-width: 1600px) {
  .block__subtitle {
    margin-bottom: 11.3rem;
  }

  .block__subtitle.grid-block-subtitle {
    margin-bottom: 6.3rem;
  }
}

.fullheight-l {
  height: auto;
}

@media only screen and (min-width: 992px) {
  .fullheight-l {
    height: 100%;
  }
}

.divider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.divider-image,
.divider-video {
  height: max-content;
  background-image: none !important;
}

.divider-image img {
  width: 100%;
  height: auto;
  -moz-border-radius: var(--_radius);
  border-radius: var(--_radius);
}

.divider-image video {
  width: 100%;
  height: auto;
  -moz-border-radius: var(--_radius);
  border-radius: var(--_radius);
}

@media only screen and (min-width: 768px) {
  .divider-image,
  .divider-video {
    height: max-content;
  }
}

@media only screen and (min-width: 1400px) {
  .divider-image,
  .divider-video {
    height: max-content;
  }
}

@media only screen and (min-width: 1600px) {
  .divider-image,
  .divider-video {
    height: max-content;
  }
}

.divider-image-xl,
.divider-video-xl {
  background-repeat: no-repeat;
  background-position: center;
  -moz-background-size: cover;
  background-size: cover;
  height: max-content;
}

@media only screen and (min-width: 768px) {
  .divider-image-xl,
  .divider-video-xl {
    height: 500px;
  }
}

@media only screen and (min-width: 1200px) {
  .divider-image-xl,
  .divider-video-xl {
    height: 600px;
  }
}

@media only screen and (min-width: 1400px) {
  .divider-image-xl,
  .divider-video-xl {
    height: 700px;
  }
}

@media only screen and (min-width: 1600px) {
  .divider-image-xl,
  .divider-video-xl {
    height: 800px;
  }
}

.section-title__name {
  margin-bottom: 0.4rem;
}

@media only screen and (min-width: 768px) {
  .section-title__name {
    margin-bottom: 1.2rem;
  }
}

@media only screen and (min-width: 1200px) {
  .section-title__name {
    margin-bottom: 0;
    margin-top: 1.6rem;
  }
}

@media only screen and (min-width: 1400px) {
  .section-title__name {
    margin-top: 1.8rem;
  }
}

@media only screen and (min-width: 1600px) {
  .section-title__name {
    margin-top: 2.6rem;
  }
}

/* ------------------------------------------------*/
/* Blocks Common End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Blocks Header Start */
/* ------------------------------------------------*/
.header {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: auto;
  z-index: 11;
  -moz-border-radius: var(--_radius-s);
  border-radius: var(--_radius-s);
  background-color: rgba(0, 0, 0, 0.03);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

@media only screen and (min-width: 768px) {
  .header {
    bottom: 3rem;
    left: 5rem;
  }
}

@media only screen and (min-width: 1200px) {
  .header {
    position: fixed;
    top: 3rem;
    bottom: auto;
    left: -moz-calc(16.66666667% + 3rem);
    left: calc(16.66666667% + 3rem);
    background-color: rgba(0, 0, 0, 0);
    z-index: 9;
  }
}

@media only screen and (min-width: 1400px) {
  .header {
    position: fixed;
    top: 3rem;
    bottom: auto;
    left: -moz-calc(16.66666667% + 2.5rem);
    left: calc(16.66666667% + 2.5rem);
  }
}

.header__navigation {
  position: relative;
}

@media only screen and (min-width: 1200px) {
  .header__navigation {
    height: 4rem;
  }
}

@media only screen and (min-width: 1400px) {
  .header__navigation {
    height: 5rem;
  }
}

.logo {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  align-items: center;
  justify-content: center;
  top: 5rem;
  right: 5rem;
  z-index: 100;
  isolation: isolate;
  mix-blend-mode: difference;
}

.text-slider {
  position: absolute;
  top: 5.4rem;
  left: 25rem;
  z-index: 99;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 2.4vh;
}
.text-modal {
  position: relative;
  display: flex;
  flex-direction: column;
}

.text-slider a {
  font-size: 1.8vh;
  height: 2.4vh;
  display: flex;
  align-items: center;
}

.text-slider a:hover {
  color: #fe5f55;
}

.menu-button {
  position: fixed;
  top: 5rem;
  left: 5rem;
  z-index: 100;
  isolation: isolate;
  mix-blend-mode: difference;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: center;
  cursor: pointer;
  border: 1px solid #fff;
  padding: 0.5vh 1.5vh;
  border-radius: 100%;
  overflow: hidden;
}

.lang_button {
  position: fixed;
  top: 5rem;
  left: 14rem;
  z-index: 100;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  background-color: black;
  width: 3vh;
  height: 3vh;
  overflow: hidden;
  transition: 0.2s ease-in-out;
}

.lang_button:hover{
  background-color: #fe5f55;
}

.lang_button a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 1.3vh;
}

.menu-button:hover {
  background-color: #fff;
}

.menu-button p {
  color: #fff;
  font-size: 1.5vh;
}

.menu-button p:nth-child(2) {
  position: absolute;
  transform: translateY(110%);
}

.menu-button:hover p {
  color: #000;
}

@media only screen and (min-width: 768px) {
  .logo {
    top: 5rem;
    right: 5rem;
  }
}

.logo__link {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.textcircle {
  position: absolute;
  display: block !important;
  width: 15vh !important;
  animation: rotate360 10s linear infinite;
  pointer-events: none;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.textcircle text {
  text-transform: uppercase;
  font-family: var(--_font-default);
  font-weight: 300;
  font-size: 4vh;
}

@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.logo__link svg {
  width: auto;
  height: 4rem;
  pointer-events: all;
  animation: rotate2360 10s linear infinite;
  animation-play-state: paused;
}

.logo__link:hover span {
  opacity: 1;
  pointer-events: all;
}

.logo:hover svg {
  animation-play-state: running;
}

.logo:hover .textcircle {
  opacity: 1;
}

@keyframes rotate2360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

.logo__link span {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding-left: 1.4rem;
  padding-right: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease-in-out;
  color: #fff;
}

@media only screen and (min-width: 1400px) {
  .logo__link svg {
    height: 3rem;
  }

  .logo__link span {
    padding-left: 1.6rem;
  }
}

.color {
  position: fixed;
  top: 2rem;
  right: 2rem;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  -moz-border-radius: var(--_radius-s);
  border-radius: var(--_radius-s);
  overflow: hidden;
  z-index: 100;
}

@media only screen and (min-width: 768px) {
  .color {
    top: 3rem;
    right: 5rem;
  }
}

@media only screen and (min-width: 1400px) {
  .color {
    width: 5rem;
    height: 5rem;
  }
}

.color-switcher {
  position: relative;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border: none;
  outline: 0;
  padding: 0;
  font: inherit;
  background-color: var(--neutral-bright);
  cursor: pointer;
  text-decoration: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 1.8rem;
  height: 1.8rem;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

@media only screen and (min-width: 768px) {
  .color-switcher {
    width: 2.2rem;
    height: 2.2rem;
  }
}

@media only screen and (min-width: 1400px) {
  .color-switcher {
    width: 2.6rem;
    height: 2.6rem;
  }
}

.header-offset {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 8rem;
  background-color: var(--base);
  z-index: 3;
}

@media only screen and (min-width: 768px) {
  .header-offset {
    height: 8.8rem;
  }
}

@media only screen and (min-width: 1200px) {
  .header-offset {
    height: 0;
  }
}

/* ------------------------------------------------*/
/* Blocks Header End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Blocks Menu Start */
/* ------------------------------------------------*/
.menu__list {
  position: relative;
}

@media only screen and (min-width: 1200px) {
  .menu__list {
    height: 4rem;
  }
}

@media only screen and (min-width: 1400px) {
  .menu__list {
    height: 5rem;
  }
}

.menu__item {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.menu__link {
  width: 4rem;
  height: 4rem;
  -moz-border-radius: var(--_radius-s);
  border-radius: var(--_radius-s);
  color: var(--t-bright);
  white-space: nowrap;
  font-size: 1.8rem;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.menu__link.active {
  color: var(--t-opp-bright);
  background-color: var(--neutral-bright);
}

@media only screen and (min-width: 1200px) {
  .menu__link {
    width: auto;
    height: 4rem;
    padding: 0 2rem;
    font: normal var(--font-weight-medium) 1.6rem/4rem var(--_font-default);
    color: var(--t-medium);
  }

  .menu__link i {
    display: none;
  }

  .menu__link:hover {
    color: var(--t-bright);
  }

  .menu__link:hover .menu__caption {
    color: var(--t-bright);
  }

  .menu__link.active {
    color: var(--t-bright);
    background-color: transparent;
  }

  .menu__link.active .menu__caption {
    color: var(--t-bright);
    -moz-background-size: 0 1px, 100% 1px;
    background-size: 0 1px, 100% 1px;
  }
}

@media only screen and (min-width: 1400px) {
  .menu__link {
    height: 5rem;
    line-height: 5rem;
    padding: 0 2.5rem;
  }
}

@media only screen and (min-width: 1600px) {
  .menu__link {
    font-size: 1.8rem;
  }
}

.menu__caption {
  display: none;
}

@media only screen and (min-width: 1200px) {
  .menu__caption {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    text-decoration: none;
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(rgba(0, 0, 0, 0)),
        to(rgba(0, 0, 0, 0))
      ),
      -webkit-gradient(linear, left top, right top, from(var(--t-bright)), to(var(--t-bright)));
    background: -moz-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
      -moz-linear-gradient(left, var(--t-bright), var(--t-bright));
    background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
      linear-gradient(to right, var(--t-bright), var(--t-bright));
    -moz-background-size: 100% 1px, 0 1px;
    background-size: 100% 1px, 0 1px;
    background-position: 100% 100%, 0 100%;
    background-repeat: no-repeat;
    -webkit-transition: background-size 300ms, color 300ms;
    -moz-transition: background-size 300ms, color 300ms,
      -moz-background-size 300ms;
    transition: background-size 300ms, color 300ms;
    transition: background-size 300ms, color 300ms, -moz-background-size 300ms;
  }
}

/* ------------------------------------------------*/
/* Blocks Menu End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Blocks Footer Start */
/* ------------------------------------------------*/
.footer {
  position: relative;
  padding: 10.4rem 0 0 0;
  z-index: 3;
}

.footer.footer-marquee {
  padding: 12.2rem 0 0 0;
}

@media only screen and (min-width: 768px) {
  .footer {
    padding: 14.6rem 0 0 0;
  }

  .footer.footer-marquee {
    padding: 17.2rem 0 0 0;
  }
}

@media only screen and (min-width: 1200px) {
  .footer {
    padding: 16.1rem 0 9.8rem 0;
  }

  .footer.footer-marquee {
    padding: 10.1rem 0 4rem 0;
  }
}

@media only screen and (min-width: 1400px) {
  .footer {
    padding: 10.1rem 0 9.7rem 0;
  }

  .footer.footer-marquee {
    padding: 10.1rem 0 4rem 0;
  }
}

@media only screen and (min-width: 1600px) {
  .footer {
    padding: 21.2rem 0 11rem 0;
  }

  .footer.footer-marquee {
    padding: 10.1rem 0 4rem 0;
  }
}

.footer__link {
  position: relative;
  margin-bottom: 6.8rem;
}

@media only screen and (min-width: 992px) {
  .footer__link {
    margin-bottom: 7.5rem;
  }
}

@media only screen and (min-width: 1200px) {
  .footer__link {
    margin-bottom: 8.2rem;
  }
}

@media only screen and (min-width: 1400px) {
  .footer__link {
    margin-bottom: 8rem;
  }
}

@media only screen and (min-width: 1600px) {
  .footer__link {
    margin-bottom: 8.5rem;
  }
}

.footer__text {
  font: normal 300 4.6rem var(--_font-accent);
  color: var(--t-bright);
}

@media only screen and (min-width: 768px) {
  .footer__text {
    font-size: 8rem;
  }
}

@media only screen and (min-width: 1200px) {
  .footer__text {
    font-size: 9rem;
  }
}

@media only screen and (min-width: 1400px) {
  .footer__text {
    font-size: 10rem;
  }
}

@media only screen and (min-width: 1600px) {
  .footer__text {
    font-size: 14rem;
  }
}

.footer__btn {
  margin-top: 2.8rem;
}

@media only screen and (min-width: 768px) {
  .footer__btn {
    margin-top: 0;
  }
}

.footer__divider {
  position: relative;
  width: 100%;
  height: 1px;
  background-color: var(--stroke-elements);
}

.footer-logo {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-logo svg {
  width: 4rem;
  height: auto;
}

.footer-logo span {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding-left: 1.4rem;
}

@media only screen and (min-width: 1400px) {
  .footer-logo svg {
    width: 5rem;
  }

  .footer-logo span {
    padding-left: 1.6rem;
  }
}

/* ------------------------------------------------*/
/* Blocks Footer End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Blocks Popup Dialogs Start */
/* ------------------------------------------------*/
.popup {
  position: relative;
  background-color: var(--base);
  -moz-border-radius: var(--_radius);
  border-radius: var(--_radius);
  padding: 0;
  width: -moz-calc(100% - 4rem);
  width: calc(100% - 4rem);
  margin: 2rem auto;
  overflow: hidden;
  -webkit-box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3),
    0 15px 12px rgba(0, 0, 0, 0.22);
  -moz-box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3),
    0 15px 12px rgba(0, 0, 0, 0.22);
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
}

@media only screen and (min-width: 768px) {
  .popup {
    margin: 3rem auto;
    width: -moz-calc(100% - 10rem);
    width: calc(100% - 10rem);
  }
}

@media only screen and (min-width: 1600px) {
  .popup {
    max-width: 1620px;
  }
}

.project__block {
  padding: 0 2rem;
}

.project__block.no-padding {
  padding: 0;
}

.project__block.grid-block {
  padding: 0 1rem;
}

@media only screen and (min-width: 768px) {
  .project__block {
    padding: 0 5rem;
  }

  .project__block.grid-block {
    padding: 0 3.5rem;
  }
}

@media only screen and (min-width: 1600px) {
  .project__block.grid-block {
    padding: 0 2.5rem;
  }
}

.project__block {
  margin-top: 6rem;
  margin-bottom: 5.9rem;
}

.project__block.pre-grid-items {
  margin-bottom: 3.9rem;
}

.project__block.grid-items {
  margin-top: 3.8rem;
}

.project__block.normal-size {
  margin-top: 6rem;
  margin-bottom: 6.8rem;
}

.project__block.small-size {
  margin: 2rem 0;
}

.project__block.no-margin {
  margin: 0;
}

.project__block.no-margin-bottom {
  margin-bottom: 0;
}

@media only screen and (min-width: 768px) {
  .project__block {
    margin-top: 8rem;
    margin-bottom: 7.9rem;
  }

  .project__block.pre-grid-items {
    margin-bottom: 4.9rem;
  }

  .project__block.grid-items {
    margin-top: 5rem;
  }

  .project__block.normal-size {
    margin-top: 8rem;
    margin-bottom: 8.8rem;
  }

  .project__block.small-size {
    margin: 5rem 0;
  }

  .project__block.no-margin-bottom {
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 992px) {
  .project__block {
    margin-top: 8.7rem;
    margin-bottom: 8.6rem;
  }

  .project__block.pre-grid-items {
    margin-bottom: 5.6rem;
  }

  .project__block.grid-items {
    margin-top: 5.7rem;
  }

  .project__block.normal-size {
    margin-top: 8.7rem;
    margin-bottom: 9.5rem;
  }

  .project__block.no-margin-bottom {
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 1200px) {
  .project__block {
    margin-top: 8.2rem;
    margin-bottom: 8.6rem;
  }

  .project__block.pre-grid-items {
    margin-bottom: 5.6rem;
  }

  .project__block.grid-items {
    margin-top: 5.2rem;
  }

  .project__block.normal-size {
    margin-top: 9.5rem;
    margin-bottom: 9.5rem;
  }

  .project__block.no-margin-bottom {
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 1400px) {
  .project__block {
    margin-top: 9.1rem;
    margin-bottom: 9.4rem;
  }

  .project__block.pre-grid-items {
    margin-bottom: 6.5rem;
  }

  .project__block.grid-items {
    margin-top: 6.1rem;
  }

  .project__block.normal-size {
    margin-top: 10.5rem;
    margin-bottom: 10.5rem;
  }

  .project__block.no-margin-bottom {
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 1600px) {
  .project__block {
    margin-top: 10.4rem;
    margin-bottom: 10.7rem;
  }

  .project__block.pre-grid-items {
    margin-bottom: 5.7rem;
  }

  .project__block.grid-items {
    margin-top: 5.4rem;
  }

  .project__block.normal-size {
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .project__block.no-margin-bottom {
    margin-bottom: 0;
  }
}

.project-image-bg {
  position: relative;
  width: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  -moz-background-size: cover;
  background-size: cover;
  overflow: hidden;
}

@media only screen and (min-width: 768px) {
  .project-image-bg {
    height: auto;
  }
}

@media (orientation: landscape) {
  .project-image-bg__landscape {
    display: block;
  }

  .project-image-bg__portrait {
    display: none;
  }
}

@media (orientation: portrait) {
  .project-image-bg__portrait {
    display: block;
  }

  .project-image-bg__landscape {
    display: none;
  }
}

.project__title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2.4rem 2rem;
}

@media only screen and (min-width: 768px) {
  .project__title {
    padding: 2.6rem 5rem;
  }
}

@media only screen and (min-width: 1200px) {
  .project__title {
    padding: 4rem 5rem 4.6rem 5rem;
  }
}

.project__subtitle {
  margin-bottom: 2.8rem;
}

.project__subtitle.image-top-subtitle {
  margin-bottom: 3rem;
}

@media only screen and (min-width: 768px) {
  .project__subtitle {
    margin-bottom: 3.4rem;
  }

  .project__subtitle.image-top-subtitle {
    margin-bottom: 4.5rem;
  }
}

@media only screen and (min-width: 1200px) {
  .project__subtitle {
    margin-bottom: 0;
    padding-top: 0.4rem;
  }

  .project__subtitle.image-top-subtitle {
    margin-bottom: 0;
    padding-top: 0;
  }
}

.project__illustration,
.project__illustration-xl {
  position: relative;
  -moz-border-radius: var(--_radius);
  border-radius: var(--_radius);
  overflow: hidden;
}

.project__data {
  position: relative;
}

@media only screen and (min-width: 1600px) {
  .pdata__item {
    padding-top: 0.4rem;
  }
}

.project__feedback {
  position: relative;
  margin-bottom: 5.9rem;
}

@media only screen and (min-width: 768px) {
  .project__feedback {
    margin-bottom: 8rem;
  }
}

@media only screen and (min-width: 992px) {
  .project__feedback {
    margin-bottom: 8.6rem;
  }
}

@media only screen and (min-width: 1200px) {
  .project__feedback {
    margin-bottom: 8.6rem;
  }
}

@media only screen and (min-width: 1400px) {
  .project__feedback {
    margin-bottom: 9.5rem;
  }
}

@media only screen and (min-width: 1600px) {
  .project__feedback {
    margin-bottom: 10.7rem;
  }
}

.fauthor__avatar {
  width: 60px;
  min-width: 60px;
  height: 60px;
  margin-right: 2rem;
  -moz-border-radius: var(--_radius);
  border-radius: var(--_radius);
  overflow: hidden;
}

@media only screen and (min-width: 768px) {
  .fauthor__avatar {
    width: 120px;
    min-width: 120px;
    height: 120px;
    margin-right: 3rem;
  }
}

.fauthor__name {
  color: var(--t-bright);
}

.fauthor__position {
  margin-top: 0.6rem;
}

@media only screen and (min-width: 1600px) {
  .fauthor__position {
    margin-top: 0.8rem;
  }
}

.fauthor__rating {
  margin-top: 1.3rem;
}

.fauthor__rating i {
  display: block;
  margin-right: 1rem;
  font-size: 1.6rem;
  color: var(--t-bright);
}

.fauthor__rating i:last-of-type {
  margin-right: 0;
}

@media only screen and (min-width: 1400px) {
  .fauthor__rating i {
    font-size: 1.8rem;
  }
}

@media only screen and (min-width: 1600px) {
  .fauthor__rating {
    margin-bottom: 0.4rem;
  }

  .fauthor__rating i {
    font-size: 2rem;
  }
}

.feedback__descr {
  margin-top: 2.8rem;
}

@media only screen and (min-width: 768px) {
  .feedback__descr {
    margin-top: 3.8rem;
  }
}

@media only screen and (min-width: 1200px) {
  .feedback__descr {
    margin-top: 3.6rem;
  }
}

@media only screen and (min-width: 1400px) {
  .feedback__descr {
    margin-top: 3.4rem;
  }
}

.project__divider {
  position: relative;
  width: 100%;
  height: 1px;
  background-color: var(--stroke-elements);
}

.mfp-wrap {
  position: fixed !important;
}

.mfp-fade {
  overflow: hidden;
}

.mfp-fade .mfp-container {
  position: fixed;
  overflow-y: scroll;
}

.mfp-bg {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.6);
}

.mfp-container {
  padding: 0;
}

.mfp-close-btn-in .mfp-close {
  width: 4rem;
  height: 4rem;
  -moz-border-radius: var(--_radius-s);
  border-radius: var(--_radius-s);
  border: 1px solid var(--t-per-bright-dark);
  right: 3rem;
  top: 3rem;
  opacity: 1;
  padding: 0;
  font: inherit;
  color: var(--t-per-bright-dark);
  font-size: 1.8rem;
  line-height: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.mfp-close-btn-in .mfp-close::before {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-family: "Phosphor";
  content: "\eddb";
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.mfp-close-btn-in .mfp-close.permanent-dark {
  border: 1px solid var(--t-per-bright-dark);
  background-color: var(--t-per-bright-dark);
  color: var(--t-per-bright-light);
}

.mfp-close-btn-in .mfp-close.permanent-light {
  border: 1px solid var(--t-per-bright-light);
  background-color: var(--t-per-bright-light);
  color: var(--t-per-bright-dark);
}

@media only screen and (min-width: 1200px) {
  .mfp-close-btn-in .mfp-close.permanent-dark {
    border: 1px solid var(--t-per-bright-dark);
    background-color: transparent;
    color: var(--t-per-bright-dark);
  }

  .mfp-close-btn-in .mfp-close.permanent-light {
    border: 1px solid var(--t-per-bright-light);
    background-color: transparent;
    color: var(--t-per-bright-light);
  }

  .no-touch .mfp-close-btn-in .mfp-close:hover.permanent-dark {
    border: 1px solid var(--t-per-bright-dark);
    background-color: var(--t-per-bright-dark);
    color: var(--neutral-white);
  }

  .no-touch .mfp-close-btn-in .mfp-close:hover.permanent-light {
    border: 1px solid var(--t-per-bright-light);
    background-color: var(--t-per-bright-light);
    color: var(--t-per-bright-dark);
  }
}

@media only screen and (min-width: 1400px) {
  .mfp-close-btn-in .mfp-close {
    width: 5rem;
    height: 5rem;
  }
}

/* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 1;
}

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transform: translateY(3rem);
  -moz-transform: translateY(3rem);
  -ms-transform: translateY(3rem);
  transform: translateY(3rem);
  -webkit-transition: all 0.3s var(--_animbezier);
  -moz-transition: all 0.3s var(--_animbezier);
  transition: all 0.3s var(--_animbezier);
}

/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
  -webkit-transform: translateY(3rem);
  -moz-transform: translateY(3rem);
  -ms-transform: translateY(3rem);
  transform: translateY(3rem);
}

/* ------------------------------------------------*/
/* Blocks Popup Dialogs End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Features Marquee Start */
/* ------------------------------------------------*/
.items {
  max-width: 100%;
  overflow: hidden;
}

.items--gsap {
  color: #fff;
}

.items--gsap .items__container {
  translate: -moz-calc(-100% + 100vw) !important;
  translate: calc(-100% + 100vw) !important;
}

.items__caption {
  max-width: 50vw;
  padding: 0 1.5rem;
}

.items__container {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
}

.items .item {
  margin-right: 2rem;
}

@media only screen and (min-width: 768px) {
  .items .item {
    margin-right: 3rem;
  }
}

@media only screen and (min-width: 1600px) {
  .items .item {
    margin-right: 5rem;
  }
}

.item {
  position: relative;
  width: 45vw;
  height: auto;
  background-color: var(--base);
  -moz-border-radius: 20px;
  border-radius: 20px;
  overflow: hidden;
  color: var(--t-bright);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  -webkit-animation: animateZ 1s infinite;
  -moz-animation: animateZ 1s infinite;
  animation: animateZ 1s infinite;
}

.item.item-regular {
  width: auto;
  -moz-border-radius: 0;
  border-radius: 0;
  gap: 0;
  background-color: transparent;
  color: var(--t-bright);
  -webkit-animation: animateZ 1s infinite;
  -moz-animation: animateZ 1s infinite;
  animation: animateZ 1s infinite;
}

.item.icon {
  border: 1px solid var(--stroke-elements);
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.item.icon svg,
.item.icon img {
  display: block;
  height: 70px;
  width: auto;
}

.item.image {
  background-repeat: no-repeat;
  background-position: center;
  -moz-background-size: cover;
  background-size: cover;
}

.item.image img {
  display: block;
  width: 100%;
  height: auto;
}

@media only screen and (min-width: 768px) {
  .item.icon svg,
  .item.icon img {
    height: 120px;
  }
}

@media only screen and (min-width: 992px) {
  .item {
    width: 30vw;
  }
}

@media only screen and (min-width: 1200px) {
  .item {
    width: 25vw;
  }
}

@media only screen and (min-width: 1600px) {
  .item {
    width: 20vw;
  }

  .item.icon svg,
  .item.icon img {
    height: 140px;
  }
}

.item__text {
  margin-right: 2rem;
}

.item__text.text-with-gliph {
  margin-right: 0;
}

.item__text.text-with-gliph::after {
  content: "/";
  display: inline;
  padding-left: 2rem;
}

@media only screen and (min-width: 768px) {
  .item__text {
    margin-right: 3rem;
  }

  .item__text.text-with-gliph::after {
    padding-left: 3rem;
  }
}

@media only screen and (min-width: 1600px) {
  .item__text {
    margin-right: 5rem;
  }

  .item__text.text-with-gliph::after {
    padding-left: 5rem;
  }
}

.item__image {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
}

@media only screen and (min-width: 768px) {
  .item__image {
    width: 7rem;
    height: 7rem;
  }
}

@media only screen and (min-width: 1400px) {
  .item__image {
    width: 8rem;
    height: 8rem;
  }
}

@media only screen and (min-width: 1600px) {
  .item__image {
    width: 11rem;
    height: 11rem;
  }
}

.item__image img,
.item__image video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.item__text {
  font: normal 300 4.6rem var(--_font-accent);
  color: var(--t-bright);
}

@media only screen and (min-width: 768px) {
  .item__text {
    font-size: 8rem;
  }
}

@media only screen and (min-width: 1200px) {
  .item__text {
    font-size: 9rem;
  }
}

@media only screen and (min-width: 1400px) {
  .item__text {
    font-size: 10rem;
  }
}

@media only screen and (min-width: 1600px) {
  .item__text {
    font-size: 14rem;
  }
}

@-webkit-keyframes toLeft {
  to {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@-moz-keyframes toLeft {
  to {
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@keyframes toLeft {
  to {
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@-webkit-keyframes toRight {
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-moz-keyframes toRight {
  to {
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes toRight {
  to {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes animateZ {
  to {
    -webkit-transform: translateZ(1px);
    transform: translateZ(1px);
  }
}

@-moz-keyframes animateZ {
  to {
    -moz-transform: translateZ(1px);
    transform: translateZ(1px);
  }
}

@keyframes animateZ {
  to {
    -webkit-transform: translateZ(1px);
    -moz-transform: translateZ(1px);
    transform: translateZ(1px);
  }
}

/* ------------------------------------------------*/
/* Features Marquee End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Features About Start */
/* ------------------------------------------------*/
.about-descr,
.about-info {
  padding-top: 2.8rem;
}

.about-descr.pre-grid,
.about-info.pre-grid {
  padding-top: 3.7rem;
}

.about-descr.pre-title,
.about-info.pre-title {
  padding-top: 2.5rem;
}

@media only screen and (min-width: 768px) {
  .about-descr,
  .about-info {
    padding-top: 0;
  }

  .about-descr.pre-title,
  .about-info.pre-title {
    padding-top: 0rem;
  }

  .about-descr.pre-grid,
  .about-info.pre-grid {
    padding-top: 4.7rem;
  }
}

@media only screen and (min-width: 768px) {
  .about-descr.pre-grid,
  .about-info.pre-grid {
    padding-top: 5.4rem;
  }
}

@media only screen and (min-width: 1200px) {
  .about-descr.pre-grid,
  .about-info.pre-grid {
    padding-top: 5.2rem;
  }
}

@media only screen and (min-width: 1600px) {
  .about-descr.pre-grid,
  .about-info.pre-grid {
    padding-top: 5.4rem;
  }
}

.about-descr__text {
  margin-bottom: 2.1rem;
}

.about-descr__text:last-of-type {
  margin-bottom: 0;
}

@media only screen and (min-width: 768px) {
  .about-descr__text {
    margin-bottom: 3rem;
  }
}

@media only screen and (min-width: 1200px) {
  .about-descr__text {
    margin-bottom: 2.8rem;
  }
}

@media only screen and (min-width: 1400px) {
  .about-descr__text {
    margin-bottom: 2.6rem;
  }
}

@media only screen and (min-width: 1600px) {
  .about-descr__text {
    margin-bottom: 3.2rem;
  }
}

.about-descr__btnholder {
  margin-top: 3.2rem;
}

@media only screen and (min-width: 768px) {
  .about-descr__btnholder {
    margin-top: 4.1rem;
  }
}

@media only screen and (min-width: 1400px) {
  .about-descr__btnholder {
    margin-top: 4rem;
  }
}

@media only screen and (min-width: 1600px) {
  .about-descr__btnholder {
    margin-top: 4.7rem;
  }
}

.about-info__item {
  margin-bottom: 2rem;
}

.about-info__item:last-of-type {
  margin-bottom: 0;
}

@media only screen and (min-width: 768px) {
  .about-info__item {
    margin-bottom: 3rem;
  }
}

@media only screen and (min-width: 1200px) {
  .about-info__item {
    margin-bottom: 2.8rem;
  }
}

@media only screen and (min-width: 1400px) {
  .about-info__item {
    margin-bottom: 2.6rem;
  }
}

@media only screen and (min-width: 1600px) {
  .about-info__item {
    margin-bottom: 3.2rem;
  }
}

/* ------------------------------------------------*/
/* Features About End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Features Gallery Start */
/* ------------------------------------------------*/
.inner__gallery {
  position: relative;
}

.gallery__btn {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  padding: 0 1rem;
  margin-top: 2rem;
}

@media only screen and (min-width: 768px) {
  .gallery__btn {
    position: absolute;
    right: 0;
    bottom: 0;
    width: auto;
    padding: 0 1.5rem;
    margin-top: 0;
  }
}

@media only screen and (min-width: 1600px) {
  .gallery__btn {
    padding: 0 2.5rem;
  }
}

.gallery__item {
  position: relative;
  cursor: pointer;
}

.gallery__link {
  display: block;
  position: relative;
  overflow: hidden;
  -moz-border-radius: var(--_radius);
  border-radius: var(--_radius);
}

.gallery__link .picture {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 112%;
  height: 112%;
  background-repeat: no-repeat;
  background-position: center center;
  -moz-background-size: cover;
  background-size: cover;
  -webkit-transition: background-position 0.5s;
  -moz-transition: background-position 0.5s;
  transition: background-position 0.5s;
  -webkit-transition: opacity 0.5s ease-in-out, width 0.3s var(--_animbezier),
    height 0.3s var(--_animbezier), -webkit-transform 0.7s ease-in-out;
  transition: opacity 0.5s ease-in-out, width 0.3s var(--_animbezier),
    height 0.3s var(--_animbezier), -webkit-transform 0.7s ease-in-out;
  -moz-transition: transform 0.7s ease-in-out, opacity 0.5s ease-in-out,
    width 0.3s var(--_animbezier), height 0.3s var(--_animbezier),
    -moz-transform 0.7s ease-in-out;
  transition: transform 0.7s ease-in-out, opacity 0.5s ease-in-out,
    width 0.3s var(--_animbezier), height 0.3s var(--_animbezier);
  transition: transform 0.7s ease-in-out, opacity 0.5s ease-in-out,
    width 0.3s var(--_animbezier), height 0.3s var(--_animbezier),
    -webkit-transform 0.7s ease-in-out, -moz-transform 0.7s ease-in-out;
}

@media only screen and (min-width: 1200px) {
  .gallery__link {
    -webkit-transform: scale3d(1, 1, 1);
    -moz-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transition: -webkit-transform 0.3s var(--_animbezier);
    transition: -webkit-transform 0.3s var(--_animbezier);
    -moz-transition: transform 0.3s var(--_animbezier),
      -moz-transform 0.3s var(--_animbezier);
    transition: transform 0.3s var(--_animbezier);
    transition: transform 0.3s var(--_animbezier),
      -webkit-transform 0.3s var(--_animbezier),
      -moz-transform 0.3s var(--_animbezier);
  }

  .no-touch .gallery__link:hover .picture {
    width: 100%;
    height: 100%;
  }
}

.gallery__image {
  opacity: 0;
}

.gallery__descr {
  position: absolute;
  bottom: 0;
  left: 0.75rem;
  width: -moz-calc(100% - 1.5rem);
  width: calc(100% - 1.5rem);
  padding: 1.875rem;
}

.gallery__descr h5,
.gallery__descr p {
  display: none;
}

@media only screen and (min-width: 1200px) {
  .gallery__descr {
    position: absolute;
    bottom: 0;
    left: 1.25rem;
    width: -moz-calc(100% - 2.5rem);
    width: calc(100% - 2.5rem);
  }
}

.pswp__bg {
  background: var(--per-base);
}

.pswp__top-bar,
.pswp__ui--fit .pswp__top-bar {
  height: 74px;
  padding: 1.5rem;
  background-color: transparent;
}

.pswp__counter {
  left: 1.5rem;
  top: 1.5rem;
  padding: 0 1.4rem;
  -moz-border-radius: var(--_radius-s);
  border-radius: var(--_radius-s);
  background-color: rgba(0, 0, 0, 0.6);
  font: normal 400 1.8rem/44px var(--_font-default);
  font-variant-numeric: lining-nums;
  color: var(--t-per-bright-light);
  opacity: 1;
}

.pswp__counter:active {
  opacity: 1;
}

.pswp__caption,
.pswp__ui--fit .pswp__caption {
  padding: 1.5rem;
  background-color: transparent;
}

.pswp__caption__center {
  -moz-border-radius: var(--_radius);
  border-radius: var(--_radius);
  padding: 2.6rem 3rem;
  background-color: rgba(0, 0, 0, 0.6);
}

.pswp__caption__center h5 {
  font: normal 500 2.4rem var(--_font-accent);
  color: var(--t-per-bright-light);
  margin-bottom: 1.8rem;
  letter-spacing: normal;
}

.pswp__caption__center h5 small {
  display: block;
  font: normal 400 1.6rem var(--_font-default);
  color: var(--t-per-medium-light);
  margin-top: 0.4rem;
}

.pswp__caption__center p {
  font: normal 300 1.8rem/1.4 var(--_font-default);
  color: var(--t-per-bright-light);
}

@media only screen and (min-width: 1200px) {
  .pswp__caption__center {
    max-width: 600px;
  }
}

.pswp__button {
  background-color: var(--per-base);
  border: 1px solid var(--per-stroke-elements);
  -moz-border-radius: var(--_radius-s);
  border-radius: var(--_radius-s);
  opacity: 1;
}

.pswp__button:active {
  opacity: 1;
}

.pswp__button--zoom,
.pswp__button--fs,
.pswp__button--share {
  margin-right: 1rem;
}

.pswp__button--close {
  position: relative;
  background-color: var(--neutral-white);
  border: none;
  opacity: 1;
}

.pswp__button--close:active {
  opacity: 1;
}

.pswp__button--arrow--left,
.pswp__button--arrow--right {
  width: 74px;
  opacity: 1;
  border: none;
  background-color: transparent;
}

.pswp__button--arrow--left::before,
.pswp__button--arrow--right::before {
  top: 28px;
  width: 44px;
  height: 44px;
  line-height: 44px;
  -moz-border-radius: var(--_radius-s);
  border-radius: var(--_radius-s);
  background-color: var(--neutral-white);
  color: var(--t-per-bright-dark);
  font-size: 1.6rem;
}

.pswp__button--arrow--left:before {
  left: 1.5rem;
  background-position: -132px -44px;
}

.pswp__button--arrow--right:before {
  right: 1.5rem;
  background-position: -88px -44px;
}

/* ------------------------------------------------*/
/* Features Gallery End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Features Achievements Start */
/* ------------------------------------------------*/
.numblock {
  padding: 1rem 1.25rem;
  margin-right: 1rem;
  border: 1px solid var(--stroke-elements);
  background-color: var(--base);
  -moz-border-radius: var(--_radius);
  border-radius: var(--_radius);
}

.numblock:last-of-type {
  margin-right: 0;
}

.numblock__number {
  display: block;
  font: normal 700 2.25rem/1 var(--_font-accent);
  font-variant-numeric: lining-nums;
  color: var(--t-bright);
}

.numblock__descr {
  font: normal 700 -moz-calc(var(--_size) * 0.938) / 1.2 var(--_font-default);
  font: normal 700 calc(var(--_size) * 0.938) / 1.2 var(--_font-default);
  color: var(--t-muted);
  margin-top: 0.375rem;
}

@media only screen and (min-width: 768px) {
  .numblock__descr {
    margin-top: 0;
    margin-left: 0.375rem;
  }
}

.achievements__item {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .achievements__item {
    width: 33.33333334%;
  }
}

.achievements__card {
  height: 100%;
  padding: 3rem;
  background-color: var(--base);
  border: 1px solid var(--stroke-elements);
  -moz-border-radius: var(--_radius);
  border-radius: var(--_radius);
  text-align: center;
}

@media only screen and (min-width: 1600px) {
  .achievements__card {
    padding: 5rem 3rem;
  }
}

.achievements__number {
  font: normal 300 4.6rem/0.8 var(--_font-accent);
  font-variant-numeric: lining-nums;
  color: var(--t-bright);
}

@media only screen and (min-width: 768px) {
  .achievements__number {
    font-size: 8rem;
  }
}

@media only screen and (min-width: 1200px) {
  .achievements__number {
    font-size: 9rem;
  }
}

@media only screen and (min-width: 1400px) {
  .achievements__number {
    font-size: 10rem;
  }
}

@media only screen and (min-width: 1600px) {
  .achievements__number {
    font-size: 10rem;
  }
}

.achievements__descr {
  font: normal 400 1.8rem var(--_font-default);
  color: var(--t-bright);
  margin-top: 1.5rem;
}

@media only screen and (min-width: 768px) {
  .achievements__descr {
    font-size: 2rem;
  }
}

@media only screen and (min-width: 1400px) {
  .achievements__descr {
    font-size: 2.2rem;
  }
}

@media only screen and (min-width: 1600px) {
  .achievements__descr {
    font-size: 2.6rem;
  }
}

/* ------------------------------------------------*/
/* Features Achievements End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Features Stacking Cards Start */
/* ------------------------------------------------*/
.stack-wrapper {
  position: relative;
  width: 100%;
}

.stack-offset {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 8rem;
  background-color: var(--base);
}

.stack-offset.solid-block {
  height: 8rem;
}

@media only screen and (min-width: 768px) {
  .stack-offset {
    height: 10rem;
  }

  .stack-offset.solid-block {
    height: 10rem;
  }
}

@media only screen and (min-width: 992px) {
  .stack-offset {
    height: 10rem;
  }

  .stack-offset.solid-block {
    height: 10rem;
  }
}

@media only screen and (min-width: 1200px) {
  .stack-offset.solid-block {
    height: 10rem;
  }
}

@media only screen and (min-width: 1400px) {
  .stack-offset {
    height: 11rem;
  }

  .stack-offset.solid-block {
    height: 11rem;
  }
}

@media only screen and (min-width: 1600px) {
  .stack-offset.solid-block {
    height: 11rem;
  }
}

.services-stack {
  width: 100%;
  position: relative;
  height: 65vh;
  min-height: 615px;
}

@media only screen and (min-width: 768px) {
  .services-stack {
    height: 500px;
    min-height: 0;
  }
}

@media only screen and (min-width: 1400px) {
  .services-stack {
    height: 600px;
  }
}

@media only screen and (min-width: 1600px) {
  .services-stack {
    height: 700px;
  }
}

.portfolio-stack {
  width: 100%;
  position: relative;
  height: 460px;
}

@media only screen and (min-width: 768px) {
  .portfolio-stack {
    height: 530px;
  }
}

@media only screen and (min-width: 1400px) {
  .portfolio-stack {
    height: 630px;
  }
}

@media only screen and (min-width: 1600px) {
  .portfolio-stack {
    height: 750px;
  }
}

.stack-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  padding-bottom: 2rem;
}

@media only screen and (min-width: 768px) {
  .stack-item {
    padding-bottom: 3rem;
  }
}

@media only screen and (min-width: 1600px) {
  .stack-item {
    padding-bottom: 5rem;
  }
}

.services-stack__inner {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-color: var(--base);
  border: 1px solid var(--stroke-elements);
  -moz-border-radius: var(--_radius);
  border-radius: var(--_radius);
}

.services-stack__title {
  padding: 2.6rem 3rem 0 3rem;
  margin-bottom: 2.3rem;
}

@media only screen and (min-width: 768px) {
  .services-stack__title {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 60%;
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 1400px) {
  .services-stack__title {
    padding: 4rem 5rem 4.6rem 5rem;
  }
}

.services-stack__descr {
  padding: 0 3rem;
  margin-bottom: 2.3rem;
}

.services-stack__descr i {
  display: inline-block;
  font-size: 5.4rem;
  color: var(--t-bright);
  margin-bottom: 2.3rem;
  margin-left: -0.2rem;
}

@media only screen and (min-width: 768px) {
  .services-stack__descr {
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 50%;
    margin-bottom: 0;
    padding: 2.6rem 3rem;
  }
}

@media only screen and (min-width: 1400px) {
  .services-stack__descr {
    padding: 4rem 5rem 4.6rem 5rem;
  }
}

.services-stack__image {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 3rem;
  position: relative;
  overflow: hidden;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.services-stack__image .service-img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.services-stack__image .service-img-m {
  display: none;
}

@media only screen and (min-width: 768px) {
  .services-stack__image {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    padding-left: 0;
  }

  .services-stack__image .service-img {
    position: absolute;
    right: -10%;
    bottom: 0;
    height: 100%;
    width: auto;
  }

  .services-stack__image .service-img-s {
    display: none;
  }

  .services-stack__image .service-img-m {
    display: block;
  }
}

@media only screen and (min-width: 992px) {
  .services-stack__image .service-img {
    position: absolute;
    right: 0;
    bottom: 0;
  }
}

.portfolio-stack__inner {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-color: transparent;

  overflow: hidden;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center center;
  -moz-background-size: cover;
  background-size: cover;
}

.portfolio-stack__inner img {
  width: 100%;
  height: auto;
  -moz-border-radius: var(--_radius);
  border-radius: var(--_radius);
}

.portfolio-stack__descr {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2.4rem 3rem;
}

@media only screen and (min-width: 768px) {
  .portfolio-stack__descr {
    display: block;
    width: 60%;
    padding: 2.6rem 3rem;
  }
}

@media only screen and (min-width: 1200px) {
  .portfolio-stack__descr {
    width: 40%;
    padding: 4rem 5rem 4.6rem 5rem;
  }
}

@media only screen and (min-width: 1600px) {
  .portfolio-stack__descr {
    width: 33.3334%;
  }
}

.portfolio-stack__title {
  color: var(--t-per-bright-light);
}

.portfolio-stack__title.dark {
  color: var(--t-per-bright-dark);
  font-weight: 400;
}

.portfolio-stack__title.light {
  color: var(--neutral-white);
  font-weight: 300;
}

.portfolio-stack__text {
  margin-top: 3rem;
  font-weight: 300;
  color: var(--t-per-bright-light);
}

.portfolio-stack__text.dark {
  font-weight: 400;
  color: var(--t-per-bright-dark);
}

@media only screen and (min-width: 1400px) {
  .portfolio-stack__text {
    margin-top: 4rem;
  }
}

/* ------------------------------------------------*/
/* Features Stacking Cards End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Features Services Start */
/* ------------------------------------------------*/
.services {
  position: relative;
}

.services__item {
  position: relative;
  overflow: hidden;
}

@media only screen and (min-width: 768px) {
  .services__item {
    height: 500px;
  }
}

@media only screen and (min-width: 1400px) {
  .services__item {
    height: 600px;
  }
}

@media only screen and (min-width: 1600px) {
  .services__item {
    height: 700px;
  }
}

.services__card {
  position: relative;
  height: 100%;
  background-color: var(--base);
  border: 1px solid var(--stroke-elements);
  -moz-border-radius: var(--_radius);
  border-radius: var(--_radius);
  overflow: hidden;
}

.services__title {
  padding: 2.6rem 3rem 0 3rem;
  margin-bottom: 2.3rem;
}

@media only screen and (min-width: 768px) {
  .services__title {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 60%;
    z-index: 2;
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 1400px) {
  .services__title {
    padding: 4rem 5rem 4.6rem 5rem;
  }
}

.services__descr {
  padding: 0 3rem;
  margin-bottom: 2.3rem;
}

.services__descr i {
  display: inline-block;
  font-size: 5.4rem;
  color: var(--t-bright);
  margin-bottom: 2.3rem;
  margin-left: -0.2rem;
}

@media only screen and (min-width: 768px) {
  .services__descr {
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 50%;
    z-index: 2;
    margin-bottom: 0;
    padding: 2.6rem 3rem;
  }
}

@media only screen and (min-width: 1400px) {
  .services__descr {
    padding: 4rem 5rem 4.6rem 5rem;
  }
}

@media only screen and (min-width: 768px) {
  .services__text {
    margin-bottom: 0;
  }
}

.services__image {
  padding-left: 3rem;
  position: relative;
  overflow: hidden;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.services__image .service-img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.services__image .service-img-m {
  display: none;
}

@media only screen and (min-width: 768px) {
  .services__image {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    padding-left: 0;
  }

  .services__image .service-img {
    position: absolute;
    right: -10%;
    bottom: 0;
    height: 100%;
    width: auto;
  }

  .services__image .service-img-s {
    display: none;
  }

  .services__image .service-img-m {
    display: block;
  }
}

@media only screen and (min-width: 992px) {
  .services__image .service-img {
    position: absolute;
    right: 0;
    bottom: 0;
  }
}

.cards {
  position: relative;
}

.cards__item {
  position: relative;
  overflow: hidden;
}

.cards__card {
  height: 100%;
  background-color: var(--base);
  border: 1px solid var(--stroke-elements);
  -moz-border-radius: var(--_radius);
  border-radius: var(--_radius);
  overflow: hidden;
}

.cards__descr {
  padding: 2.6rem 3rem;
}

@media only screen and (min-width: 1400px) {
  .cards__descr {
    padding: 4rem 5rem 4.6rem 5rem;
  }
}

.cards__text {
  margin-top: 3rem;
}

@media only screen and (min-width: 1400px) {
  .cards__text {
    margin-top: 4rem;
  }
}

.cards__image {
  position: relative;
  overflow: hidden;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -moz-border-radius-topleft: var(--_radius);
  border-top-left-radius: var(--_radius);
  -moz-border-radius-topright: var(--_radius);
  border-top-right-radius: var(--_radius);
}

.cards__image img {
  -o-object-fit: cover;
  object-fit: cover;
  max-width: 100%;
  max-height: 100%;
  border-top-left-radius: var(--_radius) !important;
}

.cards__image-v2 {
  padding-left: 3rem;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

@media only screen and (min-width: 1400px) {
  .cards__image-v2 {
    padding-left: 5rem;
  }
}

/* ------------------------------------------------*/
/* Features Services End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Features prize Start */
/* ------------------------------------------------*/
.prize-lines,
.prize-lines-number {
  position: relative;
}

.prize-lines__item,
.prize-lines-number__item {
  padding: 1rem 0 1rem 0;
}

@media only screen and (min-width: 1600px) {
  .prize-lines__item,
  .prize-lines-number__item {
    padding: 1rem 0 1rem 0;
  }
}

.prize-divider {
  position: relative;
  width: 100%;
  height: 1px;
  margin-top: 4.8rem;
  margin-bottom: 4.8rem;
  background-color: var(--stroke-elements);
}

.prize-lines__date {
  margin-bottom: 1.9rem;
}

@media only screen and (min-width: 768px) {
  .prize-lines__date {
    margin-bottom: 0;
  }
}

.prize-lines-number__date {
  display: flex;
  flex-direction: column;
  margin-top: 2.6rem;
}

.prize-lines-number__date span {
  font-size: 1.8vh;
}

@media only screen and (min-width: 768px) {
  .prize-lines-number__date {
    margin-top: 0;
  }
}

.prize-lines__title,
.prize-lines__source {
  padding-right: 3rem;
}

@media only screen and (min-width: 1600px) {
  .prize-lines__title,
  .prize-lines__source {
    padding-right: 5rem;
  }
}

@media only screen and (min-width: 768px) {
  .prize-lines-number__title,
  .prize-lines-number__source {
    padding-right: 3rem;
  }
}

@media only screen and (min-width: 1600px) {
  .prize-lines-number__title,
  .prize-lines-number__source {
    padding-right: 5rem;
  }
}

.prize-lines__title {
  margin-bottom: 0.6rem;
}

.prize-lines__source,
.prize-lines-number__source {
  display: inline-block;
}

.prize-gap {
  display: flex;
  flex-direction: column;
  gap: 2vh;
}

.prize-lines__descr {
  margin-top: 2.3rem;
}

@media only screen and (min-width: 768px) {
  .prize-lines__descr {
    margin-top: 0;
  }
}

.prize-lines-number__descr {
  display: flex;
  flex-direction: column;
  margin-bottom: 2.4rem;
}

.prize-lines-number__descr span {
  font-size: 1.8vh;
}

/* ------------------------------------------------*/
/* Features prize End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Features Tools Start */
/* ------------------------------------------------*/
.tools-cards__item {
  width: 50%;
}

@media only screen and (min-width: 768px) {
  .tools-cards__item {
    width: 33.33333334%;
  }
}

@media only screen and (min-width: 992px) {
  .tools-cards__item {
    width: 25%;
  }
}

.tools-cards__card {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  padding: 3rem;
  background-color: var(--base);
  border: 1px solid var(--stroke-elements);
  -moz-border-radius: var(--_radius);
  border-radius: var(--_radius);
  text-align: center;
}

@media only screen and (min-width: 1600px) {
  .tools-cards__card {
    padding: 5rem 3rem;
  }
}

.tools-cards__icon {
  width: auto;
  height: 6rem;
  margin: 0 auto;
}

@media only screen and (min-width: 1400px) {
  .tools-cards__icon {
    height: 7rem;
  }
}

@media only screen and (min-width: 1600px) {
  .tools-cards__icon {
    height: 9rem;
  }
}

.tools-cards__caption {
  line-height: 1;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1vh;
}

.tools-cards__caption span {
  font-size: 1.8vh;
}

.tools-card {
  padding: 3rem;
  background-color: var(--base);
  border: 1px solid var(--stroke-elements);
  -moz-border-radius: var(--_radius-xl);
  border-radius: var(--_radius-xl);
  overflow: hidden;
}

.tools-card__icon {
  width: auto;
  height: 60px;
  margin: 0 auto;
}

@media only screen and (min-width: 768px) {
  .tools-card__icon {
    height: 90px;
  }
}

.tools-card__caption {
  line-height: 1;
  margin-top: 1.5rem;
}

/* ------------------------------------------------*/
/* Features Tools End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Features Testimonials Start */
/* ------------------------------------------------*/
.testimonials-card {
  padding: 3rem;
  background-color: var(--base);
  border: 1px solid var(--stroke-elements);
  -moz-border-radius: var(--_radius);
  border-radius: var(--_radius);
}

@media only screen and (min-width: 992px) {
  .testimonials-card {
    height: 500px;
  }
}

@media only screen and (min-width: 1400px) {
  .testimonials-card {
    padding: 5rem;
    height: 600px;
  }
}

@media only screen and (min-width: 1600px) {
  .testimonials-card {
    height: 700px;
  }
}

.testimonials-card__tdata {
  position: relative;
  padding-right: 0;
}

@media only screen and (min-width: 992px) {
  .testimonials-card__tdata {
    height: 100%;
    padding-right: 1.5rem;
  }
}

@media only screen and (min-width: 1400px) {
  .testimonials-card__tdata {
    padding-right: 2.5rem;
  }
}

.testimonials-card__timage {
  position: relative;
  padding-left: 0;
}

@media only screen and (min-width: 992px) {
  .testimonials-card__timage {
    height: 100%;
    padding-left: 1.5rem;
  }
}

@media only screen and (min-width: 1400px) {
  .testimonials-card__timage {
    padding-left: 2.5rem;
  }
}

.timage__inner {
  -moz-border-radius: var(--_radius);
  border-radius: var(--_radius);
  overflow: hidden;
}

.timage__inner img {
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.testimonials-card__descr {
  max-width: 1050px;
  margin-top: 2.8rem;
}

@media only screen and (min-width: 768px) {
  .testimonials-card__descr {
    margin-top: 3.8rem;
  }
}

@media only screen and (min-width: 1200px) {
  .testimonials-card__descr {
    margin-top: 3.6rem;
  }
}

@media only screen and (min-width: 1400px) {
  .testimonials-card__descr {
    margin-top: 3.4rem;
  }
}

.testimonials-card__btnholder {
  margin-top: 2.2rem;
  margin-bottom: 3.3rem;
}

@media only screen and (min-width: 768px) {
  .testimonials-card__btnholder {
    margin-top: 3.2rem;
    margin-bottom: 4.2rem;
  }
}

@media only screen and (min-width: 992px) {
  .testimonials-card__btnholder {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0;
  }
}

.tauthor__avatar {
  width: 60px;
  min-width: 60px;
  height: 60px;
  margin-right: 2rem;
  -moz-border-radius: var(--_radius);
  border-radius: var(--_radius);
  overflow: hidden;
}

@media only screen and (min-width: 768px) {
  .tauthor__avatar {
    width: 120px;
    min-width: 120px;
    height: 120px;
    margin-right: 3rem;
  }
}

.tauthor__name {
  color: var(--t-bright);
}

.tauthor__position {
  margin-top: 0.6rem;
}

@media only screen and (min-width: 1600px) {
  .tauthor__position {
    margin-top: 0.8rem;
  }
}

.tauthor__rating {
  margin-top: 1.3rem;
}

.tauthor__rating i {
  display: block;
  margin-right: 1rem;
  font-size: 1.6rem;
  color: var(--t-bright);
}

.tauthor__rating i:last-of-type {
  margin-right: 0;
}

@media only screen and (min-width: 1400px) {
  .tauthor__rating i {
    font-size: 1.8rem;
  }
}

@media only screen and (min-width: 1600px) {
  .tauthor__rating {
    margin-bottom: 0.4rem;
  }

  .tauthor__rating i {
    font-size: 2rem;
  }
}

/* ------------------------------------------------*/
/* Features Testimonials End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Features Slider Start */
/* ------------------------------------------------*/
.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.swiper-testimonials {
  padding-bottom: 4.8rem;
}

@media only screen and (min-width: 1200px) {
  .swiper-testimonials {
    padding-bottom: 5rem;
  }
}

@media only screen and (min-width: 1400px) {
  .swiper-testimonials {
    padding-bottom: 7.2rem;
  }
}

@media only screen and (min-width: 1600px) {
  .swiper-testimonials {
    padding-bottom: 7.6rem;
  }
}

.mxd-swiper-pagination-fraction {
  width: auto;
  top: auto;
  bottom: 0;
  left: auto;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  padding-top: 3rem;
  font: normal 400 1.8rem/1 var(--_font-default);
  color: var(--t-bright);
}

@media only screen and (min-width: 1200px) {
  .mxd-swiper-pagination-fraction {
    font-size: 2rem;
  }
}

@media only screen and (min-width: 1400px) {
  .mxd-swiper-pagination-fraction {
    padding-top: 5rem;
    font-size: 2.2rem;
  }
}

@media only screen and (min-width: 1600px) {
  .mxd-swiper-pagination-fraction {
    font-size: 2.6rem;
  }
}

.mxd-slider-btn {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 0;
  left: auto;
  width: auto;
  height: auto;
  margin: 0;
}

.mxd-slider-btn::after {
  display: none;
}

.mxd-slider-btn .btn .btn-caption {
  display: none;
}

@media only screen and (min-width: 768px) {
  .mxd-slider-btn .btn .btn-caption {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    line-height: 1;
  }
}

.mxd-slider-btn-square-prev {
  padding-left: 3rem;
  left: 0;
}

@media only screen and (min-width: 1400px) {
  .mxd-slider-btn-square-prev {
    padding-left: 5rem;
  }
}

.mxd-slider-btn-square-next {
  padding-right: 3rem;
  right: 0;
}

@media only screen and (min-width: 1400px) {
  .mxd-slider-btn-square-next {
    padding-right: 5rem;
  }
}

/* ------------------------------------------------*/
/* Features Slider End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Features Socials Start */
/* ------------------------------------------------*/
/* Socials Cards */
.socials-cards {
  position: relative;
}

.socials-cards__item {
  width: 50%;
}

@media only screen and (min-width: 768px) {
  .socials-cards__item {
    width: 33.33333334%;
  }
}

@media only screen and (min-width: 992px) {
  .socials-cards__item {
    width: 20%;
  }
}

.socials-cards__link {
  position: relative;
  width: 100%;
  height: auto;
  padding: 2.6rem 0;
  background-color: var(--base);
  border: 1px solid var(--stroke-elements);
  -moz-border-radius: var(--_radius);
  border-radius: var(--_radius);
  overflow: hidden;
}

.socials-cards__link em {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: var(--t-bright);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
  -moz-transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.socials-cards__link i {
  position: relative;
  display: block;
  font-size: 7rem;
  line-height: 1;
  color: var(--t-bright);
  -webkit-transform: scale3d(1, 1, 1);
  -moz-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -webkit-transition: color 0.3s 0s, -webkit-transform 0.3s 0.1s ease-in-out;
  transition: color 0.3s 0s, -webkit-transform 0.3s 0.1s ease-in-out;
  -moz-transition: color 0.3s 0s, transform 0.3s 0.1s ease-in-out,
    -moz-transform 0.3s 0.1s ease-in-out;
  transition: color 0.3s 0s, transform 0.3s 0.1s ease-in-out;
  transition: color 0.3s 0s, transform 0.3s 0.1s ease-in-out,
    -webkit-transform 0.3s 0.1s ease-in-out,
    -moz-transform 0.3s 0.1s ease-in-out;
  will-change: transform;
}

.no-touch .socials-cards__link:hover {
  color: var(--t-opp-bright);
  background-color: var(--t-bright);
  -webkit-transition: color 0.3s 0s, background-color 0.3s 0.24s,
    -webkit-box-shadow 0.5s, -webkit-transform 0.3s ease-in-out;
  transition: color 0.3s 0s, background-color 0.3s 0.24s,
    -webkit-box-shadow 0.5s, -webkit-transform 0.3s ease-in-out;
  -moz-transition: color 0.3s 0s, background-color 0.3s 0.24s, box-shadow 0.5s,
    transform 0.3s ease-in-out, -moz-box-shadow 0.5s,
    -moz-transform 0.3s ease-in-out;
  transition: color 0.3s 0s, background-color 0.3s 0.24s, box-shadow 0.5s,
    transform 0.3s ease-in-out;
  transition: color 0.3s 0s, background-color 0.3s 0.24s, box-shadow 0.5s,
    transform 0.3s ease-in-out, -webkit-box-shadow 0.5s, -moz-box-shadow 0.5s,
    -webkit-transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
}

.no-touch .socials-cards__link:hover i {
  color: var(--t-opp-bright);
  -webkit-transform: scale3d(0.96, 0.96, 1);
  -moz-transform: scale3d(0.96, 0.96, 1);
  transform: scale3d(0.96, 0.96, 1);
}

.no-touch .socials-cards__link:hover em {
  width: 225%;
  height: 40.95rem;
}

@media only screen and (min-width: 1400px) {
  .socials-cards__link i {
    font-size: 8rem;
  }
}

@media only screen and (min-width: 1600px) {
  .socials-cards__link {
    padding: 4rem 0;
  }

  .socials-cards__link i {
    font-size: 10rem;
  }
}

/* Socials Lines */
.workz-lines {
  position: relative;
}

.workz-lines__item {
  position: relative;
  display: block;
}

.workz-lines__divider {
  position: relative;
  width: 100%;
  height: 1px;
  background-color: var(--stroke-elements);
}

.workz-lines__link {
  position: relative;
  padding: 3rem 0.4rem;
  color: var(--t-bright);
  overflow: hidden;
}

.workz-lines__link::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  height: 0;
  background: var(--t-bright);
  -webkit-transition: height var(--_animspeed-medium) var(--_animbezier);
  -moz-transition: height var(--_animspeed-medium) var(--_animbezier);
  transition: height var(--_animspeed-medium) var(--_animbezier);
}

.workz-lines__link h4,
.workz-lines__link i {
  color: var(--t-bright);
  -webkit-transition: all var(--_animspeed-medium) var(--_animbezier);
  -moz-transition: all var(--_animspeed-medium) var(--_animbezier);
  transition: all var(--_animspeed-medium) var(--_animbezier);
}

@media only screen and (min-width: 768px) {
  .workz-lines__link {
    padding: 5rem 0.4rem;
  }
}

.workz-lines__link .custom-a-sec {
  justify-content: space-between;
  z-index: 3;
  -webkit-transition: all var(--_animspeed-medium) var(--_animbezier);
  -moz-transition: all var(--_animspeed-medium) var(--_animbezier);
  transition: all var(--_animspeed-medium) var(--_animbezier);
}

.workz-lines__link .custom-a-sec span {
  color: var(--t-bright);
  -webkit-transition: all var(--_animspeed-medium) var(--_animbezier);
  -moz-transition: all var(--_animspeed-medium) var(--_animbezier);
  transition: all var(--_animspeed-medium) var(--_animbezier);
}

.workz-lines__link:hover .custom-a-sec span {
  color: var(--t-opp-bright);
}

@media only screen and (min-width: 1200px) {
  .no-touch .workz-lines__link:hover::before {
    height: 100%;
  }

  .no-touch .workz-lines__link:hover h4 {
    -webkit-transform: translate(5rem, 0px) !important;
    -moz-transform: translate(5rem, 0px) !important;
    -ms-transform: translate(5rem, 0px) !important;
    transform: translate(5rem, 0px) !important;
  }

  .no-touch .workz-lines__link:hover .custom-a-sec {
    -webkit-transform: translate(-5rem, 0px) !important;
    -moz-transform: translate(-5rem, 0px) !important;
    -ms-transform: translate(-5rem, 0px) !important;
    transform: translate(-5rem, 0px) !important;
  }

  .no-touch .workz-lines__link:hover i {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .no-touch .workz-lines__link:hover h4,
  .no-touch .workz-lines__link:hover i {
    color: var(--t-opp-bright);
  }
}

.workz-lines__icon {
  font-size: 3rem;
}

@media only screen and (min-width: 1400px) {
  .workz-lines__icon {
    font-size: 3.6rem;
  }
}

@media only screen and (min-width: 1600px) {
  .workz-lines__icon {
    font-size: 4rem;
  }
}

/* ------------------------------------------------*/
/* Features Socials End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Features Contact Data Start */
/* ------------------------------------------------*/
.contact-data__item {
  margin-bottom: 3.2rem;
}

.contact-data__item:last-of-type {
  margin-bottom: 0;
}

@media only screen and (min-width: 768px) {
  .contact-data__item {
    margin-bottom: 4.3rem;
  }

  .contact-data__item:nth-of-type(3),
  .contact-data__item:last-of-type {
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 992px) {
  .contact-data__item {
    margin-bottom: 0;
  }
}

.contact-data__title {
  margin-bottom: 2.5rem;
}

@media only screen and (min-width: 768px) {
  .contact-data__title {
    margin-bottom: 3.5rem;
  }
}

@media only screen and (min-width: 1400px) {
  .contact-data__title {
    margin-bottom: 3.4rem;
  }
}

@media only screen and (min-width: 1600px) {
  .contact-data__title {
    margin-bottom: 4.2rem;
  }
}

/* ------------------------------------------------*/
/* Features Contact Data End */
/* ------------------------------------------------*/

/* ------------------------------------------------*/
/* Marquee Brands Start */
/* ------------------------------------------------*/

.marquee-brands {
  width: 100%;
  position: relative;
  height: max-content;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 4vw;
}

.firstMarquee {
  width: 200vw;
  display: flex;
  align-items: center;
  animation: Scroll 60s linear infinite;
  gap: 10vw;
}

.secondMarquee {
  width: 200vw;
  position: relative;
  left: -50vw;
  display: flex;
  gap: 10vw;
  align-items: center;
  animation: Scroll 60s linear infinite;
  animation-direction: reverse;
}

.marquee-item {
  width: 14vw;
  min-width: 14vw;
  max-width: 14vw;

  img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

@keyframes Scroll {
  0% {
    transform: translateX(0vw);
    -webkit-transform: translateX(0vw);
  }

  100% {
    transform: translateX(-240vw);
    -webkit-transform: translateX(-240vw);
  }
}

@media screen and (max-width: 800px) {
  .body {
    gap: 2vw;
  }

  .firstMarquee {
    gap: 5vw;
  }

  .secondMarquee {
    gap: 5vw;
  }

  .marquee-item {
    width: 35vw;
    min-width: 35vw;
    max-width: 35vw;
  }
}

/* ------------------------------------------------*/
/* Marquee Brands End */
/* ------------------------------------------------*/

/* ------------------------------------------------*/
/* Awwards Start */
/* ------------------------------------------------*/

.awwards_menu {
  display: flex;
  align-items: center;
  gap: 1vw;
}

.awwards_menu p {
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.3s ease-in-out;
  border-radius: 0.6rem;
  transform-origin: center;
  padding: 0.3vh 1.2vh;
}

.awwards_menu p.active {
  color: #fff;
  background-color: #fe5f55;
  opacity: 1;
}

.awwards_section {
  opacity: 0;
  display: none;
  transform: translateY("5%");
}

.awwards_section.active {
  opacity: 0;
  display: block;
}

.a_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.a_logo img {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1.2vh;
  width: 25vh;
  height: auto;
}

@media screen and (max-width: 800px) {
  .a_logo {
    justify-content: flex-start;
    padding-left: 0.4vh;
  }
}

/* ------------------------------------------------*/
/* Awwards End */
/* ------------------------------------------------*/

/* ------------------------------------------------*/
/* Awwards Matter */
/* ------------------------------------------------*/

.awwards_scene canvas {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none !important;
  overflow: hidden;
}

.awwards_box {
  width: max-content;
  height: max-content;
  user-select: none;
  cursor: pointer;
  display: flex;
  position: absolute;
  align-items: center;
  gap: 1vw;
  padding: 0.5vw;
  padding-right: 2vw;
  background-color: #fe5f55;
  border-radius: 4rem;
  font-size: 2vw;
  color: #191919;
  z-index: 1;
}

.awwards_box p {
  font-size: 2vw;
}

.awwards_box .a_circle {
  position: relative;
  width: 3vw;
  height: 3vw;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #191919;
  color: white;
  transition: background 0.5s ease-in-out;
}

.awwards_box .a_circle p {
  color: #fff;
  transition: 0.5s ease-in-out;
}

.awwards_box .a_circle img {
  width: 60%;
  height: auto;
  position: absolute;
  opacity: 0;
  transition: 0.5s ease-in-out;
}

.awwards_box:hover {
  background-color: #191919;
  color: white;
}

.awwards_box:hover p {
  color: white;
}

.awwards_box:hover .a_circle {
  background-color: #fe5f55;
}

.awwards_box:hover .a_circle p {
  opacity: 0;
}

.awwards_box:hover .a_circle img {
  opacity: 1;
}

.awwards_box.small {
  font-size: 1vw;
}

.awwards_box.small p {
  font-size: 1vw;
}

.awwards_box.small .a_circle {
  width: 2vw;
  height: 2vw;
}

.awwards_box.medium {
  font-size: 1.2vw;
}

.awwards_box.medium p {
  font-size: 1.2vw;
}

.awwards_box.medium .a_circle {
  width: 2.5vw;
  height: 2.5vw;
}

@media screen and (max-width: 800px) {
  .awwards_scene {
    display: none;
  }
}

/* ------------------------------------------------*/
/* Awwards Matter End */
/* ------------------------------------------------*/

/* ------------------------------------------------*/
/* Custom Button */
/* ------------------------------------------------*/

.footer-bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 3rem;
  gap: 2vh;
}

.m-button {
  position: relative;
  overflow: hidden;
  width: max-content;
  height: 1.1vw;
  padding: 2.5vw 4vw 2.5vw 4vw;
  border-radius: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fe5f55;
  cursor: pointer;
  font-size: 0.8vw;
  letter-spacing: 1px;
  transition: 0.3s ease-in-out;
}

.m-button.m-small {
  padding: 1.5vw 2.5vw 1.5vw 2.5vw;
  font-size: 0.8vw;
}

.m-circle {
  width: 7.5vw;
  height: 7.5vw;
  border-radius: 50%;
  padding: 0;
}

.m-button p {
  font-size: 1vw;
  letter-spacing: 1px;
}

.m-button .reelP {
  top: 0;
  position: relative;
  transition: top 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.m-button .reelHover {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  transition: top 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  left: 0;
  top: 110%;
}

.m-button .reelHover p {
  position: absolute;
  color: white;
}

.m-button .reelHover .reelCircle {
  background-color: #000;
  width: 60%;
  height: 100%;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

.m-button:hover .reelHover {
  top: 0;
}

.m-button.m-circle:hover .reelCircle {
  width: 100%;
  border-radius: 50%;
}

.m-button:hover .reelCircle {
  width: 100%;
  border-radius: 2rem;
}

.m-button:hover .reelP {
  top: -190%;
}

@media screen and (max-width: 800px) {
  .m-button {
    padding: 3.5vw 3.5vw 3.5vw 3.5vw;
  }
  .m-button p {
    font-size: 2.5vw !important;
  }
}

/* ------------------------------------------------*/
/* Custom Button End */
/* ------------------------------------------------*/

/* ------------------------------------------------*/
/* Modal Hover */
/* ------------------------------------------------*/

.modal-container {
  height: 10vw;
  width: 13.833vw;
  position: absolute;
  background-color: white;
  overflow: hidden;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  transform: translate(-50%, -50%);
}

.modal-image {
  width: 10.625vw;
}

.modal-slider {
  height: 100%;
  width: 100%;
  position: absolute;
  transition: top 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.modal-main {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-main img {
  height: auto;
}

.modal-cursor,
.modal-label {
  width: 4.167vw;
  height: 4.167vw;
  border-radius: 50%;
  background-color: #fe5f55;
  color: white;
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 300;
  pointer-events: none;
  z-index: 4;
  transform: translate(-50%, -50%);
}

.modal-label {
  background-color: transparent;
}

@media screen and (max-width: 800px) {
  .modal-container {
    display: none;
  }

  .modal-cursor,
  .modal-label {
    display: none;
  }
}

.work-slider {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.work-slider-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgb(213, 183, 71);
  opacity: 0.7;
}

.work-slider-nav {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 25%;
  height: 15px;
  display: flex;
  justify-content: space-between;
  z-index: 10;
}

.work-nav-item-wrapper {
  flex: 1;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 750ms cubic-bezier(0, 0.75, 0.5, 1);
}

.work-slides-desc {
  position: absolute;
  display: flex;
  align-items: center;
  overflow: hidden;
  gap: 6vh;
  bottom: 20vh;
  right: 40vh;
}

.work-slides-desc p {
  font-size: 2.5vh;
}

.work-nav-item {
  width: 1px;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  transition: all 750ms cubic-bezier(0, 0.75, 0.5, 1);
  cursor: pointer;
}

.work-nav-item-wrapper.active {
  flex: 5;
}

.work-nav-item-wrapper.active .work-nav-item {
  width: 50%;
  border: 1px solid rgba(0, 0, 0, 1);
}

.work-slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 800vw;
  height: 100vh;
  display: flex;
}

.work-slide-element {
  position: relative;
  flex: 1;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.work-slide-element .work-slide-img {
  width: 50%;
  height: 50%;
  opacity: 0.75;
}

.work-slide-element .work-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-slide-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  height: 65%;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}

.work-slide-title-row {
  flex: 1;
  width: 100%;
  display: flex;
  gap: 0em;
}

.work-slide-title-row:nth-child(2) {
  position: relative;
  left: 4em;
}

.work-letter {
  flex: 1;
  height: 100%;
  padding-left: 2em;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.work-letter span {
  position: relative;
  display: inline-block;
  font-size: 200px;
  filter: brightness(0.25) saturate(0.75) !important;
}

.extra-images {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
}

.extra-images img {
  position: absolute;
  height: auto;
}

.extra-images img:nth-child(1) {
  width: 20vh;
  top: 18%;
  left: 22%;
  transform: rotate(10deg);
}

.extra-images img:nth-child(2) {
  width: 30vh;
  top: 55%;
  left: 18%;
}

@media (max-width: 900px) {
  .work-slider-nav {
    width: 40%;
  }

  .work-slide-element .work-slide-img {
    width: 80%;
    height: 75%;
  }

  .work-slide-title {
    left: 47.5%;
    height: 25%;
  }

  .work-slide-title-row:nth-child(2) {
    left: 0;
  }

  .work-letter span {
    font-size: 100px;
  }
}

.anim750 {
  transition: all 750ms ease-in-out;
}

#Awesome {
  position: relative;
  width: 180px;
  height: 180px;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

#Awesome .sticky_button {
  transform: rotate(45deg);
}

#Awesome:hover .sticky_button {
  transform: rotate(10deg);
}

#Awesome .sticky_button {
  position: absolute;
  top: 0;
  left: 0;
  width: 180px;
  height: 180px;
}

#Awesome .reveal .circle_button {
  box-shadow: 0 1px 0px rgba(0, 0, 0, 0.15);
  font-size: 2vh !important;
  font-family: "Inter", serif;
  font-weight: 400;
  line-height: 140px;
  text-align: center;

  cursor: pointer;
}

#Awesome .reveal .circle_button {
  background: #eef0f2;
}

#Awesome .circle_wrapper {
  position: absolute;
  width: 180px;
  height: 180px;
  left: 0px;
  top: 0px;
  overflow: hidden;
}

#Awesome .circle_button {
  position: absolute;
  width: 140px;
  height: 140px;
  margin: 20px;

  border-radius: 999px;
}

#Awesome .back_button {
  height: 10px;
  top: 30px;
}

#Awesome:hover .back_button {
  height: 90px;
  top: 110px;
}

#Awesome .back_button .circle_button {
  margin-top: -130px;
  background-color: #fe5f55;
  background-image: -webkit-linear-gradient(
    bottom,
    rgba(251, 236, 63, 0),
    rgba(255, 255, 255, 0.8)
  );
}

#Awesome:hover .back_button .circle_button {
  margin-top: -50px;
}

#Awesome .front {
  height: 150px;
  bottom: 0;
  top: auto;

  -webkit-box-shadow: 0 -140px 20px -140px rgba(0, 0, 0, 0.3);
}

#Awesome:hover .front {
  height: 70px;

  -webkit-box-shadow: 0 -60px 10px -60px rgba(0, 0, 0, 0.1);
}

#Awesome .front .circle_button {
  margin-top: -10px;
  background: #fe5f55;
  font-size: 2vh;
  background-image: -webkit-linear-gradient(
    bottom,
    rgba(251, 236, 63, 0) 75%,
    #c33a30 95%
  );
  background-image: -moz-linear-gradient(
    bottom,
    rgba(251, 236, 63, 0) 75%,
    #c33a30 95%
  );
  background-image: linear-gradient(
    bottom,
    rgba(251, 236, 63, 0) 75%,
    #c33a30 95%
  );
}

#Awesome h4 {
  font-weight: 400;
  text-align: center;
  font-size: 2vh;
  position: absolute;
  transition: opacity 50ms linear 400ms;
}

#Awesome a {
  font-weight: 400;
  text-align: center;
  font-size: 2vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#Awesome:hover h4 {
  opacity: 0;
  transition: opacity 50ms linear 300ms;
}

#Awesome:hover .front .circle_button {
  margin-top: -90px;
  background-color: #c33a30;
  background-position: 0 100px;
}

.cloneable {
  padding: 2em;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  display: flex;
  position: relative;
  font-size: 1.1vw;
  background-color: #000;
  margin-bottom: 10vh;
}

.overlay-slider {
  z-index: 2;
  background-image: linear-gradient(90deg, #000000 85%, #0000);
  justify-content: flex-start;
  align-items: center;
  width: 37.5em;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.overlay-inner {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 28.125em;
  display: flex;
}

.overlay-text {
  position: relative;
  width: 32.5em;
  padding-top: 1vh;
  height: 100%;
}

.text-content {
  position: absolute;
  display: flex;
  flex-flow: column;
  gap: 1vh;
  opacity: 0;
  transition: 0.3s ease-in-out;
  pointer-events: none;
}

.text-content h3,
.text-content p {
  color: #efeeec;
}

.text-content .slider-links {
  display: flex;
  align-items: center;
  gap: 5vh;
}

.text-content a {
  position: relative;
  display: inline-block;
  color: #efeeec;
  transition: 0.3s ease-in-out;
  font-size: 2vh;
  margin-top: 4vh;
  overflow: hidden;
  width: 18vh;
  max-width: 18vh;
  height: 3vh;
  white-space: nowrap;
}

.text-content a span {
  position: absolute;
  top: 105%;
  left: 0;
  transition: 0.3s cubic-bezier(0.33, 1, 0.68, 1);
  color: #fe5f55;
}

.text-content a span:nth-child(1) {
  top: 0;
  color: #fff;
}

.text-content a:hover span {
  top: 0;
}

.text-content a:hover span:nth-child(1) {
  top: -105%;
}

.text-content.active {
  opacity: 1;
  pointer-events: all;
}

.overlay-count-row {
  grid-column-gap: 0.2em;
  grid-row-gap: 0.2em;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  font-family: PP Neue Corp, Impact, sans-serif;
  font-size: 1.8em;
  font-weight: 700;
  display: flex;
}

.count-column {
  height: 1em;
  overflow: hidden;
}

.count-heading {
  width: 2ch;
  line-height: 1;
  margin: 0px;
  color: #efeeec;
}

.count-row-divider {
  background-color: #efeeec;
  width: 2px;
  height: 4vh;
  transform: rotate(15deg);
}

.overlay-nav-row {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  display: flex;
}

.button {
  background-color: #0000;
  color: #fff;
  border: 1px solid #fff3;
  border-radius: 0.4em;
  justify-content: center;
  align-items: center;
  width: 4em;
  height: 4em;
  padding: 0;
  display: flex;
  position: relative;
  cursor: pointer;
}

.button-arrow {
  flex: none;
  width: 1em;
  height: 0.75em;
}

.button-arrow.next {
  transform: rotate(180deg);
}

.button-overlay {
  z-index: 2;
  position: absolute;
  inset: -1px;
}

.overlay-corner {
  border-top: 1px solid #efeeec;
  border-left: 1px solid #efeeec;
  border-top-left-radius: 0.4em;
  width: 1em;
  height: 1em;
}

.overlay-corner.top-right {
  position: absolute;
  inset: 0% 0% auto auto;
  transform: rotate(90deg);
}

.overlay-corner.bottom-left {
  position: absolute;
  inset: auto auto 0% 0%;
  transform: rotate(-90deg);
}

.overlay-corner.bottom-right {
  position: absolute;
  inset: auto 0% 0% auto;
  transform: rotate(180deg);
}

.button,
.button-overlay {
  transition: transform 0.475s cubic-bezier(0.65, 0.05, 0, 1),
    opacity 0.475s cubic-bezier(0.65, 0.05, 0, 1);
}

.button:hover .button-overlay {
  transform: scale(1.4);
}
.overlay-nav-row:hover:has(.button:hover) .button {
  opacity: 0.4;
}
.button:hover {
  transform: scale(0.85);
  opacity: 1 !important;
}

.main-slider2 {
  z-index: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.slider-wrap {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.slider-list {
  flex-flow: row;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
  position: relative;
}

.slider-slide {
  flex: none;
  width: 42.5em;
  height: 28em;
  padding-left: 1.25em;
  padding-right: 1.25em;
  transition: opacity 0.4s;
  position: relative;
}

[data-slider="slide"] {
  opacity: 0.2;
}
[data-slider="slide"].active {
  opacity: 1;
}
[data-slider="slide"].active .slide-caption {
  transition-delay: 0.3s;
}

.slide-inner {
  border-radius: 0.5em;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
}

.slide-inner img {
  width: 80%;
  height: 70%;
  border-radius: 0.5em;
}

.slide-inner .cover-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.slide-inner video {
  width: 80%;
  height: 70%;
  border-radius: 0.5em !important;
  object-fit: cover !important;
}

.slide-caption {
  z-index: 2;
  grid-column-gap: 0.4em;
  grid-row-gap: 0.4em;
  background-color: #efeeec;
  color: #131313;
  white-space: nowrap;
  border-radius: 0.25em;
  justify-content: flex-start;
  align-items: center;
  padding: 0.4em 0.75em 0.4em 0.5em;
  display: flex;
  position: absolute;
  top: 1.25em;
  left: 1.25em;
  overflow: hidden;
}

.caption-dot {
  background-color: #131313;
  border-radius: 10em;
  flex: none;
  width: 0.5em;
  height: 0.5em;
}

.caption-slider {
  font-size: 0.75em;
  font-family: arial;
  margin: 0px;
}

.slide-caption {
  transition: transform 0.525s cubic-bezier(0.65, 0.05, 0, 1),
    opacity 0.525s cubic-bezier(0.65, 0.05, 0, 1);
  transition-delay: 0s;
}

@media screen and (max-width: 800px) {
  .cloneable {
    flex-direction: column;
    font-size: unset;
    gap: 5vh;
    padding: 2em 0;
  }

  .overlay-slider {
    width: 100%;
    height: 60vh;
    position: relative;
  }

  .overlay-inner {
    width: 100%;
    height: 100%;
  }

  .overlay-text {
    width: 100%;
  }

  .main-slider2 {
    z-index: 0;
    width: 100%;
    height: 40%;
    position: relative;
    inset: 0%;
    overflow: hidden;
  }

  .slider-list {
    left: -65%;
  }

  .slider-slide {
    width: 50vh;
    height: 30vh;
  }
}

html:not(.wf-design-mode) .slide-caption {
  opacity: 0;
  transform: translate(-25%, 0px);
}
html:not(.wf-design-mode) [data-slider="slide"].active .slide-caption {
  opacity: 1;
  transform: translate(0%, 0px);
}

.text-end {
  position: relative;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}

.text-end span {
  display: flex;
  align-items: center;
  gap: 1vh;
}

.text-end a {
  display: flex;
  align-items: center;
}

.text-end svg {
  width: 4.5vh;
  height: auto;
  cursor: pointer;
  fill: #fe5f55;
  transition: 0.3s ease-in-out;
}

.text-end svg:hover {
  fill: #141414;
}

.text-image {
  top: 0;
  left: 0;
  position: absolute;
}

.ti-1 {
  width: 14vh;
  height: auto;
  top: -3vh;
  left: 46%;
}

.ti-2 {
  width: 6.5vh;
  height: auto;
  top: -3vh;
  left: 29%;
}

.ti-3 {
  width: 25vh;
  height: auto;
  top: 59%;
  left: 13%;
}

.ti-4 {
  width: 13vh;
  height: auto;
  top: 45%;
  left: 35%;
}

.custom-intro {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  right: 6vh;
  top: 40vh;
}

.custom-intro img {
  position: relative;
  height: auto;
}

.custom-intro .img-1 {
  width: 30vh;
  bottom: -6vh;
}

.custom-intro .img-2 {
  width: 55vh;
}

.custom-intro .img-3 {
  top: -6vh;
  width: 15vh;
}

@media screen and (max-width: 800px) {
  .custom-intro .img-1 {
    width: 15vh;
    bottom: -6vh;
  }

  .custom-intro .img-2 {
    width: 30vh;
  }

  .custom-intro .img-3 {
    top: -6vh;
    width: 10vh;
  }
}

.orbit-section {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
  display: inline-block;
}

.orbit-section .orbit {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

div.orbit {
  /* background-color:  ; */
}

div.orbit.orbit-1 {
  -webkit-animation: orbit-rotate 10s linear infinite;
  -moz-animation: orbit-rotate 10s linear infinite;
  animation: orbit-rotate 10s linear infinite;
  -webkit-animation-delay: -6.8s;
  -moz-animation-delay: -6.8s;
  animation-delay: -6.8s;
  position: absolute;
  top: 58.4%;
  right: 0;
  bottom: 0;
  left: -9.4%;
  width: 118.8%;
}
div.orbit.orbit-1:after {
  -webkit-animation-delay: -6.8s;
  -moz-animation-delay: -6.8s;
  animation-delay: -6.8s;
  height: 4px;
  width: 4px;
}
div.orbit.orbit-2 {
  -webkit-animation: orbit-rotate 10s linear infinite;
  -moz-animation: orbit-rotate 10s linear infinite;
  animation: orbit-rotate 10s linear infinite;
  -webkit-animation-delay: -0.3s;
  -moz-animation-delay: -0.3s;
  animation-delay: -0.3s;
  position: absolute;
  top: 87.8%;
  right: 0;
  bottom: 0;
  left: -0.4%;
  width: 100.8%;
}
div.orbit.orbit-2:after {
  -webkit-animation-delay: -0.3s;
  -moz-animation-delay: -0.3s;
  animation-delay: -0.3s;
  height: 8px;
  width: 8px;
}
div.orbit.orbit-3 {
  -webkit-animation: orbit-rotate 10s linear infinite;
  -moz-animation: orbit-rotate 10s linear infinite;
  animation: orbit-rotate 10s linear infinite;
  -webkit-animation-delay: -2.3s;
  -moz-animation-delay: -2.3s;
  animation-delay: -2.3s;
  position: absolute;
  top: 47.2%;
  right: 0;
  bottom: 0;
  left: -10%;
  width: 120%;
}
div.orbit.orbit-3:after {
  -webkit-animation-delay: -2.3s;
  -moz-animation-delay: -2.3s;
  animation-delay: -2.3s;
  height: 12px;
  width: 12px;
}
div.orbit.orbit-4 {
  -webkit-animation: orbit-rotate 10s linear infinite;
  -moz-animation: orbit-rotate 10s linear infinite;
  animation: orbit-rotate 10s linear infinite;
  -webkit-animation-delay: -3.6s;
  -moz-animation-delay: -3.6s;
  animation-delay: -3.6s;
  position: absolute;
  top: 40.2%;
  right: 0;
  bottom: 0;
  left: -9.4%;
  width: 118.8%;
}
div.orbit.orbit-4:after {
  -webkit-animation-delay: -3.6s;
  -moz-animation-delay: -3.6s;
  animation-delay: -3.6s;
  height: 5px;
  width: 5px;
}
div.orbit.orbit-5 {
  -webkit-animation: orbit-rotate 10s linear infinite;
  -moz-animation: orbit-rotate 10s linear infinite;
  animation: orbit-rotate 10s linear infinite;
  -webkit-animation-delay: -7.2s;
  -moz-animation-delay: -7.2s;
  animation-delay: -7.2s;
  position: absolute;
  top: 17.8%;
  right: 0;
  bottom: 0;
  left: -3.4%;
  width: 106.8%;
}
div.orbit.orbit-5:after {
  -webkit-animation-delay: -7.2s;
  -moz-animation-delay: -7.2s;
  animation-delay: -7.2s;
  height: 6px;
  width: 6px;
}
div.orbit.orbit-6 {
  -webkit-animation: orbit-rotate 10s linear infinite;
  -moz-animation: orbit-rotate 10s linear infinite;
  animation: orbit-rotate 10s linear infinite;
  -webkit-animation-delay: -1.7s;
  -moz-animation-delay: -1.7s;
  animation-delay: -1.7s;
  position: absolute;
  top: 13.6%;
  right: 0;
  bottom: 0;
  left: -1.6%;
  width: 103.2%;
}
div.orbit.orbit-6:after {
  -webkit-animation-delay: -1.7s;
  -moz-animation-delay: -1.7s;
  animation-delay: -1.7s;
  height: 12px;
  width: 12px;
}
div.orbit.orbit-7 {
  -webkit-animation: orbit-rotate 10s linear infinite;
  -moz-animation: orbit-rotate 10s linear infinite;
  animation: orbit-rotate 10s linear infinite;
  -webkit-animation-delay: -5.6s;
  -moz-animation-delay: -5.6s;
  animation-delay: -5.6s;
  position: absolute;
  top: -0.4%;
  right: 0;
  bottom: 0;
  left: 8.6%;
  width: 82.8%;
}
div.orbit.orbit-7:after {
  -webkit-animation-delay: -5.6s;
  -moz-animation-delay: -5.6s;
  animation-delay: -5.6s;
  height: 5px;
  width: 5px;
}
div.orbit.orbit-8 {
  -webkit-animation: orbit-rotate 10s linear infinite;
  -moz-animation: orbit-rotate 10s linear infinite;
  animation: orbit-rotate 10s linear infinite;
  -webkit-animation-delay: -5s;
  -moz-animation-delay: -5s;
  animation-delay: -5s;
  position: absolute;
  top: -14.4%;
  right: 0;
  bottom: 0;
  left: 26.6%;
  width: 46.8%;
}
div.orbit.orbit-8:after {
  -webkit-animation-delay: -5s;
  -moz-animation-delay: -5s;
  animation-delay: -5s;
  height: 6px;
  width: 6px;
}
div.orbit.orbit-9 {
  -webkit-animation: orbit-rotate 10s linear infinite;
  -moz-animation: orbit-rotate 10s linear infinite;
  animation: orbit-rotate 10s linear infinite;
  -webkit-animation-delay: -3.4s;
  -moz-animation-delay: -3.4s;
  animation-delay: -3.4s;
  position: absolute;
  top: 8%;
  right: 0;
  bottom: 0;
  left: 2%;
  width: 96%;
}
div.orbit.orbit-9:after {
  -webkit-animation-delay: -3.4s;
  -moz-animation-delay: -3.4s;
  animation-delay: -3.4s;
  height: 12px;
  width: 12px;
}
div.orbit.orbit-10 {
  -webkit-animation: orbit-rotate 10s linear infinite;
  -moz-animation: orbit-rotate 10s linear infinite;
  animation: orbit-rotate 10s linear infinite;
  -webkit-animation-delay: -8.2s;
  -moz-animation-delay: -8.2s;
  animation-delay: -8.2s;
  position: absolute;
  top: 36%;
  right: 0;
  bottom: 0;
  left: -8.8%;
  width: 117.6%;
}
div.orbit.orbit-10:after {
  -webkit-animation-delay: -8.2s;
  -moz-animation-delay: -8.2s;
  animation-delay: -8.2s;
  height: 9px;
  width: 9px;
}
div.orbit.orbit-11 {
  -webkit-animation: orbit-rotate 10s linear infinite;
  -moz-animation: orbit-rotate 10s linear infinite;
  animation: orbit-rotate 10s linear infinite;
  -webkit-animation-delay: -2.2s;
  -moz-animation-delay: -2.2s;
  animation-delay: -2.2s;
  position: absolute;
  top: 96.2%;
  right: 0;
  bottom: 0;
  left: 5%;
  width: 90%;
}
div.orbit.orbit-11:after {
  -webkit-animation-delay: -2.2s;
  -moz-animation-delay: -2.2s;
  animation-delay: -2.2s;
  height: 6px;
  width: 6px;
}
div.orbit.orbit-12 {
  -webkit-animation: orbit-rotate 10s linear infinite;
  -moz-animation: orbit-rotate 10s linear infinite;
  animation: orbit-rotate 10s linear infinite;
  -webkit-animation-delay: -0.1s;
  -moz-animation-delay: -0.1s;
  animation-delay: -0.1s;
  position: absolute;
  top: 101.8%;
  right: 0;
  bottom: 0;
  left: 9.8%;
  width: 80.4%;
}
div.orbit.orbit-12:after {
  -webkit-animation-delay: -0.1s;
  -moz-animation-delay: -0.1s;
  animation-delay: -0.1s;
  height: 12px;
  width: 12px;
}
div.orbit.orbit-13 {
  -webkit-animation: orbit-rotate 10s linear infinite;
  -moz-animation: orbit-rotate 10s linear infinite;
  animation: orbit-rotate 10s linear infinite;
  -webkit-animation-delay: -8s;
  -moz-animation-delay: -8s;
  animation-delay: -8s;
  position: absolute;
  top: 3.8%;
  right: 0;
  bottom: 0;
  left: 4.4%;
  width: 91.2%;
}
div.orbit.orbit-13:after {
  -webkit-animation-delay: -8s;
  -moz-animation-delay: -8s;
  animation-delay: -8s;
  height: 6px;
  width: 6px;
}
div.orbit.orbit-14 {
  -webkit-animation: orbit-rotate 10s linear infinite;
  -moz-animation: orbit-rotate 10s linear infinite;
  animation: orbit-rotate 10s linear infinite;
  -webkit-animation-delay: -3.4s;
  -moz-animation-delay: -3.4s;
  animation-delay: -3.4s;
  position: absolute;
  top: 108.8%;
  right: 0;
  bottom: 0;
  left: 18.2%;
  width: 63.6%;
}
div.orbit.orbit-14:after {
  -webkit-animation-delay: -3.4s;
  -moz-animation-delay: -3.4s;
  animation-delay: -3.4s;
  height: 10px;
  width: 10px;
}
div.orbit.orbit-15 {
  -webkit-animation: orbit-rotate 10s linear infinite;
  -moz-animation: orbit-rotate 10s linear infinite;
  animation: orbit-rotate 10s linear infinite;
  -webkit-animation-delay: -0.6s;
  -moz-animation-delay: -0.6s;
  animation-delay: -0.6s;
  position: absolute;
  top: 99%;
  right: 0;
  bottom: 0;
  left: 7.4%;
  width: 85.2%;
}
div.orbit.orbit-15:after {
  -webkit-animation-delay: -0.6s;
  -moz-animation-delay: -0.6s;
  animation-delay: -0.6s;
  height: 8px;
  width: 8px;
}
div.orbit.orbit-16 {
  -webkit-animation: orbit-rotate 10s linear infinite;
  -moz-animation: orbit-rotate 10s linear infinite;
  animation: orbit-rotate 10s linear infinite;
  -webkit-animation-delay: -5s;
  -moz-animation-delay: -5s;
  animation-delay: -5s;
  position: absolute;
  top: -0.4%;
  right: 0;
  bottom: 0;
  left: 8%;
  width: 84%;
}
div.orbit.orbit-16:after {
  -webkit-animation-delay: -5s;
  -moz-animation-delay: -5s;
  animation-delay: -5s;
  height: 8px;
  width: 8px;
}
div.orbit.orbit-17 {
  -webkit-animation: orbit-rotate 10s linear infinite;
  -moz-animation: orbit-rotate 10s linear infinite;
  animation: orbit-rotate 10s linear infinite;
  -webkit-animation-delay: -9.6s;
  -moz-animation-delay: -9.6s;
  animation-delay: -9.6s;
  position: absolute;
  top: 90.6%;
  right: 0;
  bottom: 0;
  left: 0.8%;
  width: 98.4%;
}
div.orbit.orbit-17:after {
  -webkit-animation-delay: -9.6s;
  -moz-animation-delay: -9.6s;
  animation-delay: -9.6s;
  height: 11px;
  width: 11px;
}
div.orbit.orbit-18 {
  -webkit-animation: orbit-rotate 10s linear infinite;
  -moz-animation: orbit-rotate 10s linear infinite;
  animation: orbit-rotate 10s linear infinite;
  -webkit-animation-delay: -0.8s;
  -moz-animation-delay: -0.8s;
  animation-delay: -0.8s;
  position: absolute;
  top: -4.6%;
  right: 0;
  bottom: 0;
  left: 12.2%;
  width: 75.6%;
}
div.orbit.orbit-18:after {
  -webkit-animation-delay: -0.8s;
  -moz-animation-delay: -0.8s;
  animation-delay: -0.8s;
  height: 7px;
  width: 7px;
}
div.orbit.orbit-19 {
  -webkit-animation: orbit-rotate 10s linear infinite;
  -moz-animation: orbit-rotate 10s linear infinite;
  animation: orbit-rotate 10s linear infinite;
  -webkit-animation-delay: -3.2s;
  -moz-animation-delay: -3.2s;
  animation-delay: -3.2s;
  position: absolute;
  top: 71%;
  right: 0;
  bottom: 0;
  left: -7.6%;
  width: 115.2%;
}
div.orbit.orbit-19:after {
  -webkit-animation-delay: -3.2s;
  -moz-animation-delay: -3.2s;
  animation-delay: -3.2s;
  height: 5px;
  width: 5px;
}
div.orbit.orbit-20 {
  -webkit-animation: orbit-rotate 10s linear infinite;
  -moz-animation: orbit-rotate 10s linear infinite;
  animation: orbit-rotate 10s linear infinite;
  -webkit-animation-delay: -9.7s;
  -moz-animation-delay: -9.7s;
  animation-delay: -9.7s;
  position: absolute;
  top: 22%;
  right: 0;
  bottom: 0;
  left: -5.2%;
  width: 110.4%;
}
div.orbit.orbit-20:after {
  -webkit-animation-delay: -9.7s;
  -moz-animation-delay: -9.7s;
  animation-delay: -9.7s;
  height: 8px;
  width: 8px;
}

div.orbit:after {
  -webkit-animation: planet-rotate 10s linear infinite;
  -moz-animation: planet-rotate 10s linear infinite;
  animation: planet-rotate 10s linear infinite;
  background-color: #141414;
  border-radius: 50%;
  content: "";
  display: block;
}

@-webkit-keyframes orbit-rotate {
  from {
    -webkit-transform: rotateY(0deg);
  }
  to {
    -webkit-transform: rotateY(360deg);
  }
}
@-moz-keyframes orbit-rotate {
  from {
    -moz-transform: rotateY(0deg);
  }
  to {
    -moz-transform: rotateY(360deg);
  }
}
@keyframes orbit-rotate {
  from {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  to {
    -webkit-transform: rotateY(360deg);
    -moz-transform: rotateY(360deg);
    -ms-transform: rotateY(360deg);
    -o-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}
@-webkit-keyframes planet-rotate {
  from {
    -webkit-transform: rotateY(0deg);
  }
  to {
    -webkit-transform: rotateY(-360deg);
  }
}
@-moz-keyframes planet-rotate {
  from {
    -moz-transform: rotateY(0deg);
  }
  to {
    -moz-transform: rotateY(-360deg);
  }
}
@keyframes planet-rotate {
  from {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  to {
    -webkit-transform: rotateY(-360deg);
    -moz-transform: rotateY(-360deg);
    -ms-transform: rotateY(-360deg);
    -o-transform: rotateY(-360deg);
    transform: rotateY(-360deg);
  }
}

.work-grid-area {
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.work-pop {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2vh;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.work-pop .work-close {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  width: 100%;
}

.work-pop .work-close svg {
  width: 5vh;
  height: auto;
  border-radius: 0.5rem;
  cursor: pointer;
}

.work-pop .work-close svg path {
  transition: 0.3s ease-in-out;
}

.work-pop .work-close svg:hover path {
  stroke: #fff;
}

.work-pop iframe {
  pointer-events: all !important;
  width: 115vh;
  height: 65vh;
}

.work-pop img {
  width: auto;
  height: 70vh;
}

.stage-work {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.stage-work image {
  cursor: pointer;
}

.tip-work {
  position: fixed;
  overflow: visible;
  left: 0;
  top: 0;
  z-index: 2;
}

.team-group {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 6vh;
  overflow: hidden;
  background-color: #000;
  padding: 7vh 0;
  padding-bottom: 14vh;
}

.team-list {
  display: flex;
  justify-content: center;
  align-items: center;
}

.team-item {
  position: relative;
  width: 10vw;
  height: 55vh;
  background-position: center;
  background-size: 110vh;
  margin: 1vw;
  border-radius: 3vw;
  display: inline-block;
  cursor: pointer;
  overflow: hidden;
}

.team-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.team-item .group-card {
  position: relative;
  z-index: 2;
  padding: 3vh;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
}

.team-item .group-card h3 {
  color: #fff;
}

@media screen and (max-width: 800px) {
  .team-list {
    display: grid;
    grid-template-columns: repeat(3, 0fr);
    gap: 1vh;
    justify-items: center;
  }

  .team-item {
    width: 20vw;
    height: 30vh;
    background-size: 150vh;
  }

  .team-item .group-card h3 {
    font-size: 3.5vh;
    color: #fff;
  }
  .m-button.m-small p {
    font-size: 1.5vh !important;
  }
  .m-button.m-small {
    height: unset;
    margin-top: 3vh !important;
    padding: 1vh 2vh;
  }
}

.reveal-type {
  -webkit-text-stroke: #000;
  -webkit-text-stroke-width: 1px;
}

#custom_loading_screen {
  align-items: center;
  background: white;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity 1s;
  z-index: 99999999;
}

#loading_screen {
  display: flex;
  flex-flow: column;
  height: 150px;
  overflow: hidden;
  width: 260px;
}

#phrases {
  -webkit-animation: slide-phrases-upward 20s;
  animation: slide-phrases-upward 20s;
}

@-webkit-keyframes slide-phrases-upward {
  0% {
    transform: translateY(0px);
  }
  5% {
    transform: translateY(-50px);
  }
  10% {
    transform: translateY(-100px);
  }
  15% {
    transform: translateY(-150px);
  }
  20% {
    transform: translateY(-200px);
  }
  25% {
    transform: translateY(-250px);
  }
  30% {
    transform: translateY(-300px);
  }
  35% {
    transform: translateY(-350px);
  }
  40% {
    transform: translateY(-400px);
  }
  45% {
    transform: translateY(-450px);
  }
  50% {
    transform: translateY(-500px);
  }
  55% {
    transform: translateY(-550px);
  }
  60% {
    transform: translateY(-600px);
  }
  65% {
    transform: translateY(-650px);
  }
  70% {
    transform: translateY(-700px);
  }
  75% {
    transform: translateY(-750px);
  }
  80% {
    transform: translateY(-800px);
  }
  85% {
    transform: translateY(-850px);
  }
  90% {
    transform: translateY(-900px);
  }
  95% {
    transform: translateY(-950px);
  }
  100% {
    transform: translateY(-1000px);
  }
}

@keyframes slide-phrases-upward {
  0% {
    transform: translateY(0px);
  }
  5% {
    transform: translateY(-50px);
  }
  10% {
    transform: translateY(-100px);
  }
  15% {
    transform: translateY(-150px);
  }
  20% {
    transform: translateY(-200px);
  }
  25% {
    transform: translateY(-250px);
  }
  30% {
    transform: translateY(-300px);
  }
  35% {
    transform: translateY(-350px);
  }
  40% {
    transform: translateY(-400px);
  }
  45% {
    transform: translateY(-450px);
  }
  50% {
    transform: translateY(-500px);
  }
  55% {
    transform: translateY(-550px);
  }
  60% {
    transform: translateY(-600px);
  }
  65% {
    transform: translateY(-650px);
  }
  70% {
    transform: translateY(-700px);
  }
  75% {
    transform: translateY(-750px);
  }
  80% {
    transform: translateY(-800px);
  }
  85% {
    transform: translateY(-850px);
  }
  90% {
    transform: translateY(-900px);
  }
  95% {
    transform: translateY(-950px);
  }
  100% {
    transform: translateY(-1000px);
  }
}
#loadingCheckCircleSVG-0 {
  -webkit-animation: fill-to-white 5000ms;
  animation: fill-to-white 5000ms;
  -webkit-animation-delay: -1.5s;
  animation-delay: -1.5s;
  fill: rgb(0, 0, 0);
  opacity: 0;
}

#loadingCheckCircleSVG-1 {
  -webkit-animation: fill-to-white 5000ms;
  animation: fill-to-white 5000ms;
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
  fill: rgb(0, 0, 0);
  opacity: 0;
}

#loadingCheckCircleSVG-2 {
  -webkit-animation: fill-to-white 5000ms;
  animation: fill-to-white 5000ms;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  fill: rgb(0, 0, 0);
  opacity: 0;
}

#loadingCheckCircleSVG-3 {
  -webkit-animation: fill-to-white 5000ms;
  animation: fill-to-white 5000ms;
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
  fill: rgb(0, 0, 0);
  opacity: 0;
}

#loadingCheckCircleSVG-4 {
  -webkit-animation: fill-to-white 5000ms;
  animation: fill-to-white 5000ms;
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
  fill: rgb(0, 0, 0);
  opacity: 0;
}

#loadingCheckCircleSVG-5 {
  -webkit-animation: fill-to-white 5000ms;
  animation: fill-to-white 5000ms;
  -webkit-animation-delay: 3.5s;
  animation-delay: 3.5s;
  fill: rgb(0, 0, 0);
  opacity: 0;
}

#loadingCheckCircleSVG-6 {
  -webkit-animation: fill-to-white 5000ms;
  animation: fill-to-white 5000ms;
  -webkit-animation-delay: 4.5s;
  animation-delay: 4.5s;
  fill: rgb(0, 0, 0);
  opacity: 0;
}

#loadingCheckCircleSVG-7 {
  -webkit-animation: fill-to-white 5000ms;
  animation: fill-to-white 5000ms;
  -webkit-animation-delay: 5.5s;
  animation-delay: 5.5s;
  fill: rgb(0, 0, 0);
  opacity: 0;
}

#loadingCheckCircleSVG-8 {
  -webkit-animation: fill-to-white 5000ms;
  animation: fill-to-white 5000ms;
  -webkit-animation-delay: 6.5s;
  animation-delay: 6.5s;
  fill: rgb(0, 0, 0);
  opacity: 0;
}

#loadingCheckCircleSVG-9 {
  -webkit-animation: fill-to-white 5000ms;
  animation: fill-to-white 5000ms;
  -webkit-animation-delay: 7.5s;
  animation-delay: 7.5s;
  fill: rgb(0, 0, 0);
  opacity: 0;
}

#loadingCheckCircleSVG-10 {
  -webkit-animation: fill-to-white 5000ms;
  animation: fill-to-white 5000ms;
  -webkit-animation-delay: 8.5s;
  animation-delay: 8.5s;
  fill: rgb(0, 0, 0);
  opacity: 0;
}

#loadingCheckCircleSVG-11 {
  -webkit-animation: fill-to-white 5000ms;
  animation: fill-to-white 5000ms;
  -webkit-animation-delay: 9.5s;
  animation-delay: 9.5s;
  fill: rgb(0, 0, 0);
  opacity: 0;
}

#loadingCheckCircleSVG-12 {
  -webkit-animation: fill-to-white 5000ms;
  animation: fill-to-white 5000ms;
  -webkit-animation-delay: 10.5s;
  animation-delay: 10.5s;
  fill: rgb(0, 0, 0);
  opacity: 0;
}

#loadingCheckCircleSVG-13 {
  -webkit-animation: fill-to-white 5000ms;
  animation: fill-to-white 5000ms;
  -webkit-animation-delay: 11.5s;
  animation-delay: 11.5s;
  fill: rgb(0, 0, 0);
  opacity: 0;
}

#loadingCheckCircleSVG-14 {
  -webkit-animation: fill-to-white 5000ms;
  animation: fill-to-white 5000ms;
  -webkit-animation-delay: 12.5s;
  animation-delay: 12.5s;
  fill: rgb(0, 0, 0);
  opacity: 0;
}

#loadingCheckCircleSVG-15 {
  -webkit-animation: fill-to-white 5000ms;
  animation: fill-to-white 5000ms;
  -webkit-animation-delay: 13.5s;
  animation-delay: 13.5s;
  fill: rgb(0, 0, 0);
  opacity: 0;
}

#loadingCheckCircleSVG-16 {
  -webkit-animation: fill-to-white 5000ms;
  animation: fill-to-white 5000ms;
  -webkit-animation-delay: 14.5s;
  animation-delay: 14.5s;
  fill: rgb(0, 0, 0);
  opacity: 0;
}

#loadingCheckCircleSVG-17 {
  -webkit-animation: fill-to-white 5000ms;
  animation: fill-to-white 5000ms;
  -webkit-animation-delay: 15.5s;
  animation-delay: 15.5s;
  fill: rgb(0, 0, 0);
  opacity: 0;
}

#loadingCheckCircleSVG-18 {
  -webkit-animation: fill-to-white 5000ms;
  animation: fill-to-white 5000ms;
  -webkit-animation-delay: 16.5s;
  animation-delay: 16.5s;
  fill: rgb(0, 0, 0);
  opacity: 0;
}

#loadingCheckCircleSVG-19 {
  -webkit-animation: fill-to-white 5000ms;
  animation: fill-to-white 5000ms;
  -webkit-animation-delay: 17.5s;
  animation-delay: 17.5s;
  fill: rgb(0, 0, 0);
  opacity: 0;
}

#loadingCheckCircleSVG-20 {
  -webkit-animation: fill-to-white 5000ms;
  animation: fill-to-white 5000ms;
  -webkit-animation-delay: 18.5s;
  animation-delay: 18.5s;
  fill: rgb(0, 0, 0);
  opacity: 0;
}

@-webkit-keyframes fill-to-white {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fill-to-white {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
#loadingCheckSVG-0 {
  -webkit-animation: fill-to-coral 5000ms;
  animation: fill-to-coral 5000ms;
  -webkit-animation-delay: -1.5s;
  animation-delay: -1.5s;
}

#loadingCheckSVG-1 {
  -webkit-animation: fill-to-coral 5000ms;
  animation: fill-to-coral 5000ms;
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

#loadingCheckSVG-2 {
  -webkit-animation: fill-to-coral 5000ms;
  animation: fill-to-coral 5000ms;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

#loadingCheckSVG-3 {
  -webkit-animation: fill-to-coral 5000ms;
  animation: fill-to-coral 5000ms;
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

#loadingCheckSVG-4 {
  -webkit-animation: fill-to-coral 5000ms;
  animation: fill-to-coral 5000ms;
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
}

#loadingCheckSVG-5 {
  -webkit-animation: fill-to-coral 5000ms;
  animation: fill-to-coral 5000ms;
  -webkit-animation-delay: 3.5s;
  animation-delay: 3.5s;
}

#loadingCheckSVG-6 {
  -webkit-animation: fill-to-coral 5000ms;
  animation: fill-to-coral 5000ms;
  -webkit-animation-delay: 4.5s;
  animation-delay: 4.5s;
}

#loadingCheckSVG-7 {
  -webkit-animation: fill-to-coral 5000ms;
  animation: fill-to-coral 5000ms;
  -webkit-animation-delay: 5.5s;
  animation-delay: 5.5s;
}

#loadingCheckSVG-8 {
  -webkit-animation: fill-to-coral 5000ms;
  animation: fill-to-coral 5000ms;
  -webkit-animation-delay: 6.5s;
  animation-delay: 6.5s;
}

#loadingCheckSVG-9 {
  -webkit-animation: fill-to-coral 5000ms;
  animation: fill-to-coral 5000ms;
  -webkit-animation-delay: 7.5s;
  animation-delay: 7.5s;
}

#loadingCheckSVG-10 {
  -webkit-animation: fill-to-coral 5000ms;
  animation: fill-to-coral 5000ms;
  -webkit-animation-delay: 8.5s;
  animation-delay: 8.5s;
}

#loadingCheckSVG-11 {
  -webkit-animation: fill-to-coral 5000ms;
  animation: fill-to-coral 5000ms;
  -webkit-animation-delay: 9.5s;
  animation-delay: 9.5s;
}

#loadingCheckSVG-12 {
  -webkit-animation: fill-to-coral 5000ms;
  animation: fill-to-coral 5000ms;
  -webkit-animation-delay: 10.5s;
  animation-delay: 10.5s;
}

#loadingCheckSVG-13 {
  -webkit-animation: fill-to-coral 5000ms;
  animation: fill-to-coral 5000ms;
  -webkit-animation-delay: 11.5s;
  animation-delay: 11.5s;
}

#loadingCheckSVG-14 {
  -webkit-animation: fill-to-coral 5000ms;
  animation: fill-to-coral 5000ms;
  -webkit-animation-delay: 12.5s;
  animation-delay: 12.5s;
}

#loadingCheckSVG-15 {
  -webkit-animation: fill-to-coral 5000ms;
  animation: fill-to-coral 5000ms;
  -webkit-animation-delay: 13.5s;
  animation-delay: 13.5s;
}

#loadingCheckSVG-16 {
  -webkit-animation: fill-to-coral 5000ms;
  animation: fill-to-coral 5000ms;
  -webkit-animation-delay: 14.5s;
  animation-delay: 14.5s;
}

#loadingCheckSVG-17 {
  -webkit-animation: fill-to-coral 5000ms;
  animation: fill-to-coral 5000ms;
  -webkit-animation-delay: 15.5s;
  animation-delay: 15.5s;
}

#loadingCheckSVG-18 {
  -webkit-animation: fill-to-coral 5000ms;
  animation: fill-to-coral 5000ms;
  -webkit-animation-delay: 16.5s;
  animation-delay: 16.5s;
}

#loadingCheckSVG-19 {
  -webkit-animation: fill-to-coral 5000ms;
  animation: fill-to-coral 5000ms;
  -webkit-animation-delay: 17.5s;
  animation-delay: 17.5s;
}

#loadingCheckSVG-20 {
  -webkit-animation: fill-to-coral 5000ms;
  animation: fill-to-coral 5000ms;
  -webkit-animation-delay: 18.5s;
  animation-delay: 18.5s;
}

@-webkit-keyframes fill-to-coral {
  0% {
    fill: rgb(0, 0, 0);
  }
  10% {
    fill: #ffffff;
  }
  100% {
    fill: #ffffff;
  }
}

@keyframes fill-to-coral {
  0% {
    fill: rgb(0, 0, 0);
  }
  10% {
    fill: #ffffff;
  }
  100% {
    fill: #ffffff;
  }
}

.dom-gl {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  pointer-events: none;
  z-index: 1;
}

.alt_custom_slider {
  width: 100vw;
  height: 85vh;
  position: relative;
  left: -25%;
}

@media screen and (max-width: 800px) {
  .alt_custom_slider {
    left: 0;
    height: 25vh;
  }
}

.alt_slider {
  position: absolute;
  display: flex;
  align-items: center;
  height: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: -webkit-grab;
  cursor: grab;
  z-index: 2;
}
.alt_slider__inner {
  display: flex;
  position: relative;
}

.alt_slide {
  overflow: hidden;
}
.alt_slide:first-child {
  position: relative;
}
.alt_slide:not(:first-child) {
  position: absolute;
  top: 0;
  height: 100%;
}
.alt_slide__inner {
  position: relative;
  overflow: hidden;
  width: 55vw;
  padding-top: 56.5%;
}
.alt_slide img {
  display: none;
  /*
  height: 100%;
  width: 140%;
  position: absolute;
  top: 0;
  left: -20%;
  object-fit: cover;
  will-change: transform;
  */
}

.alt_progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.25rem;
  overflow: hidden;
  pointer-events: none;
}
.progress__line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background-color: transparent;
}
.progress__line:nth-child(2) {
  transform-origin: right;
}

.signature {
  position: relative;
  width: 25vh;
  height: auto;
}
.btn-success {
  background-color: #0f7f22;
  color: #fff;
}
.btn-error {
  background-color: #dc3545;
  color: #fff;
}

.three-images {
  width: 100%;
  height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.three-images div {
  height: 100%;
}

.three-images div img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.slider-cursor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1vh;
  position: fixed;
  width: 12vh;
  height: 12vh;
  top: -0;
  left: -0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 80;
  pointer-events: none;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translate(-50%, -50%);
}

.slider-cursor img {
  width: 0.8vh;
  height: auto;
  opacity: 0.8;
}

.slider-cursor p {
  font-size: 1.6vh;
  opacity: 0.8;
}

.custom-menu {
  padding: var(--section-padding) var(--container-padding);
  justify-content: center;
  align-items: center;
  min-height: 100svh;
  display: flex;
  position: fixed;
  --menu-padding: 2em;
  z-index: 99;
  pointer-events: none;
}

.menu-nav {
  z-index: 99;
  width: 100%;
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: fixed;
  inset: 0%;
}

.overlay {
  z-index: 0;
  cursor: pointer;
  background-color: #13131366;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.menu-inners {
  padding-bottom: var(--menu-padding);
  grid-column-gap: 5em;
  grid-row-gap: 5em;
  padding-top: calc(4.5 * var(--menu-padding));
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 35em;
  height: 100%;
  position: relative;
  overflow: auto;
}

.menu-bg {
  z-index: 0;
  position: absolute;
  inset: 0%;
}

.menu-inner {
  z-index: 1;
  grid-column-gap: 5em;
  grid-row-gap: 5em;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  display: flex;
  position: relative;
  overflow: auto;
}

.bg-panel {
  z-index: 0;
  background-color: var(--color-neutral-300);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  position: absolute;
  inset: 0%;
}

.bg-panel.first {
  background-color: #fe5f55;
}

.bg-panel.second {
  background-color: var(--color-neutral-100);
}

.menu-list {
  flex-flow: column;
  width: 100%;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  gap: 2vh;
}

.menu-list-item {
  position: relative;
  overflow: hidden;
}

.menu-link-heading {
  text-shadow: 0px 6.6vh 0px var(--color-neutral-200);
}

.menu-link {
  padding-top: 0.75em;
  padding-bottom: 0.75em;
  padding-left: var(--menu-padding);
  grid-column-gap: 0.75em;
  grid-row-gap: 0.75em;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.menu-link-heading {
  z-index: 1;
  font-size: 5.5vh;
  font-weight: 700;
  line-height: 0.75;
  transition: transform 0.55s cubic-bezier(0.65, 0.05, 0, 1);
  position: relative;
}

.menu-link-heading.small-link {
  font-size: 2vh;
}

@media screen and (max-width: 800px) {
  .menu-link-heading {
    font-size: 5.5vh !important;
    text-shadow: 0px 6.6vh 0px transparent !important;
  }
  .menu-list {
    gap: 1vh !important;
  }

  .menu-inners {
    padding-top: calc(7.5 * var(--menu-padding)) !important;
  }
}

.eyebrow {
  z-index: 1;
  color: var(--color-primary);
  text-transform: uppercase;
  font-family: RM Mono, Arial, sans-serif;
  font-weight: 400;
  position: relative;
}

.menu-link-bg {
  z-index: 0;
  background-color: var(--color-neutral-800);
  transform-origin: 50% 100%;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.65, 0.05, 0, 1);
  position: absolute;
  inset: 0%;
  transform: scale3d(1, 0, 1);
}

.menu-details {
  padding-left: var(--menu-padding);
  grid-column-gap: 1.25em;
  grid-row-gap: 1.25em;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

@media screen and (max-width: 800px) {
  .menu-details {
    display: none;
  }
}

.p-small {
  font-size: 0.875em;
  font-family: Arial, Helvetica;
}

.socials-row {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  flex-flow: row;
  display: flex;
}

.p-large {
  font-size: 1.125em;
  font-family: Arial, Helvetica;
  font-weight: 400;
}

.text-link {
  text-decoration: none;
  position: relative;
  color: #000000;
}

.menu-button-icon {
  width: 1em;
  height: 1em;
}

.menu-button-text {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
  height: 1.125em;
  display: flex;
  overflow: hidden;
}

.icon-wrap {
  transition: transform 0.4s cubic-bezier(0.65, 0.05, 0, 1);
}

@media (hover: hover) {
  /* Menu toggle button*/
  .menu-button:hover .icon-wrap {
    transform: rotate(90deg);
  }

  /* Menu Large Links */
  .menu-link:hover .menu-link-heading {
    transform: translate(0px, -6.5vh);
    transition-delay: 0.1s;
  }
  .menu-link:hover .menu-link-bg {
    transform: scale(1, 1);
  }

  /* Menu Smaller Links */
  .text-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #fe5f55;
    transform-origin: right center;
    transform: scale(0, 1);
    transition: transform 0.4s var(--cubic-default);
  }

  .text-link:hover::after {
    transform-origin: left center;
    transform: scale(1, 1);
  }
}

.osmo-icon-svg {
  width: 8em;
}

@media screen and (max-width: 767px) {
  .custom-menu {
    --menu-padding: 1em;
  }

  .nav-logo-row {
    grid-column-gap: 2.5em;
    grid-row-gap: 2.5em;
    width: auto;
  }

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

  .cloneable-title {
    pointer-events: none;
    width: calc(100% - 5.25em);
    padding-left: 1em;
    position: absolute;
    overflow: hidden;
  }

  .cloneable-title__nr,
  .cloneable-title__h1 {
    font-size: 0.875em;
  }

  .clone-in-webflow {
    justify-content: flex-end;
    width: 100%;
    margin-right: 0;
    padding-left: 0.75em;
  }

  .clone-in-webflow__p {
    display: none;
  }

  .cloneable-title__gradient,
  .osmo-ui__bg {
    display: block;
  }

  .menu-inners {
    padding-top: calc(6 * var(--menu-padding));
    width: 100%;
  }

  .bg-panel {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .menu-list-item {
    height: 4.5em;
  }

  .menu-list-item.min-item {
    height: 2em;
  }

  .menu-link-heading {
    font-size: 4em;
  }

  .socials-row {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
  }

  .p-large.text-link {
    font-size: 1em;
  }

  .p-large {
    font-size: 1em !important;
  }
}

@media screen and (max-width: 479px) {
  .menu-inners {
    padding-top: calc(7 * var(--menu-padding));
    padding-bottom: calc(2 * var(--menu-padding));
  }
}
select {
  border-bottom: 1px solid #000;
  border-radius: 5px;
  padding: 5px;
  margin: 5px;
  padding-left: 0 !important;
}
.mobile-visible {
  display: none;
}

@media screen and (max-width: 800px) {
  .mobile-none {
    display: none;
  }
  .mobile-pt-1 {
    padding-top: 2vh;
  }
  .mobile-visible {
    display: block;
  }
  video {
    pointer-events: none !important;
  }
}
