@charset "UTF-8";

/* Reset and base styles  */

* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

/* Links */

a,
a:link,
a:visited {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
}

/* Common */

aside,
nav,
footer,
header,
section,
main {
  display: block;
}

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

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

address {
  font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type=submit] {
  display: inline-block;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

:root {
  --primary-color: #421615;
  --primary-color-light: #642323;
  --secondary-color: rgb(171, 103, 37);
  --accent-color: #C09A53;
  --bg-color: #1F070C;
  --grey-color: #4D4D4D;
  --surface-color: #712726;
  --text-color: #FFF;
  --text-color-alt: #C09A53;
  --white-color: #FFF;
  --black-color: #000;
  --font-main: "Luckiest Guy", sans-serif;
  --font-secondary: "Arial", sans-serif;
  --container-width: 1240px;
  --container-padding-x: 15px;
  --sidebar-width-full: 14.5rem;
  --sidebar-width-short: 5rem;
  --header-height: 3.75rem;
}

html,
body {
  scroll-behavior: smooth;
  scroll-margin-top: 5rem;
  -ms-overflow-style: none;
  /* IE и Edge */
  scrollbar-width: none;
  /* Firefox */
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

html {
  font-size: 100%;
}

body {
  font-family: var(--font-main);
  letter-spacing: 0.16px;
  color: var(--text-color);
  background-color: var(--bg-color);
}

@font-face {
  font-family: "Luckiest Guy";
  src: url("./../font/LuckiestGuy/LuckiestGuy-Regular.woff2") format("woff2"), url("./../font/LuckiestGuy/LuckiestGuy-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

.main-content h1,
.main-content h2,
.main-content p,
.main-content ul li,
.main-content ol li {
  color: var(--white-color);
}

.main-content h1,
.main-content h2,
.main-content h3,
.main-content h4,
.main-content h5,
.main-content h6 {
  font-weight: 700;
}

.main-content .btn {
  margin: 0.5rem 0;
}

.main-content h2,
.main-content h1 {
  margin-top: 2rem;
}

.main-content h3 {
  color: var(--white-color);
  margin-top: 1rem;
}

.main-content p {
  margin-top: 1rem;
}

.main-content ol,
.main-content li {
  margin-top: 0.5rem;
  margin-left: 2rem;
}

.main-content .simple-text,
.main-content ol li,
.main-content ul li {
  font-size: 1rem;
}

.main-content ul li {
  list-style-type: disc;
}

.main-content .table-wrap {
  max-width: 100%;
  overflow-x: scroll;
}

.main-content .table-wrap::-webkit-scrollbar {
  height: 5px;
}

.main-content .table-wrap::-webkit-scrollbar-thumb {
  background-color: var(--accent-color);
  border-radius: 20px;
}

.main-content .table-wrap::-webkit-scrollbar-track {
  background-color: transparent;
}

.main-content table {
  margin: 1rem 0;
}

.main-content thead td, thead th{
  background-color: #651B4F;
  padding: 0.5rem;
  font-weight: 700;
}


.main-content td {
  padding: 1rem;
  padding-right: 2rem;
}

.main-content th {
  padding: 1rem;
  padding-right: 4rem;
}

.main-content table, th, td {
  border: #651B4F 2px solid;
  border-collapse: collapse;
}

.main-content img {
  display: block;
  margin: 1rem 0;
  border-radius: 10px;
}

.main-content .faq-list {
  margin-left: 0;
}

.main-content .faq-card {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  cursor: pointer;
  margin-left: 0;
  gap: 1rem;
  height: 4.5rem;
  overflow-y: hidden;
  border-radius: 1.25rem;
  border: 1px solid var(--grey-color);
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 0.5rem 1rem;
  -webkit-transition: height 0.2s;
  transition: height 0.2s;
}

.main-content .faq-card__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.main-content .faq-card__question {
  font-weight: 700;
  font-size: 1.25rem;
}

.main-content .faq-card__question svg {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.main-content .faq-card.show {
  height: auto;
}

.main-content .faq-card.show svg {
  -webkit-transform: rotateZ(45deg);
  -ms-transform: rotate(45deg);
  transform: rotateZ(45deg);
}
.main-content h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
}
.main-content table td, th, p, ol li, ul li {
  font-family: var(--font-secondary);
}

.container-fluid {
  max-width: 1450px;
  width: 95%;
  padding: 0 15px;
  margin-left: auto;
  margin-right: auto;
}

.container-full {
  width: 100%;
  max-width: calc(var(--container-width) + var(--container-padding-x) * 2);
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--container-padding-x);
}

.game-section {
  padding-bottom: 0.5rem;
}

h1,
h2,
h3,
h4 {
  line-height: 120%;
}

p {
  line-height: 140%;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.6rem;
}

p {
  font-size: 1rem;
}

.heading {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.heading::first-letter {
  text-transform: uppercase;
}

.heading--icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.heading--grey {
  color: #c4c4c4;
}

.heading__text {
  margin-left: 0.5rem;
}

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

.simple-text {
  font-size: 1.25rem;
  color: var(--text);
}

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

.simple-text--s {
  font-size: 1rem;
}

.simple-text--grey {
  color: #c4c4c4;
}

.text-accent {
  color: var(--accent) !important;
  font-weight: 500;
}

.text-content .heading {
  margin-bottom: var(--mr-16);
}

.text-content--mb-text .simple-text {
  margin-bottom: 1rem;
}

.sidebar-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.5em 1.25em;
  border-radius: 0.8em;
  text-transform: uppercase;
  text-align: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -o-border-image: url("./../img/btn/btn-default.webp") 40 fill/40px stretch;
  border-image: url("./../img/btn/btn-default.webp") 40 fill/40px stretch;
}

.btn--accent {
  -o-border-image: url("./../img/btn/btn-accent.webp") 40 fill/40px stretch;
  border-image: url("./../img/btn/btn-accent.webp") 40 fill/40px stretch;
}

.btn--cta {
  font-size: 1.5rem;
  padding: 1em 4em;
  -o-border-image: url("./../img/btn/btn-cta.webp") 40 fill/40px stretch;
  border-image: url("./../img/btn/btn-cta.webp") 40 fill/40px stretch;
}

.btn--cta span.btn__text {
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 255, 255)), color-stop(30%, rgb(243, 235, 164)), color-stop(70%, rgb(162, 110, 43)), to(rgb(243, 235, 164)));
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(243, 235, 164) 30%, rgb(162, 110, 43) 70%, rgb(243, 235, 164) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  -webkit-filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.4));
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.4));
  letter-spacing: 0.01em;
}

.btn__text {
  color: var(--text-color-alt);
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 255, 255)), color-stop(30%, rgb(243, 235, 164)), color-stop(70%, rgb(162, 110, 43)), to(rgb(243, 235, 164)));
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(243, 235, 164) 30%, rgb(162, 110, 43) 70%, rgb(243, 235, 164) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  -webkit-filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.4));
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.4));
  letter-spacing: 0.1rem;
}

.search {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0.5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 300px;
  padding: 0.7em 0.5em;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(91, 33, 32)), to(rgb(113, 39, 39))) padding-box, rgb(128, 50, 49) border-box;
  background: linear-gradient(180deg, rgb(91, 33, 32) 0%, rgb(113, 39, 39) 100%) padding-box, rgb(128, 50, 49) border-box;
  border-radius: 0.6em;
  border: 2px solid transparent;
  -webkit-box-shadow: 0 6px 2px 0 rgba(49, 10, 17, 0.4) inset, 0 4px 4px 0 rgb(66, 22, 21), 0 2px 0 0 rgb(66, 22, 21);
  box-shadow: 0 6px 2px 0 rgba(49, 10, 17, 0.4) inset, 0 4px 4px 0 rgb(66, 22, 21), 0 2px 0 0 rgb(66, 22, 21);
  font-family: var(--font-secondary);
  font-weight: 700;
}

.search__text {
  color: rgb(221, 120, 118);
}

.main-menu {
  width: 100%;
  overflow-y: scroll;
}

.main-menu::-webkit-scrollbar {
  width: 6px;
}

.main-menu::-webkit-scrollbar-track {
  background: transparent;
}

.main-menu::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 20px;
}

.main-menu__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.5rem;
}

.main-menu__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  background-color: transparent;
}

.main-menu__text {
  display: inline-block;
  text-transform: uppercase;
  color: var(--text-color-alt);
}

.main-menu__text.hide {
  display: none;
}

.main-menu__link {
  overflow-x: hidden;
  font-weight: 700;
  padding: 0.8rem 0;
  padding-left: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
}

.main-menu__link svg {
  color: var(--secondary-color);
}

.divider {
  position: relative;
  height: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: rgb(192, 153, 83);
  opacity: 0.4;
  padding: 5px 0;
  margin: 0 1rem;
}

.divider img {
  -webkit-transform: translateY(25%);
  -ms-transform: translateY(25%);
  transform: translateY(25%);
}

.divider__line {
  height: 2px;
  width: calc(50% - 7px);
  background-color: rgb(192, 153, 83);
  border: 0;
  border-radius: 5px;
  margin: 0 -2px;
}

.divider-two {
  position: relative;
  height: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  color: rgb(162, 110, 43);
  opacity: 0.4;
}

.divider-two__line {
  height: 2px;
  width: calc(100% - 42px);
  background: rgb(162, 110, 43);
  border: 0;
  border-radius: 5px;
}

.divider-two img {
  -webkit-transform: translateY(20%);
  -ms-transform: translateY(20%);
  transform: translateY(20%);
}

.card-gallery__top {
  padding: 1rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1rem;
}

.card-gallery__title {
  font-size: 1.5rem;
  text-transform: uppercase;
}

.card-gallery__link span {
  color: var(--text-color-alt);
  text-transform: uppercase;
}

.card-gallery__scroll {
  overflow-x: scroll;
}

.card-gallery__scroll::-webkit-scrollbar {
  width: 0;
}

.card-gallery__scroll {
  -ms-overflow-style: none;
}

.card-gallery__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}

.card-gallery__item {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 10%;
  flex: 1 0 10%;
}

.card {
  display: inline-block;
  width: 154px;
  height: 231px;
  min-width: 154px;
  min-height: 231px;
  position: relative;
  cursor: pointer;
}

.card:before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url("./../img/card-border.webp") center center no-repeat;
  background-size: 100% 100%;
  content: "";
  z-index: 2;
}

.card--live {
  height: 359px;
  min-height: 359px;
}

.card--live .card__inner {
  -webkit-transform: translate3d(1%, 1.5%, 0);
  transform: translate3d(1%, 1.5%, 0);
}

.card__inner {
  width: 98%;
  height: 98%;
  padding: 0.5rem;
  overflow: hidden;
  -webkit-transform: translate3d(1%, 1%, 0);
  transform: translate3d(1%, 1%, 0);
}

.card__thumb {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0.5rem;
}

.card__overlay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  position: absolute;
  top: 4%;
  left: 2.5%;
  right: 0;
  bottom: 0;
  width: 95%;
  height: 92%;
  background: url("./../img/card-overlay.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.card__play-btn {
  padding: 1rem 1.5rem;
}

.card__demo {
  font-family: var(--font-secondary);
}

.card__demo span {
  color: rgb(221, 120, 118);
}

.page {
  height: 100%;
}

.page__header {
  width: 100%;
  height: var(--header-height);
  position: fixed;
  top: 0;
  z-index: 900;
}

.page__wrapper {
  height: 100%;
  padding-top: 3.75rem;
}

.page__sidebar {
  width: var(--sidebar-width-full);
  max-width: var(--sidebar-width-full);
  height: 100%;
  position: fixed;
  left: 0;
  margin-top: 0.5rem;
  -o-border-image: url("./../img/sidebar/sidebar-bg.webp") 50 fill/22px stretch;
  border-image: url("./../img/sidebar/sidebar-bg.webp") 50 fill/22px stretch;
}

.page__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: calc(100% - var(--sidebar-width-full));
  height: 100%;
  margin-left: var(--sidebar-width-full);
}

.page__inner {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.page__footer {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.header {
  padding: 0.5rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--primary-color);
  border-bottom: 1px solid #642323;
}

.header__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}

.sidebar {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.sidebar__menu {
  height: 80%;
  max-height: 80%;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 80%;
  flex: 1 0 80%;
}

.sidebar__actions {
  height: 10%;
  max-height: 10%;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 10%;
  flex: 1 0 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem;
}

.sidebar__item {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 50%;
  flex: 1 1 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 2px;
  text-align: center;
  font-size: 0.75rem;
  font-family: var(--font-secondary);
  font-weight: 700;
  background: #2C0A0E;
  position: relative;
  border-radius: 0.7rem;
}

.sidebar__item img {
  max-width: 20px;
  max-height: 20px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}

.sidebar__item span {
  color: var(--text-color-alt);
}

.sidebar__live {
  width: 20px;
  height: 20px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 255, 255)), color-stop(30%, rgb(243, 235, 164)), color-stop(70%, rgb(162, 110, 43)), to(rgb(243, 235, 164)));
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(243, 235, 164) 30%, rgb(162, 110, 43) 70%, rgb(243, 235, 164) 100%);
  -webkit-mask-image: url("./../img/icon/live-chat.svg");
  mask-image: url("./../img/icon/live-chat.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.sidebar.hide {
  width: var(--sidebar-width-short);
  max-width: var(--sidebar-width-short);
}

.sidebar.hide .sidebar__text {
  display: none;
}

.main {
  background-size: 25%;
  background-repeat: repeat;
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
}

.main.move {
  width: calc(100% - var(--sidebar-width-short));
  margin-left: var(--sidebar-width-short);
}

.footer {
  margin-top: 2rem;
  padding: 1rem 0;
  background: rgb(77, 27, 26);
  overflow-x: hidden;
}

.footer {
  border-top: 2px solid var(--accent-color-dark);
  margin-top: 5rem;
  padding: 2rem 0;
  min-height: calc(100vh - 81px);
  background-image: repeating-radial-gradient(circle, rgb(77, 27, 26) 200px, rgb(77, 27, 26) 250px, rgba(221, 120, 118, 0.05) 250px, rgba(221, 120, 118, 0.05) 310px, rgb(77, 27, 26) 310px);
  background-position: center;
  background-repeat: no-repeat;
  font-family: var(--font-secondary);
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.footer__col:not(:last-child) {
  margin-right: 10px;
}

.footer__link {
  margin-bottom: 1rem;
  -webkit-transition: var(--tr-dr);
  transition: var(--tr-dr);
}

.footer__link:hover {
  color: var(--grey);
}

.footer__title {
  font-weight: 700;
  color: var(--grey);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
}

.footer__payment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 2rem 0;
}

.footer__img {
  display: inline-block;
  margin-right: 1rem;
}

.footer__info {
  text-align: center;
  color: rgb(221, 120, 118);
}

.footer__info p {
  font-size: 12px;
  margin-bottom: 10px;
}

.intro {
  position: relative;
  width: 100%;
  height: 380px;
  max-height: 380px;
  overflow-y: hidden;
}

.intro:before,
.intro:after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: 65px;
  height: 100%;
  background: -webkit-gradient(linear, right top, left top, from(rgb(33, 7, 12)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(270deg, rgb(33, 7, 12) 0%, rgba(0, 0, 0, 0) 100%);
}

.intro:before {
  left: 0;
  scale: -1 1;
}

.intro:after {
  right: 0;
}

.intro__banner {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.intro__content {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.intro__inner {
  padding-left: 0.5rem;
  margin-left: 4%;
  width: 100%;
  min-width: 440px;
  max-width: 467px;
  height: 82%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
  position: relative;
}
.intro__inner:before {
  display: block;
  width: 25%;
  height: 100%;
  content: '';
  inset: 0 34%;
  overflow: hidden;
  background-image: url('./../img/banner-decor-center.webp');
  background-position: top center;
  background-size: 100% 100%;
  background-repeat: repeat;
  z-index: -1;
  position: absolute;
}
.intro__inner:after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('./../img/banner-decor-left.webp'), url('./../img/banner-decor-right.webp');
  background-position: bottom right, bottom left;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -2;
}

.intro__title {
  max-width: 65%;
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  text-shadow: 0 2px 0 rgb(66, 22, 21);
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.24px;
  -webkit-filter: drop-shadow(0 2px rgb(66, 22, 21));
  filter: drop-shadow(0 2px rgb(66, 22, 21));
  -webkit-text-stroke: 4px rgb(66, 22, 21);
  paint-order: stroke fill;
}

.intro__sub {
  font-size: 14px;
  text-shadow: 0 2px 0 rgb(65, 18, 48);
  text-transform: uppercase;
  letter-spacing: 0.14px;
  -webkit-filter: drop-shadow(0 2px rgb(66, 22, 21));
  filter: drop-shadow(0 2px rgb(66, 22, 21));
  -webkit-text-stroke: 4px rgb(66, 22, 21);
  paint-order: stroke fill;
  color: rgb(255, 185, 64);
  background-image: unset, unset;
  background-size: unset 100%;
  background-position: left center, right center;
  background-repeat: no-repeat;
}

.intro__text {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 2rem;
}

.intro__decor {
  width: 100%;
  height: 41px;
  background-image: url("./../img/intro-decor-left.webp"), url("./../img/intro-decor-right.webp"), url("./../img/intro-decor-center.webp");
  background-repeat: no-repeat;
  background-position: left, right, center;
  background-size: 7%, 7%, 88%;
  -webkit-transform: translateY(-1rem);
  -ms-transform: translateY(-1rem);
  transform: translateY(-1rem);
  position: relative;
  z-index: 4;
}

.tabs {
  position: sticky;
  top: var(--header-height);
  background: var(--bg-color);
  z-index: 700;
  padding: 1rem;
  border-bottom: 1px solid #642323;
}

.tabs__nav {
  overflow-x: scroll;
}

.tabs__nav::-webkit-scrollbar {
  width: 0;
}

.tabs__nav {
  -ms-overflow-style: none;
}

.tabs__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1.5rem;
}

.tabs__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
}

.tabs__bg {
  min-height: 68px;
  min-width: 68px;
  padding: 6px;
  -webkit-box-shadow: 0 5px 16px 0 rgba(0, 0, 0, 0.9) inset, 0 4px 0 0 rgba(66, 22, 21, 0.8);
  box-shadow: 0 5px 16px 0 rgba(0, 0, 0, 0.9) inset, 0 4px 0 0 rgba(66, 22, 21, 0.8);
  border: 5px solid transparent;
  background-image: url("./../img/tabs/tabs-item-bg.webp"), -webkit-gradient(linear, left top, left bottom, from(rgb(91, 33, 32)), to(rgb(66, 22, 21))), -webkit-gradient(linear, left top, left bottom, from(rgb(113, 39, 39)), to(rgb(91, 33, 32)));
  background-image: url("./../img/tabs/tabs-item-bg.webp"), linear-gradient(180deg, rgb(91, 33, 32) 0%, rgb(66, 22, 21) 100%), linear-gradient(180deg, rgb(113, 39, 39) 0%, rgb(91, 33, 32) 100%);
  background-clip: padding-box, padding-box, border-box;
  background-size: 105% 100%, contain, contain;
  background-position: center, center, center;
  background-repeat: no-repeat;
  background-origin: padding-box, padding-box, border-box;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.tabs__text {
  max-width: 68px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-color-alt);
}

.top {
  margin-top: 2rem;
}

@media screen and (min-width: 1025px) {
  .desktop-hidden {
    display: none;
  }
}

@media screen and (min-width: 1240px) {
  .container-full {
    max-width: 100%;
    padding: 0 10px;
  }
}

@media screen and (max-width: 1024px) {
  .main-content .faq-card {
    height: 7rem;
  }

  .main-content .faq-card .faq-card__question--second {
    height: 6.6rem;
  }

  .main-content {
    max-width: 100vw;
  }

  .main-content .table__wrap {
    max-width: 100vw;
  }

  .main-content__inner {
    max-width: 100vw;
  }

  .mobile-hidden {
    display: none;
  }

  .page__main {
    margin-left: 0;
  }

  .main {
    width: 100%;
    margin-left: 0;
  }

  .intro {
    height: 400px;
    max-height: 400px;
  }

  .intro__sub {
    font-size: 1rem;
  }

  .intro__text {
    font-size: 1.5rem;
  }

  .intro__decor {
    background-size: 20%, 20%, 150%;
  }

  .intro .btn-cta {
    font-size: 1rem;
  }
}

@media screen and (max-width: 992px) {
  .container-full {
    max-width: 990px;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  p {
    font-size: 1rem;
  }
}

@media screen and (max-width: 990px) {
  .tabs__inner {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

@media screen and (max-width: 768px) {
  .main-content .simple-text,
  .main-content ol li,
  .main-content ul li {
    font-size: 1rem;
  }

  .container-fluid {
    max-width: 100%;
    width: 100%;
  }

  .btn--cta {
    font-size: 1.25rem;
  }

  .card-gallery__title {
    font-size: 1rem;
  }

  .intro__inner {
    max-width: 100%;
    padding-top: 40%;
  }

  .intro__banner {
    height: 105%;
  }

  
}

@media screen and (max-width: 576px) {
  .container-full {
    max-width: 100%;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  p {
    font-size: 1rem;
  }
}

@media screen and (max-width: 1235px) {
  .intro {
    overflow-y: visible;
    background: #1F070C;
  }
  .intro__inner {
    min-width: 100%;
    max-width: 100%;
    padding-left: 0;
    margin-left: 0;
    height: 100%;
    justify-content: flex-end;
    transform: translateY(50px);
    position: relative;
    z-index: 10;
    gap: .5rem;
    padding: 0 2rem;
  }
  .intro__content {
    z-index: 10;
  }
  .intro__inner:before, .intro__inner:after {
      display: none;
  }
  .intro__title {
      max-width: 100%;
  }
}

@media screen and (max-width: 568px) {
  .intro__content {
    padding-bottom: 1rem;
  }
}

@media screen and (max-width: 460px) {
  .header {
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 430px) {
  .header {
    height: auto;
  }
}

@media (any-hover: hover) {
  .card:hover .card__overlay {
    opacity: 1;
  }
}