@font-face {
  font-family: 'Montserrat';

  src: url('/src/fonts/Montserrat-ExtraBold.woff2') format('woff2');

  font-weight: bold;

  font-style: normal;

  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';

  src: url('/src/fonts/Montserrat-Bold.woff2') format('woff2');

  font-weight: bold;

  font-style: normal;

  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';

  src: url('/src/fonts/Montserrat-BoldItalic.woff2') format('woff2');

  font-weight: bold;

  font-style: italic;

  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';

  src: url('/src/fonts/Montserrat-MediumItalic.woff2') format('woff2');

  font-weight: 500;

  font-style: italic;

  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';

  src: url('/src/fonts/Montserrat-ExtraBoldItalic.woff2') format('woff2');

  font-weight: bold;

  font-style: italic;

  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';

  src: url('/src/fonts/Montserrat-Medium.woff2') format('woff2');

  font-weight: 500;

  font-style: normal;

  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';

  src: url('/src/fonts/Montserrat-SemiBoldItalic.woff2') format('woff2');

  font-weight: 600;

  font-style: italic;

  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';

  src: url('/src/fonts/Montserrat-SemiBold.woff2') format('woff2');

  font-weight: 600;

  font-style: normal;

  font-display: swap;
}

:root {
  --color-bg1: rgb(108, 0, 162);
  --color-bg2: rgb(0, 17, 82);
  --color1: 18, 113, 255;
  --color2: 221, 74, 255;
  --color3: 100, 220, 255;
  --color4: 200, 50, 50;
  --color5: 41, 75, 162;
  /*--color5: 180, 180, 50;*/
  --color-interactive: 140, 100, 255;
  --circle-size: 80%;
  --blending: hard-light;
}

@keyframes moveInCircle {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes moveVertical {
  0% {
    transform: translateY(-50%);
  }

  50% {
    transform: translateY(50%);
  }

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

@keyframes moveHorizontal {
  0% {
    transform: translateX(-50%) translateY(-10%);
  }

  50% {
    transform: translateX(50%) translateY(10%);
  }

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

.gradient-bg {
  position: absolute;
  overflow: hidden;
  background: linear-gradient(40deg, var(--color-bg1), var(--color-bg2));
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.gradients-container {
  filter: url(#goo) blur(40px);
  -webkit-filter: blur(40px);
  /*filter: blur(40px);*/
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
}

.g1 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color1), 0.8) 0, rgba(var(--color1), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2);
  left: calc(50% - var(--circle-size) / 2);
  transform-origin: center center;
  animation: moveVertical 30s ease infinite;
  opacity: 1;
}

.g2 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color2), 0.8) 0, rgba(var(--color2), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2);
  left: calc(50% - var(--circle-size) / 2);
  transform-origin: calc(50% - 400px);
  animation: moveInCircle 20s reverse infinite;
  opacity: 1;
}

.g3 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color3), 0.8) 0, rgba(var(--color3), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2 + 200px);
  left: calc(50% - var(--circle-size) / 2 - 500px);
  transform-origin: calc(50% + 400px);
  animation: moveInCircle 40s linear infinite;
  opacity: 1;
}

.g4 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color4), 0.8) 0, rgba(var(--color4), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2);
  left: calc(50% - var(--circle-size) / 2);
  transform-origin: calc(50% - 200px);
  animation: moveHorizontal 40s ease infinite;
  opacity: 0.7;
}

.g5 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color5), 0.8) 0, rgba(var(--color5), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: calc(var(--circle-size) * 2);
  height: calc(var(--circle-size) * 2);
  top: calc(50% - var(--circle-size));
  left: calc(50% - var(--circle-size));
  transform-origin: calc(50% - 800px) calc(50% + 200px);
  animation: moveInCircle 20s ease infinite;
  opacity: 1;
}

.interactive {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color-interactive), 0.8) 0, rgba(var(--color-interactive), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: 100%;
  height: 100%;
  top: -50%;
  left: -50%;
  opacity: 0.7;
}

.swiper-slide:not(.swiper-slide-active) {
  opacity: 0.3;
  filter: blur(3px);
  /*transform: scale(0.9);*/
}

.swiper-container {
  /*border: 1px solid red;*/
  /* overflow: hidden;*/
}

.swiper-slide:not(.swiper-slide-visible) {
  opacity: 0;
}

.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.rainbow-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  /*background: linear-gradient(115deg,#4fcf70,#fad648,#a767e5,#12bcfe,#44ce7b);*/
  background-size: 50% 100%
}

.rainbow-btn:focus:before,
.rainbow-btn:hover:before {
  animation: rainbow-btn .75s linear infinite
}

.mesh1 {
  background-color: hsla(260, 67%, 32%, 1);
  background-image: radial-gradient(at 8% 87%, hsla(196, 92%, 50%, 1) 0px, transparent 50%),
  radial-gradient(at 93% 5%, hsla(282, 52%, 48%, 1) 0px, transparent 50%),
  radial-gradient(at 3% 4%, hsla(250, 62%, 26%, 1) 0px, transparent 50%);
}

.mesh2 {
  background-color: hsla(260, 67%, 32%, 1);
  background-image: radial-gradient(at 2% 54%, hsla(196, 92%, 50%, 1) 0px, transparent 50%),
  radial-gradient(at 93% 5%, hsla(282, 52%, 48%, 1) 0px, transparent 50%),
  radial-gradient(at 3% 4%, hsla(250, 62%, 26%, 1) 0px, transparent 50%),
  radial-gradient(at 76% 79%, hsla(282, 52%, 48%, 1) 0px, transparent 50%);
}

.mesh3 {
  background-color: hsla(260, 67%, 32%, 1);
  background-image: radial-gradient(at 83% 0%, hsla(196, 92%, 50%, 1) 0px, transparent 50%),
  radial-gradient(at 8% 24%, hsla(282, 52%, 48%, 1) 0px, transparent 50%),
  radial-gradient(at 3% 4%, hsla(250, 62%, 26%, 1) 0px, transparent 50%),
  radial-gradient(at 86% 84%, hsla(282, 52%, 48%, 1) 0px, transparent 50%);
}

.mesh4 {
  background-color: hsla(260, 67%, 32%, 1);
  background-image: radial-gradient(at 86% 100%, hsla(195, 92%, 50%, 1) 0px, transparent 50%),
  radial-gradient(at 8% 24%, hsla(282, 52%, 48%, 1) 0px, transparent 50%),
  radial-gradient(at 3% 4%, hsla(250, 62%, 26%, 1) 0px, transparent 50%),
  radial-gradient(at 86% 84%, hsla(282, 52%, 48%, 1) 0px, transparent 50%),
  radial-gradient(at 39% 0%, hsla(196, 92%, 50%, 1) 0px, transparent 50%);
}

@keyframes rainbow-btn {
  to {
    transform: translateX(-50%)
  }
}

.button-pulse {
  animation: pulse 2s infinite 3s cubic-bezier(0.25, 0, 0, 1);
  box-shadow: 0 0 0 0 white;
}

@keyframes pulse {
  to {
    box-shadow: 0 0 0 18px rgba(255, 255, 255, 0);
  }
}

*, ::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-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --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:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::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-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --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:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

/*! tailwindcss v3.4.14 | 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.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  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, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  /* 4 */
  font-feature-settings: normal;
  /* 5 */
  font-variation-settings: normal;
  /* 6 */
  -webkit-tap-highlight-color: transparent;
  /* 7 */
}

/*
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. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. 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-feature-settings: normal;
  /* 2 */
  font-variation-settings: normal;
  /* 3 */
  font-size: 1em;
  /* 4 */
}

/*
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-feature-settings: inherit;
  /* 1 */
  font-variation-settings: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  font-weight: inherit;
  /* 1 */
  line-height: inherit;
  /* 1 */
  letter-spacing: 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,
input:where([type='button']),
input:where([type='reset']),
input:where([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;
}

/*
Reset default styling for dialogs.
*/

dialog {
  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;
}

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
}

.h1 font-size {
  line-height: 1.2;
}

.h1 {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.h3 {
  font-size: 1.75rem;
  line-height: 1.4;
  font-weight: 700;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgb(16 109 215 / var(--tw-text-opacity));
}

.absolute {
  position: absolute;
}

.\!relative {
  position: relative !important;
}

.relative {
  position: relative;
}

.\!bottom-0 {
  bottom: 0px !important;
}

.\!left-\[-60px\] {
  left: -60px !important;
}

.\!right-\[-60px\] {
  right: -60px !important;
}

.bottom-0 {
  bottom: 0px;
}

.bottom-1 {
  bottom: 0.25rem;
}

.bottom-\[-1px\] {
  bottom: -1px;
}

.left-0 {
  left: 0px;
}

.left-1 {
  left: 0.25rem;
}

.left-5 {
  left: 1.25rem;
}

.left-\[200px\] {
  left: 200px;
}

.right-0 {
  right: 0px;
}

.right-1 {
  right: 0.25rem;
}

.right-\[200px\] {
  right: 200px;
}

.top-0 {
  top: 0px;
}

.top-1 {
  top: 0.25rem;
}

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

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

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

.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

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

.mb-10 {
  margin-bottom: 2.5rem;
}

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

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

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

.mb-\[10px\] {
  margin-bottom: 10px;
}

.mb-\[22px\] {
  margin-bottom: 22px;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

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

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

.block {
  display: block;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.aspect-square {
  aspect-ratio: 1 / 1;
}

.\!h-auto {
  height: auto !important;
}

.h-1\/2 {
  height: 50%;
}

.h-\[2px\] {
  height: 2px;
}

.h-\[50px\] {
  height: 50px;
}

.h-auto {
  height: auto;
}

.h-full {
  height: 100%;
}

.max-h-\[1080px\] {
  max-height: 1080px;
}

.w-\[280px\] {
  width: 280px;
}

.w-\[40px\] {
  width: 40px;
}

.w-\[45px\] {
  width: 45px;
}

.w-\[50px\] {
  width: 50px;
}

.w-\[540px\] {
  width: 540px;
}

.w-\[65px\] {
  width: 65px;
}

.w-\[70px\] {
  width: 70px;
}

.w-\[99px\] {
  width: 99px;
}

.w-\[calc\(100\%\+20px\)\] {
  width: calc(100% + 20px);
}

.w-auto {
  width: auto;
}

.w-full {
  width: 100%;
}

.w-screen {
  width: 100vw;
}

.min-w-\[40px\] {
  min-width: 40px;
}

.max-w-\[1000px\] {
  max-width: 1000px;
}

.max-w-\[1160px\] {
  max-width: 1160px;
}

.max-w-\[240px\] {
  max-width: 240px;
}

.max-w-\[48vw\] {
  max-width: 48vw;
}

.max-w-\[530px\] {
  max-width: 530px;
}

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

.max-w-\[680px\] {
  max-width: 680px;
}

.max-w-\[700px\] {
  max-width: 700px;
}

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

.max-w-none {
  max-width: none;
}

.scale-\[99\%\] {
  --tw-scale-x: 99%;
  --tw-scale-y: 99%;
  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-x-\[-1\] {
  --tw-scale-x: -1;
  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));
}

.transform {
  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));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-\[24px_1fr\] {
  grid-template-columns: 24px 1fr;
}

.grid-cols-\[50px_1fr_1fr\] {
  grid-template-columns: 50px 1fr 1fr;
}

.items-start {
  align-items: flex-start;
}

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

.justify-center {
  justify-content: center;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-\[10px\] {
  gap: 10px;
}

.gap-\[20px\] {
  gap: 20px;
}

.gap-\[44px\] {
  gap: 44px;
}

.divide-y > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}

.self-start {
  align-self: flex-start;
}

.overflow-hidden {
  overflow: hidden;
}

.rounded-\[20px\] {
  border-radius: 20px;
}

.rounded-\[30px\] {
  border-radius: 30px;
}

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

.\!rounded-tl-none {
  border-top-left-radius: 0px !important;
}

.\!rounded-tr-none {
  border-top-right-radius: 0px !important;
}

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

.border-solid {
  border-style: solid;
}

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

.bg-\[\#181E2A\] {
  --tw-bg-opacity: 1;
  background-color: rgb(24 30 42 / var(--tw-bg-opacity));
}

.bg-\[\#3E1A88\] {
  --tw-bg-opacity: 1;
  background-color: rgb(62 26 136 / var(--tw-bg-opacity));
}

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

.bg-body-bg {
  --tw-bg-opacity: 1;
  background-color: rgb(241 242 246 / var(--tw-bg-opacity));
}

.bg-dark-grey-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(24 30 42 / var(--tw-bg-opacity));
}

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

.bg-custom-gradient-1 {
  background-image: linear-gradient(to right, #0EDBF6 0%, #106DD7 30%, #481B9A 80%);
}

.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-\[\#FC3A1E\] {
  --tw-gradient-from: #FC3A1E var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(252 58 30 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-\[\#FFD000\] {
  --tw-gradient-to: #FFD000 var(--tw-gradient-to-position);
}

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

.object-left {
  -o-object-position: left;
  object-position: left;
}

.p-0 {
  padding: 0px;
}

.p-2 {
  padding: 0.5rem;
}

.p-\[3px\] {
  padding: 3px;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-\[10px\] {
  padding-left: 10px;
  padding-right: 10px;
}

.py-\[20px\] {
  padding-top: 20px;
  padding-bottom: 20px;
}

.py-\[74px\] {
  padding-top: 74px;
  padding-bottom: 74px;
}

.py-\[76px\] {
  padding-top: 76px;
  padding-bottom: 76px;
}

.py-\[80px\] {
  padding-top: 80px;
  padding-bottom: 80px;
}

.pb-5 {
  padding-bottom: 1.25rem;
}

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

.pb-\[10px\] {
  padding-bottom: 10px;
}

.pb-\[30px\] {
  padding-bottom: 30px;
}

.pt-5 {
  padding-top: 1.25rem;
}

.pt-\[22px\] {
  padding-top: 22px;
}

.pt-\[30px\] {
  padding-top: 30px;
}

.pt-\[74px\] {
  padding-top: 74px;
}

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

.font-montserrat {
  font-family: Montserrat, sans-serif;
}

.\!text-\[20px\] {
  font-size: 20px !important;
}

.text-\[12px\] {
  font-size: 12px;
}

.text-\[13px\] {
  font-size: 13px;
}

.text-\[14px\] {
  font-size: 14px;
}

.text-\[16px\] {
  font-size: 16px;
}

.text-\[18px\] {
  font-size: 18px;
}

.text-\[20px\] {
  font-size: 20px;
}

.text-\[26px\] {
  font-size: 26px;
}

.text-\[30px\] {
  font-size: 30px;
}

.text-\[45px\] {
  font-size: 45px;
}

.\!font-bold {
  font-weight: 700 !important;
}

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

.font-extrabold {
  font-weight: 800;
}

.font-medium {
  font-weight: 500;
}

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

.uppercase {
  text-transform: uppercase;
}

.leading-\[1\.2\] {
  line-height: 1.2;
}

.leading-none {
  line-height: 1;
}

.\!text-\[\#222222\] {
  --tw-text-opacity: 1 !important;
  color: rgb(34 34 34 / var(--tw-text-opacity)) !important;
}

.\!text-dark-blue-2 {
  --tw-text-opacity: 1 !important;
  color: rgb(4 82 170 / var(--tw-text-opacity)) !important;
}

.text-\[\#0FA4E7\] {
  --tw-text-opacity: 1;
  color: rgb(15 164 231 / var(--tw-text-opacity));
}

.text-\[\#16C144\] {
  --tw-text-opacity: 1;
  color: rgb(22 193 68 / var(--tw-text-opacity));
}

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

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

.text-\[\#FC3A1E\] {
  --tw-text-opacity: 1;
  color: rgb(252 58 30 / var(--tw-text-opacity));
}

.text-\[\#FC4D25\] {
  --tw-text-opacity: 1;
  color: rgb(252 77 37 / var(--tw-text-opacity));
}

.text-dark-blue-2 {
  --tw-text-opacity: 1;
  color: rgb(4 82 170 / var(--tw-text-opacity));
}

.text-dark-grey {
  --tw-text-opacity: 1;
  color: rgb(34 34 34 / var(--tw-text-opacity));
}

.text-light-gray {
  --tw-text-opacity: 1;
  color: rgb(153 153 153 / var(--tw-text-opacity));
}

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

.text-white\/70 {
  color: rgb(255 255 255 / 0.7);
}

.blur {
  --tw-blur: blur(8px);
  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);
}

.filter {
  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);
}

/*@screen xs{*/

/*  .h1 {*/

/*    @apply text-[1.375rem];*/

/*  }*/

/*}*/

.btn {
  position: relative;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
  --tw-gradient-from: #FFD000 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(255 208 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
  --tw-gradient-to: #FF7E1B var(--tw-gradient-to-position);
  padding-left: 30px;
  padding-right: 30px;
  font-weight: 700;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  transition-property: all;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover {
  background: linear-gradient(to bottom, #FFD000, #FE902F)!important;
  transition: all 0.3s ease-in-out;
}

.btn_outline {
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 9999px;
  font-weight: 700;
  text-transform: uppercase;
  color: transparent;
  /*@apply hover:bg-blue-700;  !* Hover effect *!*/
  /*@apply focus:outline-none focus:ring-2 focus:ring-blue-500 focus:ring-opacity-50;*/
}

@media (min-width: 320px){
  .h1 {
    font-size: 1.375rem;
  }

  .h3 {
    font-size: 20px;
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgb(4 82 170 / var(--tw-text-opacity));
  }

  .btn {
    height: 70px;
    font-size: 18px;
  }

  @media not all and (min-width: 768px) {
    .btn {
      height: 60px;
      width: 100%;
    }
  }

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

@media (min-width: 768px) {
  .h1 {
    font-size: 1.625rem;
  }

  .h3 {
    font-size: 20px;
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgb(4 82 170 / var(--tw-text-opacity));
  }

  .container {
    padding-left: 34px;
    padding-right: 34px;
  }
}

@media (min-width: 1024px) {
  .h1 {
    font-size: 1.75rem;
  }

  .btn {
    font-size: 20px;
  }

  .container {
    padding-left: 74px;
    padding-right: 74px;
  }
}

@media (min-width: 1440px) {
  .h1 {
    font-size: 2.25rem;
  }

  .btn {
    height: 90px;
    padding-left: 60px;
    padding-right: 60px;
    font-size: 22px;
  }

  .container {
    padding-left: 74px;
    padding-right: 74px;
  }
}

@media (min-width: 1920px) {
  .h1 {
    font-size: 2.625rem;
  }
}

.h2 {
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity));
}

.h3 {
  font-size: 1.75rem;
  line-height: 1.4;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity));
}

.btn_outline::before {
  content: '';
  width: 240px;
  height: 50px;
  line-height: 90px;
  border: 0;
  border-radius: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0) scaleX(1.05) scaleY(1.1);
  background-image: linear-gradient(180deg, #106DD7 0%, #0EDBF6 100%);
  z-index: 0;
}

.btn_outline:after {
  content: attr(aria-label);
  background: #181E2A!important;
  width: 240px;
  height: 48px;
  line-height: 90px;
  border: 0;
  border-radius: 50px;
  position: absolute;
  font-size: 25px;
  text-transform: uppercase;
  font-weight: 700;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0) scaleX(.95) scaleY(.9);
  background-image: linear-gradient(180deg, #106DD7 0%, #0EDBF6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff;
  color: #fff;
}

.btn_outline:hover {
  background: transparent;
}

.btn_outline:hover:after {
  -webkit-text-fill-color: #fff;
}

.swiper-pagination-bullet-active {
  border-color: #126DD7!important;
}

.swiper-pagination-bullet-active::after {
  content: '';
  width: 80%!important;
  height: 80%!important;
  border-radius: 50%!important;
  background-color: #126DD7!important;
}

.before\:bg-custom-gradient-2::before {
  content: var(--tw-content);
  background-image: linear-gradient(to right, #106DD7 0%, #0EDBF6 80%);
}

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

@media not all and (min-width: 1440px) {
  .max-xl\:w-\[60vw\] {
    width: 60vw;
  }

  .max-xl\:text-\[22px\] {
    font-size: 22px;
  }
}

@media not all and (min-width: 1024px) {
  .max-lg\:left-\[100px\] {
    left: 100px;
  }

  .max-lg\:right-\[100px\] {
    right: 100px;
  }

  .max-lg\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .max-lg\:mb-4 {
    margin-bottom: 1rem;
  }

  .max-lg\:mb-\[60px\] {
    margin-bottom: 60px;
  }

  .max-lg\:grid {
    display: grid;
  }

  .max-lg\:hidden {
    display: none;
  }

  .max-lg\:min-h-screen {
    min-height: 100vh;
  }

  .max-lg\:self-end {
    align-self: flex-end;
  }

  .max-lg\:pb-\[100px\] {
    padding-bottom: 100px;
  }

  .max-lg\:text-center {
    text-align: center;
  }

  .max-lg\:text-\[20px\] {
    font-size: 20px;
  }
}

@media not all and (min-width: 768px) {
  .max-md\:\!left-\[-40px\] {
    left: -40px !important;
  }

  .max-md\:\!right-\[-40px\] {
    right: -40px !important;
  }

  .max-md\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .max-md\:mb-6 {
    margin-bottom: 1.5rem;
  }

  .max-md\:hidden {
    display: none;
  }

  .max-md\:\!w-full {
    width: 100% !important;
  }

  .max-md\:w-\[calc\(100\%\+20px\)\] {
    width: calc(100% + 20px);
  }

  .max-md\:self-end {
    align-self: flex-end;
  }

  .max-md\:pb-6 {
    padding-bottom: 1.5rem;
  }

  .max-md\:pb-\[80px\] {
    padding-bottom: 80px;
  }

  .max-md\:pt-\[230px\] {
    padding-top: 230px;
  }

  .max-md\:text-center {
    text-align: center;
  }

  .max-md\:text-\[16px\] {
    font-size: 16px;
  }

  .max-md\:leading-\[26px\] {
    line-height: 26px;
  }
}

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

  .md\:top-\[20px\] {
    top: 20px;
  }

  .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .md\:mb-\[30px\] {
    margin-bottom: 30px;
  }

  .md\:mb-\[42px\] {
    margin-bottom: 42px;
  }

  .md\:ml-auto {
    margin-left: auto;
  }

  .md\:mr-0 {
    margin-right: 0px;
  }

  .md\:mt-4 {
    margin-top: 1rem;
  }

  .md\:hidden {
    display: none;
  }

  .md\:\!w-auto {
    width: auto !important;
  }

  .md\:w-\[106px\] {
    width: 106px;
  }

  .md\:w-\[110px\] {
    width: 110px;
  }

  .md\:w-\[149px\] {
    width: 149px;
  }

  .md\:w-\[50px\] {
    width: 50px;
  }

  .md\:w-\[60px\] {
    width: 60px;
  }

  .md\:min-w-\[50px\] {
    min-width: 50px;
  }

  .md\:max-w-\[460px\] {
    max-width: 460px;
  }

  .md\:max-w-\[60vw\] {
    max-width: 60vw;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-\[1fr_2fr\] {
    grid-template-columns: 1fr 2fr;
  }

  .md\:items-center {
    align-items: center;
  }

  .md\:gap-5 {
    gap: 1.25rem;
  }

  .md\:gap-6 {
    gap: 1.5rem;
  }

  .md\:gap-\[60px\] {
    gap: 60px;
  }

  .md\:divide-x > :not([hidden]) ~ :not([hidden]) {
    --tw-divide-x-reverse: 0;
    border-right-width: calc(1px * var(--tw-divide-x-reverse));
    border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse)));
  }

  .md\:self-start {
    align-self: flex-start;
  }

  .md\:px-\[30px\] {
    padding-left: 30px;
    padding-right: 30px;
  }

  .md\:py-\[100px\] {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .md\:py-\[90px\] {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .md\:py-\[96px\] {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .md\:pt-\[30px\] {
    padding-top: 30px;
  }

  .md\:\!text-\[23px\] {
    font-size: 23px !important;
  }

  .md\:text-\[16px\] {
    font-size: 16px;
  }

  .md\:text-\[17px\] {
    font-size: 17px;
  }

  .md\:text-\[18px\] {
    font-size: 18px;
  }

  .md\:text-\[20px\] {
    font-size: 20px;
  }

  .md\:text-\[50px\] {
    font-size: 50px;
  }

  .md\:text-\[55px\] {
    font-size: 55px;
  }
}

@media (min-width: 1024px) {
  .lg\:absolute {
    position: absolute;
  }

  .lg\:left-\[70px\] {
    left: 70px;
  }

  .lg\:top-\[20px\] {
    top: 20px;
  }

  .lg\:mb-\[34px\] {
    margin-bottom: 34px;
  }

  .lg\:ml-auto {
    margin-left: auto;
  }

  .lg\:mr-0 {
    margin-right: 0px;
  }

  .lg\:flex {
    display: flex;
  }

  .lg\:grid {
    display: grid;
  }

  .lg\:hidden {
    display: none;
  }

  .lg\:h-full {
    height: 100%;
  }

  .lg\:h-screen {
    height: 100vh;
  }

  .lg\:w-\[125px\] {
    width: 125px;
  }

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

  .lg\:w-\[75px\] {
    width: 75px;
  }

  .lg\:w-\[80px\] {
    width: 80px;
  }

  .lg\:min-w-\[50px\] {
    min-width: 50px;
  }

  .lg\:max-w-\[560px\] {
    max-width: 560px;
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lg\:grid-cols-\[1fr_1fr\] {
    grid-template-columns: 1fr 1fr;
  }

  .lg\:grid-cols-\[1fr_2fr\] {
    grid-template-columns: 1fr 2fr;
  }

  .lg\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

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

  .lg\:gap-\[0_34px\] {
    gap: 0 34px;
  }

  .lg\:gap-\[25px\] {
    gap: 25px;
  }

  .lg\:gap-\[75px\] {
    gap: 75px;
  }

  .lg\:rounded-\[40px\] {
    border-radius: 40px;
  }

  .lg\:py-\[112px\] {
    padding-top: 112px;
    padding-bottom: 112px;
  }

  .lg\:py-\[120px\] {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .lg\:py-\[60px\] {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .lg\:text-\[18px\] {
    font-size: 18px;
  }

  .lg\:text-\[20px\] {
    font-size: 20px;
  }

  .lg\:text-\[56px\] {
    font-size: 56px;
  }
}

@media (min-width: 1440px) {
  .xl\:mb-10 {
    margin-bottom: 2.5rem;
  }

  .xl\:grid {
    display: grid;
  }

  .xl\:\!w-auto {
    width: auto !important;
  }

  .xl\:w-\[100px\] {
    width: 100px;
  }

  .xl\:w-\[1160px\] {
    width: 1160px;
  }

  .xl\:w-\[141px\] {
    width: 141px;
  }

  .xl\:w-\[198px\] {
    width: 198px;
  }

  .xl\:w-\[60px\] {
    width: 60px;
  }

  .xl\:w-\[65px\] {
    width: 65px;
  }

  .xl\:w-\[90px\] {
    width: 90px;
  }

  .xl\:min-w-\[60px\] {
    min-width: 60px;
  }

  .xl\:min-w-\[65px\] {
    min-width: 65px;
  }

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

  .xl\:max-w-\[825px\] {
    max-width: 825px;
  }

  .xl\:grid-cols-\[150px_1fr\] {
    grid-template-columns: 150px 1fr;
  }

  .xl\:grid-cols-\[60px_1fr_1fr\] {
    grid-template-columns: 60px 1fr 1fr;
  }

  .xl\:items-center {
    align-items: center;
  }

  .xl\:gap-6 {
    gap: 1.5rem;
  }

  .xl\:gap-8 {
    gap: 2rem;
  }

  .xl\:gap-\[0_50px\] {
    gap: 0 50px;
  }

  .xl\:gap-\[30px\] {
    gap: 30px;
  }

  .xl\:rounded-\[60px\] {
    border-radius: 60px;
  }

  .xl\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .xl\:px-\[66px\] {
    padding-left: 66px;
    padding-right: 66px;
  }

  .xl\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .xl\:py-\[140px\] {
    padding-top: 140px;
    padding-bottom: 140px;
  }

  .xl\:py-\[150px\] {
    padding-top: 150px;
    padding-bottom: 150px;
  }

  .xl\:py-\[80px\] {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .xl\:\!text-\[32px\] {
    font-size: 32px !important;
  }

  .xl\:text-\[14px\] {
    font-size: 14px;
  }

  .xl\:text-\[16px\] {
    font-size: 16px;
  }

  .xl\:text-\[20px\] {
    font-size: 20px;
  }

  .xl\:text-\[22px\] {
    font-size: 22px;
  }

  .xl\:text-\[26px\] {
    font-size: 26px;
  }

  .xl\:text-\[66px\] {
    font-size: 66px;
  }

  .xl\:text-\[70px\] {
    font-size: 70px;
  }
}

@media (min-width: 1920px) {
  .\32xl\:mb-\[60px\] {
    margin-bottom: 60px;
  }

  .\32xl\:mt-\[48px\] {
    margin-top: 48px;
  }

  .\32xl\:mt-\[70px\] {
    margin-top: 70px;
  }

  .\32xl\:w-\[105px\] {
    width: 105px;
  }

  .\32xl\:w-\[172px\] {
    width: 172px;
  }

  .\32xl\:w-\[80px\] {
    width: 80px;
  }

  .\32xl\:min-w-\[80px\] {
    min-width: 80px;
  }

  .\32xl\:max-w-\[1040px\] {
    max-width: 1040px;
  }

  .\32xl\:max-w-\[1180px\] {
    max-width: 1180px;
  }

  .\32xl\:gap-10 {
    gap: 2.5rem;
  }

  .\32xl\:gap-\[22px\] {
    gap: 22px;
  }

  .\32xl\:gap-\[60px\] {
    gap: 60px;
  }

  .\32xl\:px-\[80px\] {
    padding-left: 80px;
    padding-right: 80px;
  }

  .\32xl\:py-\[190px\] {
    padding-top: 190px;
    padding-bottom: 190px;
  }

  .\32xl\:pt-\[150px\] {
    padding-top: 150px;
  }

  .\32xl\:text-\[24px\] {
    font-size: 24px;
  }

  .\32xl\:text-\[26px\] {
    font-size: 26px;
  }

  .\32xl\:text-\[30px\] {
    font-size: 30px;
  }

  .\32xl\:text-\[36px\] {
    font-size: 36px;
  }

  .\32xl\:text-\[86px\] {
    font-size: 86px;
  }

  .\32xl\:text-\[90px\] {
    font-size: 90px;
  }
}

.\[\&\>div\>svg\]\:h-auto>div>svg {
  height: auto;
}

.\[\&\>div\>svg\]\:min-w-\[20px\]>div>svg {
  min-width: 20px;
}

@media (min-width: 1024px) {
  .lg\:\[\&\>div\>svg\]\:min-w-\[30px\]>div>svg {
    min-width: 30px;
  }
}

@media (min-width: 1440px) {
  .xl\:\[\&\>div\>svg\]\:h-auto>div>svg {
    height: auto;
  }

  .xl\:\[\&\>div\>svg\]\:w-full>div>svg {
    width: 100%;
  }
}

@media (min-width: 1920px) {
  .\32xl\:\[\&\>div\>svg\]\:min-w-\[40px\]>div>svg {
    min-width: 40px;
  }
}

.\[\&\>iframe\]\:hidden>iframe {
  display: none;
}

.\[\&\>iframe\]\:aspect-video>iframe {
  aspect-ratio: 16 / 9;
}

.\[\&\>iframe\]\:w-full>iframe {
  width: 100%;
}

.\[\&\>p\]\:mb-3>p {
  margin-bottom: 0.75rem;
}

.\[\&\>span\]\:flex>span {
  display: flex;
}

.\[\&\>span\]\:h-4>span {
  height: 1rem;
}

.\[\&\>span\]\:w-4>span {
  width: 1rem;
}

.\[\&\>span\]\:items-center>span {
  align-items: center;
}

.\[\&\>span\]\:justify-center>span {
  justify-content: center;
}

.\[\&\>span\]\:border-\[2px\]>span {
  border-width: 2px;
}

.\[\&\>span\]\:border-solid>span {
  border-style: solid;
}

.\[\&\>span\]\:border-\[\#222\]>span {
  --tw-border-opacity: 1;
  border-color: rgb(34 34 34 / var(--tw-border-opacity));
}

.\[\&\>span\]\:bg-transparent>span {
  background-color: transparent;
}

.\[\&\>span\]\:text-yellow-100>span {
  --tw-text-opacity: 1;
  color: rgb(255 208 0 / var(--tw-text-opacity));
}

@media (min-width: 768px) {
  .md\:\[\&\>span\]\:h-6>span {
    height: 1.5rem;
  }

  .md\:\[\&\>span\]\:w-6>span {
    width: 1.5rem;
  }
}
