@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1;
  min-width: 320px;
  position: relative;
  font-size: 16px;
}

article,
aside,
details,
figure,
figcaption,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}

.hidden,
[hidden],
template {
  display: none;
}

a {
  text-decoration: none;
  background: transparent;
}
a:active, a:hover {
  outline: 0;
}
a img {
  border: 0;
}

b,
strong {
  font-weight: 500;
}

small {
  font-size: 75%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

svg:not(:root) {
  overflow: hidden;
}

button,
optgroup,
select,
textarea {
  margin: 0;
  font: inherit;
  color: inherit;
  appearance: none;
  border-radius: 0;
  text-transform: none;
  box-sizing: border-box;
  background-clip: padding-box;
  background-color: transparent;
}

button,
html input[type=button] {
  cursor: pointer;
  appearance: button;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

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

input {
  line-height: normal;
}
input[type=reset], input[type=submit] {
  cursor: pointer;
  appearance: button;
}
input[type=checkbox], input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}
input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  height: auto;
}
input[type=search] {
  appearance: textfield;
  box-sizing: border-box;
}
input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
  appearance: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

td,
th {
  padding: 0;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
  border: 0;
}

ul,
li {
  margin: 0;
  padding: 0;
  text-decoration: none;
}

.clearfix {
  clear: both;
}

@font-face {
  font-family: "ETmodules";
  src: url("../fonts/ETmodules/etmodules.eot");
  src: url("../fonts/ETmodules/etmodules.eot") format("embedded-opentype"), url("../fonts/ETmodules/etmodules.woff2") format("woff2"), url("../fonts/ETmodules/etmodules.woff") format("woff"), url("../fonts/ETmodules/etmodules.svg") format("svg");
}
html {
  font-size: 1rem;
  scroll-behavior: smooth;
}

body {
  font-size: 1rem;
  font-family: var(--font-family);
  line-height: 1.4 !important;
  font-weight: 400;
  background-color: var(--main_background);
  color: var(--color_text_default);
  position: relative;
  background-image: url("../images/hero-stripe.svg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
}

@keyframes opacity-glow {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
main {
  min-height: 86vh;
  display: flex;
  flex-direction: column;
}

p {
  margin-bottom: 0.75rem;
}

a {
  color: var(--link_color);
}

.scroll-btn {
  position: fixed;
  bottom: 35px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  opacity: 0.7;
  transition: opacity 0.3s ease;
  z-index: 4;
  font-style: normal;
}

.scroll-btn:hover {
  opacity: 1;
}

.scroll-btn:active {
  transform: scale(0.95);
}

.container {
  max-width: 117.5rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 0.9375rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--button_main_color);
  background: var(--button_main_background);
  line-height: 1;
  font-size: 1rem;
  font-weight: 400;
  transition: all 0.3s;
  position: relative;
  align-items: center;
  text-align: center;
  justify-content: center;
  border-radius: 2rem;
  padding: 1rem 1.625rem;
}
.btn:hover {
  transform: scale(1.1);
}
.btn.btn-white {
  background: #242428;
  color: #fff;
  transition: all 0.3s ease 0s;
}
.btn .span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 10rem;
  line-height: 1;
  padding: 0.625rem;
}
@media (max-width: 767px) {
  .btn .span {
    min-width: 8.75rem;
  }
}
.btn .code {
  padding: 1rem;
  border-left: 1px solid black;
}
@media (max-width: 767px) {
  .btn .code {
    display: none;
  }
}

h1 {
  font-size: clamp(1.5rem, 2.2340425532vw, 2.625rem);
  font-weight: 700;
  text-transform: uppercase;
  margin: 0.75rem 0;
  color: #d1d6ff;
  color: var(--color_h1);
}

h2 {
  font-size: clamp(1.125rem, 1.2765957447vw, 1.5rem);
  font-weight: 500;
  text-transform: uppercase;
  margin: 0.75rem 0;
  color: #d1d6ff;
  color: var(--color_h2);
}
@media (max-width: 767px) {
  h2 {
    margin: 0.5rem 0;
  }
}

h3 {
  font-size: clamp(1.25rem, 1.2765957447vw, 1.5rem);
  font-weight: 600;
  color: var(--color_h2);
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.spinner {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 4px solid #ccc;
  border-top-color: #2fa9e1;
  animation: spin 1s infinite linear;
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.aspect-ratio {
  position: relative;
}
.aspect-ratio img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Default Page */
/* Form checkboxes  */
body {
  position: relative;
}
body.fixed {
  overflow: hidden;
}
@media (max-width: 1480px) {
  body.is-active header {
    overflow: visible;
  }
}

.header {
  z-index: 10;
  left: 0;
  width: 100%;
  top: 0;
  transition: padding 0.3s ease, box-shadow 0.3s ease;
  padding: 0.75rem 0;
  position: sticky;
  box-sizing: border-box;
  background-color: var(--main_background);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}
.header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--button_main_background) 20%, rgba(255, 255, 255, 0.55) 50%, var(--button_main_background) 80%, transparent 100%);
  pointer-events: none;
}
@media (max-width: 1480px) {
  .header {
    padding: 0.625rem 0;
  }
}
@media (max-width: 767px) {
  .header {
    padding: 0.75rem 0;
  }
}
@media (max-width: 1480px) {
  .header {
    margin-bottom: 0rem;
    position: sticky;
  }
}
.header.sticky {
  padding: 0.5rem 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(255, 255, 255, 0.04);
}
.header .top {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 0.75rem;
}
@media (max-width: 767px) {
  .header .top {
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.header .logo-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .header .logo-box {
    width: 100%;
  }
}
.header .logo {
  position: relative;
  z-index: 12;
  display: flex;
  gap: 0.5rem;
  transition: opacity 0.2s ease, filter 0.2s ease;
}
@media (any-hover: hover) {
  .header .logo:hover {
    opacity: 0.8;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
  }
}
.header .logo .logo-img {
  height: 1.5rem;
  object-fit: contain;
  width: fit-content;
  display: none;
}
@media (max-width: 767px) {
  .header .logo .logo-img {
    display: block;
  }
}
.header .logo .flag img {
  width: 1.875rem;
  height: 1.875rem;
  object-position: center;
  object-fit: cover;
  border-radius: 100%;
}
.header__list-btn {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
@media (max-width: 767px) {
  .header__list-btn {
    width: 100%;
  }
  .header__list-btn a {
    width: 100%;
    text-align: center;
  }
}
.header .menu-toggle {
  visibility: visible;
  opacity: 1;
  position: relative;
  width: 1.875rem;
  height: 1.25rem;
  display: none;
  z-index: 99;
  cursor: pointer;
}
.header .menu-toggle.is-active small {
  transform: scale(0);
}
.header .menu-toggle.is-active::before {
  transform: rotate(45deg);
  top: 0.5625rem;
}
.header .menu-toggle.is-active::after {
  transform: rotate(-45deg);
  bottom: 0.5625rem;
  width: 100%;
}
.header .menu-toggle small {
  margin-left: 0.9375rem;
  position: absolute;
  background: rgb(255, 255, 255);
  right: 0;
  top: 0.5625rem;
  width: 60%;
  height: 2px;
  transition: all 0.1s;
}
.header .menu-toggle::before, .header .menu-toggle::after {
  content: "";
  background: rgb(255, 255, 255);
  position: absolute;
  width: 100%;
  height: 0.125rem;
  right: 0;
  transition: all 0.3s;
}
.header .menu-toggle::before {
  top: 0;
}
.header .menu-toggle::after {
  bottom: 0;
  width: 100%;
}
@media (max-width: 767px) {
  .header .menu-toggle {
    display: block;
    margin-left: auto;
  }
}

.coin-box {
  margin-bottom: 3.125rem;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 1rem 0.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}
.coin-box::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6.25rem;
  height: 3.75rem;
  background: radial-gradient(ellipse, rgba(191, 3, 26, 0.3) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(0.5rem);
  z-index: 0;
}
.coin-box .coin {
  font-size: 130px;
  width: 0.1em;
  height: 1em;
  background: linear-gradient(rgb(140.7886597938, 2.2113402062, 19.1649484536), black);
  margin: auto;
  animation: rotate 3s infinite linear;
  transform-style: preserve-3d;
}
@media (max-width: 767px) {
  .coin-box .coin {
    font-size: 2.5rem;
  }
}
.coin-box .coin .side,
.coin-box .coin:before,
.coin-box .coin:after {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  overflow: hidden;
  background: #bf031a;
  border-radius: 50%;
  right: -0.396em;
  text-align: center;
  line-height: 1;
  color: #bf031a;
  text-shadow: 1px 2px 0 #7a0413, -1px -2px 0 #460416;
  transform: rotateY(-90deg);
  backface-visibility: hidden;
}
.coin-box .coin .tails,
.coin-box .coin:after {
  left: -0.396em;
  transform: rotateY(90deg);
}
.coin-box .coin:before,
.coin-box .coin:after {
  background: linear-gradient(rgb(140.7886597938, 2.2113402062, 19.1649484536), black);
  backface-visibility: hidden;
  transform: rotateY(90deg);
}
.coin-box .coin:after {
  transform: rotateY(-90deg);
}
.coin-box .imageCoin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  min-height: 1em;
  background-color: #bf031a;
}
@keyframes rotate {
  100% {
    transform: rotateY(360deg);
  }
}

.footer {
  position: relative;
  margin-top: 1.875rem;
  padding-bottom: 30px;
  background-color: var(--footer_background);
}
.footer__contact {
  padding: 0.9375rem;
  border-radius: 0.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 1120px) {
  .footer__contact {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem 0.5rem;
  }
}
@media (max-width: 480px) {
  .footer__contact {
    grid-template-columns: 1fr 1fr;
  }
}
.footer__contact .item {
  flex: auto;
}
.footer__contact .links {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.footer__contact .title {
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
.footer__contact a {
  color: #fff;
  font-weight: 400;
  transition: all 0.3s;
  font-size: clamp(0.875rem, 0.8510638298vw, 1rem);
}
.footer__contact a:hover {
  opacity: 1;
  text-decoration: underline;
}
.footer__logo-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3.125rem;
  padding: clamp(1.25rem, 1.8617021277vw, 2.1875rem) 0;
}
@media (max-width: 767px) {
  .footer__logo-list {
    justify-content: center;
    gap: 0.9375rem;
  }
}
.footer__logo-list img {
  max-width: 8.75rem;
  max-height: 2.1875rem;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .footer__logo-list img {
    max-width: 5rem;
  }
}
.footer__logo-list a {
  transition: all 0.3s ease 0s;
  opacity: 1;
}
.footer__logo-list a:hover {
  opacity: 0.6;
}
.footer .copyright {
  padding: 0.9375rem;
  border-radius: 0.5rem;
  margin-top: 0.9375rem;
  font-size: 0.875rem;
}
.footer .copyright a {
  color: rgb(66, 66, 66);
  transition: all 0.3s;
}
.footer .copyright a:hover {
  opacity: 0.7;
}
@media (max-width: 1120px) {
  .footer .copyright {
    text-align: center;
  }
}

.wrap {
  position: fixed;
  right: 30px;
  bottom: 100px;
  z-index: 10;
}
.wrap .wallet {
  width: 64px;
  height: 64px;
  position: relative;
  cursor: pointer;
}
.wrap .wallet::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(224, 33, 74, 0.45);
  animation: wallet-ring 2s ease-out infinite;
  pointer-events: none;
}
.wrap .wallet:hover .icon {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(224, 33, 74, 0.55);
}
@keyframes wallet-ring {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  80% {
    transform: scale(1.45);
    opacity: 0;
  }
  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}
.wrap .icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #e0214a, #b8182f);
  color: #fff;
  position: relative;
  z-index: 101;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 16px rgba(224, 33, 74, 0.45);
}
.wrap .coin {
  position: absolute;
  top: var(--coin-from-x, 24px);
  left: var(--coin-from-y, 24px);
  z-index: 100;
  opacity: 0;
}
.wrap .coin::after {
  content: "$";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  font-size: 10px;
  color: rgb(237, 196, 107);
  background: rgb(227, 162, 23);
  border: 2px solid rgb(237, 196, 107);
  border-radius: 50%;
  opacity: 0;
}
.wrap .coin--animated,
.wrap .coin--animated::after {
  animation-delay: var(--coin-delay, 0s);
  animation-duration: var(--coin-duration, 1.5s);
  animation-direction: normal;
  animation-fill-mode: both;
  animation-play-state: running;
  animation-iteration-count: infinite;
}
.wrap .coin--animated {
  animation-name: coin-x-axis;
  animation-timing-function: ease-in;
}
.wrap .coin--animated::after {
  animation-name: coin-y-axis-and-flip;
  animation-timing-function: ease-out;
}
@keyframes coin-x-axis {
  30% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  to {
    left: calc(var(--coin-to-x) * 1.5);
  }
}
@keyframes coin-y-axis-and-flip {
  30% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  to {
    transform: translateY(calc(var(--coin-to-y) * 1.5)) rotate3d(1, 1, 1, 1080deg);
  }
}

.is-active .sidebar {
  width: 17.5rem;
}
@media (max-width: 767px) {
  .is-active .sidebar {
    transform: translateX(0);
    box-shadow: 0.5rem 0 2rem rgba(0, 0, 0, 0.6);
  }
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: fit-content;
  min-width: 5rem;
  background-color: #1d1d21;
  border-right: 2px solid rgba(255, 255, 255, 0.12);
  transition: width 0.3s ease;
  z-index: 200;
  overflow: visible;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .sidebar {
    transform: translateX(-100%);
    width: 17.5rem;
    transition: transform 0.35s ease;
    box-shadow: none;
  }
}
@media (min-width: 778px) {
  .sidebar.is-collapsed {
    width: 5rem;
  }
  .sidebar.is-collapsed .sidebar__toggle svg {
    transform: rotate(180deg);
  }
  .sidebar.is-collapsed .sidebar__logo-full {
    display: none;
  }
  .sidebar.is-collapsed .sidebar__logo-short {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .sidebar.is-collapsed .sidebar__nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .sidebar.is-collapsed .sidebar__nav a {
    justify-content: center;
    padding: 0.625rem 0;
    font-size: 0;
    color: transparent;
    gap: 0;
  }
  .sidebar.is-collapsed .sidebar__nav a .menu-icon {
    width: 1.75rem;
    height: 1.75rem;
    flex-shrink: 0;
  }
  .sidebar.is-collapsed .sidebar__nav i {
    display: none;
  }
  .sidebar.is-collapsed .sidebar__footer {
    opacity: 0;
    pointer-events: none;
    height: 0;
    padding: 0;
    margin: 0;
    border: none;
    overflow: hidden;
  }
}
.sidebar__toggle {
  position: absolute;
  top: 2.375rem;
  right: 0;
  transform: translateX(50%);
  width: 2.25rem;
  height: 2.25rem;
  background-color: #242429;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #9ca3af;
  transition: color 0.3s ease;
  z-index: 10;
  flex-shrink: 0;
}
.sidebar__toggle svg {
  transition: transform 0.3s ease;
  width: 1rem;
  height: 1rem;
  display: block;
}
@media (any-hover: hover) {
  .sidebar__toggle:hover {
    color: #fff;
  }
}
@media (max-width: 767px) {
  .sidebar__toggle {
    display: none;
  }
}
.sidebar__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2rem 1.5rem;
  gap: 1.25rem;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: #29292e transparent;
}
.sidebar__inner::-webkit-scrollbar {
  width: 4px;
}
.sidebar__inner::-webkit-scrollbar-thumb {
  background: #29292e;
  border-radius: 4px;
}
.sidebar__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  overflow: hidden;
  flex-shrink: 0;
}
.sidebar__logo img {
  max-width: 8.375rem;
  width: 100%;
  object-fit: contain;
  transition: max-width 0.2s ease 0.1s, opacity 0.2s ease;
}
.sidebar__logo-full {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sidebar__logo-short {
  display: none;
}
.sidebar__logo-short img {
  max-width: 2rem;
}
.sidebar__nav {
  flex: 1;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.sidebar__nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
}
.sidebar__nav li {
  display: block;
  margin: 0;
  padding: 0;
}
.sidebar__nav a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0.625rem;
  border-radius: 0.5rem;
  color: rgb(192, 192, 192);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.3;
  transition: background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.sidebar__nav a .menu-icon {
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
}
@media (any-hover: hover) {
  .sidebar__nav a:hover {
    background-color: #232328;
    color: #cbbe89;
  }
}
.sidebar__nav .current-menu-item > a,
.sidebar__nav .current-page-ancestor > a {
  background-color: #232328;
  color: #cbbe89;
  box-shadow: inset 0.1875rem 0 0 #cbbe89;
}
.sidebar__nav .sub-menu {
  margin-top: 0.25rem;
  margin-left: 0.75rem;
}
.sidebar__nav .sub-menu a {
  font-size: 0.8125rem;
  padding: 0.5rem 0.75rem;
  color: #9ca3af;
}
.sidebar__nav .sidebar-nav-list > li + li.menu-item-has-children,
.sidebar__nav .sidebar-nav-list > li.menu-item-has-children + li {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.sidebar__nav .menu-item-has-children > a {
  justify-content: space-between;
}
.sidebar__nav .menu-item-has-children > a i {
  font-size: 0.75rem;
  color: #797986;
  transition: transform 0.3s;
}
.sidebar__nav .menu-item-has-children.is-active > a i {
  transform: rotate(180deg);
}
.sidebar__footer {
  padding-top: 1.25rem;
  margin-top: 0.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}
.sidebar__footer a,
.sidebar__footer .btn {
  display: block;
  text-align: center;
  width: 100%;
  padding: 0.625rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  border-radius: 0.5rem;
}

@media (min-width: 778px) {
  body {
    padding-left: var(--sidebar-w, 17.5rem);
    transition: padding-left 0.3s ease;
  }
  body.sidebar-collapsed {
    padding-left: 5rem;
  }
  .header {
    width: 100%;
    position: sticky;
  }
  .header .bottom nav {
    display: none;
  }
}
.information {
  padding-top: clamp(1.875rem, 3.1914893617vw, 3.75rem);
}
.information ul, .information ol {
  margin-left: 20px;
}
.information.column .column__box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 767px) {
  .information.column .column__box {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.information .image-full-img {
  display: flex;
  transition: all 0.3s ease 0s;
}
.information .image-full-img:hover {
  transform: scale(1.02) !important;
}
.information .text-image__box {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.2fr 0.8fr;
}
@media (max-width: 767px) {
  .information .text-image__box {
    gap: 1.5rem;
    grid-template-columns: 1fr;
  }
}
.information .text-image__box .left {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.information .text-image__box .image-right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.information .text-image__box img {
  max-height: 25rem;
  object-fit: contain;
}
@media (max-width: 767px) {
  .information .text-image__box img {
    max-height: 25rem;
    margin: auto;
  }
}
.information .list-number__box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 767px) {
  .information .list-number__box {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.information .list-number__box h3 span {
  border: 2px solid #6a8f6e;
  color: #6a8f6e;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  padding-bottom: 0.0625rem;
  margin-right: 0.75rem;
}
.information table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 1.5rem 0;
  text-align: left;
  display: table;
  overflow-x: auto;
  border-radius: 0.875rem;
  -webkit-overflow-scrolling: touch;
}
.information thead {
  position: sticky;
  top: 0;
  z-index: 1;
}
.information th {
  background: linear-gradient(135deg, #e0214a 0%, #b8182f 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.875rem 1.25rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
  text-align: left;
  white-space: nowrap;
}
.information th:first-child {
  border-radius: 0.875rem 0 0 0;
}
.information th:last-child {
  border-radius: 0 0.875rem 0 0;
}
.information td {
  padding: 0.75rem 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
  background-color: var(--card_item_background);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background-color 0.2s ease;
  white-space: nowrap;
}
.information tr:nth-child(even) td {
  background-color: rgba(255, 255, 255, 0.025);
}
.information tr:last-child td {
  border-bottom: none;
}
.information tr:last-child td:first-child {
  border-radius: 0 0 0 0.875rem;
}
.information tr:last-child td:last-child {
  border-radius: 0 0 0.875rem 0;
}
.information tbody tr:hover td {
  background-color: rgba(224, 33, 74, 0.09) !important;
}

.single-button {
  text-align: center;
  padding-top: clamp(1.875rem, 3.1914893617vw, 3.75rem);
}
.single-button .btn::after {
  content: none;
}
.single-button .btn:hover {
  opacity: 0.8;
}

.breadcrumb {
  padding: clamp(1.5rem, 2.6595744681vw, 3.125rem) 0;
}

::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

::-webkit-scrollbar-track {
  background: #181818;
}

::-webkit-scrollbar-thumb {
  background: #0e5046;
  border-radius: 4px;
}

/* Для Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #0e5046 #181818;
}

.breadcrumb {
  list-style: none;
  display: flex;
  align-items: center;
  padding: 1.25rem 0;
}

.breadcrumb a {
  font-size: 1rem;
}

img.aligncenter {
  margin: 30px auto;
}

img.alignleft {
  margin-right: auto;
}

img.alignright {
  margin-left: auto;
}
