@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://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css");


/* === Bebas Neue Fonts === */
@font-face {
    font-family: "Bebas Neue";
    font-style: normal;
    font-weight: 400;
    src: local("Bebas Neue Regular"), url("/build/assets/BebasNeue%20Regular-BMdbxVD2.woff") format("woff");
}
@font-face {
    font-family: "Bebas Neue";
    font-style: normal;
    font-weight: 300;
    src: local("Bebas Neue Light"), url("/build/assets/BebasNeue%20Light-V7jYruPk.woff") format("woff");
}
@font-face {
    font-family: "Bebas Neue";
    font-style: normal;
    font-weight: 200;
    src: local("Bebas Neue Thin"), url("/build/assets/BebasNeue%20Thin-DLvDCpx5.woff") format("woff");
}
@font-face {
    font-family: "Bebas Neue";
    font-style: normal;
    font-weight: 500;
    src: local("Bebas Neue Book"), url("/build/assets/BebasNeue%20Book-Dq9E7e25.woff") format("woff");
}
@font-face {
    font-family: "Bebas Neue";
    font-style: normal;
    font-weight: 700;
    src: local("Bebas Neue Bold"), url("/build/assets/BebasNeue%20Bold-2YwciLuA.woff") format("woff");
}
:root {
  --black: #000;
  --black-10: rgba(0, 0, 0, 0.1);
  --black-40: rgba(0, 0, 0, 0.4);
  --black-65: rgba(0, 0, 0, 0.65);
  --primary: #fff;
  --primary-10: rgba(255, 255, 255, 0.1);
  --primary-15: rgba(255, 255, 255, 0.15);
  --primary-30: rgba(255, 255, 255, 0.3);
  --primary-50: rgba(255, 255, 255, 0.5);
  --main: #0e4c29;
  --main-10: rgba(14, 76, 41, 0.1);
  --main-light: #156e3c;
  --main-bright: #09cc4a;
  --main-bright-15: rgba(9, 204, 74, 0.15);
  --main2: #ffb34d;
  --main2-15: rgba(255, 179, 77, 0.15);
  --main2-dark: #be6f00;
  --secondary: #727272;
  --placeholder: #bdbdbd;
  --gray: #e1e1e1;
  --gray2: #f5f5f5;
  --error: #e80000;
  --swiper-wrapper-transition-timing-function: linear !important;
  --radius-input: 0.5rem;
  --radius-btn: 0.5rem;
  --radius-card: 1rem;
  --shadow-card: 0 0 0.75rem 0 var(--black-10);
  --scrollbar-size: 0px;
  --header-height: 0px;
  --btn-height: 3.75rem;
  --font-bebas: "Bebas Neue", sans-serif;
  --font-inter: "Inter", sans-serif;
}
/* Buttons */
.main2-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--btn-height);
  min-width: var(--btn-height);
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  line-height: 110%;
  font-weight: 500;
  border-radius: var(--radius-btn);
  color: var(--btn-text-color);
  background: var(--btn-bg-color);
  padding: 0.5rem 1rem;
  border: 0.0625rem solid var(--btn-border-color);
  transition: all 0.3s;
  --btn-text-color: var(--primary);
  --btn-bg-color: var(--main2);
  --btn-border-color: var(--main2);
}
.main2-btn:hover {
  --btn-bg-color: var(--main2-dark);
  --btn-border-color: var(--main2-dark);
}
.main2-btn:disabled {
  --btn-bg-color: var(--black) !important;
  --btn-text-color: var(--primary) !important;
  --btn-border-color: var(--black) !important;
  pointer-events: none;
}
textarea,
input,
select {
  border: 0.0625rem solid var(--main-light);
  transition: border 0.3s;
  font-size: 1rem;
  border-radius: var(--radius-input);
}
textarea:not([type=checkbox]), textarea:not([type=radio]),
input:not([type=checkbox]),
input:not([type=radio]),
select:not([type=checkbox]),
select:not([type=radio]) {
  line-height: 120%;
  min-height: var(--btn-height);
  min-width: 2.625rem;
  padding: 0 1rem;
  background-color: var(--main-light);
  width: 100%;
  outline-offset: 0;
}
textarea::-moz-placeholder, input::-moz-placeholder, select::-moz-placeholder {
  color: var(--primary) !important;
  font-size: 1rem;
}
textarea::placeholder,
input::placeholder,
select::placeholder {
  color: var(--primary) !important;
  font-size: 1rem;
}
textarea[type=checkbox], textarea[type=radio],
input[type=checkbox],
input[type=radio],
select[type=checkbox],
select[type=radio] {
  padding: 0;
  min-height: 0;
  width: auto;
  min-width: 0;
}
textarea {
  padding-top: 1rem !important;
  max-height: 31.25rem;
  height: 8.125rem;
}
.custom-checkbox {
  padding: 0.25rem 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: -moz-fit-content;
  width: fit-content;
}
.custom-checkbox:has(input:checked) input::after {
  opacity: 1;
}
.custom-checkbox input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  min-height: 1.25rem;
  max-height: 1.25rem;
  min-width: 1.25rem;
  max-width: 1.25rem;
  border: 0.0625rem solid var(--primary);
  border-radius: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  cursor: pointer;
}
.custom-checkbox input::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "";
  min-height: 0.625rem;
  max-height: 0.625rem;
  min-width: 0.625rem;
  max-width: 0.625rem;
  background-color: var(--primary);
  display: block;
  transition: all 0.3s;
  border-radius: 100%;
  opacity: 0;
}
.custom-checkbox .text {
  font-size: 1.125rem;
  font-weight: 300;
  transition: all 0.3s;
}
.custom-checkbox .text a {
  color: var(--main2);
}
.custom-checkbox .text a:hover {
  opacity: 0.7;
}
dialog {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: transparent;
  left: 0;
  top: 0;
  margin: 0;
  border-radius: 0;
  max-height: none;
  max-width: none;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out, overlay 0.3s ease-out allow-discrete, display 0.3s ease-out allow-discrete;
}
dialog[open] {
  opacity: 1;
  transform: translateX(0%);
}
@starting-style {
  dialog[open] {
    opacity: 0;
    transform: translateX(100%);
  }
}
dialog::backdrop {
  background-color: var(--black-40);
}
dialog .content-wrapper {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  min-height: 100vh;
  max-width: 23.125rem;
  padding: 1.5rem 1rem;
  background-color: var(--main);
  gap: 1.5rem;
  display: flex;
  flex-direction: column;
}
dialog .content-wrapper .close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  min-height: 2rem;
  max-height: 2rem;
  min-width: 2rem;
  max-width: 2rem;
}
dialog .content-wrapper .close-btn:hover {
  opacity: 0.7;
}
dialog .content-wrapper .close-btn svg {
  min-height: 1rem;
  max-height: 1rem;
  min-width: 1rem;
  max-width: 1rem;
  color: var(--primary);
}
.header {
  transition: all 0.3s;
}
.header.fixed-header {
  box-shadow: 0 0 0.375rem 0 var(--primary-10);
}
.header-links .link {
  display: flex;
  padding: 0.5rem 0;
  color: var(--primary);
}
.header-links .link:hover {
  opacity: 0.7;
}
.blackout {
  position: fixed;
  background-color: var(--black-40);
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 98;
  display: none;
}
.blackout.show {
  display: block;
}
.langs-wrapper .langs .lang-link {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.75rem;
  padding: 0 1rem;
  min-height: 3rem;
  font-weight: 500;
  color: var(--black);
  font-size: 0.875rem;
}
.langs-wrapper .langs .lang-link .flag {
  min-height: 1.5rem;
  max-height: 1.5rem;
  min-width: 1.5rem;
  max-width: 1.5rem;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.langs-wrapper .langs .lang-link:hover {
  opacity: 0.7;
}
.stats-section .divide {
  position: relative;
}
.stats-section .divide::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 7.5rem;
  width: 0.1875rem;
  background-color: var(--primary);
}
@media (max-width: 1023px) {
  .stats-section .divide::after {
    height: 5rem;
  }
}
@media (max-width: 767px) {
  .stats-section .divide {
    display: none;
  }
}
.stats-section .stats-card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 1279px) {
  .stats-section .stats-card {
    gap: 1.25rem;
  }
}
@media (max-width: 1023px) {
  .stats-section .stats-card {
    gap: 0.75rem;
  }
}
@media (max-width: 767px) {
  .stats-section .stats-card {
    align-items: center;
  }
}
.stats-section .stats-card .number {
  display: flex;
  gap: 0.625rem;
  font-weight: 700;
  font-size: 12.5rem;
  text-transform: uppercase;
  font-family: var(--font-bebas);
  align-items: center;
  color: var(--main2);
}
.stats-section .stats-card .number:not(:has(.text)) {
  line-height: 70%;
}
.stats-section .stats-card .number:has(.text) {
  align-items: flex-end;
}
@media (max-width: 1279px) {
  .stats-section .stats-card .number {
    font-size: 7.5rem;
  }
}
@media (max-width: 1023px) {
  .stats-section .stats-card .number {
    font-size: 5rem;
  }
  .stats-section .stats-card .number:not(:has(.text)) {
    line-height: 75%;
  }
}
@media (max-width: 767px) {
  .stats-section .stats-card .number {
    font-size: 7.5rem;
  }
}
@media (max-width: 639px) {
  .stats-section .stats-card .number {
    font-size: 6.25rem;
  }
}
.stats-section .stats-card .number .counter {
  line-height: 70%;
}
@media (max-width: 1023px) {
  .stats-section .stats-card .number .counter {
    line-height: 75%;
  }
}
.stats-section .stats-card .number .text {
  font-weight: 400;
  font-size: 4rem;
  line-height: 100%;
}
@media (max-width: 1279px) {
  .stats-section .stats-card .number .text {
    font-size: 3.5rem;
  }
}
@media (max-width: 1023px) {
  .stats-section .stats-card .number .text {
    font-size: 2.5rem;
  }
}
@media (max-width: 767px) {
  .stats-section .stats-card .number .text {
    font-size: 3.5rem;
  }
}
.stats-section .stats-card .title {
  font-size: 1.5rem;
  font-family: var(--font-inter);
}
@media (max-width: 1279px) {
  .stats-section .stats-card .title {
    font-size: 1.125rem;
  }
}
@media (max-width: 1023px) {
  .stats-section .stats-card .title {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .stats-section .stats-card .title {
    font-size: 1.125rem;
    text-align: center;
  }
}
.finance-wrapper {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.finance-card {
  display: flex;
  flex-direction: column;
  flex: 1 1 35rem;
  gap: 2rem;
  background-color: var(--main);
  border-radius: var(--radius-card);
  padding: 2.5rem;
  width: 100%;
  position: relative;
  cursor: pointer;
  transition: all 0.3s !important;
  overflow: hidden;
}
.finance-card:hover {
  background-color: var(--primary);
}
.finance-card:hover .title {
  color: var(--black);
}
.finance-card:hover .stats {
  color: var(--main);
}
.finance-card:hover::after {
  background-image: url("/build/assets/finance-bg-light-BX-VdDjd.png");
}
.finance-card::after {
  --size: 14.5rem;
  content: "";
  position: absolute;
  display: block;
  min-height: var(--size);
  max-height: var(--size);
  min-width: var(--size);
  max-width: var(--size);
  right: calc(var(--size) / 2 * -1);
  top: 0;
  background-image: url("/build/assets/finance-bg-Cq8xRhiE.png");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.5;
}
@media (max-width: 1279px) {
  .finance-card::after {
    --size: 13.4375rem;
  }
}
@media (max-width: 1023px) {
  .finance-card::after {
    --size: 11rem;
  }
}
@media (max-width: 500px) {
  .finance-card::after {
    --size: 10rem;
  }
}
@media (max-width: 1279px) {
  .finance-card {
    flex: 1 1 25.625rem;
  }
}
@media (max-width: 1023px) {
  .finance-card {
    padding: 2rem;
    flex: 1 1 20rem;
  }
}
@media (max-width: 767px) {
  .finance-card {
    flex: 1 1 100%;
  }
}
@media (max-width: 500px) {
  .finance-card {
    padding: 1.5rem;
  }
}
.finance-card .title {
  position: relative;
  z-index: 1;
  font-size: 2.5rem;
  line-height: 130%;
  text-transform: uppercase;
  transition: all 0.3s;
}
@media (max-width: 1023px) {
  .finance-card .title {
    font-size: 1.875rem;
  }
}
.finance-card .stats {
  position: relative;
  z-index: 1;
  font-family: var(--font-bebas);
  font-weight: 700;
  font-size: 5rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--main2);
  line-height: 85%;
  transition: all 0.3s;
}
@media (max-width: 1279px) {
  .finance-card .stats {
    font-size: 3.75rem;
  }
}
@media (max-width: 1023px) {
  .finance-card .stats {
    font-size: 3rem;
  }
}
.finance-card .stats small {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 130%;
}
@media (max-width: 1023px) {
  .finance-card .stats small {
    font-size: 1.125rem;
  }
}
.about-card-wrapper {
  --gap: 4.375rem;
  gap: var(--gap);
}
@media (max-width: 500px) {
  .about-card-wrapper {
    --gap: 2.5rem;
  }
}
.about-card-wrapper .about-card {
  display: flex;
  align-items: center;
  gap: 1.875rem;
  cursor: pointer;
}
.about-card-wrapper .about-card:last-child .circle::after {
  display: none;
}
.about-card-wrapper .about-card:hover .circle {
  background-color: var(--main2-15);
}
.about-card-wrapper .about-card:hover .circle::before {
  min-height: 2.75rem;
  max-height: 2.75rem;
  min-width: 2.75rem;
  max-width: 2.75rem;
  background-color: var(--main2);
}
@media (max-width: 500px) {
  .about-card-wrapper .about-card:hover .circle::before {
    min-height: 1.875rem;
    max-height: 1.875rem;
    min-width: 1.875rem;
    max-width: 1.875rem;
  }
}
.about-card-wrapper .about-card .circle {
  display: block;
  min-height: 4rem;
  max-height: 4rem;
  min-width: 4rem;
  max-width: 4rem;
  background-color: var(--main-bright-15);
  border-radius: 100%;
  position: relative;
  transition: all 0.3s;
}
@media (max-width: 500px) {
  .about-card-wrapper .about-card .circle {
    min-height: 2.75rem;
    max-height: 2.75rem;
    min-width: 2.75rem;
    max-width: 2.75rem;
  }
}
.about-card-wrapper .about-card .circle::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  min-height: 2.125rem;
  max-height: 2.125rem;
  min-width: 2.125rem;
  max-width: 2.125rem;
  background-color: var(--main-light);
  border-radius: 100%;
  transition: all 0.3s;
}
@media (max-width: 500px) {
  .about-card-wrapper .about-card .circle::before {
    min-height: 1.5rem;
    max-height: 1.5rem;
    min-width: 1.5rem;
    max-width: 1.5rem;
  }
}
.about-card-wrapper .about-card .circle::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: var(--gap);
  top: 100%;
  border-right: 0.25rem dotted var(--main-bright-15);
}
@media (max-width: 500px) {
  .about-card-wrapper .about-card .circle::after {
    border-right: 0.125rem dotted var(--main-bright-15);
  }
}
.about-card-wrapper .about-card .text {
  font-size: 1.5rem;
  line-height: 130%;
}
@media (max-width: 500px) {
  .about-card-wrapper .about-card .text {
    font-size: 1rem;
  }
}
*, ::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.17 | 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: 640px){
    .container{
        max-width: 640px;
    }
}
@media (min-width: 768px){
    .container{
        max-width: 768px;
    }
}
@media (min-width: 1024px){
    .container{
        max-width: 1024px;
    }
}
@media (min-width: 1280px){
    .container{
        max-width: 1280px;
    }
}
@media (min-width: 1536px){
    .container{
        max-width: 1536px;
    }
}
.flex-center{
    display: flex;
    align-items: center;
    justify-content: center;
}
.transition-300{
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}
.absolute-center-y{
    position: absolute;
    top: 50%;
    --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));
}
.absolute-center-x{
    position: absolute;
    left: 50%;
    --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));
}
.section-padding{
    padding-bottom: 7.5rem;
}
@media (min-width: 1280px){
    .section-padding{
        padding-bottom: 10rem;
    }
}
.max-block{
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 105.75rem;
}
.text-gradient{
    display: inline-block;
    background-image: linear-gradient(90deg,var(--main2) 0%,var(--main2-dark) 100%);
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
}
.invisible{
    visibility: hidden;
}
.fixed{
    position: fixed;
}
.absolute{
    position: absolute;
}
.relative{
    position: relative;
}
.sticky{
    position: sticky;
}
.-bottom-\[23\.4375rem\]{
    bottom: -23.4375rem;
}
.-left-\[23\.4375rem\]{
    left: -23.4375rem;
}
.bottom-10{
    bottom: 2.5rem;
}
.bottom-\[-1\.25rem\]{
    bottom: -1.25rem;
}
.left-0{
    left: 0px;
}
.right-0{
    right: 0px;
}
.right-4{
    right: 1rem;
}
.right-\[-30\.3125rem\]{
    right: -30.3125rem;
}
.right-\[3\.75rem\]{
    right: 3.75rem;
}
.top-0{
    top: 0px;
}
.top-\[calc\(100\%\+0\.625rem\)\]{
    top: calc(100% + 0.625rem);
}
.\!z-\[80\]{
    z-index: 80 !important;
}
.z-\[1\]{
    z-index: 1;
}
.z-\[2\]{
    z-index: 2;
}
.z-\[90\]{
    z-index: 90;
}
.z-\[91\]{
    z-index: 91;
}
.my-6{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}
.mb-12{
    margin-bottom: 3rem;
}
.mb-\[3\.75rem\]{
    margin-bottom: 3.75rem;
}
.mt-\[-10rem\]{
    margin-top: -10rem;
}
.block{
    display: block;
}
.flex{
    display: flex;
}
.hidden{
    display: none;
}
.size-10{
    width: 2.5rem;
    height: 2.5rem;
}
.size-4{
    width: 1rem;
    height: 1rem;
}
.size-5{
    width: 1.25rem;
    height: 1.25rem;
}
.size-6{
    width: 1.5rem;
    height: 1.5rem;
}
.size-\[1\.125rem\]{
    width: 1.125rem;
    height: 1.125rem;
}
.size-\[2\.5rem\]{
    width: 2.5rem;
    height: 2.5rem;
}
.size-\[3\.75rem\]{
    width: 3.75rem;
    height: 3.75rem;
}
.size-\[46\.875rem\]{
    width: 46.875rem;
    height: 46.875rem;
}
.size-\[6\.25rem\]{
    width: 6.25rem;
    height: 6.25rem;
}
.size-\[7\.5rem\]{
    width: 7.5rem;
    height: 7.5rem;
}
.size-\[9\.375rem\]{
    width: 9.375rem;
    height: 9.375rem;
}
.h-\[0\.125rem\]{
    height: 0.125rem;
}
.h-\[11\.25rem\]{
    height: 11.25rem;
}
.h-\[28\.125rem\]{
    height: 28.125rem;
}
.h-\[3\.125rem\]{
    height: 3.125rem;
}
.h-\[3\.5rem\]{
    height: 3.5rem;
}
.h-\[45rem\]{
    height: 45rem;
}
.h-full{
    height: 100%;
}
.max-h-\[15\.625rem\]{
    max-height: 15.625rem;
}
.max-h-\[30\.625rem\]{
    max-height: 30.625rem;
}
.max-h-\[40\.625rem\]{
    max-height: 40.625rem;
}
.min-h-\[21\.875rem\]{
    min-height: 21.875rem;
}
.min-h-\[25rem\]{
    min-height: 25rem;
}
.w-\[0\.125rem\]{
    width: 0.125rem;
}
.w-\[11\.25rem\]{
    width: 11.25rem;
}
.w-auto{
    width: auto;
}
.w-full{
    width: 100%;
}
.w-max{
    width: -moz-max-content;
    width: max-content;
}
.min-w-\[6\.25rem\]{
    min-width: 6.25rem;
}
.min-w-fit{
    min-width: -moz-fit-content;
    min-width: fit-content;
}
.max-w-\[30\.625rem\]{
    max-width: 30.625rem;
}
.max-w-\[36\.25rem\]{
    max-width: 36.25rem;
}
.max-w-\[42\.5rem\]{
    max-width: 42.5rem;
}
.max-w-\[51\.25rem\]{
    max-width: 51.25rem;
}
.flex-\[1_1_100\%\]{
    flex: 1 1 100%;
}
.-translate-y-2{
    --tw-translate-y: -0.5rem;
    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;
}
.resize{
    resize: both;
}
.grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-\[1fr\2c 1\.5fr\]{
    grid-template-columns: 1fr 1.5fr;
}
.grid-cols-\[30rem_1fr\]{
    grid-template-columns: 30rem 1fr;
}
.flex-col{
    flex-direction: column;
}
.flex-wrap{
    flex-wrap: wrap;
}
.items-start{
    align-items: flex-start;
}
.items-center{
    align-items: center;
}
.justify-center{
    justify-content: center;
}
.justify-between{
    justify-content: space-between;
}
.justify-around{
    justify-content: space-around;
}
.gap-1{
    gap: 0.25rem;
}
.gap-10{
    gap: 2.5rem;
}
.gap-14{
    gap: 3.5rem;
}
.gap-2{
    gap: 0.5rem;
}
.gap-4{
    gap: 1rem;
}
.gap-5{
    gap: 1.25rem;
}
.gap-6{
    gap: 1.5rem;
}
.gap-8{
    gap: 2rem;
}
.gap-\[0\.1875rem\]{
    gap: 0.1875rem;
}
.gap-\[0\.375rem\]{
    gap: 0.375rem;
}
.gap-\[0\.625rem\]{
    gap: 0.625rem;
}
.gap-\[1\.875rem\]{
    gap: 1.875rem;
}
.gap-x-10{
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
}
.gap-x-\[3\.75rem\]{
    -moz-column-gap: 3.75rem;
         column-gap: 3.75rem;
}
.gap-y-6{
    row-gap: 1.5rem;
}
.gap-y-\[3\.75rem\]{
    row-gap: 3.75rem;
}
.overflow-hidden{
    overflow: hidden;
}
.rounded{
    border-radius: 0.25rem;
}
.rounded-card{
    border-radius: var(--radius-card);
}
.rounded-full{
    border-radius: 9999px;
}
.rounded-lg{
    border-radius: 0.5rem;
}
.border{
    border-width: 1px;
}
.border-2{
    border-width: 2px;
}
.border-\[0\.3125rem\]{
    border-width: 0.3125rem;
}
.border-b-4{
    border-bottom-width: 4px;
}
.border-t{
    border-top-width: 1px;
}
.border-dotted{
    border-style: dotted;
}
.border-green-500{
    --tw-border-opacity: 1;
    border-color: rgb(34 197 94 / var(--tw-border-opacity, 1));
}
.border-main-bright-15{
    border-color: var(--main-bright-15);
}
.border-primary{
    border-color: var(--primary);
}
.border-primary-30{
    border-color: var(--primary-30);
}
.border-primary-50{
    border-color: var(--primary-50);
}
.border-white{
    --tw-border-opacity: 1;
    border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}
.bg-black{
    background-color: var(--black);
}
.bg-main{
    background-color: var(--main);
}
.bg-primary{
    background-color: var(--primary);
}
.bg-primary-10{
    background-color: var(--primary-10);
}
.bg-primary-15{
    background-color: var(--primary-15);
}
.bg-red-500{
    --tw-bg-opacity: 1;
    background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
}
.bg-transparent{
    background-color: transparent;
}
.bg-white{
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.bg-\[linear-gradient\(180deg\2c var\(--main\)_0\%\2c var\(--black\)_47\.68\%\)\]{
    background-image: linear-gradient(180deg,var(--main) 0%,var(--black) 47.68%);
}
.bg-\[linear-gradient\(90deg\2c var\(--black\)_0\%\2c transparent_100\%\)\]{
    background-image: linear-gradient(90deg,var(--black) 0%,transparent 100%);
}
.bg-\[linear-gradient\(90deg\2c var\(--black\)_60\%\2c transparent_100\%\)\]{
    background-image: linear-gradient(90deg,var(--black) 60%,transparent 100%);
}
.bg-\[length\:43\.75rem_auto\]{
    background-size: 43.75rem auto;
}
.bg-\[length\:auto_25rem\]{
    background-size: auto 25rem;
}
.bg-cover{
    background-size: cover;
}
.bg-\[center_right_-45\.625rem\]{
    background-position: center right -45.625rem;
}
.bg-\[center_right_-6\.25rem\]{
    background-position: center right -6.25rem;
}
.bg-center{
    background-position: center;
}
.bg-no-repeat{
    background-repeat: no-repeat;
}
.object-contain{
    -o-object-fit: contain;
       object-fit: contain;
}
.object-cover{
    -o-object-fit: cover;
       object-fit: cover;
}
.p-2{
    padding: 0.5rem;
}
.p-6{
    padding: 1.5rem;
}
.px-5{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}
.px-6{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.py-4{
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.py-\[1\.875rem\]{
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
}
.py-\[3\.75rem\]{
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
}
.pb-10{
    padding-bottom: 2.5rem;
}
.pb-6{
    padding-bottom: 1.5rem;
}
.pt-10{
    padding-top: 2.5rem;
}
.pt-\[2\.5rem\]{
    padding-top: 2.5rem;
}
.text-center{
    text-align: center;
}
.font-bebas{
    font-family: var(--font-bebas);
}
.text-2xl{
    font-size: 1.5rem;
    line-height: 2rem;
}
.text-\[1\.5rem\]{
    font-size: 1.5rem;
}
.text-\[2\.625rem\]{
    font-size: 2.625rem;
}
.text-\[2rem\]{
    font-size: 2rem;
}
.text-base{
    font-size: 1rem;
    line-height: 1.5rem;
}
.text-lg{
    font-size: 1.125rem;
    line-height: 1.75rem;
}
.text-sm{
    font-size: 0.875rem;
    line-height: 1.25rem;
}
.text-xl{
    font-size: 1.25rem;
    line-height: 1.75rem;
}
.font-light{
    font-weight: 300;
}
.font-medium{
    font-weight: 500;
}
.font-thin{
    font-weight: 100;
}
.uppercase{
    text-transform: uppercase;
}
.\!leading-100{
    line-height: 100% !important;
}
.leading-130{
    line-height: 130%;
}
.leading-160{
    line-height: 160%;
}
.tracking-\[0\.02em\]{
    letter-spacing: 0.02em;
}
.text-black{
    color: var(--black);
}
.text-green-500{
    --tw-text-opacity: 1;
    color: rgb(34 197 94 / var(--tw-text-opacity, 1));
}
.text-main2{
    color: var(--main2);
}
.text-primary{
    color: var(--primary);
}
.text-white{
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.opacity-0{
    opacity: 0;
}
.opacity-50{
    opacity: 0.5;
}
.shadow-card{
    --tw-shadow: var(--shadow-card);
    --tw-shadow-colored: var(--shadow-card);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.backdrop-blur-\[2\.5rem\]{
    --tw-backdrop-blur: blur(2.5rem);
    -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.transition-none{
    transition-property: none;
}
.\@container{
    container-type: inline-size;
}
html {
  overflow-x: clip;
  scroll-behavior: smooth;
}
html:has(dialog[open]), html:has(dialog[open=true]) {
  overflow: hidden;
  margin-right: var(--scrollbar-size);
}
body {
  scroll-behavior: smooth;
  overflow-x: clip;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  color: var(--primary);
  background-color: var(--black);
}
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  font-family: var(--font-bebas);
  font-weight: 400;
}
.root {
  min-height: 100vh;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
main {
  scroll-behavior: smooth;
  flex-grow: 1;
  height: 100%;
}
img,
svg {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
a,
a svg,
a span,
button,
button svg,
button span {
  transition: all 0.3s !important;
}
.container {
  max-width: 105.75rem;
}
.text-block {
  counter-reset: text-counter;
  line-height: 160%;
  container-type: inline-size;
  container-name: text-block;
}
.text-block *:last-child {
  margin-bottom: 0;
}
.text-block h1,
.text-block h2,
.text-block h3,
.text-block h4,
.text-block h5,
.text-block h6 {
  line-height: 140%;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.text-block h1 {
  font-size: 2.25rem;
}
@media (max-width: 1023px) {
  .text-block h1 {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .text-block h1 {
    font-size: 1.75rem;
  }
}
@media (max-width: 639px) {
  .text-block h1 {
    font-size: 1.5rem;
  }
}
.text-block h2 {
  font-size: 2rem;
}
@media (max-width: 1023px) {
  .text-block h2 {
    font-size: 1.75rem;
  }
}
@media (max-width: 767px) {
  .text-block h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 639px) {
  .text-block h2 {
    font-size: 1.25rem;
  }
}
.text-block h3 {
  font-size: 1.75rem;
}
@media (max-width: 1023px) {
  .text-block h3 {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .text-block h3 {
    font-size: 1.25rem;
  }
}
@media (max-width: 639px) {
  .text-block h3 {
    font-size: 1.125rem;
  }
}
.text-block h4 {
  font-size: 1.5rem;
}
@media (max-width: 1023px) {
  .text-block h4 {
    font-size: 1.25rem;
  }
}
@media (max-width: 767px) {
  .text-block h4 {
    font-size: 1.125rem;
  }
}
@media (max-width: 639px) {
  .text-block h4 {
    font-size: 1rem;
  }
}
.text-block h5 {
  font-size: 1.25rem;
}
@media (max-width: 1023px) {
  .text-block h5 {
    font-size: 1.125rem;
  }
}
@media (max-width: 767px) {
  .text-block h5 {
    font-size: 1rem;
  }
}
.text-block h6 {
  font-size: 1.125rem;
}
@media (max-width: 1023px) {
  .text-block h6 {
    font-size: 1rem;
  }
}
.text-block img {
  width: 100%;
  height: 37.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--card-radius);
}
@media (max-width: 1279px) {
  .text-block img {
    height: 31.25rem;
  }
}
@media (max-width: 1023px) {
  .text-block img {
    height: 28.125rem;
  }
}
@media (max-width: 767px) {
  .text-block img {
    height: 21.875rem;
  }
}
@media (max-width: 639px) {
  .text-block img {
    height: 18.75rem;
  }
}
.text-block div,
.text-block a,
.text-block li,
.text-block p {
  line-height: 160%;
  font-size: 1rem;
}
.text-block div,
.text-block p,
.text-block blockquote,
.text-block ul,
.text-block ol {
  margin-bottom: 1.25rem;
}
.text-block a {
  color: var(--main);
}
.text-block ol,
.text-block ul {
  list-style-position: inside;
  line-height: 160%;
}
.text-block ul {
  list-style-type: disc;
}
.text-block ol {
  list-style-type: decimal;
}
.text-block blockquote {
  background-color: var(--main-10);
  padding: 1rem;
  border-radius: var(--card-radius);
  font-size: 0.875rem;
  display: flex;
  gap: 0.75rem;
  counter-increment: text-counter;
}
.custom-tabs {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.custom-tabs .tab-btns {
  display: flex;
}
.custom-tabs .tabs .tab {
  display: none;
}
.custom-tabs .tabs .tab.active {
  display: block;
}
.animation-accordion {
  --accordion-padding: 1.5rem;
  overflow: hidden;
}
.animation-accordion .content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
  opacity: 0;
}
.animation-accordion.open .content {
  padding: var(--accordion-padding) 0 0;
  max-height: none;
  overflow: visible;
  opacity: 1;
}
.location-accordion.open {
  background-color: var(--primary);
}
.location-accordion.open .btn {
  background-color: transparent;
}
.location-accordion.open .btn svg {
  color: var(--black);
  rotate: 45deg;
}
.location-accordion.open .content {
  padding: 0;
}
.table-wrapper {
  overflow-x: auto;
}
.table-wrapper table {
  width: 100%;
}
.table-wrapper table th,
.table-wrapper table td {
  padding: 0.75rem 0.625rem;
  line-height: 150%;
  border-bottom: 0.0625rem solid var(--gray);
  text-align: start;
  color: var(--primary2);
  white-space: nowrap;
}
.table-wrapper table th {
  font-weight: 600;
}
.section-title {
  font-size: 4rem;
  line-height: 120%;
  font-weight: 700;
  font-family: var(--font-bebas);
}
@media (max-width: 1279px) {
  .section-title {
    font-size: 3.5rem;
  }
}
@media (max-width: 1023px) {
  .section-title {
    font-size: 2.5rem;
  }
}
@media (max-width: 639px) {
  .section-title {
    font-size: 2.25rem;
  }
}
.scroll-to-top-btn {
  visibility: hidden;
  transform: translateX(1rem);
  opacity: 0;
  transition: all 0.5s;
}
.scroll-to-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.iframe-map iframe {
  width: 100%;
  height: 100%;
}
.anchor-block {
  position: absolute;
  top: calc(-1 * var(--header-height) - 1rem);
}
.iframe-map {
  width: 100%;
  height: 100%;
}
.after\:transition-300::after{
    content: var(--tw-content);
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}
.after\:absolute-center::after{
    content: var(--tw-content);
    position: absolute;
    left: 50%;
    top: 50%;
    --tw-translate-x: -50%;
    --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));
}
.after\:absolute::after{
    content: var(--tw-content);
    position: absolute;
}
.after\:left-0::after{
    content: var(--tw-content);
    left: 0px;
}
.after\:top-0::after{
    content: var(--tw-content);
    top: 0px;
}
.after\:z-\[1\]::after{
    content: var(--tw-content);
    z-index: 1;
}
.after\:block::after{
    content: var(--tw-content);
    display: block;
}
.after\:size-\[4\.375rem\]::after{
    content: var(--tw-content);
    width: 4.375rem;
    height: 4.375rem;
}
.after\:h-full::after{
    content: var(--tw-content);
    height: 100%;
}
.after\:w-full::after{
    content: var(--tw-content);
    width: 100%;
}
.after\:rounded-full::after{
    content: var(--tw-content);
    border-radius: 9999px;
}
.after\:bg-main::after{
    content: var(--tw-content);
    background-color: var(--main);
}
.after\:bg-\[linear-gradient\(180deg\2c transparent_0\%\2c var\(--black-65\)_100\%\)\]::after{
    content: var(--tw-content);
    background-image: linear-gradient(180deg,transparent 0%,var(--black-65) 100%);
}
.hover\:bg-main-light:hover{
    background-color: var(--main-light);
}
.hover\:text-main:hover{
    color: var(--main);
}
.hover\:opacity-50:hover{
    opacity: 0.5;
}
.hover\:opacity-70:hover{
    opacity: 0.7;
}
.group:hover .group-hover\:visible{
    visibility: visible;
}
.group:hover .group-hover\:size-\[4\.375rem\]{
    width: 4.375rem;
    height: 4.375rem;
}
.group:hover .group-hover\:translate-y-0{
    --tw-translate-y: 0px;
    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));
}
.group:hover .group-hover\:rotate-180{
    --tw-rotate: 180deg;
    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));
}
.group:hover .group-hover\:bg-white{
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.group:hover .group-hover\:text-main{
    color: var(--main);
}
.group:hover .group-hover\:opacity-100{
    opacity: 1;
}
.group:hover .group-hover\:opacity-70{
    opacity: 0.7;
}
@container (min-width: 28.125rem){
    .\@\[28\.125rem\]\:grid{
        display: grid;
    }
}
@media (min-width: 640px){
    .sm\:bottom-16{
        bottom: 4rem;
    }
    .sm\:bottom-\[-2\.1875rem\]{
        bottom: -2.1875rem;
    }
    .sm\:right-0{
        right: 0px;
    }
    .sm\:block{
        display: block;
    }
    .sm\:grid{
        display: grid;
    }
    .sm\:size-\[3\.75rem\]{
        width: 3.75rem;
        height: 3.75rem;
    }
    .sm\:size-\[7\.5rem\]{
        width: 7.5rem;
        height: 7.5rem;
    }
    .sm\:h-\[14\.375rem\]{
        height: 14.375rem;
    }
    .sm\:h-\[31\.25rem\]{
        height: 31.25rem;
    }
    .sm\:h-\[4\.375rem\]{
        height: 4.375rem;
    }
    .sm\:max-h-none{
        max-height: none;
    }
    .sm\:min-h-\[31\.25rem\]{
        min-height: 31.25rem;
    }
    .sm\:w-\[18\.75rem\]{
        width: 18.75rem;
    }
    .sm\:w-\[9\.375rem\]{
        width: 9.375rem;
    }
    .sm\:min-w-\[7\.5rem\]{
        min-width: 7.5rem;
    }
    .sm\:max-w-none{
        max-width: none;
    }
    .sm\:flex-row{
        flex-direction: row;
    }
    .sm\:items-end{
        align-items: flex-end;
    }
    .sm\:items-baseline{
        align-items: baseline;
    }
    .sm\:gap-20{
        gap: 5rem;
    }
    .sm\:gap-4{
        gap: 1rem;
    }
    .sm\:gap-\[0\.625rem\]{
        gap: 0.625rem;
    }
    .sm\:bg-primary{
        background-color: var(--primary);
    }
    .sm\:bg-primary-15{
        background-color: var(--primary-15);
    }
    .sm\:bg-auto{
        background-size: auto;
    }
    .sm\:bg-\[center_right_-15\.625rem\]{
        background-position: center right -15.625rem;
    }
    .sm\:px-10{
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
    .sm\:px-\[1\.875rem\]{
        padding-left: 1.875rem;
        padding-right: 1.875rem;
    }
    .sm\:pb-10{
        padding-bottom: 2.5rem;
    }
    .sm\:pb-20{
        padding-bottom: 5rem;
    }
    .sm\:pt-\[3\.75rem\]{
        padding-top: 3.75rem;
    }
    .sm\:text-left{
        text-align: left;
    }
    .sm\:text-3xl{
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
    .sm\:text-\[2rem\]{
        font-size: 2rem;
    }
    .sm\:text-\[3\.375rem\]{
        font-size: 3.375rem;
    }
    .sm\:text-lg{
        font-size: 1.125rem;
        line-height: 1.75rem;
    }
    .sm\:text-xl{
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
    .sm\:after\:size-\[5\.625rem\]::after{
        content: var(--tw-content);
        width: 5.625rem;
        height: 5.625rem;
    }
    .group:hover .sm\:group-hover\:after\:size-\[6\.25rem\]::after{
        content: var(--tw-content);
        width: 6.25rem;
        height: 6.25rem;
    }
}
@media (min-width: 768px){
    .md\:right-\[5rem\]{
        right: 5rem;
    }
    .md\:w-\[25rem\]{
        width: 25rem;
    }
    .md\:flex-row{
        flex-direction: row;
    }
    .md\:items-baseline{
        align-items: baseline;
    }
    .md\:gap-10{
        gap: 2.5rem;
    }
    .md\:gap-6{
        gap: 1.5rem;
    }
    .md\:bg-\[center_right_-10\.625rem\]{
        background-position: center right -10.625rem;
    }
}
@media (min-width: 1024px){
    .lg\:block{
        display: block;
    }
    .lg\:flex{
        display: flex;
    }
    .lg\:grid{
        display: grid;
    }
    .lg\:hidden{
        display: none;
    }
    .lg\:size-\[3\.125rem\]{
        width: 3.125rem;
        height: 3.125rem;
    }
    .lg\:h-\[40\.625rem\]{
        height: 40.625rem;
    }
    .lg\:h-\[5\.625rem\]{
        height: 5.625rem;
    }
    .lg\:min-h-\[37\.5rem\]{
        min-height: 37.5rem;
    }
    .lg\:max-w-\[48\.125rem\]{
        max-width: 48.125rem;
    }
    .lg\:flex-\[0_1_25rem\]{
        flex: 0 1 25rem;
    }
    .lg\:grid-cols-6{
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
    .lg\:justify-end{
        justify-content: flex-end;
    }
    .lg\:justify-between{
        justify-content: space-between;
    }
    .lg\:gap-10{
        gap: 2.5rem;
    }
    .lg\:gap-y-\[6\.25rem\]{
        row-gap: 6.25rem;
    }
    .lg\:bg-\[url\(\/images\/food\.png\)\]{
        background-image: url(/images/food.png);
    }
    .lg\:bg-\[-22\.8125rem\]{
        background-position: -22.8125rem;
    }
    .lg\:py-\[10rem\]{
        padding-top: 10rem;
        padding-bottom: 10rem;
    }
    .lg\:pt-\[4\.375rem\]{
        padding-top: 4.375rem;
    }
    .lg\:text-2xl{
        font-size: 1.5rem;
        line-height: 2rem;
    }
    .lg\:text-4xl{
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
    .lg\:text-\[4rem\]{
        font-size: 4rem;
    }
    .lg\:text-xl{
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
}
@media (min-width: 1280px){
    .xl\:right-\[-15\.3125rem\]{
        right: -15.3125rem;
    }
    .xl\:min-h-\[43\.75rem\]{
        min-height: 43.75rem;
    }
    .xl\:max-w-\[54\.375rem\]{
        max-width: 54.375rem;
    }
    .xl\:flex-\[0_1_29\.0625rem\]{
        flex: 0 1 29.0625rem;
    }
    .xl\:grid-cols-\[33\.75rem_1fr\]{
        grid-template-columns: 33.75rem 1fr;
    }
    .xl\:gap-10{
        gap: 2.5rem;
    }
    .xl\:gap-20{
        gap: 5rem;
    }
    .xl\:gap-x-\[6\.25rem\]{
        -moz-column-gap: 6.25rem;
             column-gap: 6.25rem;
    }
    .xl\:bg-\[-9\.375rem\]{
        background-position: -9.375rem;
    }
    .xl\:bg-\[center_right_-31\.25rem\]{
        background-position: center right -31.25rem;
    }
    .xl\:text-2xl{
        font-size: 1.5rem;
        line-height: 2rem;
    }
    .xl\:text-\[2\.5rem\]{
        font-size: 2.5rem;
    }
    .xl\:text-\[4\.5rem\]{
        font-size: 4.5rem;
    }
}
@media (min-width: 1536px){
    .\32xl\:right-\[-2\.8125rem\]{
        right: -2.8125rem;
    }
    .\32xl\:mr-\[6\.25rem\]{
        margin-right: 6.25rem;
    }
    .\32xl\:block{
        display: block;
    }
    .\32xl\:min-h-\[50rem\]{
        min-height: 50rem;
    }
    .\32xl\:gap-\[10rem\]{
        gap: 10rem;
    }
    .\32xl\:bg-\[linear-gradient\(90deg\2c var\(--black\)_60\%\2c transparent_100\%\)\]{
        background-image: linear-gradient(90deg,var(--black) 60%,transparent 100%);
    }
    .\32xl\:bg-\[center_right_-18\.75rem\]{
        background-position: center right -18.75rem;
    }
    .\32xl\:bg-left{
        background-position: left;
    }
    .\32xl\:text-\[6rem\]{
        font-size: 6rem;
    }
}
@media (min-width: 1660px){
    .min-\[1660px\]\:right-\[9\.0625rem\]{
        right: 9.0625rem;
    }
    .min-\[1660px\]\:bg-\[length\:50rem_auto\]{
        background-size: 50rem auto;
    }
    .min-\[1660px\]\:bg-\[center_right_-6\.25rem\]{
        background-position: center right -6.25rem;
    }
}
@media (min-width: 1740px){
    .min-\[1740px\]\:right-10{
        right: 2.5rem;
    }
}
@media (min-width: 1750px){
    .min-\[1750px\]\:bg-\[linear-gradient\(90deg\2c var\(--black\)_50\%\2c transparent_100\%\)\]{
        background-image: linear-gradient(90deg,var(--black) 50%,transparent 100%);
    }
}