* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

:before, :after {
  box-sizing: border-box; }

html {
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

img {
  vertical-align: top;
  max-width: 100%; }

:root {
  --font-size:1.125rem;
  --line-height:1.6875rem;
  --bg-main: #141414;
  --color-title: #f6db75;
  --color-text: #9e9e9e;
  --link-color:#9e9e9e;
  --link-color-hover: #ffffff;
  --button-color-first: #f9ff57;
  --button-color-second: #fffb80;
  --button-color-third: #f9ff57;
  --button-color-type2-first: none;
  --button-color-type2-second: #3b3c31;
  --button-color-type2-third: #3b3c31;
  --buttons-height:3.75rem;
  --buttons-width:18.5rem;
  --buttons-font-size: 0.8125rem;
  --buttons-color: rgba(0, 0, 0, .9);
  --buttons-radius: 0.5rem;
  --sections-radius: 0.875rem;
  --shadow: 0 0 1.25rem rgba(0, 0, 0, .6); }

@media (max-width: 47.9375rem) {
  :root {
    --font-size:1rem;
    --line-height:1.5625rem;
    --sections-radius: 0.75rem;
    --buttons-font-size: 0.875rem; } }
:root {
  --page-bg: #121526;
  --container-bg: #132648;
  --text-main: #a4b1d7;
  --text-additional: #ffcc00;
  --heading: #ffffff;
  --btn-radius: 0.625rem;
  --btn-blue: #006fad;
  --btn-green: linear-gradient(180deg, #33c600, #206400);
  --btn-red: #e32424;
  --nav-pill-bg: rgba(255,255,255,0.03);
  --nav-pill-hover: rgba(255,255,255,0.06);
  --bonus-bg: rgba(0,0,0,0.18);
  --container-padding: 0.625rem;
  --btn-height: 2.75rem;
  --btn-large-height: 3.75rem;
  --container-padding-vertical: 0.625rem;
  --container-padding-horizontal: 0.625rem;
  --font-family-system: "Arial", "Helvetica Neue", Arial, sans-serif;
  --banner-overlay: rgba(0,0,0,0.28);
  --banner-height: 31.25rem;
  --banner-height-mobile: 80vh;
  --navlink-bg-start: #0f2a45;
  --navlink-bg-end: #08213a;
  --navlink-border: rgba(255,255,255,0.04);
  --navlink-hover-start: #143554;
  --navlink-hover-end: #0b2b44;
  --navlink-active-start: #081a2d;
  --navlink-active-end: #041222;
  --navlink-font-size: 0.8125rem;
  --navlink-padding: 0.6875rem 1.125rem 0.5rem 1.125rem;
  --navlink-gap: 0.5rem;
  --right-col-width: 21.25rem;
  --tile-bg: var(--page-bg);
  --tile-border: rgba(255,255,255,0.04);
  --tile-title-color: #dfe9ff;
  --tile-badge-bg: var(--text-additional);
  --tile-badge-color: #081026;
  --tile-shadow: 0 0.375rem 0.75rem rgba(0,0,0,0.45);
  --winner-thumb-w: 5.625rem;
  --winner-thumb-h: 3.875rem;
  --winner-amount-color: #ffcc00;
  --promo-height: 31.25rem;
  --podium-gold: #ffd24d;
  --podium-silver: #d6e0ff;
  --podium-bronze: #ffb86b; }

html, body {
  height: 100%; }

body {
  margin: 0;
  font-family: var(--font-family-system);
  background: var(--page-bg);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 0.875rem;
  line-height: 1.3; }

h1, h2, h3, h4, h5, h6 {
  color: var(--heading);
  margin: 0; }

a {
  color: var(--text-main);
  text-decoration: none; }

ul li {
  list-style: none; }

body, html {
  min-width: 21.875rem; }

main {
  padding-top: 4rem; }

section, header, footer {
  display: block; }

.container {
  min-width: 21.875rem; }

.container,
.container-fluid {
  width: 100%;
  padding-right: var(--container-padding);
  padding-left: var(--container-padding);
  margin-right: auto;
  margin-left: auto; }

@media (min-width: 36rem) {
  .container {
    max-width: 100%; } }
@media (min-width: 62rem) {
  .container {
    max-width: 62rem; } }
@media (min-width: 75rem) {
  .container {
    max-width: 73.125rem; } }
@media (min-width: 87.5rem) {
  .container {
    max-width: 82.5rem; } }
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0;
  margin-right: calc(var(--container-padding) * -1);
  margin-left: calc(var(--container-padding) * -1); }

.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: var(--container-padding);
  padding-left: var(--container-padding);
  margin-top: 0; }

.col {
  flex: 1 0 0%; }

@media (min-width: 36rem) {
  .col-sm {
    flex: 1 0 0%; } }
@media (min-width: 48rem) {
  .col-md {
    flex: 1 0 0%; } }
@media (min-width: 62rem) {
  .col-lg {
    flex: 1 0 0%; } }
@media (min-width: 75rem) {
  .col-xl {
    flex: 1 0 0%; } }
@media (min-width: 87.5rem) {
  .col-xxl {
    flex: 1 0 0%; } }
.col-auto {
  flex: 0 0 auto;
  width: auto; }

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%; }

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%; }

.col-3 {
  flex: 0 0 auto;
  width: 25%; }

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%; }

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%; }

.col-6 {
  flex: 0 0 auto;
  width: 50%; }

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%; }

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%; }

.col-9 {
  flex: 0 0 auto;
  width: 75%; }

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%; }

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%; }

.col-12 {
  flex: 0 0 auto;
  width: 100%; }

@media (min-width: 36rem) {
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto; }

  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%; }

  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%; }

  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%; }

  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%; }

  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%; }

  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%; }

  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%; }

  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%; }

  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%; }

  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%; }

  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%; }

  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%; } }
@media (min-width: 48rem) {
  .col-md-auto {
    flex: 0 0 auto;
    width: auto; }

  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%; }

  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%; }

  .col-md-3 {
    flex: 0 0 auto;
    width: 25%; }

  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%; }

  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%; }

  .col-md-6 {
    flex: 0 0 auto;
    width: 50%; }

  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%; }

  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%; }

  .col-md-9 {
    flex: 0 0 auto;
    width: 75%; }

  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%; }

  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%; }

  .col-md-12 {
    flex: 0 0 auto;
    width: 100%; } }
@media (min-width: 62rem) {
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto; }

  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%; }

  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%; }

  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%; }

  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%; }

  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%; }

  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%; }

  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%; }

  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%; }

  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%; }

  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%; }

  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%; }

  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%; } }
@media (min-width: 75rem) {
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto; }

  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%; }

  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%; }

  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%; }

  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%; }

  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%; }

  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%; }

  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%; }

  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%; }

  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%; }

  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%; }

  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%; }

  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%; } }
@media (min-width: 87.5rem) {
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto; }

  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%; }

  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%; }

  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%; }

  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%; }

  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%; }

  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%; }

  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%; }

  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%; }

  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%; }

  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%; }

  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%; }

  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%; } }
.d-block {
  display: block !important; }

.d-flex {
  display: flex !important; }

.d-none {
  display: none !important; }

.justify-content-start {
  justify-content: flex-start !important; }

.justify-content-end {
  justify-content: flex-end !important; }

.justify-content-center {
  justify-content: center !important; }

.justify-content-between {
  justify-content: space-between !important; }

.align-items-start {
  align-items: flex-start !important; }

.align-items-end {
  align-items: flex-end !important; }

.align-items-center {
  align-items: center !important; }

.align-content-start {
  align-content: flex-start !important; }

.align-content-end {
  align-content: flex-end !important; }

.align-content-center {
  align-content: center !important; }

.align-content-between {
  align-content: space-between !important; }

.align-self-auto {
  align-self: auto !important; }

.align-self-start {
  align-self: flex-start !important; }

.align-self-end {
  align-self: flex-end !important; }

.align-self-center {
  align-self: center !important; }

.order-0 {
  order: 0 !important; }

.order-1 {
  order: 1 !important; }

.order-2 {
  order: 2 !important; }

.order-3 {
  order: 3 !important; }

.order-4 {
  order: 4 !important; }

.order-5 {
  order: 5 !important; }

.order-6 {
  order: 6 !important; }

.text-start {
  text-align: left !important; }

.text-end {
  text-align: right !important; }

.text-center {
  text-align: center !important; }

@media (min-width: 36rem) {
  .d-sm-inline {
    display: inline !important; }

  .d-sm-inline-block {
    display: inline-block !important; }

  .d-sm-block {
    display: block !important; }

  .d-sm-flex {
    display: flex !important; }

  .d-sm-none {
    display: none !important; }

  .justify-content-sm-start {
    justify-content: flex-start !important; }

  .justify-content-sm-end {
    justify-content: flex-end !important; }

  .justify-content-sm-center {
    justify-content: center !important; }

  .justify-content-sm-between {
    justify-content: space-between !important; }

  .justify-content-sm-around {
    justify-content: space-around !important; }

  .align-items-sm-start {
    align-items: flex-start !important; }

  .align-items-sm-end {
    align-items: flex-end !important; }

  .align-items-sm-center {
    align-items: center !important; }

  .align-content-sm-start {
    align-content: flex-start !important; }

  .align-content-sm-end {
    align-content: flex-end !important; }

  .align-content-sm-center {
    align-content: center !important; }

  .align-content-sm-between {
    align-content: space-between !important; }

  .align-self-sm-auto {
    align-self: auto !important; }

  .align-self-sm-start {
    align-self: flex-start !important; }

  .align-self-sm-end {
    align-self: flex-end !important; }

  .align-self-sm-center {
    align-self: center !important; }

  .order-sm-0 {
    order: 0 !important; }

  .order-sm-1 {
    order: 1 !important; }

  .order-sm-2 {
    order: 2 !important; }

  .order-sm-3 {
    order: 3 !important; }

  .order-sm-4 {
    order: 4 !important; }

  .order-sm-5 {
    order: 5 !important; }

  .order-sm-6 {
    order: 6 !important; }

  .text-sm-start {
    text-align: left !important; }

  .text-sm-end {
    text-align: right !important; }

  .text-sm-center {
    text-align: center !important; } }
@media (min-width: 48rem) {
  .d-md-block {
    display: block !important; }

  .d-md-flex {
    display: flex !important; }

  .d-md-none {
    display: none !important; }

  .justify-content-md-start {
    justify-content: flex-start !important; }

  .justify-content-md-end {
    justify-content: flex-end !important; }

  .justify-content-md-center {
    justify-content: center !important; }

  .justify-content-md-between {
    justify-content: space-between !important; }

  .align-items-md-start {
    align-items: flex-start !important; }

  .align-items-md-end {
    align-items: flex-end !important; }

  .align-items-md-center {
    align-items: center !important; }

  .align-content-md-start {
    align-content: flex-start !important; }

  .align-content-md-end {
    align-content: flex-end !important; }

  .align-content-md-center {
    align-content: center !important; }

  .align-content-md-between {
    align-content: space-between !important; }

  .align-self-md-auto {
    align-self: auto !important; }

  .align-self-md-start {
    align-self: flex-start !important; }

  .align-self-md-end {
    align-self: flex-end !important; }

  .align-self-md-center {
    align-self: center !important; }

  .order-md-0 {
    order: 0 !important; }

  .order-md-1 {
    order: 1 !important; }

  .order-md-2 {
    order: 2 !important; }

  .order-md-3 {
    order: 3 !important; }

  .order-md-4 {
    order: 4 !important; }

  .order-md-5 {
    order: 5 !important; }

  .order-md-6 {
    order: 6 !important; }

  .text-md-start {
    text-align: left !important; }

  .text-md-end {
    text-align: right !important; }

  .text-md-center {
    text-align: center !important; } }
@media (min-width: 62rem) {
  .d-lg-inline-flex {
    display: inline-flex !important; }

  .d-lg-block {
    display: block !important; }

  .d-lg-flex {
    display: flex !important; }

  .d-lg-none {
    display: none !important; }

  .justify-content-lg-start {
    justify-content: flex-start !important; }

  .justify-content-lg-end {
    justify-content: flex-end !important; }

  .justify-content-lg-center {
    justify-content: center !important; }

  .justify-content-lg-between {
    justify-content: space-between !important; }

  .align-items-lg-start {
    align-items: flex-start !important; }

  .align-items-lg-end {
    align-items: flex-end !important; }

  .align-items-lg-center {
    align-items: center !important; }

  .align-content-lg-start {
    align-content: flex-start !important; }

  .align-content-lg-end {
    align-content: flex-end !important; }

  .align-content-lg-center {
    align-content: center !important; }

  .align-content-lg-between {
    align-content: space-between !important; }

  .align-self-lg-auto {
    align-self: auto !important; }

  .align-self-lg-start {
    align-self: flex-start !important; }

  .align-self-lg-end {
    align-self: flex-end !important; }

  .align-self-lg-center {
    align-self: center !important; }

  .order-lg-0 {
    order: 0 !important; }

  .order-lg-1 {
    order: 1 !important; }

  .order-lg-2 {
    order: 2 !important; }

  .order-lg-3 {
    order: 3 !important; }

  .order-lg-4 {
    order: 4 !important; }

  .order-lg-5 {
    order: 5 !important; }

  .order-lg-6 {
    order: 6 !important; }

  .text-lg-start {
    text-align: left !important; }

  .text-lg-end {
    text-align: right !important; }

  .text-lg-center {
    text-align: center !important; } }
@media (min-width: 75rem) {
  .d-xl-block {
    display: block !important; }

  .d-xl-flex {
    display: flex !important; }

  .d-xl-none {
    display: none !important; }

  .justify-content-xl-start {
    justify-content: flex-start !important; }

  .justify-content-xl-end {
    justify-content: flex-end !important; }

  .justify-content-xl-center {
    justify-content: center !important; }

  .justify-content-xl-between {
    justify-content: space-between !important; }

  .align-items-xl-start {
    align-items: flex-start !important; }

  .align-items-xl-end {
    align-items: flex-end !important; }

  .align-items-xl-center {
    align-items: center !important; }

  .align-content-xl-start {
    align-content: flex-start !important; }

  .align-content-xl-end {
    align-content: flex-end !important; }

  .align-content-xl-center {
    align-content: center !important; }

  .align-content-xl-between {
    align-content: space-between !important; }

  .align-self-xl-auto {
    align-self: auto !important; }

  .align-self-xl-start {
    align-self: flex-start !important; }

  .align-self-xl-end {
    align-self: flex-end !important; }

  .align-self-xl-center {
    align-self: center !important; }

  .order-xl-0 {
    order: 0 !important; }

  .order-xl-1 {
    order: 1 !important; }

  .order-xl-2 {
    order: 2 !important; }

  .order-xl-3 {
    order: 3 !important; }

  .order-xl-4 {
    order: 4 !important; }

  .order-xl-5 {
    order: 5 !important; }

  .order-xl-6 {
    order: 6 !important; }

  .text-xl-start {
    text-align: left !important; }

  .text-xl-end {
    text-align: right !important; }

  .text-xl-center {
    text-align: center !important; } }
@media (min-width: 87.5rem) {
  .d-xxl-block {
    display: block !important; }

  .d-xxl-flex {
    display: flex !important; }

  .justify-content-xxl-start {
    justify-content: flex-start !important; }

  .justify-content-xxl-end {
    justify-content: flex-end !important; }

  .justify-content-xxl-center {
    justify-content: center !important; }

  .justify-content-xxl-between {
    justify-content: space-between !important; }

  .align-items-xxl-start {
    align-items: flex-start !important; }

  .align-items-xxl-end {
    align-items: flex-end !important; }

  .align-items-xxl-center {
    align-items: center !important; }

  .align-content-xxl-start {
    align-content: flex-start !important; }

  .align-content-xxl-end {
    align-content: flex-end !important; }

  .align-content-xxl-center {
    align-content: center !important; }

  .align-content-xxl-between {
    align-content: space-between !important; }

  .align-self-xxl-auto {
    align-self: auto !important; }

  .align-self-xxl-start {
    align-self: flex-start !important; }

  .align-self-xxl-end {
    align-self: flex-end !important; }

  .align-self-xxl-center {
    align-self: center !important; }

  .order-xxl-0 {
    order: 0 !important; }

  .order-xxl-1 {
    order: 1 !important; }

  .order-xxl-2 {
    order: 2 !important; }

  .order-xxl-3 {
    order: 3 !important; }

  .order-xxl-4 {
    order: 4 !important; }

  .order-xxl-5 {
    order: 5 !important; }

  .order-xxl-6 {
    order: 6 !important; }

  .text-xxl-start {
    text-align: left !important; }

  .text-xxl-end {
    text-align: right !important; }

  .text-xxl-center {
    text-align: center !important; } }
header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 5; }

nav {
  position: absolute;
  height: 100vh;
  left: 0;
  top: 0;
  padding-top: 5.25rem;
  background: var(--container-bg);
  z-index: 1;
  width: 16.875rem; }
nav > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; }
nav ul {
  margin-top: 1.25rem; }
nav ul li a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: var(--btn-height);
  transition: 0.15s;
  padding: 0 var(--container-padding);
  justify-content: center; }
nav ul li a:hover {
  background: var(--page-bg); }

.header-container {
  padding-top: var(--container-padding-vertical);
  padding-bottom: var(--container-padding-vertical);
  background: var(--container-bg);
  box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.35);
  align-items: center;
  position: relative; }

.header-container-bg {
  position: relative;
  z-index: 2; }

.menu-btn {
  color: var(--text-main);
  font-size: 1.25rem;
  background: transparent;
  border: none;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--btn-radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  cursor: pointer;
  background: var(--nav-pill-hover);
  position: relative;
  transition: 0.15s; }
.menu-btn > div {
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  height: 0.125rem;
  top: 50%;
  margin-top: -0.0625rem;
  background: var(--text-main); }
.menu-btn > div:before, .menu-btn > div:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 0.125rem;
  background: var(--text-main);
  transition: 0.15s; }
.menu-btn > div:before {
  top: -0.375rem; }
.menu-btn > div:after {
  top: 0.375rem; }
.menu-btn.visible > div {
  background: none; }
.menu-btn.visible > div:before, .menu-btn.visible > div:after {
  top: 0; }
.menu-btn.visible > div:before {
  transform: rotate(45deg); }
.menu-btn.visible > div:after {
  transform: rotate(-45deg); }

.menu-btn:hover {
  background: var(--page-bg); }

.nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem var(--container-padding);
  background: var(--nav-pill-bg);
  color: var(--text-main);
  text-decoration: none;
  border-radius: var(--buttons-radius);
  font-weight: 600;
  font-size: 0.8125rem;
  margin-right: 0.5rem; }

.nav-pill:hover {
  background: var(--nav-pill-hover);
  color: var(--heading); }

.icon {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
  display: inline-block; }

.logo {
  display: block;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0; }

.bonus-box {
  background: var(--bonus-bg);
  padding: 0.375rem var(--container-padding);
  border-radius: var(--buttons-radius);
  min-width: 7.5rem;
  color: var(--text-main);
  font-size: 0.75rem; }

.bonus-title {
  color: var(--text-additional);
  font-weight: 700;
  font-size: 0.75rem; }

.bonus-sub {
  color: var(--text-main);
  font-size: 0.6875rem; }

.btn-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--btn-height);
  line-height: 1;
  padding: 0 var(--container-padding);
  color: #ffffff;
  text-decoration: none;
  border: none;
  border-radius: var(--btn-radius);
  font-weight: 700;
  font-size: 0.8125rem;
  cursor: pointer;
  box-shadow: 0 0.125rem 0 rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  min-width: 5.25rem; }
.btn-custom.large {
  height: var(--btn-large-height);
  width: 15rem;
  max-width: 100%;
  font-size: 1.125rem; }

.btn-primary-custom {
  background: var(--btn-green); }

.btn-primary-custom:hover {
  filter: brightness(0.95); }

.btn-success-custom {
  background: var(--btn-green); }

.btn-success-custom:hover {
  filter: brightness(0.95); }

.btn-third-custom {
  background: var(--btn-red); }

.btn-third-custom:hover {
  filter: brightness(0.95); }

.btn-secondary-custom {
  background: var(--btn-blue); }

.btn-secondary-custom:hover {
  filter: brightness(0.95); }

.logo-wrap {
  margin-bottom: -1.5rem;
  margin-top: -0.625rem;
  display: block;
  width: 4.625rem;
  height: 4.625rem;
  margin-left: auto;
  margin-right: auto;
  position: relative; }

@media (max-width: 47.9375rem) {
  .header-container {
    padding: 0.5rem 0.625rem; }

  .bonus-box {
    display: none; }

  .nav-pill {
    padding: 0.375rem var(--container-padding);
    font-size: 0.75rem;
    margin-right: 0.3125rem; }

  .btn-custom {
    padding: 0 var(--container-padding);
    font-size: 0.75rem; } }
.banner-section {
  overflow: hidden; }
.banner-section.second {
  margin-top: calc(var(--container-padding) * 3); }
.banner-section.second .container {
  overflow: hidden; }

.banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  opacity: 0.5; }

.banner-content .container {
  position: relative; }

.banner-content .row {
  height: var(--banner-height);
  position: relative;
  z-index: 2;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem; }

.banner-text {
  color: var(--heading);
  max-width: 25rem;
  padding: 0 var(--container-padding); }

.banner-text__main, .promo-prize, .promo-caption {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text-main); }
.banner-text__fs, .promo-name, .promo-prize-cash {
  font-size: 3.75rem;
  line-height: 1;
  font-weight: 700;
  color: var(--text-additional);
  margin-bottom: 0.5rem; }
.banner-text p {
  font-size: 1rem;
  margin: 0; }

@media (min-width: 61.9375rem) {
  .banner-content .container {
    border-bottom-left-radius: var(--buttons-radius);
    border-bottom-right-radius: var(--buttons-radius);
    overflow: hidden; }

  .banner-section.second .container {
    border-radius: var(--buttons-radius); } }
@media (max-width: 47.9375rem) {
  .banner-text {
    max-width: 21.25rem; }

  .banner-text__main, .promo-prize, .promo-caption {
    font-size: 2.25rem; }
  .banner-text__fs, .promo-name, .promo-prize-cash {
    font-size: 3rem; }
  .banner-text p {
    font-size: 1rem; } }
@media (max-width: 40.625rem) {
  .banner-section.second .banner-content .row {
    height: 26.25rem;
    max-height: 43.75rem;
    min-height: 26.25rem; } }
@media (max-width: 33.75rem) {
  .banner-section.second .banner-content .row {
    height: 20rem;
    min-height: 20rem; } }
@media (max-width: 25rem) {
  .banner-section.second .banner-content .row {
    height: 17.375rem;
    min-height: 17.375rem; } }
.hero-block {
  padding: 5.625rem 0 4.375rem 0; }

.hero-block h1, .hero-block h2, .hero-block h3 {
  line-height: 1;
  margin: 0 0 1rem;
  font-weight: 800;
  letter-spacing: 0.0125rem;
  color: var(--text-additional); }

.hero-block h1 {
  font-size: 3rem;
  line-height: 1.05; }

.hero-block h2 {
  font-size: 2.375rem; }

.hero-block h3 {
  font-size: 2rem; }

.hero-text {
  color: var(--heading);
  font-size: 1rem;
  margin: 0 auto;
  max-width: 56.25rem; }

@media (max-width: 87.4375rem) {
  .hero-block h1 {
    font-size: 2.625rem; } }
@media (max-width: 74.9375rem) {
  .hero-block h1 {
    font-size: 2.25rem; } }
@media (max-width: 61.9375rem) {
  .hero-block h1 {
    font-size: 2.125rem; } }
@media (max-width: 47.9375rem) {
  .hero-block {
    padding: 4.375rem 0 3.75rem 0; }

  .hero-title {
    font-size: 1.75rem; }

  .hero-text {
    font-size: 0.875rem; }

  .hero-block h1 {
    font-size: 2rem; } }
.games-container {
  background: var(--container-bg); }

.games-nav {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
  padding: var(--container-padding) 0 0 0; }

.games-nav::-webkit-scrollbar {
  height: 0.375rem; }

.games-nav::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 0.375rem; }

.games-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--navlink-padding);
  background: linear-gradient(180deg, var(--navlink-bg-start), var(--navlink-bg-end));
  color: var(--text-main);
  text-decoration: none;
  border: 0.0625rem solid var(--navlink-border);
  border-radius: var(--btn-radius);
  box-shadow: inset 0 0.0625rem 0 rgba(255, 255, 255, 0.03);
  font-size: var(--navlink-font-size);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.01875rem;
  margin-right: var(--navlink-gap);
  min-height: 2.25rem;
  line-height: 1;
  padding-left: 0.875rem;
  padding-right: 0.875rem;
  text-transform: uppercase; }

.games-nav-link:hover {
  background: linear-gradient(180deg, var(--navlink-hover-start), var(--navlink-hover-end));
  color: var(--heading);
  transform: translateY(-0.0625rem); }

.games-nav-link.active {
  background: linear-gradient(180deg, var(--navlink-active-start), var(--navlink-active-end));
  color: var(--heading);
  border-color: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 -0.375rem 1.125rem rgba(0, 0, 0, 0.45), 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.5); }

@media (min-width: 61.9375rem) {
  .games-container {
    border-top-left-radius: var(--buttons-radius);
    border-top-right-radius: var(--buttons-radius);
    overflow: hidden; } }
@media (max-width: 47.9375rem) {
  .games-nav-link {
    padding: 0.4375rem 0.75rem;
    font-size: 0.75rem;
    margin-right: 0.375rem; } }
section.games-section .container {
  background: var(--container-bg);
  padding-bottom: var(--container-padding); }

.d-flex.align-items-start {
  align-items: flex-start; }

.content-left {
  padding-top: var(--container-padding); }

.sidebar {
  width: var(--right-col-width);
  position: relative; }

.game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--container-padding); }

.game-tile {
  display: block;
  background: var(--tile-bg);
  border: 0.0625rem solid var(--tile-border);
  border-radius: var(--buttons-radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--tile-shadow);
  text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease;
  min-height: 13.125rem;
  cursor: pointer; }

.game-tile:hover {
  transform: translateY(-0.375rem);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.6); }

.tile-img {
  width: 100%;
  height: 10rem;
  overflow: hidden;
  background: #0b2b44;
  display: flex;
  align-items: center;
  justify-content: center; }

.tile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; }

.tile-title {
  padding: 0.625rem 0.75rem;
  background: rgba(2, 14, 36, 0.45);
  color: var(--tile-title-color);
  font-weight: 700;
  font-size: 0.8125rem;
  text-align: center;
  text-shadow: 0 0.0625rem 0 rgba(0, 0, 0, 0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.tile-badge {
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
  background: var(--tile-badge-bg);
  color: var(--tile-badge-color);
  padding: 0.25rem 0.5rem;
  font-size: 0.6875rem;
  font-weight: 800;
  border-radius: 0.25rem;
  z-index: 3;
  box-shadow: 0 0.0625rem 0 rgba(0, 0, 0, 0.3); }

.tile-star {
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  color: #ffcc00;
  background: var(--btn-blue);
  display: flex;
  flex-wrap: wrap;
  height: 1.375rem;
  width: 1.375rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  z-index: 3; }

.sidebar-inner {
  background: var(--page-bg);
  border-radius: var(--buttons-radius);
  padding: 0.875rem 0.625rem;
  color: var(--text-main);
  border: 0.0625rem solid rgba(255, 255, 255, 0.03);
  overflow: hidden;
  position: absolute;
  left: 0;
  right: var(--container-padding);
  bottom: 0;
  top: var(--container-padding); }
.sidebar-inner:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3.75rem;
  z-index: 2;
  background: rgba(0, 0, 0, 0);
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, var(--page-bg) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, var(--page-bg) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, var(--page-bg) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$from-color', endColorstr='$to-color',GradientType=1 ); }

.sidebar-title, .promo-card-title {
  color: var(--heading);
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 700; }

.sidebar-list a {
  color: var(--text-main);
  display: block;
  padding: 0.5rem 0;
  text-decoration: none;
  font-size: 0.8125rem; }

.sidebar-list a:hover {
  color: var(--heading); }

.winners-list {
  overflow-y: auto;
  padding: 0;
  margin: 0;
  position: relative; }

.winners-list::-webkit-scrollbar {
  width: 0.5rem; }

.winners-list::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.35);
  border-radius: 0.375rem; }

.winner-item-wrap {
  position: relative;
  gap: 0.5rem;
  height: 5.625rem;
  overflow: hidden;
  transition: height 0.35s ease-out; }
.winner-item-wrap:first-child .winner-item {
  border-top: 0; }

.winner-item {
  padding-left: calc(var(--winner-thumb-w) + 0.625rem);
  border-top: 0.0625rem solid var(--text-main);
  height: 5.625rem;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-items: center; }

.winner-thumb {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: var(--winner-thumb-w);
  height: var(--winner-thumb-h);
  overflow: hidden;
  border-radius: 0.375rem;
  background: #0b2b44;
  box-shadow: 0 0.1875rem 0.5rem rgba(0, 0, 0, 0.45); }

.winner-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; }

.winner-info {
  display: flex;
  flex-direction: column;
  justify-content: center; }

.winner-name {
  color: var(--heading);
  font-weight: 700;
  font-size: 0.8125rem;
  line-height: 1; }

.winner-sub {
  color: var(--text-main);
  font-size: 0.75rem;
  margin-top: 0.25rem; }

.winner-amount {
  margin-left: auto;
  color: var(--winner-amount-color);
  font-weight: 800;
  font-size: 0.875rem;
  white-space: nowrap; }

@media (min-width: 61.9375rem) {
  section.games-section .container {
    border-bottom-left-radius: var(--buttons-radius);
    border-bottom-right-radius: var(--buttons-radius); } }
@media (max-width: 74.9375rem) {
  .game-grid {
    grid-template-columns: repeat(3, 1fr); }

  .tile-img {
    height: 9.375rem; } }
@media (max-width: 53.125rem) {
  .game-grid {
    grid-template-columns: repeat(2, 1fr); }

  .tile-img {
    height: auto;
    position: relative;
    padding-top: 80%; }

  .tile-img img {
    position: absolute;
    left: 0;
    top: 0; }

  .sidebar {
    width: 100%;
    padding-top: calc(var(--container-padding) * 2); }

  .sidebar-inner {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    top: auto;
    max-height: 31.25rem; } }
@media (max-width: 33.75rem) {
  .game-grid {
    grid-template-columns: repeat(1, 1fr);
    width: 23.75rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto; } }
.contest-section {
  margin-top: calc(var(--container-padding) * 3); }
.contest-section .container {
  background: var(--container-bg);
  padding-bottom: var(--container-padding); }

.promo-card {
  position: relative;
  border-radius: 0.375rem;
  overflow: hidden;
  background: var(--page-bg);
  box-shadow: 0 0.375rem 0.75rem rgba(0, 0, 0, 0.45); }

.promo-inner > * {
  position: relative;
  z-index: 2; }

.promo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  opacity: 0.5; }

.promo-inner {
  position: relative;
  z-index: 2;
  padding: 1.375rem;
  height: var(--promo-height);
  display: flex;
  flex-direction: column;
  justify-content: center; }

.promo-inner-text {
  max-width: 25rem;
  text-align: center; }

.promo-footer {
  margin-top: var(--container-padding);
  margin-bottom: var(--container-padding);
  gap: var(--container-padding); }
.promo-footer .btn-custom {
  padding-top: 0.125rem; }

.countdown {
  display: flex;
  gap: 0.5rem;
  align-items: center; }

.cd-box {
  background: var(--container-bg);
  color: var(--heading);
  padding: 0.5rem 0.625rem;
  border-radius: 0.25rem;
  text-align: center;
  min-width: 3.25rem; }

.cd-box span {
  display: block;
  font-weight: 800;
  font-size: 1.125rem; }

.cd-box small {
  display: block;
  color: var(--text-main);
  font-size: 0.6875rem;
  margin-top: 0.25rem; }

.podiums {
  gap: 0.625rem;
  margin-bottom: 0.75rem; }

.podium {
  background: var(--container-bg);
  border-radius: 0.375rem;
  padding: 0.5rem 0.3125rem;
  width: 100%;
  text-align: center;
  color: var(--text-main); }

.podium-icon {
  font-size: 1.25rem;
  margin-bottom: 0.375rem;
  height: 2.875rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  transform: scaleY(1.5);
  font-weight: 600; }

.podium-gold .podium-icon {
  color: var(--podium-gold);
  font-size: 2.125rem; }

.podium-silver .podium-icon {
  color: var(--podium-silver);
  font-size: 1.625rem; }

.podium-bronze .podium-icon {
  color: var(--podium-bronze); }

.podium-amount {
  color: var(--podium-gold);
  font-weight: 900;
  font-size: 0.75rem; }

.ranking-list {
  max-height: 32.5rem;
  overflow-y: auto;
  margin: 0;
  padding-bottom: 5rem; }

.ranking-list::-webkit-scrollbar {
  width: 0.5rem; }

.ranking-list::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.35);
  border-radius: 0.375rem; }

.rank-item {
  position: relative;
  padding: 0.625rem 0.625rem 0.625rem 0;
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.03);
  min-height: 4.625rem; }

.rank-num {
  width: 1.75rem;
  text-align: center;
  color: var(--text-main);
  font-weight: 800;
  margin-right: 0.5rem;
  display: inline-block; }

.rank-info {
  display: flex;
  flex-direction: column; }

.rank-name {
  color: var(--heading);
  font-weight: 700;
  font-size: 0.8125rem; }

.rank-sub {
  color: var(--text-main);
  font-size: 0.75rem;
  margin-top: 0.25rem; }

.rank-amount {
  margin-left: auto;
  color: #ffd24d;
  font-weight: 900;
  font-size: 0.875rem;
  white-space: nowrap;
  position: absolute;
  right: 1rem;
  top: 1rem; }

.rank-stat {
  position: absolute;
  right: 1rem;
  bottom: 0.75rem;
  color: var(--text-main);
  font-size: 0.6875rem; }

.promo-prize, .promo-caption {
  font-size: 1.875rem; }

.promo-card-title {
  margin-top: 0.3125rem; }

.sidebar-tournament {
  overflow: hidden;
  position: absolute;
  left: 0;
  right: var(--container-padding);
  bottom: 0;
  top: 0;
  padding-top: calc(var(--container-padding) + 0.3125rem);
  border-bottom-left-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem; }
.sidebar-tournament .sidebar-inner {
  position: relative;
  right: auto;
  bottom: auto;
  top: auto;
  left: auto; }
.sidebar-tournament .sidebar-inner:before {
  display: none; }
.sidebar-tournament:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3.75rem;
  z-index: 2;
  background: rgba(0, 0, 0, 0);
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, var(--page-bg) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, var(--page-bg) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, var(--page-bg) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$from-color', endColorstr='$to-color',GradientType=1 ); }

.promo-card-end-date {
  font-size: 0.875rem;
  color: var(--text-main);
  font-weight: 200;
  padding-left: var(--container-padding); }

@media (min-width: 61.9375rem) {
  .contest-section .container {
    border-radius: var(--buttons-radius); } }
@media (max-width: 53.125rem) {
  .sidebar-tournament {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    top: auto;
    max-height: 31.25rem; } }
@media (max-width: 40.625rem) {
  .promo-img {
    object-position: right; } }
@media (max-width: 30rem) {
  .promo-footer {
    flex-wrap: wrap; }

  .countdown {
    width: 100%;
    justify-content: center; } }
.text-block {
  margin-top: calc(var(--container-padding) * 3);
  color: var(--text-main); }
.text-block .container {
  background: var(--container-bg);
  padding-bottom: var(--container-padding); }

.text-block-content {
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem; }
.text-block-content > * {
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.6; }
.text-block-content > *:last-child {
  margin-bottom: 0; }
.text-block-content ul li {
  padding-left: 1.125rem;
  list-style: none;
  position: relative;
  margin-top: 0.625rem; }
.text-block-content ul li:first-child {
  margin-top: 0; }
.text-block-content ul li:before {
  content: '';
  width: 0.625rem;
  height: 0.625rem;
  font-size: 0.5rem;
  left: 0;
  top: 0.4375rem;
  position: absolute;
  background: var(--btn-blue);
  border-radius: 100%; }
.text-block-content ol {
  list-style-position: inside; }
.text-block-content ol li::marker {
  color: var(--btn-blue); }

.text-block-content h1,
.text-block-content h2,
.text-block-content h3 {
  color: var(--heading);
  line-height: 1.15; }

.text-block-content h1 {
  font-size: 2.375rem;
  font-weight: 800; }

.text-block-content h2 {
  font-size: 1.625rem;
  font-weight: 700; }

.text-block-content h3 {
  font-size: 1.125rem;
  font-weight: 700; }

.text-block-content p {
  color: var(--text-main);
  max-width: 61.25rem; }

.text-block-content ul,
.text-block-content ol {
  color: var(--text-main);
  font-size: 0.9375rem; }

table {
  background: var(--page-bg);
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  margin-bottom: 1rem;
  border-radius: var(--buttons-radius); }
table td, table th {
  text-align: left;
  padding: 0.625rem 0.625rem 0.625rem 0.625rem; }

table thead th {
  background: rgba(255, 255, 255, 0.03);
  color: var(--heading);
  font-weight: 700;
  border-bottom: 0.0625rem solid var(--btn-blue); }

table tbody tr:last-child td {
  border-bottom: 0; }

table tbody td {
  color: var(--text-main);
  border-bottom: 0.0625rem solid var(--btn-blue);
  vertical-align: middle;
  font-size: 0.875rem; }

@media (min-width: 61.9375rem) {
  .text-block .container {
    border-radius: var(--buttons-radius); } }
@media (max-width: 47.9375rem) {
  .text-block-content h1 {
    font-size: 1.625rem; }

  .text-block-content h2 {
    font-size: 1.25rem; }

  .text-block-content p,
  .text-block-content ul,
  .text-block-content ol {
    font-size: 0.875rem; } }
.site-footer {
  color: var(--text-main);
  margin-top: calc(var(--container-padding) * 3); }

.footer-providers {
  background: var(--container-bg);
  padding-top: calc(var(--container-padding) * 2);
  padding-bottom: calc(var(--container-padding) * 2); }

.providers-scroll {
  flex-wrap: wrap;
  gap: calc(var(--container-padding) * 1.4) var(--container-padding); }

.provider-logo {
  height: 1.25rem;
  opacity: 0.65;
  filter: grayscale(1);
  display: inline-block;
  object-fit: contain; }

.footer-main {
  padding-top: calc(var(--container-padding) * 3);
  padding-bottom: calc(var(--container-padding) * 2); }

.footer-main .footer-col-title {
  color: var(--heading);
  font-weight: 700;
  margin-bottom: 0.5rem; }

.footer-links,
.footer-links-small {
  padding: 0;
  margin: 0; }

.footer-links a,
.footer-links-small a,
.social-link,
.cert {
  color: var(--text-main);
  text-decoration: none;
  display: inline-block;
  font-size: 0.875rem; }

.footer-links a:hover,
.footer-links-small a:hover,
.social-link:hover,
.cert:hover {
  color: var(--heading);
  text-decoration: underline; }

.footer-logo {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: contain;
  border-radius: 0.375rem;
  background: transparent; }

.footer-site-name {
  color: var(--heading);
  font-weight: 800;
  font-size: 1rem; }

.footer-desc {
  color: var(--text-main);
  font-size: 0.8125rem; }

.cert {
  display: flex;
  flex-wrap: wrap;
  cursor: pointer; }
.cert i {
  width: 100%;
  font-style: normal;
  cursor: pointer; }

.cert-img {
  height: 1.75rem;
  object-fit: contain; }

.footer-bottom-left {
  padding-top: calc(var(--container-padding) * 2);
  padding-bottom: calc(var(--container-padding) * 2);
  text-align: center; }

.footer-bottom-left small {
  color: var(--text-main);
  font-size: 0.8125rem; }

footer .list-unstyled li {
  margin-top: 0.625rem;
  margin-bottom: 0.625rem; }
footer .list-unstyled li span {
  cursor: pointer;
  margin-top: 0.625rem;
  margin-bottom: 0.9375rem;
  display: flex;
  flex-wrap: wrap; }
footer .list-unstyled li:last-child span {
  margin-bottom: 0; }

.footer-links-bottom a {
  color: #1AAAFF;
  text-decoration: underline;
  font-size: 1rem;
  position: relative;
  padding-left: 1.5rem; }
.footer-links-bottom a:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.0625rem;
  width: 1rem;
  height: 1rem;
  background: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M14.0085 1.3335L9.40137 1.3335C9.03787 1.3335 8.74321 1.62817 8.74321 1.99166C8.74321 2.35515 9.03787 2.64982 9.40137 2.64982H12.4196L7.5261 7.54328C7.26908 7.8003 7.26908 8.21703 7.5261 8.47406C7.78313 8.73109 8.19986 8.73109 8.45689 8.47406L13.3503 3.5806L13.3503 6.5988C13.3503 6.96229 13.645 7.25696 14.0085 7.25696C14.372 7.25696 14.6667 6.96229 14.6667 6.5988L14.6667 1.99166C14.6667 1.62817 14.372 1.3335 14.0085 1.3335ZM3.33333 6.00016C3.33333 5.26378 3.93029 4.66683 4.66667 4.66683H6.65926C7.02745 4.66683 7.32593 4.36835 7.32593 4.00016C7.32593 3.63197 7.02745 3.3335 6.65926 3.3335H4.66667C3.19391 3.3335 2 4.5274 2 6.00016V11.3335C2 12.8063 3.19391 14.0002 4.66667 14.0002H10C11.4728 14.0002 12.6667 12.8061 12.6667 11.3334V9.57424C12.6667 9.20605 12.3682 8.90757 12 8.90757C11.6318 8.90757 11.3333 9.20605 11.3333 9.57424V11.3334C11.3333 12.0698 10.7363 12.6668 10 12.6668H4.66667C3.93029 12.6668 3.33333 12.0699 3.33333 11.3335V6.00016Z' fill='%239BA7CA'/%3E%3C/svg%3E") no-repeat center center; }
.footer-links-bottom a:hover {
  text-decoration: none;
  color: var(--heading); }

@media (min-width: 61.9375rem) {
  .footer-providers {
    border-radius: var(--buttons-radius); } }
@media (max-width: 47.9375rem) {
  .provider-logo {
    height: 1.375rem;
    margin-right: 0.75rem; }

  .footer-main {
    row-gap: 1.125rem; }

  .footer-logo {
    width: 3rem;
    height: 3rem; }

  .footer-site-name {
    font-size: 0.875rem; }

  .footer-col-title {
    font-size: 0.875rem; } }

/*# sourceMappingURL=style.css.map */
