@charset "UTF-8";
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video,
button {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
}

body {
  line-height: 1;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  text-decoration: none;
  color: black;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

button {
  letter-spacing: normal;
  white-space: nowrap;
  text-transform: none;
  cursor: pointer;
  background-color: transparent;
  border: none;
  padding: 0;
}

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

fieldset,
img {
  border: 0;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-size: 100%;
  border: none;
}

input,
button,
textarea,
select {
  outline: none;
}

img {
  display: inline-block;
  max-width: 100%;
  max-height: 100%;
}

a,
input[type=submit],
button,
a:before,
a:after,
button:before,
button:after,
a > *,
button > * {
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

ol,
ul {
  list-style: none;
}

* {
  -webkit-tap-highlight-color: transparent;
}

@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/roboto-condensed.woff2") format("woff2");
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url("../fonts/open-sans.woff2") format("woff2");
}
@font-face {
  font-family: "Merriweather Sans";
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url("../fonts/merriweather-sans.woff2") format("woff2");
}
:root {
  --color-nav-back: #054248;
  --color-nav-front: #124b51;
  --color-bg: #008480;
  --color-white: #fff;
  --color-light-blue: #00ffe5;
  --color-black-green: #054146;
  --color-red: #f04c44;
  --color-green-text: #0a6d76;
  --color-red-text: #f00;
  --primary-transition: 0.2s ease-in-out;
  --secondary-transition: 0.4s ease-in-out;
}

/* --------------GLOBAL-------------- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  background: var(--color-bg);
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-white);
  text-align: left;
  min-height: 100vh;
  overflow-x: hidden;
}

p {
  margin-top: 20px;
  width: 100%;
}
p:first-child {
  margin-top: 0;
}

.title + p {
  margin-top: 0;
}

ul,
ol {
  text-align: left;
  width: 100%;
}

/* ----------------Content---------------- */
.content,
.cover {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.content {
  display: flex;
  padding: 20px;
  border-radius: 6px;
  margin-top: 20px;
  border-radius: 5px;
  background: var(--bck-white, #fff);
}
@media (max-width: 850px) {
  .content {
    padding: 15px;
  }
}
@media (max-width: 450px) {
  .content {
    padding: 10px;
  }
}

.content-bg > .background + * {
  margin-top: 0;
}
.content-bg p {
  color: #fff;
}

.cover {
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 1580px) {
  .cover {
    padding-left: calc(50% - 790px);
    padding-right: calc(50% - 790px);
  }
}

.content > *,
.cover > * {
  display: block;
  position: relative;
}

.main__buttons {
  display: none;
}
@media (max-width: 650px) {
  .main__buttons {
    background: rgba(5, 66, 71, 0.7);
    display: flex;
    justify-content: space-between;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    padding: 15px;
  }
}
@media (max-width: 450px) {
  .main__buttons {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* ----------------Main------------- */
.main {
  position: relative;
  margin: 0 auto;
  padding: 84px 20px 10px 20px;
  display: flex;
}
.main__content {
  position: relative;
  margin-left: 15px;
  margin-right: 5px;
  flex: 1 1 calc(100% - 40px - 240px - 240px);
  overflow: hidden;
}
@media (max-width: 1350px) {
  .main__content {
    margin-right: 0;
    flex: 1 1 calc(100% - 20px - 240px);
  }
}
@media (max-width: 1200px) {
  .main__content {
    margin-left: 0;
    flex: 1 1 100%;
  }
}
@media (min-width: 1580px) {
  .main {
    padding-left: calc(50% - 790px);
    padding-right: calc(50% - 790px);
  }
}
@media (max-width: 1350px) {
  .main {
    padding-bottom: 20px;
  }
}
@media (max-width: 650px) {
  .main__buttons .button {
    width: calc(50% - 4px);
    padding-left: 12px;
    padding-right: 12px;
    margin: 0;
    min-width: 0;
  }
}

@media (max-width: 850px) {
  .main,
  .header,
  .footer {
    padding-left: 15px;
    padding-right: 15px;
  }
}
/* ---------------------H2 H3--------------------- */
h2,
h3,
h4 {
  display: block;
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: left;
  position: relative;
  width: 100%;
}

p {
  color: var(--color-green-text);
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}

h2 {
  color: var(--color-red-text);
  font-family: "Roboto Condensed";
  font-size: 28px;
  margin: 0;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: left;
  position: relative;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--stroke-red, #f00);
}
@media (max-width: 1200px) {
  h2 {
    font-style: 24;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 22px;
  }
}

h3 {
  color: var(--color-white);
  font-family: "Roboto Condensed";
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  text-transform: capitalize !important;
}
@media (max-width: 767px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-family: "Roboto Condensed";
  color: var(--color-white);
  font-weight: 700;
  font-size: 20px;
  line-height: normal;
}
@media (max-width: 450px) {
  h4 {
    font-size: 18px;
  }
}

h5 {
  font-weight: 700;
  font-size: 16px;
  line-height: normal;
}

/* ---------------------SPECIAL--------------------- */
.image img,
.background img {
  display: block;
  position: relative;
  margin: auto;
}

.background {
  display: block !important;
  position: absolute !important;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.js-expand-content {
  display: none;
  overflow: hidden;
}
.js-expand-content.expanded {
  height: 100%;
}

svg {
  display: inline-block;
  position: relative;
  vertical-align: inherit;
  fill: rgb(255, 255, 255);
  line-height: 1;
}

use {
  fill: rgb(255, 255, 255);
  fill-rule: evenodd;
  transition: all 0.5s;
}

.path {
  fill: inherit;
  stroke: inherit;
  stroke-width: inherit;
}

/* ---------------------- GLOBALS ---------------------- */
/* Header */
.header {
  background: var(--color-nav-back);
  flex-direction: row;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: auto;
  min-height: 80px;
  margin-top: 0;
  padding-top: 16px;
  padding-bottom: 16px;
  overflow: visible;
}
.header__logo img {
  max-width: 169px;
}
.header__menu {
  margin: 0 auto 0 95px;
}
.header__menu .header__button {
  display: none;
}
.header__menu ul {
  display: flex;
  align-items: center;
}
.header__menu ul li + li {
  margin-left: 32px;
}
@media (max-width: 1350px) {
  .header__menu ul li + li {
    margin-left: 16px;
  }
}
.header__menu ul a {
  position: relative;
  isolation: isolate;
  display: inline-block;
  color: var(--color-white);
  font-family: "Open Sans";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.header__menu ul a::before {
  content: "";
  position: absolute;
  inset: -10px -28px;
  border-radius: 38px;
  background: transparent;
  transition: background var(--primary-transition);
  z-index: -1;
}
.header__menu ul a:hover::before {
  background: rgba(255, 255, 255, 0.1);
}
.header__menu ul a:hover {
  color: #2db155;
}
.header__button {
  color: #fff;
  margin-top: 0;
}
.header__login, .header__signup {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 38px;
  padding: 10px 20px;
  min-width: 129px;
  border-radius: 38px;
  color: var(--color-white);
  text-align: center;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--primary-transition), box-shadow var(--primary-transition), background var(--primary-transition);
}
.header__login::before, .header__signup::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 25%, rgba(255, 255, 255, 0.35) 50%, transparent 75%);
  transform: translateX(-110%);
  transition: transform 0.6s ease;
  pointer-events: none;
  z-index: -1;
}
.header__login:hover, .header__signup:hover {
  transform: translateY(-2px);
}
.header__login:hover::before, .header__signup:hover::before {
  transform: translateX(110%);
}
.header__login:active, .header__signup:active {
  transform: translateY(0);
}
.header__login {
  margin-left: auto;
  background: #185b62;
}
.header__login:hover {
  background: #1f7681;
  box-shadow: 0 6px 18px -4px rgba(24, 91, 98, 0.7);
}
.header__signup {
  min-width: 182px;
  margin-left: 8px;
  background: #2eb256;
}
.header__signup:hover {
  background: #36c862;
  box-shadow: 0 6px 18px -4px rgba(46, 178, 86, 0.7);
}
.header__time {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.69231;
  color: var(--color-white);
  margin-left: 16px;
}
.header__time img {
  max-width: 17px;
  margin-right: 5px;
}

.logo {
  display: inline-block;
}
.logo img {
  display: block;
}
.logo[href]:hover {
  transform: scale(1.05);
}

.menu-button,
.header__menu .header__button {
  display: none;
}

.menu {
  background: var(--color-nav-front);
  border-radius: 38px;
  padding: 10px 28px;
}

@media (max-width: 1200px) {
  .header__logo {
    margin-right: auto;
  }
  .menu-button {
    display: block;
    background-color: transparent;
    padding: 10px;
    width: 40px;
    height: 40px;
    order: 1;
    flex: none;
    margin-left: 20px;
  }
  .menu-button svg {
    display: block;
    margin: auto;
  }
  .menu-button svg rect {
    transform-origin: 50% 50%;
    fill: #fff;
  }
  .menu-button.active svg rect:nth-child(1) {
    x: -2px;
    y: 6px;
    width: 20px;
    transform: rotate(225deg);
  }
  .menu-button.active svg rect:nth-child(2) {
    transform-origin: 50% 50%;
    transform: scale(0, 2);
  }
  .menu-button.active svg rect:nth-child(3) {
    x: -2px;
    y: 6px;
    width: 20px;
    transform: rotate(135deg);
  }
  .header__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #054248;
    z-index: 100;
    margin: 0;
    border-radius: 0;
    display: none;
    padding: 25px;
    text-align: center;
    overflow-y: auto;
    max-height: calc(100vh - 80px);
  }
  .header__menu ul {
    flex-direction: column;
    text-align: center;
  }
  .header__menu ul li + li {
    margin-left: 0;
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .header > .header__button {
    display: none;
  }
  .header__menu .header__button {
    display: inline-block;
    min-width: 200px;
    margin: 0 5px 20px;
  }
}
@media (max-width: 450px) {
  .header,
  .main,
  .footer {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 400px) {
  .menu-button,
  .header__time {
    margin-left: 10px;
  }
  .header__logo img {
    max-width: 110px;
  }
}
/* Languages */
.header__language {
  position: relative;
  flex: none;
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 15px;
  text-transform: uppercase;
  color: #fff;
  margin-left: 16px;
}
.header__language img {
  max-width: 24px;
  max-height: 24px;
  width: 24px;
  height: 24px;
  overflow: hidden;
  border-radius: 100%;
  margin-right: 5px;
}

/* Sidebar */
.sidebar {
  width: 250px;
  flex: 0 0 250px;
  position: sticky;
  top: 80px;
  height: calc(100vh - 80px);
  overflow: auto;
  z-index: 10;
  padding-top: 10px;
}
.sidebar::-webkit-scrollbar {
  display: none;
}
.sidebar__item {
  position: relative;
}
.sidebar__item + .sidebar__item {
  margin-top: 4px;
}

/* Sidebar__left */
.sidebar__top li + li {
  margin-top: 2px;
}
.sidebar__top li a {
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.14;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-black-green);
  border-radius: 3px;
  padding: 10px;
}
.sidebar__top li a:hover {
  text-shadow: 0 0.3px #fff, 0.3px 0 #fff;
}
.sidebar__top li a img {
  max-width: 18px;
  margin-right: 12px;
}

.events {
  background: #fffaeb;
  border-radius: 6px;
  overflow: hidden;
}
.events__link {
  background: #fffaeb;
  padding: 14px 11px;
}
.events__link a {
  position: relative;
  display: flex;
  align-items: center;
  background: url(../images/events-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 38px;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.33333;
  text-transform: uppercase;
  color: var(--color-white);
  padding: 4px 5px;
}
.events__link a span:first-child,
.events__link a span:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 8px;
  width: 28px;
  height: 28px;
  background: var(--color-white);
  margin-right: 8px;
}
.events__link a span:last-child {
  background: none;
  margin-left: 10px;
}
.events__link a img {
  max-width: 7px;
}
.events ul {
  background: var(--color-white);
  border-radius: 3px 3px 0 0;
}
.events ul li + li {
  border-top: 1px solid #f1f3f5;
}
.events ul li a {
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.6;
  background: rgba(255, 255, 255, 0);
  padding: 7px 7px 7px 10px;
  color: #9299a2;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  overflow: hidden;
  transition: color var(--primary-transition), padding-left var(--primary-transition), background var(--primary-transition);
}
.events ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #2eb256;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.events ul li a:hover {
  background: linear-gradient(to right, rgba(46, 178, 86, 0.12), rgba(46, 178, 86, 0));
  color: #0a626a;
  font-weight: 600;
  padding-left: 14px;
}
.events ul li a:hover::before {
  transform: scaleY(1);
}
.events ul li a:hover img {
  transform: scale(1.15);
}
.events ul li a img {
  max-width: 20px;
  margin-right: 10px;
  transition: transform var(--primary-transition);
}

.sidebar__links {
  border-radius: 6px;
  overflow: hidden;
}
.sidebar__links-button {
  background: var(--color-black-green);
  color: var(--color-white);
  text-align: left;
  position: relative;
  white-space: normal;
  width: 100%;
  padding: 16px;
  color: var(--color-white);
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.6;
  transition: background var(--primary-transition);
}
.sidebar__links-button::before {
  content: "";
  background: url(../images/icon-arrow-down-sidebar.svg);
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  top: 20px;
  right: 16px;
  width: 13px;
  height: 13px;
  transform: rotate(180deg);
  transition: transform 0.3s ease, filter var(--primary-transition);
}
.sidebar__links-button:hover {
  background: #34626b;
}
.sidebar__links-button:hover::before {
  filter: drop-shadow(0 0 4px rgba(65, 175, 90, 0.8));
}
.sidebar__links-button.active::before {
  transform: rotate(0deg);
}
.sidebar__links-list {
  background: var(--color-black-green);
}
.sidebar__links-list a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  padding: 8px 8px 8px 16px;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-white);
  overflow: hidden;
  transition: background var(--primary-transition), padding-left var(--primary-transition);
}
.sidebar__links-list a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #41af5a;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.3s ease;
  box-shadow: 0 0 10px rgba(65, 175, 90, 0.7);
}
.sidebar__links-list a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(65, 175, 90, 0.18), rgba(65, 175, 90, 0));
  opacity: 0;
  transition: opacity var(--primary-transition);
  pointer-events: none;
}
.sidebar__links-list a:hover {
  background: #34626b;
  padding-left: 20px;
}
.sidebar__links-list a:hover::before {
  transform: scaleY(1);
}
.sidebar__links-list a:hover::after {
  opacity: 1;
}

@media (max-width: 1200px) {
  .sidebar__left,
  .sidebar__menu {
    display: none;
  }
  .sidebar__links-button::before {
    transform: rotate(0deg);
  }
  .sidebar__links-button.active::before {
    transform: rotate(180deg);
  }
  .sidebar__links-list {
    display: none;
  }
}
/* Sidebar-main */
.sidebar__links-main {
  display: none;
}
@media (max-width: 1200px) {
  .sidebar__links-main {
    display: block;
    margin-bottom: 20px;
  }
}

/* Aside__right */
.sidebar__right {
  z-index: 2;
}
@media (max-width: 1350px) {
  .sidebar__right {
    display: none;
  }
}

.aside__wrap-right {
  margin-bottom: 50px;
}
.aside__wrap-right > * + * {
  margin-top: 8px;
}

.mobile {
  position: relative;
  display: block;
  border-radius: 5px;
  overflow: hidden;
  background: var(--color-white);
}
.mobile__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  height: 45px;
  padding: 0 15px;
  background: var(--color-white);
}
.mobile__link img {
  flex-shrink: 0;
  display: block;
}
.mobile__link img:first-child {
  width: 20px;
  height: 23px;
}
.mobile__link img:last-child {
  max-width: 27px;
}
.mobile__link span {
  position: relative;
  display: inline-block;
  padding-top: 8px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  color: #323946;
  text-align: center;
}
.mobile__link span::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 2px;
  background: #0c8f9b;
}
.mobile__text {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 70px;
  padding: 16px 6px;
  background: linear-gradient(90deg, #0c8b97 0%, #2db155 100%);
}
.mobile__text::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  pointer-events: none;
}
.mobile__text span {
  position: relative;
  display: block;
  max-width: 130px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--color-white);
}
.mobile__bottom {
  padding: 15px 4px;
  background: var(--color-white);
}
.mobile__image {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  pointer-events: none;
}
.mobile__image img {
  display: block;
  width: 125px;
  height: auto;
}
.mobile__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  padding: 10px 15px;
  background: var(--color-red);
  border-radius: 19px;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-white);
  transition: opacity var(--secondary-transition);
}
@media (hover: hover) {
  .mobile__button:hover {
    opacity: 0.85;
  }
}
@media (hover: none) {
  .mobile__button:active {
    opacity: 0.85;
  }
}

.sides {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.sides li {
  position: relative;
}
.sides li:nth-child(1), .sides li:nth-child(2) {
  width: calc((100% - 4px) / 2);
}
.sides li:nth-child(3) {
  width: 100%;
}
.sides li a {
  position: relative;
  display: block;
  height: 96px;
  border-radius: 5px;
  overflow: hidden;
}
@media (hover: hover) {
  .sides li a:hover .sides__image img {
    transform: scale(1.05);
  }
}
@media (hover: none) {
  .sides li a:active .sides__image img {
    transform: scale(1.05);
  }
}
.sides__image {
  display: block;
  width: 100%;
  height: 100%;
}
.sides__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: none;
  max-height: none;
  transition: transform var(--secondary-transition);
}
.sides__text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  background: #2db155;
  border-radius: 5px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--color-white);
  text-align: center;
}
.sides__icon {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: -35px;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 64px;
  height: 64px;
  padding-top: 8px;
  background: #2db155;
  border-radius: 50%;
}
.sides__icon img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  bottom: 12px;
}
.sides__name {
  position: relative;
  z-index: 2;
}

/* BUTTONS */
.first__button {
  position: relative;
  display: flex;
  height: 38px;
  padding: 6px 40px;
  justify-content: center;
  align-items: center;
  border-radius: 38px;
  background: var(--color-red);
  color: var(--color-white);
  text-align: center;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-top: 20px;
  overflow: hidden;
  transition: background var(--primary-transition), box-shadow var(--primary-transition);
}
.first__button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.3) 50%, transparent 65%);
  transform: translateX(-110%);
  transition: transform 0.6s ease;
  pointer-events: none;
}
.first__button:hover {
  background: #d83a33;
  box-shadow: 0 4px 16px -4px rgba(240, 76, 68, 0.55);
}
.first__button:hover::before {
  transform: translateX(110%);
}

/*  ---------------- BANNER  ---------------- */
.content.banner {
  height: 350px;
  padding: 0;
  background: #092a2d;
  align-items: stretch;
}
@media (max-width: 850px) {
  .content.banner {
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 650px) {
  .content.banner {
    height: 320px;
  }
}
@media (max-width: 450px) {
  .content.banner {
    height: 280px;
  }
}

.banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.banner__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 850px) {
  .banner__bg img {
    -o-object-position: 70%;
       object-position: 70%;
  }
}
@media (max-width: 650px) {
  .banner__bg img {
    -o-object-position: 75%;
       object-position: 75%;
  }
}
.banner__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(91deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 55%);
}
@media (max-width: 850px) {
  .banner__bg::after {
    background: rgba(0, 0, 0, 0.55);
  }
}
.banner__info {
  position: relative;
  z-index: 1;
  width: 770px;
  max-width: 100%;
  height: 100%;
  padding: 50px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media (max-width: 850px) {
  .banner__info {
    width: auto;
    max-width: 90%;
    height: auto;
    padding: 30px 25px;
    align-items: center;
    text-align: center;
    background: rgba(22, 67, 71, 0.7);
    backdrop-filter: blur(2px);
    border-radius: 10px;
  }
}
@media (max-width: 650px) {
  .banner__info {
    padding: 24px 18px;
  }
}
@media (max-width: 450px) {
  .banner__info {
    padding: 20px 14px;
  }
}
.banner__title {
  color: var(--color-white);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 850px) {
  .banner__title {
    margin-bottom: 8px;
  }
}
@media (max-width: 450px) {
  .banner__title {
    font-size: 20px;
  }
}
.banner__main {
  margin: 0;
  background: linear-gradient(180deg, #ffc700 26.48%, #ff8a00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 650px) {
  .banner__main {
    font-size: 28px;
  }
}
@media (max-width: 450px) {
  .banner__main {
    font-size: 24px;
  }
}

/* FOOTER */
.footer {
  background: var(--color-white);
  color: #27282e;
  padding: 0 265px 40px 275px;
}
.footer__menu {
  width: 100%;
  padding: 20px;
}
.footer__menu nav {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 650px) {
  .footer__menu nav {
    flex-wrap: wrap;
  }
}
.footer__menu-item {
  flex: 0 0 auto;
  min-width: 0;
}
@media (max-width: 650px) {
  .footer__menu-item {
    width: calc(50% - 10px);
  }
}
.footer__menu-title {
  position: relative;
  margin: 0;
  padding-bottom: 10px;
  color: #333a48;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.footer__menu-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 3px;
  background: #175f69;
}
.footer__menu-list {
  width: auto;
  margin-top: 15px;
}
.footer__menu-list li {
  padding: 8px 0;
}
.footer__menu-list a {
  color: #9198a1;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  transition: color var(--primary-transition);
}
.footer__menu-list a:hover {
  color: #175f69;
}
.footer__payments {
  width: 100%;
}
.footer__payments ul {
  width: 100%;
  max-width: 1023px;
  min-height: 86px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 22px;
}
.footer__payments li {
  display: flex;
  align-items: center;
  width: auto;
  height: auto;
}
.footer__payments img {
  display: block;
  max-height: 28px;
  width: auto;
}
.footer__text {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
@media (max-width: 450px) {
  .footer__text {
    flex-direction: column;
    align-items: center;
  }
}
.footer__desc {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  padding: 10px 10px 10px 0;
  text-align: center;
}
@media (max-width: 450px) {
  .footer__desc {
    padding: 0;
  }
}
.footer__desc p {
  margin: 0;
  width: 100%;
  text-align: center;
}
.footer__legal {
  color: #27282e;
  font-family: "Inter", "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 1.4;
}
.footer__warn, .footer__copy {
  color: #9198a1;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  line-height: 1.17;
}
.footer__age {
  flex: none;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #f04b42;
  border-radius: 50%;
  color: #f04b42;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 1580px) {
  .footer {
    padding-left: calc(50% - 790px + 265px);
    padding-right: calc(50% - 790px + 255px);
  }
}
@media (max-width: 1350px) {
  .footer {
    padding-right: 20px;
  }
}
@media (max-width: 1200px) {
  .footer {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 650px) {
  .footer {
    padding-bottom: 20px;
  }
}

/*  ---------------- FAQ  ---------------- */
.content.faq {
  align-items: flex-start;
}

.faq > * + * {
  margin-top: 20px;
}
.faq__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq__item {
  width: 100%;
  border: 1px solid #00ffbb;
  border-radius: 12px;
  overflow: hidden;
}

.faq-item__title {
  width: 100%;
  padding: 16px;
  background: #008580;
  color: var(--color-white);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase !important;
  text-align: left;
  white-space: normal;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  border: 0;
  transition: background var(--primary-transition);
}
@media (max-width: 850px) {
  .faq-item__title {
    font-size: 18px;
  }
}
.faq-item__title:hover {
  background: #00736f;
}
.faq-item__title::after {
  content: "";
  flex: none;
  width: 24px;
  height: 24px;
  margin-left: auto;
  background: url("../images/icon-faq.svg") center no-repeat;
  background-size: 16px;
  transform: rotate(180deg);
  transition: transform var(--primary-transition);
}
.faq-item__title.active::after {
  transform: rotate(0deg);
}
.faq-item__desc {
  display: none;
  padding: 16px;
  background: #005e5b;
  color: var(--color-white);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
.faq-item__desc p {
  margin: 0;
  color: var(--color-white);
}

/*  ---------------- PRELINK  ---------------- */
.prelink__list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 12px;
}
.prelink__item {
  display: flex;
}
.prelink__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: linear-gradient(180deg, #0c8792 0%, #054146 100%);
  border-radius: 8px;
  color: var(--color-white);
  font-family: "Merriweather Sans";
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  transition: box-shadow var(--primary-transition);
}
.prelink__link:hover {
  box-shadow: 0 0 12px 0 rgba(12, 135, 146, 0.9);
}
.prelink__link img {
  flex: none;
  display: block;
  width: 18px;
  height: 18px;
  max-width: 18px;
  max-height: 18px;
  border-radius: 100%;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Arrow-top */
.main__top {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: -100;
}
.main__arrowtop {
  position: fixed;
  right: 218px;
  bottom: 20px;
  z-index: 9;
  width: 42px;
  height: 42px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.main__arrowtop.is-visible {
  opacity: 1;
  visibility: visible;
}
.main__arrowtop a {
  display: block;
  width: 42px;
  height: 42px;
}
.main__arrowtop a img {
  max-width: 42px;
}
.main__arrowtop a:hover {
  transform: scale(1.05);
}
@media (min-width: 1580px) {
  .main__arrowtop {
    right: calc(50% - 582px);
  }
}
@media (max-width: 1350px) {
  .main__arrowtop {
    right: 25px;
    bottom: 25px;
  }
}
@media (max-width: 850px) {
  .main__arrowtop {
    right: 20px;
    bottom: 20px;
  }
}
@media (max-width: 450px) {
  .main__arrowtop {
    right: 10px;
    bottom: 10px;
  }
}

/* ---------------------- INDEX ---------------------- */
/* Prime */
.prime {
  background: #092a2d;
  min-height: 480px;
  color: var(--color-white);
  align-items: flex-start;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 20px;
}
.prime__wrap {
  max-width: 840px;
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 850px) {
  .prime__wrap {
    background: rgba(22, 67, 71, 0.7);
    backdrop-filter: blur(2px);
  }
}
@media (max-width: 650px) {
  .prime__wrap {
    align-items: center;
    text-align: center;
  }
}
.prime__wrap p {
  color: var(--color-white);
}
.prime__rating {
  color: var(--color-white);
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.6;
  margin-bottom: 6px;
}
.prime__rating-value {
  margin-left: 6px;
}
.prime__title {
  margin-bottom: 0;
}
.prime__text {
  color: var(--color-white);
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 8px;
}
@media (max-width: 850px) {
  .prime__background img {
    -o-object-position: 70%;
       object-position: 70%;
    opacity: 1;
  }
}
@media (max-width: 650px) {
  .prime__background img {
    -o-object-position: 75%;
       object-position: 75%;
  }
}
@media (max-width: 650px) {
  .prime {
    align-items: center;
  }
}

@media (max-width: 1400px) {
  .upto__background img {
    opacity: 0.6;
  }
}

h1 {
  color: #00ffe5;
  font-family: "Roboto Condensed";
  font-size: 34px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 850px) {
  h1 {
    font-size: 28px;
  }
}
@media (max-width: 650px) {
  h1 {
    text-align: center;
    font-size: 26px;
  }
}
@media (max-width: 450px) {
  h1 {
    font-size: 24px;
  }
}

/* PLAYER */
.player {
  text-align: left;
}
.player > p {
  color: var(--color-green-text);
}

/* --------------TECHNICAL-------------*/
.content.technical {
  align-items: flex-start;
}

.technical > * + * {
  margin-top: 20px;
}
.technical > p {
  margin-top: 20px;
}
.technical__wrap {
  position: relative;
  width: 100%;
  padding: 0 20px;
  border: 1px solid #00ffbb;
  border-radius: 5px;
  background: var(--color-bg);
  backdrop-filter: blur(7.5px);
  overflow-x: auto;
}
.technical__wrap::-webkit-scrollbar {
  height: 6px;
}
.technical__wrap::-webkit-scrollbar-track {
  background: transparent;
}
.technical__wrap::-webkit-scrollbar-thumb {
  background: rgba(0, 255, 187, 0.4);
  border-radius: 3px;
}
.technical__wrap > table {
  width: 100%;
  min-width: 720px;
}
.technical__wrap > table tr {
  display: flex;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid rgba(0, 255, 187, 0.12);
}
.technical__wrap > table tr:last-child {
  border-bottom: 0;
}
.technical__wrap > table th,
.technical__wrap > table td {
  padding-right: 16px;
  text-align: left;
}
.technical__wrap > table th:first-child,
.technical__wrap > table td:first-child {
  flex: 0 0 350px;
  width: 350px;
}
@media (max-width: 650px) {
  .technical__wrap > table th:first-child,
  .technical__wrap > table td:first-child {
    flex: 0 0 200px;
    width: 200px;
  }
}
@media (max-width: 450px) {
  .technical__wrap > table th:first-child,
  .technical__wrap > table td:first-child {
    flex: 0 0 160px;
    width: 160px;
  }
}
.technical__wrap > table th:last-child,
.technical__wrap > table td:last-child {
  flex: 1 1 0;
  padding-right: 0;
}
.technical__wrap > table th > a,
.technical__wrap > table td > a {
  color: var(--color-white);
}
.technical__wrap > table th {
  padding-top: 16px;
  padding-bottom: 16px;
  color: var(--color-light-blue);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 450px) {
  .technical__wrap > table th {
    font-size: 18px;
  }
}
.technical__wrap > table td {
  padding-top: 20px;
  padding-bottom: 20px;
  color: var(--color-white);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
@media (max-width: 650px) {
  .technical__wrap > table td {
    padding-top: 14px;
    padding-bottom: 14px;
  }
}

/* --------------FEATURES-------------*/
.content.features {
  align-items: flex-start;
}

.features__row {
  display: flex;
  gap: 12px;
  width: 100%;
  margin-top: 20px;
}
@media (max-width: 850px) {
  .features__row {
    flex-direction: column;
    gap: 16px;
  }
}
.features__row > div:first-child {
  flex: 1 1 0;
  min-width: 0;
}
.features__row > div:first-child p {
  color: var(--color-green-text);
}
.features__row > div:last-child {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  align-self: stretch;
  border-radius: 5px;
  overflow: hidden;
}
@media (max-width: 850px) {
  .features__row > div:last-child {
    min-height: 350px;
  }
}
@media (max-width: 650px) {
  .features__row > div:last-child {
    min-height: 240px;
  }
}
.features__row > div:last-child img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  -o-object-fit: cover;
     object-fit: cover;
}

/* --------------PROS---------*/
.content.pros {
  align-items: flex-start;
}

.pros > p {
  color: var(--color-green-text);
}
.pros__wrap {
  width: 100%;
  margin-top: 20px;
  padding: 16px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 10px;
  border: 1px solid #00ffbb;
  border-radius: 5px;
  background: var(--color-bg);
}
@media (max-width: 850px) {
  .pros__wrap {
    flex-direction: column;
    padding: 15px;
    gap: 24px;
  }
}
.pros__col {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border-radius: 12px;
  backdrop-filter: blur(7.5px);
}
@media (max-width: 850px) {
  .pros__col + .pros__col {
    padding-top: 10px;
  }
}
.pros__col + .pros__col::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -5px;
  width: 1px;
  height: 90%;
  transform: translateY(-50%);
  background: linear-gradient(to bottom, transparent 0%, #00ffbb 50%, transparent 100%);
}
@media (max-width: 850px) {
  .pros__col + .pros__col::before {
    top: -12px;
    left: 50%;
    width: 90%;
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(to right, transparent 0%, #00ffbb 50%, transparent 100%);
  }
}
.pros__col > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
}
.pros__col > div > img {
  flex: none;
  width: 50px;
  height: 50px;
  border: 1px solid #00ffbb;
  border-radius: 12px;
  background: rgba(64, 67, 128, 0.4);
  -o-object-fit: cover;
     object-fit: cover;
}
.pros__col > div > strong {
  color: var(--color-light-blue);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  white-space: nowrap;
}
.pros__col > ul {
  width: 100%;
}
.pros__col > ul li {
  position: relative;
  width: 100%;
  padding: 20px 16px;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-white);
}
.pros__col > ul li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, #00ffbb 50%, transparent 100%);
}

/*  ---------------- REGISTER  ---------------- */
.content.register {
  align-items: flex-start;
}

.register > p {
  color: var(--color-green-text);
}
.register > h3 {
  margin-top: 20px;
  width: 100%;
  color: var(--color-red-text);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase !important;
}
@media (max-width: 850px) {
  .register > h3 {
    font-size: 20px;
  }
}
.register__block {
  width: 100%;
  margin-top: 20px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 5px;
  background: var(--color-bg);
}
.register__block > h3 {
  width: 100%;
  margin: 0;
  color: var(--color-light-blue);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase !important;
}
@media (max-width: 850px) {
  .register__block > h3 {
    font-size: 20px;
  }
}
.register__block > p {
  margin: 0;
  color: var(--color-white);
}
.register__block > .first__button {
  margin-top: 0;
  align-self: flex-start;
}
.register__row {
  display: flex;
  gap: 12px;
  width: 100%;
}
@media (max-width: 850px) {
  .register__row {
    flex-direction: column;
  }
}
.register__row > ol {
  flex: 1 1 0;
  min-width: 0;
  padding: 6px 16px;
  border: 1px solid var(--color-red-text);
  border-radius: 5px;
  background: var(--color-white);
  box-shadow: 0 0 30px 10px rgba(0, 255, 229, 0.3);
  counter-reset: register-step;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.register__row > ol li {
  counter-increment: register-step;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: var(--color-green-text);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.6;
  border-bottom: 1px solid rgba(255, 0, 0, 0.12);
}
.register__row > ol li:last-child {
  border-bottom: 0;
}
.register__row > ol li::before {
  content: counter(register-step);
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--color-red-text);
  border-radius: 40px;
  color: var(--color-green-text);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}
.register__row > div {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  align-self: stretch;
  border-radius: 5px;
  overflow: hidden;
}
@media (max-width: 850px) {
  .register__row > div {
    min-height: 350px;
  }
}
@media (max-width: 650px) {
  .register__row > div {
    min-height: 240px;
  }
}
.register__row > div > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 10%;
     object-position: center 10%;
}
.register__row > div:first-child > img {
  -o-object-fit: cover;
     object-fit: cover;
}

/*  ---------------- DOWNLOAD  ---------------- */
.content.download {
  height: 350px;
  padding: 0;
  background: #092a2d;
  align-items: center;
  justify-content: center;
}
@media (max-width: 850px) {
  .content.download {
    height: auto;
    min-height: 280px;
    padding: 40px 20px;
  }
}
@media (max-width: 450px) {
  .content.download {
    padding: 30px 10px;
  }
}

.download__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.download__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  -o-object-fit: cover;
     object-fit: cover;
}
.download__buttons {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 15vw, 320px);
}
@media (max-width: 850px) {
  .download__buttons {
    flex-direction: column;
    gap: 18px;
  }
}
.download__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 268px;
  max-width: 100%;
  height: 56px;
  padding: 12px 24px;
  border: 1px solid #fcc211;
  border-radius: 8px;
  background: var(--color-red);
  color: var(--color-white);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  transition: background var(--primary-transition), box-shadow var(--primary-transition);
}
.download__button img {
  flex: none;
  width: 32px;
  height: 32px;
}
.download__button:hover {
  background: #d83a33;
  box-shadow: 0 4px 16px -4px rgba(252, 194, 17, 0.6);
}

/*  ---------------- CASINO APP  ---------------- */
.content.casinoapp {
  align-items: flex-start;
}

.casinoapp > * + * {
  margin-top: 20px;
}
.casinoapp > p {
  margin-top: 20px;
  color: var(--color-green-text);
}
.casinoapp__block {
  width: 100%;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 5px;
  background: var(--color-bg);
}
.casinoapp__block > h3 {
  width: 100%;
  margin: 0;
  color: var(--color-light-blue);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase !important;
}
@media (max-width: 850px) {
  .casinoapp__block > h3 {
    font-size: 20px;
  }
}
.casinoapp__block > p {
  margin: 0;
  color: var(--color-white);
}
.casinoapp__block > .download__button {
  align-self: flex-start;
}
.casinoapp__row {
  display: flex;
  gap: 12px;
  width: 100%;
}
@media (max-width: 850px) {
  .casinoapp__row {
    flex-direction: column;
  }
}
.casinoapp__row > ol {
  flex: 1 1 0;
  min-width: 0;
  padding: 6px 16px;
  border: 1px solid var(--color-red-text);
  border-radius: 5px;
  background: var(--color-white);
  box-shadow: 0 0 30px 10px rgba(0, 255, 229, 0.3);
  counter-reset: casinoapp-step;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.casinoapp__row > ol li {
  counter-increment: casinoapp-step;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: var(--color-green-text);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.6;
  border-bottom: 1px solid rgba(255, 0, 0, 0.12);
}
.casinoapp__row > ol li:last-child {
  border-bottom: 0;
}
.casinoapp__row > ol li::before {
  content: counter(casinoapp-step);
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--color-red-text);
  border-radius: 40px;
  color: var(--color-green-text);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}
.casinoapp__row > div {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  align-self: stretch;
  border-radius: 5px;
  overflow: hidden;
}
@media (max-width: 850px) {
  .casinoapp__row > div {
    min-height: 350px;
  }
}
@media (max-width: 650px) {
  .casinoapp__row > div {
    min-height: 240px;
  }
}
.casinoapp__row > div > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 850px) {
  .casinoapp__block:first-of-type .casinoapp__row > div > img {
    -o-object-position: center 20%;
       object-position: center 20%;
  }
}

/*  ---------------- PROMOTIONS  ---------------- */
.content.promotions {
  align-items: flex-start;
}

.promotions > * + * {
  margin-top: 20px;
}
.promotions > p {
  margin-top: 20px;
  color: var(--color-green-text);
}
.promotions h3 {
  width: 100%;
  margin: 0;
  color: var(--color-light-blue);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase !important;
}
@media (max-width: 850px) {
  .promotions h3 {
    font-size: 20px;
  }
}
.promotions > h3 {
  margin-top: 20px;
  color: var(--color-red-text);
}
.promotions__table-wrap {
  width: 100%;
  padding: 0 20px;
  border-radius: 5px;
  background: var(--color-bg);
  backdrop-filter: blur(7.5px);
  overflow-x: auto;
}
.promotions__table-wrap::-webkit-scrollbar {
  height: 6px;
}
.promotions__table-wrap::-webkit-scrollbar-track {
  background: transparent;
}
.promotions__table-wrap::-webkit-scrollbar-thumb {
  background: rgba(0, 255, 187, 0.4);
  border-radius: 3px;
}
.promotions__table-wrap > table {
  width: 100%;
  min-width: 720px;
}
.promotions__table-wrap > table tr {
  display: flex;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid rgba(0, 255, 187, 0.12);
}
.promotions__table-wrap > table tr:last-child {
  border-bottom: 0;
}
.promotions__table-wrap > table th,
.promotions__table-wrap > table td {
  flex: 1 1 0;
  padding-right: 16px;
  text-align: left;
}
.promotions__table-wrap > table th:last-child,
.promotions__table-wrap > table td:last-child {
  padding-right: 0;
}
.promotions__table-wrap > table th {
  padding-top: 16px;
  padding-bottom: 16px;
  color: var(--color-light-blue);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.promotions__table-wrap > table td {
  padding-top: 20px;
  padding-bottom: 20px;
  color: var(--color-white);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
.promotions__cards {
  width: 100%;
  margin-top: 20px;
  display: flex;
  gap: 12px;
}
@media (max-width: 850px) {
  .promotions__cards {
    flex-direction: column;
    gap: 20px;
  }
}
.promotions__cards > li {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  gap: 12px;
  flex-direction: column;
  border-radius: 5px;
  overflow: hidden;
  background: var(--color-bg);
}
@media (max-width: 850px) {
  .promotions__cards > li {
    flex: 0 0 auto;
  }
}
.promotions__cards > li > img {
  width: 100%;
  height: 315px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 10%;
     object-position: center 10%;
}
@media (max-width: 650px) {
  .promotions__cards > li > img {
    height: 200px;
  }
}
.promotions__cards > li > h3 {
  padding: 16px 16px 0;
  text-align: center;
}
.promotions__cards > li > p {
  margin: 0;
  padding: 0 16px;
  color: var(--color-white);
  text-align: center;
}
.promotions__cards > li > .first__button {
  align-self: center;
  margin: 4px 16px 16px;
}
.promotions__list-wrap {
  position: relative;
  width: 100%;
  padding: 6px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: 5px;
  background: var(--color-bg);
}
.promotions__list-wrap > li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: var(--color-white);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.promotions__list-wrap > li:last-child {
  border-bottom: 0;
}
.promotions__list-wrap > li strong {
  font-weight: 800;
  color: var(--color-light-blue);
}
.promotions__list-wrap > li > img {
  flex: none;
  width: 30px;
  height: 30px;
  border: 1px solid var(--color-light-blue);
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
}
.promotions > .first__button {
  align-self: flex-start;
}

/*  ---------------- VIP  ---------------- */
.content.vip {
  align-items: flex-start;
}

.vip > * + * {
  margin-top: 20px;
}
.vip > p {
  color: var(--color-green-text);
}
.vip__table-wrap {
  width: 100%;
  padding: 0 20px;
  border-radius: 5px;
  background: var(--color-bg);
  backdrop-filter: blur(7.5px);
  overflow-x: auto;
}
.vip__table-wrap::-webkit-scrollbar {
  height: 6px;
}
.vip__table-wrap::-webkit-scrollbar-track {
  background: transparent;
}
.vip__table-wrap::-webkit-scrollbar-thumb {
  background: rgba(0, 255, 187, 0.4);
  border-radius: 3px;
}
.vip__table-wrap > table {
  width: 100%;
  min-width: 720px;
}
.vip__table-wrap > table tr {
  display: flex;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid rgba(0, 255, 187, 0.12);
}
.vip__table-wrap > table tr:last-child {
  border-bottom: 0;
}
.vip__table-wrap > table th,
.vip__table-wrap > table td {
  flex: 1 1 0;
  padding-right: 16px;
  text-align: left;
}
.vip__table-wrap > table th:last-child,
.vip__table-wrap > table td:last-child {
  padding-right: 0;
}
.vip__table-wrap > table th {
  padding-top: 16px;
  padding-bottom: 16px;
  color: var(--color-light-blue);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.vip__table-wrap > table td {
  padding-top: 20px;
  padding-bottom: 20px;
  color: var(--color-white);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
.vip > .first__button {
  align-self: flex-start;
}

/*  ---------------- TOURNAMENT  ---------------- */
.content.tournament {
  align-items: flex-start;
}

.tournament > * + * {
  margin-top: 20px;
}
.tournament > p {
  color: var(--color-green-text);
}
.tournament__row {
  display: flex;
  gap: 12px;
  width: 100%;
}
@media (max-width: 850px) {
  .tournament__row {
    flex-direction: column;
  }
}
.tournament__table-wrap {
  flex: 1 1 0;
  min-width: 0;
  padding: 0 20px;
  border-radius: 5px;
  background: var(--color-bg);
  backdrop-filter: blur(7.5px);
  overflow-x: auto;
}
@media (max-width: 850px) {
  .tournament__table-wrap {
    flex: none;
    width: 100%;
  }
}
.tournament__table-wrap::-webkit-scrollbar {
  height: 6px;
}
.tournament__table-wrap::-webkit-scrollbar-track {
  background: transparent;
}
.tournament__table-wrap::-webkit-scrollbar-thumb {
  background: rgba(0, 255, 187, 0.4);
  border-radius: 3px;
}
.tournament__table-wrap > table {
  width: 100%;
  min-width: 450px;
}
.tournament__table-wrap > table tr {
  display: flex;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid rgba(0, 255, 187, 0.12);
}
.tournament__table-wrap > table tr:last-child {
  border-bottom: 0;
}
.tournament__table-wrap > table th,
.tournament__table-wrap > table td {
  flex: 1 1 0;
  padding-right: 16px;
  text-align: left;
}
.tournament__table-wrap > table th:last-child,
.tournament__table-wrap > table td:last-child {
  padding-right: 0;
}
.tournament__table-wrap > table th {
  padding-top: 16px;
  padding-bottom: 16px;
  color: var(--color-light-blue);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.tournament__table-wrap > table td {
  padding-top: 20px;
  padding-bottom: 20px;
  color: var(--color-white);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
.tournament__row > div:last-child {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  align-self: stretch;
  border-radius: 5px;
  overflow: hidden;
}
@media (max-width: 850px) {
  .tournament__row > div:last-child {
    flex: none;
    width: 100%;
    min-height: 350px;
  }
}
@media (max-width: 650px) {
  .tournament__row > div:last-child {
    min-height: 240px;
  }
}
.tournament__row > div:last-child img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 850px) {
  .tournament__row > div:last-child img {
    -o-object-position: center 2%;
       object-position: center 2%;
  }
}
.tournament > .first__button {
  align-self: flex-start;
}

/*  ---------------- SLOTS  ---------------- */
.content.slots {
  align-items: flex-start;
}

.slots > * + * {
  margin-top: 20px;
}
.slots > p {
  color: var(--color-green-text);
}
.slots__table-wrap {
  width: 100%;
  padding: 0 20px;
  border-radius: 5px;
  background: var(--color-bg);
  backdrop-filter: blur(7.5px);
  overflow-x: auto;
}
.slots__table-wrap::-webkit-scrollbar {
  height: 6px;
}
.slots__table-wrap::-webkit-scrollbar-track {
  background: transparent;
}
.slots__table-wrap::-webkit-scrollbar-thumb {
  background: rgba(0, 255, 187, 0.4);
  border-radius: 3px;
}
.slots__table-wrap > table {
  width: 100%;
  min-width: 720px;
}
.slots__table-wrap > table tr {
  display: flex;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid rgba(0, 255, 187, 0.12);
}
.slots__table-wrap > table tr:last-child {
  border-bottom: 0;
}
.slots__table-wrap > table th,
.slots__table-wrap > table td {
  flex: 1 1 0;
  padding-right: 16px;
  text-align: left;
}
.slots__table-wrap > table th:last-child,
.slots__table-wrap > table td:last-child {
  padding-right: 0;
}
.slots__table-wrap > table th {
  padding-top: 16px;
  padding-bottom: 16px;
  color: var(--color-light-blue);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.slots__table-wrap > table td {
  padding-top: 20px;
  padding-bottom: 20px;
  color: var(--color-white);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
.slots > .first__button {
  align-self: flex-start;
}

/*  ---------------- GAMES  ---------------- */
.content.games {
  align-items: flex-start;
}

.games > * + * {
  margin-top: 20px;
}
.games > p {
  color: var(--color-green-text);
}
.games__table-wrap {
  width: 100%;
  padding: 0 20px;
  border-radius: 5px;
  background: var(--color-bg);
  backdrop-filter: blur(7.5px);
  overflow-x: auto;
}
.games__table-wrap::-webkit-scrollbar {
  height: 6px;
}
.games__table-wrap::-webkit-scrollbar-track {
  background: transparent;
}
.games__table-wrap::-webkit-scrollbar-thumb {
  background: rgba(0, 255, 187, 0.4);
  border-radius: 3px;
}
.games__table-wrap > table {
  width: 100%;
  min-width: 880px;
}
.games__table-wrap > table tr {
  display: flex;
  align-items: stretch;
  width: 100%;
  border-bottom: 1px solid rgba(0, 255, 187, 0.12);
}
.games__table-wrap > table tr:last-child {
  border-bottom: 0;
}
.games__table-wrap > table th,
.games__table-wrap > table td {
  padding-right: 16px;
  text-align: left;
}
.games__table-wrap > table th:first-child,
.games__table-wrap > table td:first-child {
  flex: 0 0 160px;
  width: 160px;
}
.games__table-wrap > table th:nth-child(2), .games__table-wrap > table th:nth-child(3),
.games__table-wrap > table td:nth-child(2),
.games__table-wrap > table td:nth-child(3) {
  flex: 1 1 0;
}
.games__table-wrap > table th:last-child,
.games__table-wrap > table td:last-child {
  padding-right: 0;
}
.games__table-wrap > table th {
  padding-top: 16px;
  padding-bottom: 16px;
  color: var(--color-light-blue);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.games__table-wrap > table td {
  padding-top: 20px;
  padding-bottom: 20px;
  color: var(--color-white);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

/*  ---------------- LIVE  ---------------- */
.content.live {
  align-items: flex-start;
}

.live > * + * {
  margin-top: 20px;
}
.live > p {
  color: var(--color-green-text);
}
.live__image {
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}
.live__image img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  max-height: none;
}
.live__table-wrap {
  width: 100%;
  padding: 0 20px;
  border-radius: 5px;
  background: var(--color-bg);
  backdrop-filter: blur(7.5px);
  overflow-x: auto;
}
.live__table-wrap::-webkit-scrollbar {
  height: 6px;
}
.live__table-wrap::-webkit-scrollbar-track {
  background: transparent;
}
.live__table-wrap::-webkit-scrollbar-thumb {
  background: rgba(0, 255, 187, 0.4);
  border-radius: 3px;
}
.live__table-wrap > table {
  width: 100%;
  min-width: 800px;
}
.live__table-wrap > table tr {
  display: flex;
  align-items: stretch;
  width: 100%;
  border-bottom: 1px solid rgba(0, 255, 187, 0.12);
}
.live__table-wrap > table tr:last-child {
  border-bottom: 0;
}
.live__table-wrap > table th,
.live__table-wrap > table td {
  padding-right: 16px;
  text-align: left;
}
.live__table-wrap > table th:first-child,
.live__table-wrap > table td:first-child {
  flex: 0 0 190px;
  width: 190px;
}
.live__table-wrap > table th:nth-child(2),
.live__table-wrap > table td:nth-child(2) {
  flex: 0 0 150px;
  width: 150px;
}
.live__table-wrap > table th:nth-child(3),
.live__table-wrap > table td:nth-child(3) {
  flex: 1 1 0;
}
.live__table-wrap > table th:last-child,
.live__table-wrap > table td:last-child {
  padding-right: 0;
}
.live__table-wrap > table th {
  padding-top: 16px;
  padding-bottom: 16px;
  color: var(--color-light-blue);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.live__table-wrap > table td {
  padding-top: 20px;
  padding-bottom: 20px;
  color: var(--color-white);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

/*  ---------------- LICENCE  ---------------- */
.content.licence {
  align-items: flex-start;
}

.licence > * + * {
  margin-top: 20px;
}
.licence > p {
  color: var(--color-green-text);
}
.licence__row {
  display: flex;
  gap: 12px;
  width: 100%;
}
@media (max-width: 850px) {
  .licence__row {
    flex-direction: column;
  }
}
.licence__row > div:first-child {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.licence__row > div:first-child p {
  margin: 0;
  color: var(--color-green-text);
}
.licence__row > div:last-child {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  align-self: stretch;
  border-radius: 5px;
  overflow: hidden;
}
@media (max-width: 850px) {
  .licence__row > div:last-child {
    min-height: 350px;
  }
}
@media (max-width: 650px) {
  .licence__row > div:last-child {
    min-height: 240px;
  }
}
.licence__row > div:last-child img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 28%;
     object-position: center 28%;
}

/*  ---------------- PAYMENT  ---------------- */
.content.payment {
  align-items: flex-start;
}

.payment > * + * {
  margin-top: 20px;
}
.payment > p {
  color: var(--color-green-text);
}
.payment h3 {
  width: 100%;
  margin: 0;
  color: var(--color-light-blue);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase !important;
}
@media (max-width: 850px) {
  .payment h3 {
    font-size: 20px;
  }
}
.payment > h3 {
  margin-top: 20px;
}
.payment__table-wrap {
  width: 100%;
  padding: 0 20px;
  border-radius: 5px;
  background: var(--color-bg);
  backdrop-filter: blur(7.5px);
  overflow-x: auto;
}
.payment__table-wrap::-webkit-scrollbar {
  height: 6px;
}
.payment__table-wrap::-webkit-scrollbar-track {
  background: transparent;
}
.payment__table-wrap::-webkit-scrollbar-thumb {
  background: rgba(0, 255, 187, 0.4);
  border-radius: 3px;
}
.payment__table-wrap > table {
  width: 100%;
  min-width: 720px;
}
.payment__table-wrap > table tr {
  display: flex;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid rgba(0, 255, 187, 0.12);
}
.payment__table-wrap > table tr:last-child {
  border-bottom: 0;
}
.payment__table-wrap > table th,
.payment__table-wrap > table td {
  flex: 1 1 0;
  padding-right: 16px;
  text-align: left;
}
.payment__table-wrap > table th:last-child,
.payment__table-wrap > table td:last-child {
  padding-right: 0;
}
.payment__table-wrap > table th {
  padding-top: 16px;
  padding-bottom: 16px;
  color: var(--color-light-blue);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.payment__table-wrap > table td {
  padding-top: 20px;
  padding-bottom: 20px;
  color: var(--color-white);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
.payment > .first__button {
  align-self: flex-start;
}

/*  ---------------- CUSTOMER  ---------------- */
.content.customer {
  align-items: flex-start;
}

.customer > * + * {
  margin-top: 20px;
}
.customer__row {
  display: flex;
  gap: 12px;
  width: 100%;
}
@media (max-width: 850px) {
  .customer__row {
    flex-direction: column;
  }
}
.customer__row > div:first-child {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.customer__row > div:first-child p {
  margin: 0;
  color: var(--color-green-text);
}
.customer__row > div:last-child {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  align-self: stretch;
  border-radius: 5px;
  overflow: hidden;
}
@media (max-width: 850px) {
  .customer__row > div:last-child {
    min-height: 350px;
  }
}
@media (max-width: 650px) {
  .customer__row > div:last-child {
    min-height: 240px;
  }
}
.customer__row > div:last-child img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  -o-object-fit: cover;
     object-fit: cover;
}

/*  ---------------- REVIEWS  ---------------- */
.content.reviews {
  align-items: flex-start;
}

.reviews > * + * {
  margin-top: 20px;
}
.reviews__carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.reviews__track {
  display: flex;
  gap: 20px;
  width: -moz-max-content;
  width: max-content;
  transform: translateX(0);
}
.reviews__card {
  flex: none;
  width: 416px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: #008580;
  border: 1px solid #00ffbb;
  border-radius: 5px;
}
@media (max-width: 650px) {
  .reviews__card {
    width: 320px;
  }
}
@media (max-width: 450px) {
  .reviews__card {
    width: 280px;
  }
}
.reviews__card > div {
  display: flex;
  align-items: center;
  justify-content: center;
}
.reviews__card > div img {
  width: 26px;
  height: 26px;
  max-width: none;
  max-height: none;
}
.reviews__card > h3 {
  color: var(--color-light-blue);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  text-transform: uppercase !important;
  margin: 0;
}
.reviews__card > p {
  margin: 0;
  color: var(--color-white);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
}
.reviews__nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.reviews__btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #00ffbb;
  border-radius: 50%;
  background: rgba(0, 133, 128, 0.4);
  color: var(--color-white);
  cursor: pointer;
  transition: background var(--primary-transition), transform var(--primary-transition);
}
.reviews__btn:hover {
  background: #008580;
}
.reviews__btn:active {
  transform: scale(0.95);
}
.reviews__btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/*  ---------------- GRADE  ---------------- */
.content.grade {
  align-items: flex-start;
}

.grade > * + * {
  margin-top: 20px;
}
.grade__table-wrap {
  width: 100%;
  padding: 0 20px;
  border-radius: 5px;
  background: var(--color-bg);
  backdrop-filter: blur(7.5px);
  overflow-x: auto;
}
.grade__table-wrap::-webkit-scrollbar {
  height: 6px;
}
.grade__table-wrap::-webkit-scrollbar-track {
  background: transparent;
}
.grade__table-wrap::-webkit-scrollbar-thumb {
  background: rgba(0, 255, 187, 0.4);
  border-radius: 3px;
}
.grade__table-wrap > table {
  width: 100%;
  min-width: 760px;
}
.grade__table-wrap > table tr {
  display: flex;
  align-items: stretch;
  width: 100%;
  border-bottom: 1px solid rgba(0, 255, 187, 0.12);
}
.grade__table-wrap > table tr:last-child {
  border-bottom: 0;
}
.grade__table-wrap > table th,
.grade__table-wrap > table td {
  padding-right: 16px;
  text-align: left;
}
.grade__table-wrap > table th:first-child,
.grade__table-wrap > table td:first-child {
  flex: 0 0 200px;
  width: 200px;
}
.grade__table-wrap > table th:nth-child(2),
.grade__table-wrap > table td:nth-child(2) {
  flex: 0 0 120px;
  width: 120px;
}
.grade__table-wrap > table th:last-child,
.grade__table-wrap > table td:last-child {
  flex: 1 1 0;
  padding-right: 0;
}
.grade__table-wrap > table th {
  padding-top: 16px;
  padding-bottom: 16px;
  color: var(--color-light-blue);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.grade__table-wrap > table td {
  padding-top: 20px;
  padding-bottom: 20px;
  color: var(--color-white);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
.grade__table-wrap > table td > strong {
  color: var(--color-light-blue);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  white-space: nowrap;
}

/*  ---------------- CONCLUSION  ---------------- */
.content.conclusion {
  align-items: flex-start;
}

.conclusion > * + * {
  margin-top: 20px;
}
.conclusion > p {
  color: var(--color-green-text);
}
.conclusion__row {
  display: flex;
  gap: 12px;
  width: 100%;
}
@media (max-width: 850px) {
  .conclusion__row {
    flex-direction: column;
  }
}
.conclusion__row > div:first-child {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.conclusion__row > div:first-child p {
  margin: 0;
  color: var(--color-green-text);
}
.conclusion__row > div:first-child > p:last-child {
  font-weight: 700;
  font-style: italic;
}
.conclusion__row > div:last-child {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  align-self: stretch;
  border-radius: 5px;
  overflow: hidden;
}
@media (max-width: 850px) {
  .conclusion__row > div:last-child {
    min-height: 350px;
  }
}
@media (max-width: 650px) {
  .conclusion__row > div:last-child {
    min-height: 240px;
  }
}
.conclusion__row > div:last-child img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 40%;
     object-position: center 40%;
}
.conclusion > .first__button {
  align-self: flex-start;
}

/* ---------------------- BONUS ---------------------- */
/* Bonus */
.bonus {
  background: #092a2d;
  min-height: 480px;
  color: var(--color-white);
  align-items: flex-start;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 20px;
}
.bonus__wrap {
  max-width: 930px;
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
@media (max-width: 850px) {
  .bonus__wrap {
    background: rgba(22, 67, 71, 0.7);
    backdrop-filter: blur(2px);
  }
}
@media (max-width: 650px) {
  .bonus__wrap {
    align-items: center;
    text-align: center;
  }
}
.bonus__breadcrumbs {
  width: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}
.bonus__breadcrumbs li {
  display: flex;
  align-items: center;
  color: var(--color-white);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
.bonus__breadcrumbs li + li::before {
  content: "›";
  margin-right: 8px;
  color: var(--color-white);
}
.bonus__breadcrumbs li a {
  color: var(--color-white);
  transition: opacity var(--primary-transition);
}
.bonus__breadcrumbs li a:hover {
  opacity: 0.75;
}
.bonus__title {
  margin: 0;
  color: var(--color-light-blue);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 850px) {
  .bonus__title {
    font-size: 28px;
  }
}
@media (max-width: 650px) {
  .bonus__title {
    text-align: center;
    font-size: 26px;
  }
}
@media (max-width: 450px) {
  .bonus__title {
    font-size: 24px;
  }
}
.bonus__text {
  max-width: 620px;
  margin: 0;
  color: var(--color-white);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
.bonus__button {
  margin-top: 16px;
}
@media (max-width: 850px) {
  .bonus__background img {
    -o-object-position: 70%;
       object-position: 70%;
    opacity: 1;
  }
}
@media (max-width: 650px) {
  .bonus__background img {
    -o-object-position: 75%;
       object-position: 75%;
  }
}
@media (max-width: 650px) {
  .bonus {
    align-items: center;
  }
}

/*  ---------------- BONUSES  ---------------- */
.content.bonuses {
  align-items: flex-start;
}

.bonuses > * + * {
  margin-top: 20px;
}
.bonuses > p {
  color: var(--color-green-text);
}

/*  ---------------- GENEROUS  ---------------- */
.content.generous {
  align-items: flex-start;
}

.generous > * + * {
  margin-top: 20px;
}
.generous > p {
  margin-top: 20px;
  color: var(--color-green-text);
}
.generous h3 {
  width: 100%;
  margin: 0;
  color: var(--color-light-blue);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase !important;
}
@media (max-width: 850px) {
  .generous h3 {
    font-size: 20px;
  }
}
.generous > h3 {
  margin-top: 20px;
  color: var(--color-red-text);
}
.generous__cards {
  width: 100%;
  margin-top: 20px;
  display: flex;
  gap: 12px;
}
@media (max-width: 850px) {
  .generous__cards {
    flex-direction: column;
    gap: 20px;
  }
}
.generous__cards > li {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  gap: 12px;
  flex-direction: column;
  border-radius: 5px;
  overflow: hidden;
  background: var(--color-bg);
}
@media (max-width: 850px) {
  .generous__cards > li {
    flex: 0 0 auto;
  }
}
.generous__cards > li > img {
  width: 100%;
  height: 315px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 20%;
     object-position: center 20%;
}
@media (max-width: 650px) {
  .generous__cards > li > img {
    height: 200px;
  }
}
.generous__cards > li > h3 {
  padding: 16px 16px 0;
  text-align: center;
}
.generous__cards > li > p {
  margin: 0;
  padding: 0 16px;
  color: var(--color-white);
  text-align: center;
}
.generous__cards > li > .first__button {
  align-self: center;
  margin: 4px 16px 16px;
}
.generous__table-wrap {
  width: 100%;
  padding: 0 20px;
  border-radius: 5px;
  background: var(--color-bg);
  backdrop-filter: blur(7.5px);
  overflow-x: auto;
}
.generous__table-wrap::-webkit-scrollbar {
  height: 6px;
}
.generous__table-wrap::-webkit-scrollbar-track {
  background: transparent;
}
.generous__table-wrap::-webkit-scrollbar-thumb {
  background: rgba(0, 255, 187, 0.4);
  border-radius: 3px;
}
.generous__table-wrap > table {
  width: 100%;
  min-width: 720px;
}
.generous__table-wrap > table tr {
  display: flex;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid rgba(0, 255, 187, 0.12);
}
.generous__table-wrap > table tr:last-child {
  border-bottom: 0;
}
.generous__table-wrap > table th,
.generous__table-wrap > table td {
  flex: 1 1 0;
  padding-right: 16px;
  text-align: left;
}
.generous__table-wrap > table th:last-child,
.generous__table-wrap > table td:last-child {
  padding-right: 0;
}
.generous__table-wrap > table th {
  padding-top: 16px;
  padding-bottom: 16px;
  color: var(--color-light-blue);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.generous__table-wrap > table td {
  padding-top: 20px;
  padding-bottom: 20px;
  color: var(--color-white);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
.generous__block {
  width: 100%;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 5px;
  background: var(--color-bg);
}
.generous__block > p {
  margin: 0;
  color: var(--color-white);
}
.generous__block > div {
  display: flex;
  gap: 12px;
  width: 100%;
}
@media (max-width: 850px) {
  .generous__block > div {
    flex-direction: column;
  }
}
.generous__block > div > ol {
  flex: 1 1 0;
  min-width: 0;
  padding: 6px 16px;
  border: 1px solid var(--color-red-text);
  border-radius: 5px;
  background: var(--color-white);
  box-shadow: 0 0 30px 10px rgba(0, 255, 229, 0.3);
  counter-reset: generous-step;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.generous__block > div > ol li {
  counter-increment: generous-step;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: var(--color-green-text);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.6;
  border-bottom: 1px solid rgba(255, 0, 0, 0.12);
}
.generous__block > div > ol li:last-child {
  border-bottom: 0;
}
.generous__block > div > ol li::before {
  content: counter(generous-step);
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--color-red-text);
  border-radius: 40px;
  color: var(--color-green-text);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}
.generous__block > div > div {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  align-self: stretch;
  border-radius: 5px;
  overflow: hidden;
}
@media (max-width: 850px) {
  .generous__block > div > div {
    min-height: 350px;
  }
}
@media (max-width: 650px) {
  .generous__block > div > div {
    min-height: 240px;
  }
}
.generous__block > div > div > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right center;
     object-position: right center;
}
@media (max-width: 850px) {
  .generous__block > div > div > img {
    -o-object-position: center;
       object-position: center;
  }
}
.generous__block > .first__button {
  align-self: flex-start;
  margin-top: 0;
}
.generous__list-wrap {
  position: relative;
  width: 100%;
  padding: 6px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: 5px;
  background: var(--color-bg);
}
.generous__list-wrap > li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  color: var(--color-white);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.generous__list-wrap > li:last-child {
  border-bottom: 0;
}
.generous__list-wrap > li strong {
  flex: none;
  font-weight: 800;
  color: var(--color-light-blue);
  white-space: nowrap;
}
@media (max-width: 650px) {
  .generous__list-wrap > li strong {
    white-space: normal;
  }
}
.generous__list-wrap > li > img {
  flex: none;
  width: 28px;
  height: 28px;
  border: 1px solid var(--color-light-blue);
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
}
.generous > .first__button {
  align-self: flex-start;
}

/*  ---------------- BOOST  ---------------- */
.content.boost {
  align-items: flex-start;
}

.boost > * + * {
  margin-top: 20px;
}
.boost > p {
  margin-top: 20px;
  color: var(--color-green-text);
}
.boost__cards {
  width: 100%;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
@media (max-width: 850px) {
  .boost__cards {
    flex-direction: column;
    gap: 20px;
  }
}
.boost__cards > li {
  flex: 0 1 calc(50% - 6px);
  min-width: 0;
  display: flex;
  gap: 12px;
  flex-direction: column;
  border-radius: 5px;
  overflow: hidden;
  background: var(--color-bg);
}
.boost__cards > li:last-child:nth-child(3) {
  flex: 0 1 75%;
}
@media (max-width: 850px) {
  .boost__cards > li {
    flex: 0 0 auto;
    width: 100%;
  }
  .boost__cards > li:last-child:nth-child(3) {
    flex: 0 0 auto;
    width: 100%;
  }
}
.boost__cards > li > img {
  width: 100%;
  height: 315px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 650px) {
  .boost__cards > li > img {
    height: 240px;
  }
}
.boost__cards > li > h3 {
  margin: 0;
  padding: 16px 16px 0;
  color: var(--color-light-blue);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  text-transform: uppercase !important;
}
@media (max-width: 850px) {
  .boost__cards > li > h3 {
    font-size: 20px;
  }
}
.boost__cards > li > p {
  margin: 0;
  padding: 0 16px;
  color: var(--color-white);
  text-align: center;
}
.boost__cards > li > .first__button {
  align-self: center;
  margin: 4px 16px 16px;
}

/*  ---------------- SPIN  ---------------- */
.content.spin {
  align-items: flex-start;
}

.spin > * + * {
  margin-top: 20px;
}
.spin__row {
  display: flex;
  gap: 12px;
  width: 100%;
}
@media (max-width: 850px) {
  .spin__row {
    flex-direction: column;
  }
}
.spin__row > div:first-child {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.spin__row > div:first-child > p {
  margin: 0;
  color: var(--color-green-text);
}
.spin__row > div:last-child {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  align-self: stretch;
  border-radius: 5px;
  overflow: hidden;
}
@media (max-width: 850px) {
  .spin__row > div:last-child {
    min-height: 350px;
  }
}
@media (max-width: 650px) {
  .spin__row > div:last-child {
    min-height: 240px;
  }
}
.spin__row > div:last-child > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 40%;
     object-position: center 40%;
}
.spin > .first__button {
  align-self: flex-start;
}

/*  ---------------- LOYALTY  ---------------- */
.content.loyalty {
  align-items: flex-start;
}

.loyalty > * + * {
  margin-top: 20px;
}
.loyalty > p {
  margin-top: 20px;
  color: var(--color-green-text);
}
.loyalty h3 {
  width: 100%;
  margin: 0;
  color: var(--color-light-blue);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase !important;
}
@media (max-width: 850px) {
  .loyalty h3 {
    font-size: 20px;
  }
}
.loyalty > h3 {
  margin-top: 20px;
  color: var(--color-red-text);
}
.loyalty__table-wrap {
  width: 100%;
  padding: 0 20px;
  border-radius: 5px;
  background: var(--color-bg);
  backdrop-filter: blur(7.5px);
  overflow-x: auto;
}
.loyalty__table-wrap::-webkit-scrollbar {
  height: 6px;
}
.loyalty__table-wrap::-webkit-scrollbar-track {
  background: transparent;
}
.loyalty__table-wrap::-webkit-scrollbar-thumb {
  background: rgba(0, 255, 187, 0.4);
  border-radius: 3px;
}
.loyalty__table-wrap > table {
  width: 100%;
  min-width: 720px;
}
.loyalty__table-wrap > table tr {
  display: flex;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid rgba(0, 255, 187, 0.12);
}
.loyalty__table-wrap > table tr:last-child {
  border-bottom: 0;
}
.loyalty__table-wrap > table th,
.loyalty__table-wrap > table td {
  flex: 1 1 0;
  padding-right: 16px;
  text-align: left;
}
.loyalty__table-wrap > table th:last-child,
.loyalty__table-wrap > table td:last-child {
  padding-right: 0;
}
.loyalty__table-wrap > table th {
  padding-top: 16px;
  padding-bottom: 16px;
  color: var(--color-light-blue);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.loyalty__table-wrap > table td {
  padding-top: 20px;
  padding-bottom: 20px;
  color: var(--color-white);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
.loyalty > .first__button {
  align-self: flex-start;
}

/*  ---------------- CASHBACK  ---------------- */
.content.cashback {
  align-items: flex-start;
}

.cashback > * + * {
  margin-top: 20px;
}
.cashback > p {
  margin-top: 20px;
  color: var(--color-green-text);
}
.cashback__row {
  display: flex;
  gap: 12px;
  width: 100%;
}
.cashback__row:nth-of-type(even) {
  flex-direction: row-reverse;
}
@media (max-width: 850px) {
  .cashback__row {
    flex-direction: column;
  }
  .cashback__row:nth-of-type(even) {
    flex-direction: column;
  }
}
.cashback__row > div:first-child {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cashback__row > div:first-child > h3 {
  margin: 0;
  color: var(--color-red-text);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase !important;
}
@media (max-width: 850px) {
  .cashback__row > div:first-child > h3 {
    font-size: 20px;
  }
}
.cashback__row > div:first-child > p {
  margin: 0;
  color: var(--color-green-text);
}
.cashback__row > div:last-child {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  align-self: stretch;
  border-radius: 5px;
  overflow: hidden;
}
@media (max-width: 850px) {
  .cashback__row > div:last-child {
    min-height: 350px;
  }
}
@media (max-width: 650px) {
  .cashback__row > div:last-child {
    min-height: 240px;
  }
}
.cashback__row > div:last-child > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center var(--img-y, 50%);
     object-position: center var(--img-y, 50%);
}

/*  ---------------- JOIN  ---------------- */
.content.join {
  align-items: flex-start;
}

.join > * + * {
  margin-top: 20px;
}
.join > p {
  margin-top: 20px;
  color: var(--color-green-text);
}
.join h3 {
  width: 100%;
  margin: 0;
  color: var(--color-light-blue);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase !important;
}
@media (max-width: 850px) {
  .join h3 {
    font-size: 20px;
  }
}
.join__row {
  display: flex;
  gap: 12px;
  width: 100%;
}
@media (max-width: 850px) {
  .join__row {
    flex-direction: column;
  }
}
.join__table-wrap {
  flex: 1 1 0;
  min-width: 0;
  padding: 0 20px;
  border-radius: 5px;
  background: var(--color-bg);
  backdrop-filter: blur(7.5px);
  overflow-x: auto;
}
@media (max-width: 850px) {
  .join__table-wrap {
    flex: none;
    width: 100%;
  }
}
.join__table-wrap::-webkit-scrollbar {
  height: 6px;
}
.join__table-wrap::-webkit-scrollbar-track {
  background: transparent;
}
.join__table-wrap::-webkit-scrollbar-thumb {
  background: rgba(0, 255, 187, 0.4);
  border-radius: 3px;
}
.join__table-wrap > table {
  width: 100%;
  min-width: 360px;
}
.join__table-wrap > table tr {
  display: flex;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid rgba(0, 255, 187, 0.12);
}
.join__table-wrap > table tr:last-child {
  border-bottom: 0;
}
.join__table-wrap > table th,
.join__table-wrap > table td {
  flex: 1 1 0;
  padding-right: 16px;
  text-align: left;
}
.join__table-wrap > table th:last-child,
.join__table-wrap > table td:last-child {
  padding-right: 0;
}
.join__table-wrap > table th {
  padding-top: 16px;
  padding-bottom: 16px;
  color: var(--color-light-blue);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.join__table-wrap > table td {
  padding-top: 20px;
  padding-bottom: 20px;
  color: var(--color-white);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
.join__image {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  align-self: stretch;
  border-radius: 5px;
  overflow: hidden;
}
@media (max-width: 850px) {
  .join__image {
    flex: none;
    width: 100%;
    min-height: 350px;
  }
}
@media (max-width: 650px) {
  .join__image {
    min-height: 240px;
  }
}
.join__image > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 20%;
     object-position: center 20%;
}
.join__block {
  width: 100%;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 5px;
  background: var(--color-bg);
}
.join__block > div {
  display: flex;
  gap: 12px;
  width: 100%;
}
@media (max-width: 850px) {
  .join__block > div {
    flex-direction: column;
  }
}
@media (max-width: 850px) {
  .join__block > div .join__image {
    min-height: 350px;
  }
}
@media (max-width: 650px) {
  .join__block > div .join__image {
    min-height: 240px;
  }
}
.join__block > div > ol {
  flex: 1 1 0;
  min-width: 0;
  padding: 6px 16px;
  border: 1px solid var(--color-red-text);
  border-radius: 5px;
  background: var(--color-white);
  box-shadow: 0 0 30px 10px rgba(0, 255, 229, 0.3);
  counter-reset: join-step;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.join__block > div > ol li {
  counter-increment: join-step;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: var(--color-green-text);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.6;
  border-bottom: 1px solid rgba(255, 0, 0, 0.12);
}
.join__block > div > ol li:last-child {
  border-bottom: 0;
}
.join__block > div > ol li::before {
  content: counter(join-step);
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--color-red-text);
  border-radius: 40px;
  color: var(--color-green-text);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}
.join__block > .first__button {
  align-self: flex-start;
  margin-top: 0;
}

/*  ---------------- GRAB  ---------------- */
.content.grab {
  align-items: flex-start;
}

.grab > * + * {
  margin-top: 20px;
}
.grab > p {
  margin-top: 20px;
  color: var(--color-green-text);
}
.grab__list-wrap {
  position: relative;
  width: 100%;
  padding: 6px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: 5px;
  background: var(--color-bg);
}
.grab__list-wrap > li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  color: var(--color-white);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.grab__list-wrap > li:last-child {
  border-bottom: 0;
}
.grab__list-wrap > li strong {
  flex: none;
  font-weight: 800;
  color: var(--color-light-blue);
  white-space: nowrap;
}
@media (max-width: 650px) {
  .grab__list-wrap > li strong {
    white-space: normal;
  }
}
.grab__list-wrap > li > img {
  flex: none;
  width: 28px;
  height: 28px;
  border: 1px solid var(--color-light-blue);
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
}
.grab > .first__button {
  align-self: flex-start;
}

/*  ---------------- RESPONSIBLY  ---------------- */
.content.responsibly {
  align-items: flex-start;
}

.responsibly > * + * {
  margin-top: 20px;
}
.responsibly > p {
  margin-top: 20px;
  color: var(--color-green-text);
}
.responsibly__list-wrap {
  width: 100%;
  padding: 16px 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  border-radius: 5px;
  background: var(--color-bg);
}
.responsibly__list-wrap > li {
  flex: 0 1 calc(50% - 6px);
  min-width: 0;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  border-radius: 5px;
  background: var(--color-white);
  text-align: center;
}
@media (max-width: 850px) {
  .responsibly__list-wrap > li {
    flex: 0 1 100%;
  }
}
.responsibly__list-wrap > li > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.responsibly__list-wrap > li > div > img {
  flex: none;
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}
.responsibly__list-wrap > li > div > strong {
  font-family: "Roboto", "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-red-text);
}
.responsibly__list-wrap > li > p {
  margin: 0;
  font-family: "Roboto", "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-green-text);
}

/*  ---------------- CLAIM  ---------------- */
.content.claim {
  align-items: flex-start;
}

.claim > * + * {
  margin-top: 20px;
}
.claim__row {
  display: flex;
  gap: 12px;
  width: 100%;
}
@media (max-width: 850px) {
  .claim__row {
    flex-direction: column;
  }
}
.claim__row > div:first-child {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.claim__row > div:first-child > p {
  margin: 0;
  color: var(--color-green-text);
}
.claim__row > div:last-child {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  align-self: stretch;
  border-radius: 5px;
  overflow: hidden;
}
@media (max-width: 850px) {
  .claim__row > div:last-child {
    flex: none;
    width: 100%;
    min-height: 350px;
  }
}
@media (max-width: 650px) {
  .claim__row > div:last-child {
    min-height: 240px;
  }
}
.claim__row > div:last-child > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center var(--img-y, 50%);
     object-position: center var(--img-y, 50%);
}
.claim > .first__button {
  align-self: flex-start;
}

/* ---------------------- APP ---------------------- */
/* ----------------------------- App----------------------------- */
.app {
  background: #092a2d;
  min-height: 480px;
  color: var(--color-white);
  align-items: flex-start;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 20px;
}
.app__wrap {
  max-width: 930px;
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
@media (max-width: 850px) {
  .app__wrap {
    background: rgba(22, 67, 71, 0.7);
    backdrop-filter: blur(2px);
  }
}
@media (max-width: 650px) {
  .app__wrap {
    align-items: center;
    text-align: center;
  }
}
.app__breadcrumbs {
  width: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}
.app__breadcrumbs li {
  display: flex;
  align-items: center;
  color: var(--color-white);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
.app__breadcrumbs li + li::before {
  content: "›";
  margin-right: 8px;
  color: var(--color-white);
}
.app__breadcrumbs li a {
  color: var(--color-white);
  transition: opacity var(--primary-transition);
}
.app__breadcrumbs li a:hover {
  opacity: 0.75;
}
.app__title {
  margin: 0;
  color: var(--color-light-blue);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 850px) {
  .app__title {
    font-size: 28px;
  }
}
@media (max-width: 650px) {
  .app__title {
    text-align: center;
    font-size: 26px;
  }
}
@media (max-width: 450px) {
  .app__title {
    font-size: 24px;
  }
}
.app__text {
  max-width: 620px;
  margin: 0;
  color: var(--color-white);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
.app__button {
  margin-top: 16px;
}
@media (max-width: 850px) {
  .app__background img {
    -o-object-position: 70%;
       object-position: 70%;
    opacity: 1;
  }
}
@media (max-width: 650px) {
  .app__background img {
    -o-object-position: 75%;
       object-position: 75%;
  }
}
@media (max-width: 650px) {
  .app {
    align-items: center;
  }
}

/*  ---------------- COMPLITE  ---------------- */
.content.complite {
  align-items: flex-start;
}

.complite > * + * {
  margin-top: 20px;
}
.complite > p {
  color: var(--color-green-text);
}

/*  ---------------- INSTALL  ---------------- */
.content.install {
  align-items: flex-start;
}

.install > * + * {
  margin-top: 20px;
}
.install > p {
  margin-top: 20px;
  color: var(--color-green-text);
}
.install h3 {
  width: 100%;
  margin: 0;
  color: var(--color-light-blue);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase !important;
}
@media (max-width: 850px) {
  .install h3 {
    font-size: 20px;
  }
}
.install__block {
  width: 100%;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 5px;
  background: var(--color-bg);
}
.install__block > p {
  margin: 0;
  color: var(--color-white);
}
.install__block > div {
  display: flex;
  gap: 12px;
  width: 100%;
}
@media (max-width: 850px) {
  .install__block > div {
    flex-direction: column;
  }
}
.install__block > div > ol {
  flex: 1 1 0;
  min-width: 0;
  padding: 6px 16px;
  border: 1px solid var(--color-red-text);
  border-radius: 5px;
  background: var(--color-white);
  box-shadow: 0 0 30px 10px rgba(0, 255, 229, 0.3);
  counter-reset: install-step;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.install__block > div > ol li {
  counter-increment: install-step;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: var(--color-green-text);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.6;
  border-bottom: 1px solid rgba(255, 0, 0, 0.12);
}
.install__block > div > ol li:last-child {
  border-bottom: 0;
}
.install__block > div > ol li::before {
  content: counter(install-step);
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--color-red-text);
  border-radius: 40px;
  color: var(--color-green-text);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}
.install__block > .download__button {
  align-self: flex-start;
}
.install__block:nth-of-type(even) > div {
  flex-direction: row-reverse;
}
@media (max-width: 850px) {
  .install__block:nth-of-type(even) > div {
    flex-direction: column;
  }
}
.install__image {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  align-self: stretch;
  border-radius: 5px;
  overflow: hidden;
}
@media (max-width: 850px) {
  .install__image {
    flex: none;
    width: 100%;
    min-height: 350px;
  }
}
@media (max-width: 650px) {
  .install__image {
    min-height: 240px;
  }
}
.install__image > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center var(--img-y, 50%);
     object-position: center var(--img-y, 50%);
}

/*  ---------------- BENEFIT  ---------------- */
.content.benefit {
  align-items: flex-start;
}

.benefit > * + * {
  margin-top: 20px;
}
.benefit > p {
  margin-top: 20px;
  color: var(--color-green-text);
}
.benefit__list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.benefit__list > li {
  flex: 0 1 calc(50% - 6px);
  min-width: 0;
  padding: 12px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border-radius: 5px;
  background: var(--color-bg);
}
@media (max-width: 850px) {
  .benefit__list > li {
    flex: 0 1 100%;
  }
}
.benefit__list > li > img {
  flex: none;
  width: 60px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.benefit__list > li > div {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.benefit__list > li > div > strong {
  font-family: "Roboto", "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-light-blue);
}
.benefit__list > li > div > p {
  margin: 0;
  font-family: "Roboto", "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-white);
}

/*  ---------------- DEVICES  ---------------- */
.content.devices {
  align-items: flex-start;
}

.devices > * + * {
  margin-top: 20px;
}
.devices > p {
  margin-top: 20px;
  color: var(--color-green-text);
}
.devices h3 {
  width: 100%;
  margin: 0;
  color: var(--color-light-blue);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase !important;
}
@media (max-width: 850px) {
  .devices h3 {
    font-size: 20px;
  }
}
.devices__block {
  width: 100%;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 5px;
  background: var(--color-bg);
}
.devices__block > p {
  margin: 0;
  color: var(--color-white);
}
.devices__block > div {
  display: flex;
  gap: 12px;
  width: 100%;
}
@media (max-width: 850px) {
  .devices__block > div {
    flex-direction: column;
  }
}
.devices__block > .download__button {
  align-self: flex-start;
}
.devices__block:nth-of-type(even) > div {
  flex-direction: row-reverse;
}
@media (max-width: 850px) {
  .devices__block:nth-of-type(even) > div {
    flex-direction: column;
  }
}
.devices__table-wrap {
  flex: 1 1 0;
  min-width: 0;
  padding: 0 20px;
  border: 1px solid var(--color-red-text);
  border-radius: 5px;
  background: var(--color-white);
  box-shadow: 0 0 30px 10px rgba(0, 255, 229, 0.3);
  overflow-x: auto;
}
@media (max-width: 850px) {
  .devices__table-wrap {
    flex: none;
    width: 100%;
  }
}
.devices__table-wrap::-webkit-scrollbar {
  height: 6px;
}
.devices__table-wrap::-webkit-scrollbar-track {
  background: transparent;
}
.devices__table-wrap::-webkit-scrollbar-thumb {
  background: rgba(0, 255, 187, 0.4);
  border-radius: 3px;
}
.devices__table-wrap > table {
  width: 100%;
  min-width: 360px;
}
.devices__table-wrap > table tr {
  display: flex;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid rgba(255, 0, 0, 0.12);
}
.devices__table-wrap > table tr:last-child {
  border-bottom: 0;
}
.devices__table-wrap > table th,
.devices__table-wrap > table td {
  flex: 1 1 0;
  padding-right: 16px;
  text-align: left;
}
.devices__table-wrap > table th:last-child,
.devices__table-wrap > table td:last-child {
  padding-right: 0;
}
.devices__table-wrap > table th {
  padding-top: 16px;
  padding-bottom: 16px;
  color: var(--color-red-text);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.devices__table-wrap > table td {
  padding-top: 20px;
  padding-bottom: 20px;
  color: var(--color-green-text);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
.devices__image {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  align-self: stretch;
  border-radius: 5px;
  overflow: hidden;
}
@media (max-width: 850px) {
  .devices__image {
    flex: none;
    width: 100%;
    min-height: 350px;
  }
}
@media (max-width: 650px) {
  .devices__image {
    min-height: 240px;
  }
}
.devices__image > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center var(--img-y, 50%);
     object-position: center var(--img-y, 50%);
}

/*  ---------------- WEB  ---------------- */
.content.web {
  align-items: flex-start;
}

.web > * + * {
  margin-top: 20px;
}
.web__row {
  display: flex;
  gap: 12px;
  width: 100%;
}
@media (max-width: 850px) {
  .web__row {
    flex-direction: column;
  }
}
.web__row > div:first-child {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.web__row > div:first-child > p {
  margin: 0;
  color: var(--color-green-text);
}
.web__row > div:last-child {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  align-self: stretch;
  border-radius: 5px;
  overflow: hidden;
}
@media (max-width: 850px) {
  .web__row > div:last-child {
    flex: none;
    width: 100%;
    min-height: 350px;
  }
}
@media (max-width: 650px) {
  .web__row > div:last-child {
    min-height: 240px;
  }
}
.web__row > div:last-child > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center var(--img-y, 50%);
     object-position: center var(--img-y, 50%);
}
.web > .first__button {
  align-self: flex-start;
}

/*  ---------------- GAMING  ---------------- */
.content.gaming {
  align-items: flex-start;
}

.gaming > * + * {
  margin-top: 20px;
}
.gaming > p {
  margin-top: 20px;
  color: var(--color-green-text);
}
.gaming__list-wrap {
  width: 100%;
  padding: 16px 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  border-radius: 5px;
  background: var(--color-bg);
}
.gaming__list-wrap > li {
  flex: 0 1 calc(50% - 6px);
  min-width: 0;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  border-radius: 5px;
  background: var(--color-white);
  text-align: center;
}
@media (max-width: 850px) {
  .gaming__list-wrap > li {
    flex: 0 1 100%;
  }
}
.gaming__list-wrap > li > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.gaming__list-wrap > li > div > img {
  flex: none;
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}
.gaming__list-wrap > li > div > strong {
  font-family: "Roboto", "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-red-text);
}
.gaming__list-wrap > li > p {
  margin: 0;
  font-family: "Roboto", "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-green-text);
}

/* ---------------------- BETTING ---------------------- */
/* -----------------------------  Betting ----------------------------- */
.betting {
  background: #092a2d;
  min-height: 480px;
  color: var(--color-white);
  align-items: flex-start;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 20px;
}
.betting__wrap {
  max-width: 930px;
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
@media (max-width: 850px) {
  .betting__wrap {
    background: rgba(22, 67, 71, 0.7);
    backdrop-filter: blur(2px);
  }
}
@media (max-width: 650px) {
  .betting__wrap {
    align-items: center;
    text-align: center;
  }
}
.betting__breadcrumbs {
  width: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}
.betting__breadcrumbs li {
  display: flex;
  align-items: center;
  color: var(--color-white);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
.betting__breadcrumbs li + li::before {
  content: "›";
  margin-right: 8px;
  color: var(--color-white);
}
.betting__breadcrumbs li a {
  color: var(--color-white);
  transition: opacity var(--primary-transition);
}
.betting__breadcrumbs li a:hover {
  opacity: 0.75;
}
.betting__title {
  margin: 0;
  color: var(--color-light-blue);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 850px) {
  .betting__title {
    font-size: 28px;
  }
}
@media (max-width: 650px) {
  .betting__title {
    text-align: center;
    font-size: 26px;
  }
}
@media (max-width: 450px) {
  .betting__title {
    font-size: 24px;
  }
}
.betting__text {
  max-width: 620px;
  margin: 0;
  color: var(--color-white);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
.betting__button {
  margin-top: 16px;
}
@media (max-width: 850px) {
  .betting__background img {
    -o-object-position: 70%;
       object-position: 70%;
    opacity: 1;
  }
}
@media (max-width: 650px) {
  .betting__background img {
    -o-object-position: 75%;
       object-position: 75%;
  }
}
@media (max-width: 650px) {
  .betting {
    align-items: center;
  }
}

/*  ---------------- ESPORTS  ---------------- */
.content.esports {
  align-items: flex-start;
}

.esports > * + * {
  margin-top: 20px;
}
.esports > p {
  color: var(--color-green-text);
}

/*  ---------------- SPORT  ---------------- */
.content.sport {
  align-items: flex-start;
}

.sport > * + * {
  margin-top: 20px;
}
.sport > p {
  margin-top: 20px;
  color: var(--color-green-text);
}
.sport h3 {
  width: 100%;
  margin: 0;
  color: var(--color-light-blue);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase !important;
}
@media (max-width: 850px) {
  .sport h3 {
    font-size: 20px;
  }
}
.sport > h3 {
  margin-top: 20px;
  color: var(--color-red-text);
}
.sport__row {
  display: flex;
  gap: 12px;
  width: 100%;
}
@media (max-width: 850px) {
  .sport__row {
    flex-direction: column;
  }
}
.sport__row > div:first-child {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sport__row > div:first-child > p {
  margin: 0;
  color: var(--color-green-text);
}
.sport__row > div:last-child {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  align-self: stretch;
  border-radius: 5px;
  overflow: hidden;
}
@media (max-width: 850px) {
  .sport__row > div:last-child {
    flex: none;
    width: 100%;
    min-height: 350px;
  }
}
@media (max-width: 650px) {
  .sport__row > div:last-child {
    min-height: 240px;
  }
}
.sport__row > div:last-child > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center var(--img-y, 5%);
     object-position: center var(--img-y, 5%);
}
.sport__table-wrap {
  width: 100%;
  padding: 0 20px;
  border-radius: 5px;
  background: var(--color-bg);
  backdrop-filter: blur(7.5px);
  overflow-x: auto;
}
.sport__table-wrap::-webkit-scrollbar {
  height: 6px;
}
.sport__table-wrap::-webkit-scrollbar-track {
  background: transparent;
}
.sport__table-wrap::-webkit-scrollbar-thumb {
  background: rgba(0, 255, 187, 0.4);
  border-radius: 3px;
}
.sport__table-wrap > table {
  width: 100%;
  min-width: 720px;
}
.sport__table-wrap > table tr {
  display: flex;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid rgba(0, 255, 187, 0.12);
}
.sport__table-wrap > table tr:last-child {
  border-bottom: 0;
}
.sport__table-wrap > table th,
.sport__table-wrap > table td {
  flex: 1 1 0;
  padding-right: 16px;
  text-align: left;
}
.sport__table-wrap > table th:last-child,
.sport__table-wrap > table td:last-child {
  padding-right: 0;
}
.sport__table-wrap > table th:first-child,
.sport__table-wrap > table td:first-child {
  flex: none;
  width: 160px;
}
.sport__table-wrap > table th {
  padding-top: 16px;
  padding-bottom: 16px;
  color: var(--color-light-blue);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.sport__table-wrap > table td {
  padding-top: 20px;
  padding-bottom: 20px;
  color: var(--color-white);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
.sport > .first__button {
  align-self: flex-start;
}

/*  ---------------- STREAM  ---------------- */
.content.stream {
  align-items: flex-start;
}

.stream > * + * {
  margin-top: 20px;
}
.stream > p {
  margin-top: 20px;
  color: var(--color-green-text);
}
.stream h3 {
  width: 100%;
  margin: 0;
  color: var(--color-light-blue);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase !important;
}
@media (max-width: 850px) {
  .stream h3 {
    font-size: 20px;
  }
}
.stream > h3 {
  margin-top: 20px;
  color: var(--color-red-text);
}
.stream__image {
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}
.stream__image > img {
  display: block;
  width: 100%;
  height: auto;
}
.stream__row {
  display: flex;
  gap: 12px;
  width: 100%;
}
@media (max-width: 850px) {
  .stream__row {
    flex-direction: column;
  }
}
.stream__row > div:first-child {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.stream__row > div:first-child > h3 {
  margin: 0;
  color: var(--color-red-text);
}
.stream__row > div:first-child > p {
  margin: 0;
  color: var(--color-green-text);
}
.stream__row > div:last-child {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  align-self: stretch;
  border-radius: 5px;
  overflow: hidden;
}
@media (max-width: 850px) {
  .stream__row > div:last-child {
    flex: none;
    width: 100%;
    min-height: 280px;
  }
}
.stream__row > div:last-child > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center var(--img-y, 50%);
     object-position: center var(--img-y, 50%);
}
.stream > .first__button {
  align-self: flex-start;
}

/*  ---------------- WAGERING  ---------------- */
.content.wagering {
  align-items: flex-start;
}

.wagering > * + * {
  margin-top: 20px;
}
.wagering > p {
  margin-top: 20px;
  color: var(--color-green-text);
}
.wagering {
  /* h3 sub-titles — cyan uppercase */
}
.wagering h3 {
  width: 100%;
  margin: 0;
  color: var(--color-light-blue);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase !important;
}
@media (max-width: 850px) {
  .wagering h3 {
    font-size: 20px;
  }
}
.wagering > h3 {
  margin-top: 20px;
}
.wagering__row {
  display: flex;
  gap: 12px;
  width: 100%;
  align-items: flex-start;
}
.wagering__row:nth-of-type(even) {
  flex-direction: row-reverse;
}
@media (max-width: 850px) {
  .wagering__row {
    flex-direction: column;
  }
  .wagering__row:nth-of-type(even) {
    flex-direction: column;
  }
}
.wagering__row > div:first-child {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.wagering__row > div:first-child > h3 {
  margin: 0;
  color: var(--color-red-text);
}
.wagering__row > div:first-child > p {
  margin: 0;
  color: var(--color-green-text);
}
@media (max-width: 850px) {
  .wagering__row > div:first-child {
    flex: none;
    width: 100%;
  }
}
.wagering__row > div:last-child {
  flex: 0 1 calc(50% - 6px);
  min-width: 0;
  align-self: center;
  border-radius: 5px;
  overflow: hidden;
}
.wagering__row > div:last-child > img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 850px) {
  .wagering__row > div:last-child {
    flex: none;
    width: 100%;
    max-width: 500px;
  }
}
.wagering__row:nth-of-type(1) > div:last-child {
  flex-basis: calc(57% - 6px);
}
@media (max-width: 850px) {
  .wagering__row:nth-of-type(1) > div:last-child {
    flex-basis: auto;
  }
}
.wagering__row:nth-of-type(2) > div:last-child {
  flex-basis: calc(40% - 6px);
}
@media (max-width: 850px) {
  .wagering__row:nth-of-type(2) > div:last-child {
    flex-basis: auto;
  }
}
.wagering > .first__button {
  align-self: flex-start;
}

/*  ---------------- PROGRAM  ---------------- */
.content.program {
  align-items: flex-start;
}

.program > * + * {
  margin-top: 20px;
}
.program > p {
  margin-top: 20px;
  color: var(--color-green-text);
}
.program h3 {
  width: 100%;
  margin: 0;
  color: var(--color-light-blue);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase !important;
}
@media (max-width: 850px) {
  .program h3 {
    font-size: 20px;
  }
}
.program__block {
  width: 100%;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 5px;
  background: var(--color-bg);
}
.program__block > p {
  margin: 0;
  color: var(--color-white);
}
.program__block > .first__button {
  align-self: flex-start;
  margin-top: 0;
}
.program__row {
  display: flex;
  gap: 12px;
  width: 100%;
}
@media (max-width: 850px) {
  .program__row {
    flex-direction: column;
  }
}
.program__row > div:last-child {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  align-self: stretch;
  border-radius: 5px;
  overflow: hidden;
}
@media (max-width: 850px) {
  .program__row > div:last-child {
    flex: none;
    width: 100%;
    min-height: 350px;
  }
}
@media (max-width: 650px) {
  .program__row > div:last-child {
    min-height: 240px;
  }
}
.program__row > div:last-child > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.program__table-wrap {
  flex: 1 1 0;
  min-width: 0;
  padding: 0 20px;
  border: 1px solid var(--color-red-text);
  border-radius: 5px;
  background: var(--color-white);
  box-shadow: 0 0 30px 10px rgba(0, 255, 229, 0.3);
  overflow-x: auto;
}
.program__table-wrap::-webkit-scrollbar {
  height: 6px;
}
.program__table-wrap::-webkit-scrollbar-track {
  background: transparent;
}
.program__table-wrap::-webkit-scrollbar-thumb {
  background: rgba(0, 255, 187, 0.4);
  border-radius: 3px;
}
.program__table-wrap > table {
  width: 100%;
}
.program__table-wrap > table tr {
  display: flex;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid rgba(255, 0, 0, 0.12);
}
.program__table-wrap > table tr:last-child {
  border-bottom: 0;
}
.program__table-wrap > table th,
.program__table-wrap > table td {
  flex: 1 1 0;
  padding-right: 16px;
  text-align: left;
}
.program__table-wrap > table th:last-child,
.program__table-wrap > table td:last-child {
  padding-right: 0;
}
.program__table-wrap > table th {
  padding-top: 16px;
  padding-bottom: 16px;
  color: var(--color-red-text);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.program__table-wrap > table td {
  padding-top: 20px;
  padding-bottom: 20px;
  color: var(--color-green-text);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
@media (max-width: 850px) {
  .program__table-wrap {
    flex: none;
    width: 100%;
    padding: 0 12px;
  }
}
.program__card {
  position: relative;
  width: 100%;
  padding: 12px;
  padding-right: 160px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 5px;
  background: var(--color-bg);
}
.program__card > p {
  margin: 0;
  color: var(--color-white);
}
.program__card > img {
  position: absolute;
  top: 0px;
  right: -13px;
  width: 164px;
  height: 164px;
  -o-object-fit: contain;
  object-fit: contain;
  pointer-events: none;
}
@media (max-width: 850px) {
  .program__card {
    padding-right: 12px;
  }
  .program__card > img {
    display: none;
  }
}
.program__promos {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
@media (max-width: 850px) {
  .program__promos {
    flex-direction: column;
    gap: 10px;
  }
}
.program__promos > li {
  position: relative;
  flex: 1 1 calc(50% - 6px);
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.program__promos > li:last-child:nth-child(odd) {
  flex: 0 1 calc(50% - 6px);
}
@media (max-width: 850px) {
  .program__promos > li {
    flex: 1 1 100%;
  }
}
.program__promos > li > img {
  position: relative;
  z-index: 1;
  width: 264px;
  max-width: 100%;
  height: 265px;
  margin-bottom: -155px;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
}
@media (max-width: 850px) {
  .program__promos > li > img {
    width: 210px;
    height: 210px;
    margin-bottom: -107px;
  }
}
.program__promos > li > div {
  position: relative;
  z-index: 2;
  flex: 1;
  width: 100%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--color-red-text);
  border-radius: 5px;
  background: var(--color-white);
  text-align: center;
}
.program__promos > li > div > h3 {
  width: 100%;
  color: var(--color-red-text);
  text-align: center;
}
.program__promos > li > div > p {
  margin: 0;
  color: var(--color-green-text);
}
.program__promos > li > div > .first__button {
  align-self: center;
  margin-top: auto;
}

/*  ---------------- USER  ---------------- */
.content.user {
  align-items: flex-start;
}

.user > * + * {
  margin-top: 20px;
}
.user > p {
  margin-top: 20px;
  color: var(--color-green-text);
}
.user h3 {
  width: 100%;
  margin: 0;
  color: var(--color-light-blue);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase !important;
}
@media (max-width: 850px) {
  .user h3 {
    font-size: 20px;
  }
}
.user > h3 {
  margin-top: 20px;
  color: var(--color-red-text);
}
.user__image {
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}
.user__image > img {
  display: block;
  width: 100%;
  height: auto;
}
.user__row {
  display: flex;
  gap: 12px;
  width: 100%;
  align-items: stretch;
}
@media (max-width: 850px) {
  .user__row {
    flex-direction: column;
  }
}
.user__row > div:first-child {
  position: relative;
  flex: none;
  width: 261px;
  align-self: stretch;
  border-radius: 5px;
  overflow: hidden;
}
@media (max-width: 850px) {
  .user__row > div:first-child {
    flex: none;
    width: 100%;
    min-height: 280px;
  }
}
.user__row > div:first-child > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.user__row > div:last-child {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.user__row > div:last-child > h3 {
  margin: 0;
  color: var(--color-red-text);
}
.user__row > div:last-child > p {
  margin: 0;
  color: var(--color-green-text);
}
.user {
  /* Second row uses a wider image column (Event Builder + Favourites) */
}
.user__row ~ .user__row > div:first-child {
  width: 477px;
}
@media (max-width: 850px) {
  .user__row ~ .user__row > div:first-child {
    width: 100%;
  }
}
.user {
  /* First row image — show full sidebar screenshot on tablet (no cropping) */
}
@media (max-width: 850px) {
  .user__row:first-of-type > div:first-child > img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.user > .first__button {
  align-self: flex-start;
}

/*  ---------------- FINAL  ---------------- */
.content.final {
  align-items: flex-start;
}

.final > * + * {
  margin-top: 20px;
}
.final > p {
  margin-top: 20px;
  color: var(--color-green-text);
}
.final__list {
  width: 100%;
  padding: 16px 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  border-radius: 5px;
  background: var(--color-bg);
}
.final__list > li {
  flex: 0 1 calc(50% - 6px);
  min-width: 0;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  border-radius: 5px;
  background: var(--color-white);
  text-align: center;
}
@media (max-width: 850px) {
  .final__list > li {
    flex: 0 1 100%;
  }
}
.final__list > li > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.final__list > li > div > img {
  flex: none;
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}
.final__list > li > div > strong {
  font-family: "Roboto", "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-red-text);
}
.final__list > li > p {
  margin: 0;
  font-family: "Roboto", "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-green-text);
}/*# sourceMappingURL=styles.css.map */