@charset "UTF-8";

/***
    The new CSS reset - version 1.9 (last updated 19.6.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/

/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */

*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */

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

/* Reapply the pointer cursor for anchor tags */

a,
button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */

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

/* For images to not be able to exceed their container */

/* removes spacing between cells in tables */

table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */

input,
textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */

textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */

meter {
  -webkit-appearance: revert;
  appearance: revert;
}

/* preformatted text - use only for this feature */

:where(pre) {
  all: revert;
}

/* reset default text opacity of input placeholder */

::placeholder {
  color: unset;
}

/* remove default dot (•) sign */

::marker {
  content: initial;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */

:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/

:where([contenteditable]:not([contenteditable="false"])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */

:where([draggable="true"]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */

:where(dialog:modal) {
  all: revert;
}

body {
  outline: none;
  margin: 0;
  padding: 0;
  background: #000;
}

html {
  scroll-behavior: smooth;
  font-family: 'Montserrat', sans-serif;
}

@font-face {
  font-family: Tongari;
  src: url("./../fonts/Tongari/Tongari-Regular.otf");
  font-weight: 400;
}

@font-face {
  font-family: Tongari;
  src: url("./../fonts/Tongari/Tongari-Bold.otf");
  font-weight: 700;
}

a {
  cursor: pointer;
}

* {
  box-sizing: border-box;
  font-optical-sizing: auto;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}

main {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  background: black;
  background: url("./../images/FAQ_BG.webp");
  background-repeat: no-repeat;
  background-position: 50% 14%;
  background-size: 100%;
}

.text-main {
  color: #ccc;
  text-align: center;
  font-family: Lato, sans-serif;
  font-size: var(--font-size-450, 18px);
  font-style: normal;
  font-weight: var(--font-weight-regular, 400);
  line-height: var(--font-line-height-700, 28px);
  letter-spacing: var(--font-letter-spacing-default, 0px);
}

.text-main b {
  color: #ccc;
  font-weight: 700;
  font-family: Lato, sans-serif;
}

.heading-first {
  align-items: center;
  color: #fff;
  text-align: center;
  font-family: Tongari;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 108%;
}

.under-btn-text {
  display: block;
  margin-top: 10px;
  position: relative;
  color: #ccc;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  transition: all .2s ease-in-out;
}

.under-btn-text:hover {
  color: #fff;
}

.heading-second {
  color: #fff;
  text-align: center;
  font-family: Tongari;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 56px;
}

.heading-second span {
  color: #B69451;
  font-family: Tongari;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 56px;
}

.heading-second br {
  display: none;
}

.download-btn {
  transition: .3s ease-in-out;
}

.download-btn.mob {
  display: none;
}

.download-btn.orange {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  text-transform: uppercase;
  background-color: #EB622B;
  text-align: center;
  font-weight: 500;
  line-height: 24px;
  max-width: 244px;
  height: 48px;
  margin: 0 auto;
  padding: 11px 30px;
  white-space: nowrap;
  position: relative;
  letter-spacing: 1px;
}

.download-btn.orange:hover {
  background: #F18536;
}

.download-btn.orange svg {
  height: 24px;
  min-width: 24px;
  margin-right: 12px;
}

.large-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
  background-size: 100%;
}

.glow-large {
  position: absolute;
  width: 840px;
  height: 840px;
}

.glow-large.left {
  left: -70%;
}

.glow-large.left.one {
  top: 1400px;
  left: -640px;
}

.glow-large.left.two {
  bottom: 782px;
  left: -640px;
}

.glow-large.right.one {
  top: 1400px;
  right: -640px;
}

.glow-large.right.two {
  right: 0;
  bottom: 782px;
  right: -640px;
}

@keyframes bounce {
  0%, 20%, 48%, 80%, 100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes fadeInBottomToTopSoft {
  0% {
    transform: translatey(20px);
    opacity: 0;
  }

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

.to-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 13px auto 0;
  color: #DFDFDF;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  background-color: #000;
  font-weight: 500;
  line-height: var(--font-line-height-3, 24px);
  letter-spacing: var(--font-letter-spacing-regular, 1.2px);
  text-transform: uppercase;
}

.to-top svg {
  width: 24px;
  height: 24px;
  margin: 0 0 10px;
}

.to-top-section {
  display: flex;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
}

.to-top-section .content-wrapper {
  position: relative;
  padding-top: 0px;
  z-index: 3;
}

html,
body {
  background-color: #000;
}

:root {
  --color-bg: #0d0d0d;
  --color-title: #fff;
  --color-small-title: #e5e5e5;
  --color-txt: #ccc;
  --color-title-black: #1e1e1e;
  --color-txt-black: #535353;
  --color-txt-gray: #b2b2b2;
  --color-txt-gray-2: #b5b5b5;
  --color-gray: #909090;
  --color-300: #333;
  --color-primary: #eb622b;
  --color-primary-hover: #f18536;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0;
  opacity: 1;
  z-index: 27;
  height: 80px;
}

header * {
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
}

header ol,
header ul,
header menu {
  list-style: none;
}

header .content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 15px 20px;
  opacity: 0;
  animation: .4s .6s forwards fadeInBottomToTopSoft;
}

header .download-buttons {
  margin: 0;
}

.header-container {
  position: relative;
  z-index: 2;
  width: 100%;
  background: linear-gradient(180deg, #000000 40%, rgba(0, 0, 0, 0) 100%);
}

.header-link {
  display: flex;
  align-items: center;
  margin: 0 20px;
  padding: 7px 0;
  color: #DFDFDF;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  border: 1px solid transparent;
  background: transparent;
  transition: .3s ease-in-out;
  white-space: nowrap;
  cursor: pointer;
}

.header-link.border {
  margin-right: 0;
  border: 1px solid #DFDFDF;
  padding: 7px 32px;
}

.header-link.border:hover {
  color: #fff;
  background: #EB622B;
  border: 1px solid #EB622B;
}

.header-link.orange {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  text-transform: uppercase;
  background-color: #EB622B;
  text-align: center;
  font-weight: 500;
  line-height: 24px;
  max-width: 284px;
  margin: 0 auto;
  padding: 11px 30px;
  white-space: nowrap;
  position: relative;
  letter-spacing: 1px;
}

.header-link.orange:hover {
  background: #F18536;
}

.header-link.orange svg {
  height: 24px;
  margin-right: 12px;
}

.header-link-container {
  display: none;
  flex-grow: 1;
}

.header-link.mob {
  position: relative;
  display: none;
}

.header-link.mob::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 24px;
  transform: translateY(-50%);
  content: '';
  background-color: #EB622B;
  opacity: 0;
  height: 0;
  transition: .2s ease-in-out;
}

.header-link.mob.active::before {
  opacity: 1;
  height: 24px;
}

.header-link.mob :hover {
  color: #D6D6D6;
}

.header-buttons {
  display: flex;
  flex-direction: row;
}

.header-logo {
  display: flex;
  align-items: center;
}

.header-logo.desktop {
  display: flex;
}

.header-logo.mob {
  display: none;
}

.header-logo img {
  width: 273px;
  margin-right: 12px;
}

.header-logo span {
  display: inline-flex;
  position: relative;
  margin-left: 12px;
  margin-top: 6px;
  color: #DFDFDF;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.header-logo span::before {
  top: 50%;
  margin-top: -3px;
  transform: translateY(-50%);
  content: "";
  width: 1px;
  height: 24px;
  background-color: var(--color-txt);
  position: absolute;
  left: -11px;
}

.site-header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 100;
  transition: .3s;
}

.site-header.black {
  background-color: #000;
}

.site-header .download-btn {
  padding: 16px 32px;
}

.site-header .header-inner {
  display: flex;
  max-width: 100%;
  margin: 0 auto;
  padding: 15px 14px 9px 16px;
  position: relative;
  z-index: 10;
  transition: .3s;
  min-height: 74px;
  align-items: center;
}

.site-header .header-inner nav {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.site-header .header-inner nav ul li {
  margin: 0 3.5px;
}

.site-header .header-inner nav ul li:last-of-type {
  margin-left: 18px;
  margin-right: 6px;
}

.site-header .header-inner nav ul li.mob-only.decor a {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.site-header .header-inner nav ul.header-menu {
  display: flex;
}

.site-header .hamburger-menu-button {
  display: none;
  margin-left: 12px;
}

.hamburger-menu-button {
  z-index: 1;
  display: block;
  background: transparent;
  width: 24px;
  height: 24px;
  outline: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger-menu-button > div {
  position: relative;
  width: 24px;
  height: 20px;
  left: 2px;
  right: 0;
  margin: 0 auto;
  transition: .4s ease-in-out;
}

.hamburger-menu-button > div span {
  background: #fff;
  display: block;
  width: 100%;
  max-width: 20px;
  height: 2px;
  position: absolute;
  transition: .4s ease-in-out;
  border-radius: 0;
}

.hamburger-menu-button > div span:first-child {
  top: 3px;
  left: 0;
}

.hamburger-menu-button > div span:nth-child(2) {
  top: 9px;
  left: 0;
}

.hamburger-menu-button > div span:nth-child(3) {
  top: 15px;
  left: 0;
}

.hamburger-menu-button.close > div span {
  background: #DFDFDF;
}

.hamburger-menu-button.close > div span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.hamburger-menu-button.close > div span:nth-child(2) {
  transform: scaleX(0);
}

.hamburger-menu-button.close > div span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.site-header .header-inner nav .header-menu .header-menu-inner {
  max-height: 0;
  overflow: hidden;
  transition: max-height .2s ease-out;
  position: relative;
}

.opening-section {
  max-width: 100%;
  background-position: top;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding: 49px 0 0;
  background: url("./../images/Visual_HeroBG.webp") no-repeat 50% 100%;
  background-size: cover;
  min-height: 957px;
  transform: translate3d(0, 0, 0);
}

.opening-section .first-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.opening-section .hero-video-loop {
  position: absolute;
  width: auto;
}

.opening-section .hero-video-loop.bg {
  position: absolute;
  bottom: 0;
  top: unset;
  width: 100%;
  mix-blend-mode: lighten;
  transform: translate3d(0, 0, 0);
}

.opening-section .hero-glow {
  position: absolute;
  top: 0;
}

.opening-section .hero-glow.left {
  top: 0;
  left: 0;
}

.opening-section .hero-glow.right {
  right: 0;
}

.opening-section .buttons-block {
  display: flex;
}

.opening-section .hero-decor-divider {
  height: 152px;
  bottom: 0;
  transform: translateY(67px);
  z-index: 1;
  opacity: 0;
  animation: .4s 1.5s forwards fadeInBottomToTopSoft;
  margin: -15px 0 0;
}

.opening-section .hero-character {
  position: absolute;
  top: 0;
}

.opening-section .hero-character.left {
  top: -2px;
  right: 50.1%;
  height: 832px;
}

.opening-section .hero-character.right {
  top: -10px;
  left: 65.3%;
  height: 708px;
}

.opening-section * {
  box-sizing: border-box;
}

.opening-section .goblet-large {
  display: flex;
  position: relative;
  max-width: 339px;
  opacity: 0;
  animation: .4s .8s forwards fadeInBottomToTopSoft;
}

.opening-section .ribbon {
  width: 279.685px;
  margin: 7px auto 12px;
  opacity: 0;
  animation: .4s 1s forwards fadeInBottomToTopSoft;
}

.opening-section .text-main {
  display: flex;
  display: inline;
  flex-direction: column;
  align-items: center;
  position: relative;
  max-width: 740px;
  margin-top: 14px;
  opacity: 0;
  animation: .4s 1s forwards fadeInBottomToTopSoft;
}

.intro-text-container {
  width: 100%;
  max-width: 1506px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  padding: 34px 20px 0;
}

.intro-text-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.opening-section {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.opening-section .buttons-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin: 41px auto;
  opacity: 0;
  animation: .4s 1.3s forwards fadeInBottomToTopSoft;
}

.opening-section .button-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 260px;
  margin: 0 12px;
}

.opening-section .button-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 260px;
  position: relative;
  cursor: pointer;
}

.opening-section .button-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 257px;
  box-shadow: 0px 0px 120px 0px #000 inset;
  opacity: .7;
}

.opening-section .button-item svg {
  position: relative;
}

.opening-section .button-item.blue {
  background: #0D1822;
  transition: .2s ease-in-out;
}

.opening-section .button-item.blue svg .fill-color {
  fill: #172F49;
}

.opening-section .button-item.blue:hover {
  background: #142230;
}

.opening-section .button-item.orange {
  background: #2C170C;
  transition: .2s ease-in-out;
}

.opening-section .button-item.orange svg .fill-color {
  fill: #823F1B;
}

.opening-section .button-item.orange:hover {
  background: #381D10;
}

.opening-section .button-item.purple {
  background: #1C1023;
  transition: .2s ease-in-out;
}

.opening-section .button-item.purple svg .fill-color {
  fill: #422053;
}

.opening-section .button-item.purple:hover {
  background: #2B1935;
}

.opening-section .button-item.coral {
  background: #231313;
  transition: .2s ease-in-out;
}

.opening-section .button-item.coral svg .fill-color {
  fill: #4E2121;
}

.opening-section .button-item.coral:hover {
  background: #341D1D;
}

.opening-section .button-item-text {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ECE8E4;
  text-align: center;
  font-family: Tongari;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 123.077%;
  white-space: nowrap;
}

.opening-section .text-under-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  margin: 9px auto 0;
  color: #BFBFBF;
  font-family: Lato, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 155.556%;
  letter-spacing: 0;
}

.opening-section .text-under-btn::before {
  display: block;
  width: 28px;
  height: 28px;
  content: '';
  background: url("./../images/crown.svg") no-repeat 50% 50%;
  background-size: contain;
}

.opening-section .text-under-btn-line {
  display: block;
  position: relative;
  margin: 0 10px;
}

.opening-section .text-under-btn-line::before {
  display: block;
  width: 40px;
  height: 1px;
  background: #BFBFBF;
  content: '';
}

.bg-character-mob {
  position: relative;
  display: none;
}

@keyframes a {
  0% {
    transform: scale(1);
  }

  to {
    transform: scale(0.8);
  }
}

.categories-section {
  position: relative;
  background: #000;
}

.categories-section .content-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  padding: 90px 20px 0;
  width: 100%;
  max-width: 1436px;
}

.categories-section .swiper-wrapper {
  margin: 4px 0 0;
  touch-action: pen-y;
  height: 100% !important;
}

.categories-section .decorated-line {
  margin-bottom: 20px;
}

.categories-section .heading-second {
  width: 100%;
  max-width: 530px;
  margin-bottom: 64px;
}

.categories-wrapper {
  position: relative;
  width: 100%;
  padding: 0;
}

.categories-container {
  width: 100%;
  max-width: 1396px;
  margin-bottom: 33px;
  touch-action: pan-y;
}

.categories-container-items {
  display: flex;
  flex-direction: column;
  margin: 0;
  margin: 0 0 89px;
}

.categories-container-title {
  position: relative;
  height: 100px;
  margin: 0 20px;
  padding: 2px;
  border: 2px solid #B69451;
  background: #000;
}

.categories-container-title-inner {
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 2px;
  background: #B69451;
  border: 2px solid #B69451;
}

.categories-container-title-inner::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: #000;
  content: '';
  border-radius: 257px;
  z-index: 0;
}

.categories-container-layer .blue {
  fill: #172F49;
}

.categories-container-layer .orange {
  fill: #823F1B;
}

.categories-container-layer .purple {
  fill: #422053;
}

.categories-container-layer .coral {
  fill: #4E2121;
}

.categories-container .corner-top-left {
  position: absolute;
  top: 0px;
  left: 0;
  width: 30px;
  height: 30px;
}

.categories-container .corner-top-right {
  position: absolute;
  top: 0px;
  right: 0;
  width: 30px;
  height: 30px;
}

.categories-container .corner-bottom-left {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 30px;
}

.categories-container .corner-bottom-right {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 30px;
  height: 30px;
}

.categories-container .text-layer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px;
}

.categories-container .text-layer-img {
  width: 54px;
  height: 54px;
  margin-right: 14px;
}

.categories-container .text-layer-title {
  display: flex;
  align-items: center;
  position: relative;
  color: #ECE8E4;
  font-family: Tongari;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  letter-spacing: 0;
  text-transform: capitalize;
}

.categories-container .text-layer-text {
  display: flex;
  align-items: center;
  position: relative;
  color: #BFBFBF;
  font-family: Lato, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 155.556%;
  letter-spacing: 0;
}

.swiper-pagination {
  position: relative;
  margin: 31px auto 0;
  z-index: 3;
}

.swiper-pagination-bullet {
  background: #9F9F9F;
  width: 12px;
  height: 12px;
  gap: 0px;
  border-radius: 50%;
  border: 2px solid #000;
  opacity: 1;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 12px;
  height: 12px;
  gap: 0px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
}

.swiper-slide {
  width: unset !important;
}

.swiper {
  touch-action: pan-y;
}

.carousel-item-img {
  max-width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.carousel-item-img::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: url("./../images/item-shadows2.webp") no-repeat 0% 0%;
  background-size: cover;
}

.carousel-item-img img {
  max-width: 100%;
}

.swiper-wrapper {
  display: flex;
}

.swiper {
  position: relative;
}

.carousel-item {
  display: flex;
  position: relative;
  overflow: hidden;
  min-height: 440px;
  height: 440px;
  max-width: 260px;
  min-width: 260px;
  width: auto;
  margin: 21px 0 5px;
  padding: 20px 10px 20px 20px;
  transition: .2s ease-in-out;
  height: auto;
  background: #000;
  border-radius: 4px;
  border: 1px solid #B69451;
  cursor: pointer;
}

.carousel-item::before {
  content: '';
  position: absolute;
  top: 8px;
  right: 10.14px;
  display: block;
  width: 27.859px;
  height: 27.859px;
  background: url("./../images/crown.svg") no-repeat 50% 50%;
  background-size: contain;
  z-index: 1;
}

.carousel-item-block {
  width: 100%;
}

.carousel-item-title {
  color: #fff;
  font-family: Tongari;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 133.333%;
  min-height: 63.85px;
  display: flex;
  align-items: flex-end;
}

.carousel-item-title.smaller {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.36px;
  text-transform: capitalize;
}

.carousel-item-text {
  display: flex;
  flex-direction: column;
  position: relative;
  text-align: left;
}

.carousel-item-description {
  color: #bfbfbf;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0;
}

.swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.large-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
}

.low-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  z-index: 3;
}

.bottom-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  z-index: 1;
  background: radial-gradient(100% 100% at 50% 0%, rgba(0, 0, 0, 0) 76.17%, #000 99%);
  background: url("./../images/VisualBottom_BG.webp") no-repeat 50% 100%;
  background-size: cover;
}

.bottom-section .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.bottom-section .shadow-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.bottom-section .shadow-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.bottom-section .bottom-img {
  position: absolute;
  max-height: 100%;
}

.bottom-section .bottom-img.l {
  left: -3px;
}

.bottom-section .bottom-img.r {
  right: -3px;
}

.bottom-section .layer-item {
  position: absolute;
  top: 0;
}

.bottom-section .layer-item.left {
  left: 0;
  width: 527px;
}

.bottom-section .layer-item.right {
  right: 0;
  width: 527px;
}

.bottom-section .heading-second {
  max-width: 517px;
  margin: 36px auto 0;
}

.bottom-section .heading-second span {
  color: #B69451;
  font-family: Tongari;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 56px;
}

.bottom-section .heading-second br {
  display: none;
}

.bottom-section .cta-buttons.hero-buttons.download-buttons {
  margin: 38px auto 42px;
}

.bottom-section .cta-buttons.hero-buttons.download-buttons span {
  display: flex;
  justify-content: center;
  margin: 12px auto 0;
  color: #ccc;
  text-align: center;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0;
}

.bottom-section .under-btn-text.underline {
  margin-top: 2px;
}

.bottom-section .download-btn.orange {
  max-width: unset;
  padding: 11px 13px;
}

.bottom-section .intro-text-container {
  position: relative;
  margin: 20px auto 0;
  padding: 0 20px 51px;
}

.bottom-section .layer-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bottom-bg-mob {
  display: none;
}

.bottom-img-mob {
  position: relative;
  display: none;
}

.footer {
  position: relative;
  z-index: 3;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #000;
}

.footer .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 1720px;
  margin: 0 auto;
  padding: 30px 20px 42px;
}

.footer-line {
  display: flex;
  width: 100%;
  justify-content: space-between;
  width: 100%;
}

.footer-line .content-wrapper {
  position: relative;
  flex-direction: column;
  max-width: 1678px;
  width: 100%;
  margin: 0 auto;
  padding: 8px 10px 15px;
}

.footer-line p,
.footer-line span,
.footer-line a {
  color: #9F9F9F;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
}

.footer-line a {
  text-decoration-line: none;
  transition: .2s ease-in-out;
}

.footer-line a:hover {
  color: #fff;
  text-decoration-line: underline;
}

.footer-line-left {
  display: flex;
  flex-direction: column;
}

.footer-line-left ul {
  display: flex;
  align-items: center;
}

.footer-line-left ul li {
  color: #9F9F9F;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
}

.footer-line-right {
  display: flex;
}

.footer-line-right p,
.footer-line-right span,
.footer-line-right a,
.footer-line-right li {
  color: #9F9F9F;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 0 48px;
  width: 100%;
}

.footer-col p {
  max-width: 1099px;
  margin-top: 24px;
}

.footer-col p,
.footer-col span,
.footer-col a {
  color: #B2B2B2;
  font-family: Lato, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  transition: .2s ease-in-out;
}

.footer-col a {
  text-decoration: underline;
  transition: .2s ease-in-out;
}

.footer-col a:hover {
  color: #fff;
}

.footer-fire {
  position: absolute;
  top: -26px;
  right: -100px;
  width: 375px;
  max-height: 228px;
}

.footer-logo {
  width: 177px;
}

.footer-socials {
  display: flex;
  margin-top: -2px;
}

.footer-socials-item {
  margin-left: 20px;
}

.footer-line ul.mob-only {
  display: none;
}

@media only screen and (min-width: 1025px) {
  .categories-container-title {
    width: 100%;
    margin: 0;
    padding: 2px;
  }

  .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 15px;
  }

  .carousel-item {
    min-width: 32.3%;
    max-width: 32.4%;
  }

  .carousel-item::after {
    display: block;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0);
    transition: .2s ease-in-out;
    z-index: 1;
  }

  .carousel-item:hover::after {
    display: block;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.07);
  }

  .footer {
    padding: 0;
  }

  .footer .content-wrapper {
    max-width: 1720px;
    padding: 0px 20px 138px;
    align-items: flex-start;
  }

  .footer-line .content-wrapper {
    flex-direction: row;
    justify-content: space-between;
    max-width: 1720px;
    margin: 0 auto;
    padding: 16px 20px;
  }

  .footer-line-left {
    flex-direction: row;
  }

  .footer-line-left ul li {
    margin-left: 32px;
  }
}

@media only screen and (min-width: 1100px) {
  .site-header .header-inner nav ul li ul.header-menu-inner {
    display: none;
  }
}

@media only screen and (min-width: 1101px) {
  .header-link {
    border-bottom: 1px solid transparent;
  }

  .header-link:hover {
    border-bottom: 1px solid #EB622B;
  }
}

@media only screen and (min-width: 1141px) {
  .categories-section .swiper-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    column-gap: 12px;
    height: unset !important;
  }

  .vote-item {
    width: 260px;
    max-width: 260px;
    min-width: 260px;
    margin: 10px 0;
    touch-action: pen-y;
  }

  .vote-item iframe {
    width: 260px;
    max-width: 260px;
    min-width: 260px;
    touch-action: pen-y;
  }

  .categories-container {
    margin-bottom: 33px;
  }

  .categories-container:last-of-type {
    margin-bottom: 20px;
  }

  .categories-container-items {
    display: block;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 12px;
    margin: 0 0 105px;
  }

  .swiper-pagination {
    display: none;
  }
}

@media only screen and (min-width: 1164px) {
  .carousel-item {
    min-width: 24.2%;
    max-width: unset;
  }
}

@media only screen and (min-width: 1270px) {
  .categories-section .swiper-wrapper.four {
    display: flex !important;
    justify-content: center;
    column-gap: 0;
    row-gap: 0;
  }

  .categories-section .swiper-wrapper.four .carousel-item {
    margin: 29px 12px;
  }
}

@media only screen and (min-width: 1388px) {
  .carousel-item {
    max-width: 260px;
    min-width: 260px;
  }
}

@media only screen and (min-width: 1390px) {
  .categories-section .swiper-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 12px;
    row-gap: 12px;
  }
}

@media only screen and (min-width: 1395px) {
  .swiper-wrapper {
    display: grid;
    grid-template-columns: 20% 20% 20% 20% 20%;
    grid-gap: 15px;
  }
}

@media only screen and (min-width: 1400px) {
  .categories-container-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-columns: repeat(1, 1fr);
    column-gap: 24px;
    row-gap: 0px;
    margin: 0 0 105px;
  }
}

@media only screen and (max-width: 1760px) {
  .footer-fire {
    top: 20px;
    right: -3vw;
  }
}

@media only screen and (max-width: 1360px) {
  .footer-col p {
    max-width: 600px;
  }

  .footer-fire {
    top: 20px;
    right: -3vw;
  }
}

@media only screen and (max-width: 1324px) {
  .opening-section .buttons-block {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media only screen and (max-width: 1250px) {
  .header-link.border {
    padding: 7px 12px;
  }

  .site-header .header-inner nav ul li {
    margin: 0;
  }
}

@media only screen and (max-width: 1100px) {
  .under-btn-text {
    margin-top: 15px;
  }

  header {
    height: unset;
  }

  header .content-wrapper {
    justify-content: flex-start;
  }

  .header-link {
    width: 100%;
    margin-left: 0;
    padding: 11px 18px 14.5px;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0;
    border-bottom: none;
  }

  .header-link.desktop {
    display: none !important;
  }

  .header-link.mob {
    display: flex;
  }

  .header-link:hover {
    border-bottom: none;
  }

  .header-link.border {
    display: none;
    border: none;
  }

  .header-logo.desktop {
    display: none;
  }

  .header-logo.mob {
    display: flex;
  }

  .header-logo img {
    margin-right: 0;
    margin-left: 0;
    width: auto;
    height: 48px;
  }

  .site-header .header-inner {
    justify-content: center;
  }

  .site-header .hamburger-menu-button {
    display: block;
  }

  .submenu-icon {
    display: flex;
  }

  .site-header .header-inner .action-items {
    width: fit-content;
    margin: auto auto 10vh;
    display: flex;
    gap: 8px;
  }

  .site-header .header-inner nav .header-menu {
    position: absolute;
    left: 0;
    top: 74px;
    margin: 0;
    flex-direction: column;
    background-color: #1E1E1E;
    text-align: center;
    width: 100%;
    overflow: overlay;
    height: 100vh;
    padding-top: 16px;
    padding-bottom: 80px;
    gap: 0;
  }

  .site-header .header-menu-inner {
    background: #000;
  }

  .site-header .header-inner nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: opacity .3s ease-out;
    animation: quick-hide-mobile-menu .2s 1ж;
  }

  .site-header .header-inner nav ul li {
    margin-left: unset;
    display: flex;
    justify-content: flex-start;
    position: relative;
    width: 100%;
    margin: 0;
    flex-direction: column;
  }

  .site-header .header-inner nav ul li a {
    display: flex;
    align-items: center;
  }

  .site-header .header-inner nav ul li a.download-btn {
    max-width: 224px;
  }

  .site-header .header-inner nav ul li a.border {
    display: none;
  }

@keyframes quick-hide-mobile-menu {
    0% {
      opacity: 0;
    }

    to {
      opacity: 0;
    }
}

  .site-header .header-inner nav.is-open {
    opacity: 1;
  }

  .site-header .header-inner nav:not(.is-open) {
    pointer-events: none;
  }

  .site-header .header-inner nav ul::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    background-color: #1E1E1E;
  }

  .site-header .header-inner nav ul::-webkit-scrollbar-thumb {
    border-width: 0;
    background-color: #1E1E1E;
    background-clip: padding-box;
  }
}

@media only screen and (max-width: 1024px) {
  main {
    background: none;
  }

  .heading-first {
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 44px;
  }

  .heading-second {
    font-size: 36px;
    line-height: 44px;
  }

  .heading-second span {
    font-size: 36px;
    line-height: 44px;
  }

  .download-btn.mob {
    display: flex;
  }

  .download-btn.orange {
    display: flex;
  }

  .to-top {
    margin: 13px auto 0;
    font-size: 16px;
  }

  .to-top-section .content-wrapper {
    padding-top: 0;
  }

  .header-link.border {
    display: none;
  }

  .header-link-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-bottom: 120px;
  }

  .site-header .header-inner nav ul li:last-of-type {
    margin-left: unset;
  }

  .opening-section {
    background-size: cover;
    display: flex;
    flex-direction: column;
    height: unset;
    width: 100%;
    padding: 0;
    min-height: unset;
    background: none;
  }

  .opening-section .first-layer {
    display: none;
  }

  .opening-section .hero-decor-divider {
    display: none;
  }

  .opening-section .goblet-large {
    order: 1;
    max-width: 275px;
    margin: 86px 20px 0;
  }

  .opening-section .ribbon {
    order: 2;
    width: 223.082px;
  }

  .opening-section .text-main {
    display: inline;
    order: 3;
    margin-top: 15px;
    padding: 0 8px;
  }

  .opening-section .text-main br {
    display: none;
  }

  .intro-text-container {
    padding: 5px 20.5px 0;
  }

  .opening-section .buttons-container {
    order: 4;
    margin-top: 25px;
  }

  .opening-section .button-container {
    margin: 0 12px 40px;
  }

  .bg-character-mob {
    display: flex;
    min-width: 100vw;
    max-width: 100%;
    margin-left: -20px;
    margin-right: -20px;
    margin-top: -64px;
    order: 5;
  }

  .categories-section .content-wrapper {
    padding: 37px 0 0;
  }

  .categories-section .heading-second {
    margin-top: 0;
    margin-bottom: 55px;
  }

  .categories-container .text-layer {
    flex-direction: column;
    padding: 15px;
  }

  .categories-container .text-layer-img {
    display: none;
  }

  .categories-container .text-layer-title {
    text-align: center;
    font-size: 26px;
    line-height: 123.077%;
  }

  .bottom-section {
    background: url("./../images/BottomSection_mob.webp") no-repeat;
    background-repeat: no-repeat;
    background-position: 50% 100%;
    background-size: 100%;
  }

  .bottom-section .content-wrapper {
    padding: 0 10px;
  }

  .bottom-section .bottom-img {
    display: none;
  }

  .bottom-section .heading-second {
    display: flex;
    display: inline;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    margin: 36px auto 0;
  }

  .bottom-section .heading-second span {
    order: 0;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 44px;
  }

  .bottom-section .cta-buttons.hero-buttons.download-buttons {
    order: 1;
    margin: 40px auto;
  }

  .bottom-section .under-btn-text.underline {
    order: 2;
  }

  .bottom-section .download-btn.orange {
    max-width: 334px;
    padding: 11px 10px;
  }

  .bottom-section .intro-text-container {
    padding: 27px 0px 109px;
  }

  .bottom-img-mob {
    display: flex;
    position: absolute;
  }

  .footer-line {
    flex-direction: column;
    align-items: center;
  }

  .footer-col {
    align-items: center;
    margin: 0 auto 8px;
  }

  .footer-col p {
    margin-top: 30px;
    text-align: center;
  }

  .footer-fire {
    display: none;
  }

  .footer-logo {
    width: 140px;
  }

  .footer-socials {
    margin-top: 44px;
    justify-content: center;
    margin: 29px auto 6px;
  }

  .footer-line ul.mob-only {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 400px;
    padding: 0px 16px 16px;
  }

  .footer-line ul.mob-only li {
    margin: 0 4px;
  }

  .footer-line ul.desktop-only {
    display: none;
  }

  .footer-socials-item {
    margin-left: unset;
    margin: 0 10px;
  }

  .footer-socials-item:first-of-type {
    order: 1;
  }

  .footer-socials-item:nth-of-type(2) {
    order: 3;
  }

  .footer-socials-item:last-of-type {
    order: 2;
  }
}

@media only screen and (max-width: 600px) {
  .heading-second br {
    display: inline-block;
  }

  .bottom-section .heading-second br {
    display: inline-block;
  }
}

@media only screen and (max-width: 450px) {
  .categories-section .heading-second {
    max-width: 335px;
  }
}

@media only screen and (max-width: 360px) {
  .opening-section .text-main {
    padding: 0;
  }
}

@media only screen and (max-width: 350px) {
  .carousel-item {
    max-width: 280px;
    min-width: 280px;
    height: auto;
  }
}

@media only screen and (max-width: 340px) {
  .download-btn.orange {
    font-size: 12px;
  }

  .footer-line ul.mob-only li {
    margin: 0 2px;
  }
}