html {
  font-family: EnV, Arial, Helvetica, sans-serif;
  font-size: 62.5%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased
}

html.has-scroll-init:not(.has-scroll-smooth) body {
  overflow: auto;
}

.button:hover .button-text, .button:hover .button-text2 {
  -webkit-animation-name: text-slide-reverse;
          animation-name: text-slide-reverse;
}

.button:hover .button-text.button-text-black {
  color: black;
}

@-webkit-keyframes text-slide {
  0% {
    transform: translate(0px, 0px);
    opacity: 1;
  }

  50% {
    transform: translate(0px, -20px);
    opacity: 0;
  }

  51% {
    transform: translate(0px, 20px);
    opacity: 0;
  }

  100% {
    transform: translate(0px, 0px);
    opacity: 1;
  }
}

@keyframes text-slide {
  0% {
    transform: translate(0px, 0px);
    opacity: 1;
  }

  50% {
    transform: translate(0px, -20px);
    opacity: 0;
  }

  51% {
    transform: translate(0px, 20px);
    opacity: 0;
  }

  100% {
    transform: translate(0px, 0px);
    opacity: 1;
  }
}

@-webkit-keyframes text-slide-reverse {
  0% {
    transform: translate(0px, 0px);
    opacity: 1;
  }

  50% {
    transform: translate(0px, -20px);
    opacity: 0;
  }

  51% {
    transform: translate(0px, 20px);
    opacity: 0;
  }

  100% {
    transform: translate(0px, 0px);
    opacity: 1;
  }
}

@keyframes text-slide-reverse {
  0% {
    transform: translate(0px, 0px);
    opacity: 1;
  }

  50% {
    transform: translate(0px, -20px);
    opacity: 0;
  }

  51% {
    transform: translate(0px, 20px);
    opacity: 0;
  }

  100% {
    transform: translate(0px, 0px);
    opacity: 1;
  }
}

.button-text {
  -webkit-animation-name: text-slide;
          animation-name: text-slide;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}

.button-text2 {
  -webkit-animation-name: none;
          animation-name: none;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}

.wrapper {
  transform: translate(-50%,-50%) rotate(25deg);
}

@-webkit-keyframes next-button {
  0% {
    top: 49%;
    right: 10%;
  }

  100% {
    top: calc(49% - 6px);
    right: calc(10% + 6px);
  }
}

@keyframes next-button {
  0% {
    top: 49%;
    right: 10%;
  }

  100% {
    top: calc(49% - 6px);
    right: calc(10% + 6px);
  }
}

@-webkit-keyframes next-button-reverse {
  0% {
    top: calc(49% - 6px);
    right: calc(10% + 6px);
  }

  100% {
    top: 49%;
    right: 10%;
  }
}

@keyframes next-button-reverse {
  0% {
    top: calc(49% - 6px);
    right: calc(10% + 6px);
  }

  100% {
    top: 49%;
    right: 10%;
  }
}

#next-button {
  -webkit-animation-name: next-button-reverse;
          animation-name: next-button-reverse;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

#next-button:hover {
  -webkit-animation-name: next-button;
          animation-name: next-button;
}

@-webkit-keyframes strokepath {
  0% {
    stroke-dashoffset: 1000;
  }

  100% {
    stroke-dashoffset: 745;
  }
}

@keyframes strokepath {
  0% {
    stroke-dashoffset: 1000;
  }

  100% {
    stroke-dashoffset: 745;
  }
}

svg .path {
  stroke: hsla(0,0%,100%,.3);
  stroke-width: 1px;
  fill-opacity: 0;
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
}

svg .fill {
  stroke: #fff;
  stroke-width: 1px;
  fill-opacity: 0;
  stroke-dasharray: 1000;
  stroke-dashoffset: 745;
  -webkit-animation-name: strokepath;
          animation-name: strokepath;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-duration: 8s;
          animation-duration: 8s;
}

.hero-title {
  transform-origin: 0 0;
}

#section2-container.observed .section2-title {
  transform: translate(0px,0px);
  opacity: 1;
  transition-duration: .7s;
  transition-timing-function: ease-out;
}

#section2-container.observed #section2-text {
  transform: translate(0px,0px);
  opacity: 1;
  transition-duration: .7s;
  transition-timing-function: ease-out;
  transition-delay: .3s;
}

#section2-container.observed #section2-button {
  transform: translate(0px,0px);
  opacity: 1;
  transition-duration: .7s;
  transition-timing-function: ease-out;
  transition-delay: .6s;
  transform: translateX();
}

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

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

@keyframes underline {
  0% {
    transform: translateX(-100%);
  }

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

.large-slider .discover:hover~.discover-underline {
  -webkit-animation-name: underline;
          animation-name: underline;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}

.large-slider .discover~div .discover-icon {
  transition-property: none;
  transition-duration: 0.5s;
  transition-delay: 0.4s;
  transition-timing-function: ease-out;
  transform: translateX(-100%);
  opacity: 0;
}

.large-slider .discover:hover~div .discover-icon {
  transition-property: transform, opacity;
  transform: translateX(0%);
  opacity: 1;
}

.large-slider.active {
  z-index: 0;
  transform: translateY(0%);
}

@-webkit-keyframes large-slider {
  0% {
    transform: scale(1.3);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes large-slider {
  0% {
    transform: scale(1.3);
  }

  100% {
    transform: scale(1);
  }
}

@-webkit-keyframes large-slider-activated {
  0% {
    transform: translateY(100%);
  }

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

@keyframes large-slider-activated {
  0% {
    transform: translateY(100%);
  }

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

.large-slider {
  -webkit-animation-name: large-slider-activated;
          animation-name: large-slider-activated;
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
  -webkit-animation-timing-function: cubic-bezier(.03,.13,.34,.95);
          animation-timing-function: cubic-bezier(.03,.13,.34,.95);
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.large-slider.active {
  -webkit-animation-name: none;
          animation-name: none;
}

.large-slider .large-slider-image {
  -webkit-animation-name: none;
          animation-name: none;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.large-slider.active .large-slider-image {
  -webkit-animation-name: large-slider;
          animation-name: large-slider;
}

.large-slider .slider-item {
  opacity: 0;
}

@-webkit-keyframes info-slide {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }

  80% {
    transform: translateY(100%);
    opacity: 0;
  }

  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

@keyframes info-slide {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }

  80% {
    transform: translateY(100%);
    opacity: 0;
  }

  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

.large-slider .info-slide {
  opacity: 1;
  transform: translateY(0%);
  transition-property: opacity transform;
  transition-delay: .7s;
  transition-duration: .7s;
  -webkit-animation-name: info-slide;
          animation-name: info-slide;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-duration: 2.3s;
          animation-duration: 2.3s;
}

.large-slider.active .info-slide {
  opacity: 0;
  transform: translateY(-100%);
  -webkit-animation-name: none;
          animation-name: none;
}

/*
! tailwindcss v3.1.8 | MIT License | https://tailwindcss.com
*/

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box;
  /* 1 */
  border-width: 0;
  /* 2 */
  border-style: solid;
  /* 2 */
  border-color: #e5e7eb;
  /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
*/

html {
  line-height: 1.5;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
     tab-size: 4;
  /* 3 */
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  /* 4 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0;
  /* 1 */
  line-height: inherit;
  /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0;
  /* 1 */
  color: inherit;
  /* 2 */
  border-top-width: 1px;
  /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0;
  /* 1 */
  border-color: inherit;
  /* 2 */
  border-collapse: collapse;
  /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  font-weight: inherit;
  /* 1 */
  line-height: inherit;
  /* 1 */
  color: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
  padding: 0;
  /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
  /* 1 */
  background-color: transparent;
  /* 2 */
  background-image: none;
  /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  /* 1 */
  vertical-align: middle;
  /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  
}

::-webkit-backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  
}

.fixed {
  position: fixed
}

.absolute {
  position: absolute
}

.relative {
  position: relative
}

.right-0 {
  right: 0px
}

.top-0 {
  top: 0px
}

.left-0 {
  left: 0px
}

.top-\[82vh\] {
  top: 82vh
}

.top-1\/2 {
  top: 50%
}

.left-1\/2 {
  left: 50%
}

.left-\[10\%\] {
  left: 10%
}

.top-\[0\.25rem\] {
  top: 0.25rem
}

.top-\[1\.8rem\] {
  top: 1.8rem
}

.right-\[2\.4rem\] {
  right: 2.4rem
}

.top-\[55\%\] {
  top: 55%
}

.right-\[10\%\] {
  right: 10%
}

.left-\[-26\.5\%\] {
  left: -26.5%
}

.bottom-0 {
  bottom: 0px
}

.top-\[-3rem\] {
  top: -3rem
}

.left-20 {
  left: 5rem
}

.top-\[15\%\] {
  top: 15%
}

.z-\[10\] {
  z-index: 10
}

.z-0 {
  z-index: 0
}

.z-10 {
  z-index: 10
}

.z-\[900\] {
  z-index: 900
}

.z-\[105\] {
  z-index: 105
}

.z-\[102\] {
  z-index: 102
}

.z-50 {
  z-index: 50
}

.order-2 {
  order: 2
}

.order-1 {
  order: 1
}

.order-3 {
  order: 3
}

.m-\[0_auto_0_0\] {
  margin: 0 auto 0 0
}

.m-\[0_0_0_auto\] {
  margin: 0 0 0 auto
}

.m-\[20\%_10\%_0\] {
  margin: 20% 10% 0
}

.m-\[-1\%_0_5\%\] {
  margin: -1% 0 5%
}

.m-\[8rem_0\] {
  margin: 8rem 0
}

.m-\[0_auto_5rem\] {
  margin: 0 auto 5rem
}

.m-auto {
  margin: auto
}

.m-\[20\%_0\] {
  margin: 20% 0
}

.m-\[20\%_0_10\%\] {
  margin: 20% 0 10%
}

.mx-auto {
  margin-left: auto;
  margin-right: auto
}

.mb-\[20\%\] {
  margin-bottom: 20%
}

.mt-\[5\%\] {
  margin-top: 5%
}

.mb-8 {
  margin-bottom: 2rem
}

.mb-20 {
  margin-bottom: 5rem
}

.mt-auto {
  margin-top: auto
}

.mt-\[6vh\] {
  margin-top: 6vh
}

.mt-\[20\%\] {
  margin-top: 20%
}

.mr-\[15\%\] {
  margin-right: 15%
}

.mt-\[-30\%\] {
  margin-top: -30%
}

.mt-\[-29\%\] {
  margin-top: -29%
}

.mr-\[35\%\] {
  margin-right: 35%
}

.mt-\[-28\%\] {
  margin-top: -28%
}

.mr-\[50\%\] {
  margin-right: 50%
}

.mt-8 {
  margin-top: 2rem
}

.mt-\[15rem\] {
  margin-top: 15rem
}

.ml-auto {
  margin-left: auto
}

.mt-24 {
  margin-top: 6rem
}

.mt-\[10\%\] {
  margin-top: 10%
}

.block {
  display: block
}

.flex {
  display: flex
}

.hidden {
  display: none
}

.h-\[60vh\] {
  height: 60vh
}

.h-full {
  height: 100%
}

.h-\[80vh\] {
  height: 80vh
}

.h-\[10rem\] {
  height: 10rem
}

.h-\[11rem\] {
  height: 11rem
}

.h-\[18vh\] {
  height: 18vh
}

.h-\[50vw\] {
  height: 50vw
}

.h-\[110\%\] {
  height: 110%
}

.h-\[5rem\] {
  height: 5rem
}

.h-\[2rem\] {
  height: 2rem
}

.h-\[1\.5rem\] {
  height: 1.5rem
}

.h-\[1px\] {
  height: 1px
}

.h-\[1\.6rem\] {
  height: 1.6rem
}

.h-\[100vh\] {
  height: 100vh
}

.h-\[70vh\] {
  height: 70vh
}

.min-h-\[100vh\] {
  min-height: 100vh
}

.w-screen {
  width: 100vw
}

.w-full {
  width: 100%
}

.w-\[3rem\] {
  width: 3rem
}

.w-\[80\%\] {
  width: 80%
}

.w-1\/2 {
  width: 50%
}

.w-\[10rem\] {
  width: 10rem
}

.w-\[20rem\] {
  width: 20rem
}

.w-\[7\.6rem\] {
  width: 7.6rem
}

.w-\[95\%\] {
  width: 95%
}

.w-\[1\.6rem\] {
  width: 1.6rem
}

.w-\[100vh\] {
  width: 100vh
}

.w-\[1px\] {
  width: 1px
}

.min-w-\[26\%\] {
  min-width: 26%
}

.min-w-\[50\%\] {
  min-width: 50%
}

.max-w-\[26rem\] {
  max-width: 26rem
}

.max-w-\[70\%\] {
  max-width: 70%
}

.max-w-\[24rem\] {
  max-width: 24rem
}

.max-w-\[85rem\] {
  max-width: 85rem
}

.flex-\[1\] {
  flex: 1
}

.flex-1 {
  flex: 1 1 0%
}

.grow {
  flex-grow: 1
}

.origin-top-left {
  transform-origin: top left
}

.origin-bottom-left {
  transform-origin: bottom left
}

.translate-y-\[80\%\] {
  --tw-translate-y: 80%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.translate-y-\[200\%\] {
  --tw-translate-y: 200%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.-translate-x-1\/2 {
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.-translate-y-1\/2 {
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.translate-y-1\/2 {
  --tw-translate-y: 50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.translate-y-full {
  --tw-translate-y: 100%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.-translate-x-full {
  --tw-translate-x: -100%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.translate-y-\[10\%\] {
  --tw-translate-y: 10%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.rotate-30 {
  --tw-rotate: 30deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.rotate-\[20deg\] {
  --tw-rotate: 20deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.rotate-90 {
  --tw-rotate: 90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.rotate-\[-80deg\] {
  --tw-rotate: -80deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.scale-\[1\.3\] {
  --tw-scale-x: 1.3;
  --tw-scale-y: 1.3;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.cursor-pointer {
  cursor: pointer
}

.list-disc {
  list-style-type: disc
}

.flex-row {
  flex-direction: row
}

.flex-col {
  flex-direction: column
}

.flex-wrap {
  flex-wrap: wrap
}

.items-center {
  align-items: center
}

.justify-center {
  justify-content: center
}

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

.self-end {
  align-self: flex-end
}

.overflow-hidden {
  overflow: hidden
}

.overflow-y-auto {
  overflow-y: auto
}

.whitespace-pre-line {
  white-space: pre-line
}

.rounded-\[100rem\] {
  border-radius: 100rem
}

.rounded-\[10rem\] {
  border-radius: 10rem
}

.border {
  border-width: 1px
}

.border-b {
  border-bottom-width: 1px
}

.border-\[\#333\] {
  --tw-border-opacity: 1;
  border-color: rgb(51 51 51 / var(--tw-border-opacity))
}

.border-black {
  --tw-border-opacity: 1;
  border-color: rgb(0 0 0 / var(--tw-border-opacity))
}

.border-\[rgb\(51\2c 51\2c 51\)\] {
  --tw-border-opacity: 1;
  border-color: rgb(51 51 51 / var(--tw-border-opacity))
}

.bg-black {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity))
}

.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity))
}

.bg-\[\#ddd\] {
  --tw-bg-opacity: 1;
  background-color: rgb(221 221 221 / var(--tw-bg-opacity))
}

.bg-\[rgba\(0\2c 0\2c 0\2c 0\.85\)\] {
  background-color: rgba(0,0,0,0.85)
}

.bg-\[\#333\] {
  --tw-bg-opacity: 1;
  background-color: rgb(51 51 51 / var(--tw-bg-opacity))
}

.bg-\[url\(\.\/img\/testamonials-2\.jpg\)\] {
  background-image: url(./img/testamonials-2.jpg)
}

.bg-\[url\(\.\/img\/4\.jpg\)\] {
  background-image: url(./img/4.jpg)
}

.bg-\[url\(\.\/img\/3\.jpg\)\] {
  background-image: url(./img/3.jpg)
}

.bg-\[url\(\.\/img\/2\.jpg\)\] {
  background-image: url(./img/2.jpg)
}

.bg-\[url\(\.\/img\/1\.jpg\)\] {
  background-image: url(./img/1.jpg)
}

.bg-\[url\(\'\.\/img\/testamonials-1\.jpg\'\)\] {
  background-image: url('./img/testamonials-1.jpg')
}

.bg-\[url\(\'\.\/img\/testamonials-2\.jpg\'\)\] {
  background-image: url('./img/testamonials-2.jpg')
}

.bg-\[url\(\'\.\/img\/31\.jpg\'\)\] {
  background-image: url('./img/31.jpg')
}

.bg-\[url\(\'\.\/img\/30\.jpg\'\)\] {
  background-image: url('./img/30.jpg')
}

.bg-\[url\(\'\.\/img\/28\.jpg\'\)\] {
  background-image: url('./img/28.jpg')
}

.bg-\[url\(\'\.\/img\/29\.jpg\'\)\] {
  background-image: url('./img/29.jpg')
}

.bg-\[url\(\.\/img\/icon-close-white\.webp\)\] {
  background-image: url(./img/icon-close-white.webp)
}

.bg-\[url\(\.\/img\/projekte-1\.jpg\)\] {
  background-image: url(./img/projekte-1.jpg)
}

.bg-\[url\(\.\/img\/projekte-2\.jpg\)\] {
  background-image: url(./img/projekte-2.jpg)
}

.bg-\[url\(\.\/img\/projekte-3\.jpg\)\] {
  background-image: url(./img/projekte-3.jpg)
}

.bg-\[url\(\.\/img\/DSC09467\.jpg\)\] {
  background-image: url(./img/DSC09467.jpg)
}

.bg-\[url\(\'https\:\/\/a\.storyblok\.com\/f\/86195\/2560x1080\/d3db5352bd\/galaxy2\.jpg\'\)\] {
  background-image: url('https://a.storyblok.com/f/86195/2560x1080/d3db5352bd/galaxy2.jpg')
}

.bg-\[url\(\.\/img\/DSC09330\.jpg\)\] {
  background-image: url(./img/DSC09330.jpg)
}

.bg-cover {
  background-size: cover
}

.bg-center {
  background-position: center
}

.bg-\[position\:50\%\] {
  background-position: 50%
}

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

.p-\[5vh_10\%_0\] {
  padding: 5vh 10% 0
}

.p-\[0_10\%\] {
  padding: 0 10%
}

.p-\[50\%_0_30\%\] {
  padding: 50% 0 30%
}

.p-\[0\%_0_15\%\] {
  padding: 0% 0 15%
}

.p-\[2rem_4rem\] {
  padding: 2rem 4rem
}

.p-\[22\%_14\%_36\%\] {
  padding: 22% 14% 36%
}

.p-\[10\%\] {
  padding: 10%
}

.p-\[10\%_0\] {
  padding: 10% 0
}

.p-\[15\%_10\%\] {
  padding: 15% 10%
}

.p-\[20\%_0_0\] {
  padding: 20% 0 0
}

.p-\[10\%_0_0\] {
  padding: 10% 0 0
}

.pb-8 {
  padding-bottom: 2rem
}

.pb-\[60\%\] {
  padding-bottom: 60%
}

.pb-6 {
  padding-bottom: 1.5rem
}

.pb-\[50\%\] {
  padding-bottom: 50%
}

.pr-\[10\%\] {
  padding-right: 10%
}

.pt-\[100\%\] {
  padding-top: 100%
}

.pl-3 {
  padding-left: 0.75rem
}

.pl-4 {
  padding-left: 1rem
}

.pl-6 {
  padding-left: 1.5rem
}

.pl-8 {
  padding-left: 2rem
}

.text-left {
  text-align: left
}

.text-center {
  text-align: center
}

.font-satoshi {
  font-family: Satoshi
}

.font-manrope {
  font-family: Manrope
}

.text-\[1\.2rem\] {
  font-size: 1.2rem
}

.text-\[3\.7rem\] {
  font-size: 3.7rem
}

.text-\[1\.4rem\] {
  font-size: 1.4rem
}

.text-\[4\.8rem\] {
  font-size: 4.8rem
}

.text-\[3\.5rem\] {
  font-size: 3.5rem
}

.text-\[2rem\] {
  font-size: 2rem
}

.text-\[2\.3rem\] {
  font-size: 2.3rem
}

.text-\[1\.6rem\] {
  font-size: 1.6rem
}

.text-\[1\.8rem\] {
  font-size: 1.8rem
}

.text-\[3rem\] {
  font-size: 3rem
}

.text-\[1\.25rem\] {
  font-size: 1.25rem
}

.font-semibold {
  font-weight: 600
}

.font-bold {
  font-weight: 700
}

.font-medium {
  font-weight: 500
}

.uppercase {
  text-transform: uppercase
}

.leading-\[4\.8rem\] {
  line-height: 4.8rem
}

.leading-\[3\.5rem\] {
  line-height: 3.5rem
}

.leading-\[2\.4rem\] {
  line-height: 2.4rem
}

.leading-\[2rem\] {
  line-height: 2rem
}

.leading-\[2\.2rem\] {
  line-height: 2.2rem
}

.leading-\[2\.6rem\] {
  line-height: 2.6rem
}

.leading-\[4rem\] {
  line-height: 4rem
}

.leading-\[2\.5rem\] {
  line-height: 2.5rem
}

.leading-\[1\.35\] {
  line-height: 1.35
}

.leading-\[3rem\] {
  line-height: 3rem
}

.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity))
}

.text-\[\#fff\] {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity))
}

.text-black {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity))
}

.text-\[\#333\] {
  --tw-text-opacity: 1;
  color: rgb(51 51 51 / var(--tw-text-opacity))
}

.no-underline {
  -webkit-text-decoration-line: none;
          text-decoration-line: none
}

.opacity-0 {
  opacity: 0
}

.shadow-\[0px_0px_8px_0px_rgba\(255\2c 255\2c 255\2c 0\.4\)\] {
  --tw-shadow: 0px 0px 8px 0px rgba(255,255,255,0.4);
  --tw-shadow-colored: 0px 0px 8px 0px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.brightness-50 {
  --tw-brightness: brightness(.5);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
}

.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms
}

.transition-colors {
  transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms
}

.duration-200 {
  transition-duration: 200ms
}

.duration-500 {
  transition-duration: 500ms
}

.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1)
}

.before\:absolute::before {
  content: var(--tw-content);
  position: absolute
}

.before\:top-0::before {
  content: var(--tw-content);
  top: 0px
}

.before\:left-0::before {
  content: var(--tw-content);
  left: 0px
}

.before\:z-\[101\]::before {
  content: var(--tw-content);
  z-index: 101
}

.before\:z-\[-1\]::before {
  content: var(--tw-content);
  z-index: -1
}

.before\:block::before {
  content: var(--tw-content);
  display: block
}

.before\:h-full::before {
  content: var(--tw-content);
  height: 100%
}

.before\:h-1\/2::before {
  content: var(--tw-content);
  height: 50%
}

.before\:w-full::before {
  content: var(--tw-content);
  width: 100%
}

.before\:bg-\[rgba\(0\2c 0\2c 0\2c \.2\)\]::before {
  content: var(--tw-content);
  background-color: rgba(0,0,0,.2)
}

.before\:bg-white::before {
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity))
}

.before\:content-\[\'\'\]::before {
  --tw-content: '';
  content: var(--tw-content)
}

.after\:m-\[10\%_auto_0\]::after {
  content: var(--tw-content);
  margin: 10% auto 0
}

.after\:block::after {
  content: var(--tw-content);
  display: block
}

.after\:h-\[1px\]::after {
  content: var(--tw-content);
  height: 1px
}

.after\:w-\[80\%\]::after {
  content: var(--tw-content);
  width: 80%
}

.after\:bg-\[\#333\]::after {
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(51 51 51 / var(--tw-bg-opacity))
}

.after\:content-\[\'\'\]::after {
  --tw-content: '';
  content: var(--tw-content)
}

.hover\:border-black:hover {
  --tw-border-opacity: 1;
  border-color: rgb(0 0 0 / var(--tw-border-opacity))
}

.hover\:border-white:hover {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity))
}

.hover\:bg-white:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity))
}

@media (min-width: 576px) {
  .sm\:w-\[3\.75rem\] {
    width: 3.75rem
  }

  .sm\:border-b-0 {
    border-bottom-width: 0px
  }
}

@media (min-width: 768px) {
  .md\:absolute {
    position: absolute
  }

  .md\:top-1\/2 {
    top: 50%
  }

  .md\:left-\[10\%\] {
    left: 10%
  }

  .md\:top-auto {
    top: auto
  }

  .md\:bottom-0 {
    bottom: 0px
  }

  .md\:top-\[49\%\] {
    top: 49%
  }

  .md\:order-1 {
    order: 1
  }

  .md\:order-2 {
    order: 2
  }

  .md\:m-0 {
    margin: 0px
  }

  .md\:m-\[0_0_18rem\] {
    margin: 0 0 18rem
  }

  .md\:mb-0 {
    margin-bottom: 0px
  }

  .md\:mr-\[10\%\] {
    margin-right: 10%
  }

  .md\:mt-\[10\%\] {
    margin-top: 10%
  }

  .md\:mt-\[15\%\] {
    margin-top: 15%
  }

  .md\:block {
    display: block
  }

  .md\:h-screen {
    height: 100vh
  }

  .md\:h-\[88vh\] {
    height: 88vh
  }

  .md\:w-auto {
    width: auto
  }

  .md\:w-\[70vw\] {
    width: 70vw
  }

  .md\:min-w-\[80vw\] {
    min-width: 80vw
  }

  .md\:max-w-\[50\%\] {
    max-width: 50%
  }

  .md\:translate-y-\[-40\%\] {
    --tw-translate-y: -40%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
  }

  .md\:flex-row {
    flex-direction: row
  }

  .md\:p-\[25\%_0\] {
    padding: 25% 0
  }

  .md\:p-\[2\.5\%_0_5\%\] {
    padding: 2.5% 0 5%
  }

  .md\:p-\[10\%_10\%_5\%\] {
    padding: 10% 10% 5%
  }

  .md\:p-0 {
    padding: 0px
  }

  .md\:pb-0 {
    padding-bottom: 0px
  }

  .md\:pl-8 {
    padding-left: 2rem
  }

  .md\:text-left {
    text-align: left
  }

  .md\:text-right {
    text-align: right
  }

  .md\:text-\[7rem\] {
    font-size: 7rem
  }

  .md\:text-\[1\.4rem\] {
    font-size: 1.4rem
  }

  .md\:text-\[2rem\] {
    font-size: 2rem
  }

  .md\:text-\[8rem\] {
    font-size: 8rem
  }

  .md\:leading-\[2\.6rem\] {
    line-height: 2.6rem
  }

  .md\:leading-\[9rem\] {
    line-height: 9rem
  }
}

@media (min-width: 992px) {
  .lg\:top-\[79vh\] {
    top: 79vh
  }

  .lg\:left-\[-16\.5\%\] {
    left: -16.5%
  }

  .lg\:order-1 {
    order: 1
  }

  .lg\:order-2 {
    order: 2
  }

  .lg\:m-0 {
    margin: 0px
  }

  .lg\:mb-0 {
    margin-bottom: 0px
  }

  .lg\:mt-\[10\%\] {
    margin-top: 10%
  }

  .lg\:mt-\[-35\%\] {
    margin-top: -35%
  }

  .lg\:mt-\[-34\%\] {
    margin-top: -34%
  }

  .lg\:mr-\[30\%\] {
    margin-right: 30%
  }

  .lg\:mt-\[-33\%\] {
    margin-top: -33%
  }

  .lg\:mr-\[45\%\] {
    margin-right: 45%
  }

  .lg\:mt-0 {
    margin-top: 0px
  }

  .lg\:h-\[14rem\] {
    height: 14rem
  }

  .lg\:h-\[16rem\] {
    height: 16rem
  }

  .lg\:h-\[22vh\] {
    height: 22vh
  }

  .lg\:h-\[90vh\] {
    height: 90vh
  }

  .lg\:h-\[33vw\] {
    height: 33vw
  }

  .lg\:w-\[30\%\] {
    width: 30%
  }

  .lg\:w-1\/2 {
    width: 50%
  }

  .lg\:w-\[50vw\] {
    width: 50vw
  }

  .lg\:min-w-\[30rem\] {
    min-width: 30rem
  }

  .lg\:min-w-\[33\%\] {
    min-width: 33%
  }

  .lg\:translate-x-\[-120\%\] {
    --tw-translate-x: -120%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
  }

  .lg\:flex-row {
    flex-direction: row
  }

  .lg\:content-end {
    align-content: flex-end
  }

  .lg\:items-center {
    align-items: center
  }

  .lg\:justify-between {
    justify-content: space-between
  }

  .lg\:p-\[15\%_0_20\%\] {
    padding: 15% 0 20%
  }

  .lg\:p-\[10\%_0_0\] {
    padding: 10% 0 0
  }

  .lg\:pl-\[10\%\] {
    padding-left: 10%
  }

  .lg\:pb-\[40\%\] {
    padding-bottom: 40%
  }

  .lg\:pb-\[33\%\] {
    padding-bottom: 33%
  }

  .lg\:pt-\[70vw\] {
    padding-top: 70vw
  }

  .lg\:text-right {
    text-align: right
  }

  .lg\:text-\[10rem\] {
    font-size: 10rem
  }

  .lg\:text-\[8rem\] {
    font-size: 8rem
  }

  .lg\:text-\[2\.5rem\] {
    font-size: 2.5rem
  }

  .lg\:text-\[1\.4rem\] {
    font-size: 1.4rem
  }

  .lg\:text-\[7rem\] {
    font-size: 7rem
  }

  .lg\:text-\[4rem\] {
    font-size: 4rem
  }

  .lg\:leading-\[8rem\] {
    line-height: 8rem
  }

  .lg\:leading-\[2\.5rem\] {
    line-height: 2.5rem
  }

  .lg\:leading-\[7rem\] {
    line-height: 7rem
  }

  .lg\:leading-\[4rem\] {
    line-height: 4rem
  }
}

@media (min-width: 1200px) {
  .xl\:top-\[75vh\] {
    top: 75vh
  }

  .xl\:mt-\[22vh\] {
    margin-top: 22vh
  }

  .xl\:h-\[18rem\] {
    height: 18rem
  }

  .xl\:h-\[20rem\] {
    height: 20rem
  }

  .xl\:h-\[25vh\] {
    height: 25vh
  }

  .xl\:w-\[50vw\] {
    width: 50vw
  }

  .xl\:min-w-0 {
    min-width: 0px
  }

  .xl\:p-\[15\%_0_25\%\] {
    padding: 15% 0 25%
  }

  .xl\:pt-\[50vw\] {
    padding-top: 50vw
  }

  .xl\:text-\[10rem\] {
    font-size: 10rem
  }

  .xl\:leading-\[10rem\] {
    line-height: 10rem
  }
}

@media (min-width: 1200px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  .gscreen\:mt-\[5vh\] {
    margin-top: 5vh
  }
}