:root {
  --row-gap-x: 15px;
  --body-ff: 'Muller', Arial, Helvetica, sans-serif;
  --body-fz: 16px;
  --body-lh: 1.55;
  --body-fc: var(--white);
  --body-bg: var(--body-bg);
  --h-ff: var(--body-ff);
  --h-fw: 500;
  --h-lh: 1.3;
  --h-mb: 0 0 30px 0;
  --h1-fz: 40px;
  --h2-fz: 34px;
  --h3-fz: 32px;
  --h4-fz: 28px;
  --h5-fz: 26px;
  --h6-fz: 24px;
  --p-mb: 0 0 30px 0;
  --sec-p: 35px;
  --sec-h-mb: 30px;
  --sec-h-t-mb: 15px;
  --white: #ffffff;
  --gray: #f5f5f5;
  --black: #000000;
  --red: #FE284A;
  --red-90: #BF0926;
  --body-bg: #292A3C;
  --body-mobile-bg: #252637;
  --table-even: #0B0D3E;
  --table-odd: #393A51;
  --header-bg: #2B2D41;
  --footer-bg: #181725;
  --pattern-bg: #181927;
  --line-bg: #323350;
  --game-bg: #262739;
  --dot-bg: #323350;
  --dot-mobile-bg: #575872;
  --input-border: #3B3C53;
}

.container {
  margin: 0 auto;
  padding: 0 var(--row-gap-x);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 100%;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: calc(var(--row-gap-x) * -0.5);
  margin-left: calc(var(--row-gap-x) * -0.5);
  margin-top: calc(var(--row-gap-y) * -1);
}

.row > * {
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--row-gap-x) * 0.5);
  padding-left: calc(var(--row-gap-x) * 0.5);
  margin-top: var(--row-gap-y);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.col-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 8.33333%;
  flex: 0 0 8.33333%;
  width: 8.33333%;
}

.col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.66667%;
  flex: 0 0 16.66667%;
  width: 16.66667%;
}

.col-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%;
  width: 33.33333%;
}

.col-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 41.66667%;
  flex: 0 0 41.66667%;
  width: 41.66667%;
}

.col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 58.33333%;
  flex: 0 0 58.33333%;
  width: 58.33333%;
}

.col-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.66667%;
  flex: 0 0 66.66667%;
  width: 66.66667%;
}

.col-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 83.33333%;
  flex: 0 0 83.33333%;
  width: 83.33333%;
}

.col-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 91.66667%;
  flex: 0 0 91.66667%;
  width: 91.66667%;
}

.col-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  width: 100%;
}

@font-face {
  font-display: swap;
  font-family: "Muller";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Muller/MullerRegular.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Muller";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Muller/MullerMedium.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Muller";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Muller/MullerBold.woff2") format("woff2");
}

.text-start {
  text-align: start !important;
}

.text-center {
  text-align: center !important;
}

.text-end {
  text-align: end !important;
}

.fw-100 {
  font-weight: 100 !important;
}

.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-900 {
  font-weight: 900 !important;
}

.text-white {
  color: var(--white) !important;
}

.text-black {
  color: var(--black) !important;
}

.text-gray {
  color: var(--gray) !important;
}

.text-red {
  color: var(--red) !important;
}

.bg-white {
  background-color: var(--white) !important;
}

.bg-black {
  background-color: var(--black) !important;
}

.bg-gray {
  background-color: var(--gray) !important;
}

.bg-red {
  background-color: var(--red) !important;
}

.reset-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-flex-center {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-items-start {
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.flex-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.flex-items-end {
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.flex-content-start {
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}

.flex-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.flex-content-end {
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.flex-content-between {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.flex-fill {
  -webkit-box-flex: 1 !important;
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important;
}

.flex-one {
  -webkit-box-flex: 1 !important;
  -ms-flex: 1 !important;
  flex: 1 !important;
}

.no-wrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.w-100 {
  width: 100% !important;
}

.w-100-vw {
  width: 100vw !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mw-100-vw {
  max-width: 100vw !important;
}

.h-100 {
  height: 100% !important;
}

.h-100-vh {
  height: 100vh !important;
}

.h-100-svh {
  height: 100svh !important;
}

.h-100-lvh {
  height: 100lvh !important;
}

.h-100-dvh {
  height: 100dvh !important;
}

.mh-100 {
  max-height: 100% !important;
}

.mh-100-vh {
  max-height: 100vh !important;
}

.mh-100-svh {
  max-height: 100svh !important;
}

.mh-100-lvh {
  max-height: 100lvh !important;
}

.mh-100-dvh {
  max-height: 100dvh !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.position-relative {
  position: relative;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--body-ff);
  font-size: var(--body-fz);
  line-height: var(--body-lh);
  color: var(--body-fc);
  background-color: var(--body-bg);
  -webkit-tap-highlight-color: transparent;
  background-image: url("../img/body-pattern.svg");
  background-repeat: repeat;
  background-position: center top;
}

* {
  outline-offset: 3px;
  outline-color: var(--red);
}

*::-moz-selection {
  color: var(--white);
  background: var(--red);
}

*::selection {
  color: var(--white);
  background: var(--red);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--h-ff);
  font-weight: var(--h-fw);
  line-height: var(--h-lh);
  margin: var(--h-mb);
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin: var(--h-mb);
}

h1,
.h1 {
  font-size: var(--h1-fz);
  font-weight: 700;
}

h2,
.h2 {
  font-size: var(--h2-fz);
}

h3,
.h3 {
  font-size: var(--h3-fz);
}

h4,
.h4 {
  font-size: var(--h4-fz);
}

h5,
.h5 {
  font-size: var(--h5-fz);
}

h6,
.h6 {
  font-size: var(--h6-fz);
}

p {
  margin: var(--p-mb);
}

p:last-child {
  margin: 0;
}

p a,
li a {
  color: var(--red);
  font-weight: 500;
}

a {
  color: inherit;
}

a:hover {
  text-decoration: none;
}

b,
strong {
  font-weight: bold;
}

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

.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  line-height: 1.13;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 13.5px 26px;
  color: var(--white);
  outline: none;
  -webkit-transition: background-color ease-in-out 0.2s, border-color ease-in-out 0.2s, color ease-in-out 0.2s, -webkit-box-shadow ease-in-out 0.2s;
  transition: background-color ease-in-out 0.2s, border-color ease-in-out 0.2s, color ease-in-out 0.2s, -webkit-box-shadow ease-in-out 0.2s;
  transition: background-color ease-in-out 0.2s, border-color ease-in-out 0.2s, color ease-in-out 0.2s, box-shadow ease-in-out 0.2s;
  transition: background-color ease-in-out 0.2s, border-color ease-in-out 0.2s, color ease-in-out 0.2s, box-shadow ease-in-out 0.2s, -webkit-box-shadow ease-in-out 0.2s;
}

.button-bordered {
  border-color: var(--red);
  color: var(--red);
}

.button-bordered:hover {
  color: var(--red-90);
  border-color: var(--red-90);
}

.button-red {
  border: none;
  background-color: var(--red);
  -webkit-box-shadow: inset 0px -4px 0px rgba(0, 0, 0, 0.4);
  box-shadow: inset 0px -4px 0px rgba(0, 0, 0, 0.4);
}

.button-red:hover {
  background-color: var(--red-90);
}

.button-red:active {
  -webkit-box-shadow: inset 0px -2px 0px rgba(0, 0, 0, 0.4);
  box-shadow: inset 0px -2px 0px rgba(0, 0, 0, 0.4);
}

.input-group {
  margin-bottom: 20px;
}

.input-label {
  display: block;
  margin-bottom: 5px;
}

.input-control {
  font-family: inherit;
  font-size: 16px;
  font-weight: 300;
  max-width: 100%;
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid var(--input-border);
  background-color: transparent;
  color: var(--white);
  outline: none;
  border-radius: 6px;
}

.input-control::-webkit-input-placeholder {
  color: var(--white);
  -webkit-transition: color ease-in-out 0.2s;
  transition: color ease-in-out 0.2s;
}

.input-control:-moz-placeholder {
  color: var(--white);
  -moz-transition: color ease-in-out 0.2s;
  transition: color ease-in-out 0.2s;
}

.input-control::-moz-placeholder {
  color: var(--white);
  -moz-transition: color ease-in-out 0.2s;
  transition: color ease-in-out 0.2s;
}

.input-control:-ms-input-placeholder {
  color: var(--white);
  -ms-transition: color ease-in-out 0.2s;
  transition: color ease-in-out 0.2s;
}

.input-control:focus::-webkit-input-placeholder {
  color: transparent;
}

.input-control:focus:-moz-placeholder {
  color: transparent;
}

.input-control:focus::-moz-placeholder {
  color: transparent;
}

.input-control:focus:-ms-input-placeholder {
  color: transparent;
}

.input-checkbox,
.input-radio {
  display: block;
  margin: 0;
  position: relative;
}

.input-checkbox input[type="checkbox"],
.input-checkbox input[type="radio"],
.input-radio input[type="checkbox"],
.input-radio input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 1;
  visibility: hidden;
}

.input-checkbox span,
.input-radio span {
  display: block;
  position: relative;
  padding-left: 30px;
}

.input-checkbox span:before,
.input-checkbox span:after,
.input-radio span:before,
.input-radio span:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0;
  top: 1px;
  cursor: pointer;
  -webkit-transition: top ease-in-out 0.2s, left ease-in-out 0.2s, opacity ease-in-out 0.2s, background-color ease-in-out 0.2s;
  transition: top ease-in-out 0.2s, left ease-in-out 0.2s, opacity ease-in-out 0.2s, background-color ease-in-out 0.2s;
}

.input-checkbox input[type="checkbox"]:checked + span:before {
  background-color: var(--s-black);
}

.input-checkbox input[type="checkbox"]:checked + span:after {
  opacity: 1;
}

.input-checkbox span:before {
  border: 1px solid var(--s-black);
}

.input-checkbox span:after {
  left: 6px;
  top: 11px;
  background-color: var(--s-white);
  width: 2px;
  height: 2px;
  -webkit-box-shadow: 2px 0 0 var(--s-white), 4px 0 0 var(--s-white), 4px -2px 0 var(--s-white), 4px -4px 0 var(--s-white), 4px -6px 0 var(--s-white), 4px -8px 0 var(--s-white);
  box-shadow: 2px 0 0 var(--s-white), 4px 0 0 var(--s-white), 4px -2px 0 var(--s-white), 4px -4px 0 var(--s-white), 4px -6px 0 var(--s-white), 4px -8px 0 var(--s-white);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  opacity: 0;
}

.input-radio input[type="radio"]:checked + span:before {
  background-color: var(--s-black);
}

.input-radio input[type="radio"]:checked + span:after {
  opacity: 1;
}

.input-radio span:before,
.input-radio span:after {
  border-radius: 100%;
}

.input-radio span:after {
  width: 12px;
  height: 12px;
  left: 5px;
  top: 6px;
  background-color: var(--s-white);
}

.input-radio span:before {
  border: 1px solid var(--s-black);
}

select.input-control {
  background-image: url("../img/select-arrow.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 15px) center;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: '';
}

textarea.input-control {
  resize: none;
  min-height: 146px;
  padding-top: 10px;
}

.error {
  font-size: 14px;
  color: red;
  display: block;
  margin-top: 5px;
}

.input-control.error {
  border-color: red;
}

.section {
  padding-top: var(--sec-p);
  padding-bottom: var(--sec-p);
}

.section.pt-double {
  padding-top: calc(var(--sec-p) * 2);
}

.section.pb-double {
  padding-bottom: calc(var(--sec-p) * 2);
}

.section-header {
  margin-bottom: var(--sec-h-mb);
}

.section-title {
  margin-bottom: var(--sec-h-t-mb);
}

.section-title:last-child {
  margin: 0;
}

.section-img {
  border-radius: 10px;
  overflow: hidden;
}

.section-img img {
  border-radius: 10px;
}

.section-img:not(:last-child),
.section-action:not(:last-child) {
  margin-bottom: 30px;
}

.pattern-bg {
  position: relative;
  background-image: url("../img/bg-patter-1.jpg");
  background-repeat: repeat;
}

.pattern-bg:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--pattern-bg);
  opacity: 0.54;
  pointer-events: none;
}

.pattern-bg > * {
  position: relative;
  z-index: 2;
}

.swiper-pagination {
  position: absolute !important;
  bottom: 14px !important;
  top: inherit !important;
  left: 50% !important;
  -webkit-transform: translate(-50%, 0) !important;
  -ms-transform: translate(-50%, 0) !important;
  transform: translate(-50%, 0) !important;
  width: 100% !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2px;
  position: relative;
}

.swiper-pagination-bullet {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  -webkit-transition: background-color ease-in-out 0.2s;
  transition: background-color ease-in-out 0.2s;
  position: relative;
  background-color: var(--dot-bg) !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet:before {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 100%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: var(--orange);
  opacity: 0;
  -webkit-transition: opacity ease-in-out 0.2s;
  transition: opacity ease-in-out 0.2s;
}

.swiper-pagination-bullet:hover {
  background-color: var(--red) !important;
}

.swiper-pagination-bullet-active {
  background-color: var(--red) !important;
}

.swiper-pagination-bullet-active:before {
  opacity: 1;
}

.box {
  padding: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 10px;
  background-image: url("../img/bg-patter-2.jpg");
  background-repeat: repeat;
  -webkit-box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.27);
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.27);
}

.box:not(:last-child) {
  margin-bottom: 30px;
}

.box-title {
  font-weight: 500;
  font-size: 24px;
}

.box-title:not(:last-child) {
  margin-bottom: 20px;
}

.ul-list > li,
.ol-list > li {
  line-height: 1.3;
}

.ul-list > li:not(:last-child),
.ol-list > li:not(:last-child) {
  margin-bottom: 14px;
}

.ul-list > li .box,
.ol-list > li .box {
  margin: 16px 0 0 -20px;
}

.ol-list {
  counter-reset: item;
}

.ol-list > li {
  padding-left: 21px;
  position: relative;
}

.ol-list > li:before {
  content: counter(item) ".";
  display: inline-block;
  counter-increment: item;
  color: var(--red);
  font-weight: 500;
  margin-right: 5px;
  min-width: 15px;
  position: absolute;
  left: 0;
  top: 0;
}

.ul-list > li {
  padding-left: 16px;
  position: relative;
}

.ul-list > li:before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: var(--red);
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 7px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.toc-list li a {
  text-decoration: none;
  color: var(--white);
  -webkit-transition: color ease-in-out 0.2s;
  transition: color ease-in-out 0.2s;
}

.toc-list li a:hover {
  color: var(--red);
}

.games:not(:last-child) {
  margin-bottom: 40px;
}

.games-row {
  --row-gap-x: 32px;
  --row-gap-y: 32px;
}

.games-box {
  display: block;
  cursor: pointer;
  background-color: var(--game-bg);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  top: 0;
  text-align: center;
  text-decoration: none;
  -webkit-box-shadow: 0px 6px 10.7px rgba(0, 0, 0, 0.39);
  box-shadow: 0px 6px 10.7px rgba(0, 0, 0, 0.39);
  -webkit-transition: color ease-in-out 0.2s, top ease-in-out 0.2s;
  transition: color ease-in-out 0.2s, top ease-in-out 0.2s;
}

.games-box:hover {
  color: var(--red);
  top: -5px;
}

.games-box-img {
  position: relative;
  padding-top: 80.2%;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
}

.games-box-img img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}

.games-box-name {
  font-weight: 500;
  height: 60px;
  padding: 0 24px 8px 24px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.table:not(:last-child) {
  margin-bottom: 30px;
}

.table-inner {
  background-color: transparent;
  width: 100%;
  margin: 0;
  border-collapse: collapse;
}

.table-inner tr {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: inherit;
  border-bottom: none;
}

.table-inner tr:first-child {
  border-top: none;
}

.table-inner td,
.table-inner th {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 0;
  padding: 0 4px 4px 0 !important;
  font-weight: 500;
  text-align: left;
  line-height: 1.45;
}

.table-inner td:last-child,
.table-inner th:last-child {
  padding: 0 0 4px 0 !important;
}

.table-inner thead th,
.table-inner thead td {
  color: var(--red);
}

.table-inner thead th:first-child .table-box,
.table-inner thead td:first-child .table-box {
  border-radius: 10px 0 0 0;
}

.table-inner thead th:last-child .table-box,
.table-inner thead td:last-child .table-box {
  border-radius: 0 10px 0 0;
}

.table-inner thead th .table-box,
.table-inner thead td .table-box {
  background-image: url("../img/tr-odd-bg.jpg");
}

.table-inner tbody tr:nth-child(odd) .table-box {
  background-image: url("../img/tr-even-bg.jpg");
}

.table-inner tbody tr:nth-child(even) .table-box {
  background-image: url("../img/tr-odd-bg.jpg");
}

.table-inner tbody tr:last-child td:first-child .table-box {
  border-radius: 0 0 0 10px;
}

.table-inner tbody tr:last-child td:last-child .table-box {
  border-radius: 0 0 10px 0;
}

.table-inner.no-head tbody tr:first-child td:first-child .table-box {
  border-radius: 10px 0 0 0;
}

.table-inner.no-head tbody tr:first-child td:last-child .table-box {
  border-radius: 0 10px 0 0;
}

.table-inner.no-head tbody tr:nth-child(odd) .table-box {
  background-image: url("../img/tr-odd-bg.jpg");
}

.table-inner.no-head tbody tr:nth-child(even) .table-box {
  background-image: url("../img/tr-even-bg.jpg");
}

.table-inner.layout-fixed {
  table-layout: fixed;
}

.table-box {
  height: 100%;
  padding: 28px 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-repeat: repeat;
}

.blockquote {
  padding: 45px 100px 50px 150px;
  font-size: 24px;
  position: relative;
  margin: 0 0 30px 0;
}

.blockquote:last-child {
  margin: 0;
}

.blockquote:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background-image: url("../img/quote.svg");
  background-position: 56px 35px;
  background-repeat: no-repeat;
}

.blockquote:not(:last-child) {
  margin-bottom: 20px;
}

.faq {
  padding: 70px 0;
}

.faq-title {
  margin-bottom: 32px;
  font-size: 40px;
  font-weight: 500;
  text-transform: uppercase;
}

.faq-item {
  background-image: url("../img/bg-patter-2.jpg");
  background-repeat: repeat;
  -webkit-box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.27);
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.27);
  border-radius: 10px;
  overflow: hidden;
}

.faq-item:not(:last-child) {
  margin-bottom: 4px;
}

.faq-item:before {
  opacity: 0.5;
  -webkit-transition: opacity ease-in-out 0.2s;
  transition: opacity ease-in-out 0.2s;
}

.faq-item.active:before {
  opacity: 0;
}

.faq-item-header {
  color: var(--white);
  font-weight: 400;
  font-size: 20px;
  padding: 43px 80px 43px 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  position: relative;
  font-weight: 500;
  line-height: 1.3;
  -webkit-transition: color ease-in-out 0.2s;
  transition: color ease-in-out 0.2s;
}

.faq-item-header:after {
  content: "";
  width: 32px;
  height: 32px;
  background-image: url("../img/faq-arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 40px;
  top: 40px;
  background-color: var(--red);
  will-change: transform;
  border-radius: 100%;
  background-size: 15px;
  -webkit-transition: -webkit-transform ease-in-out 0.2s;
  transition: -webkit-transform ease-in-out 0.2s;
  transition: transform ease-in-out 0.2s;
  transition: transform ease-in-out 0.2s, -webkit-transform ease-in-out 0.2s;
}

.faq-item-header.active {
  color: var(--red);
}

.faq-item-header.active:after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.faq-item-content {
  display: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 40px 20px 40px;
  box-sizing: border-box;
  position: relative;
  top: -20px;
}

.faq-item-content-inner {
  max-width: 1147px;
}

.toc-header {
  font-size: 24px;
  font-weight: 500;
  position: relative;
  cursor: pointer;
}

.toc-header:before {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  background-color: var(--red);
  position: absolute;
  right: 0;
  top: 8px;
  background-image: url("../img/faq-arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 10px;
  -webkit-transition: -webkit-transform ease-in-out 0.2s;
  transition: -webkit-transform ease-in-out 0.2s;
  transition: transform ease-in-out 0.2s;
  transition: transform ease-in-out 0.2s, -webkit-transform ease-in-out 0.2s;
}

.toc-header.active:before {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.toc-items {
  margin-top: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 50px 0 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  --row-gap-y: 14px;
  border-top: 1px solid var(--line-bg);
}

.hero {
  padding: 0 0 35px 0;
  position: relative;
}

.hero-slider {
  overflow: hidden;
}

.hero-slide {
  padding: 209px 0 66px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}

.hero-slide-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
  pointer-events: none;
  -o-object-fit: cover;
  object-fit: cover;
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 40px;
  max-width: 557px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0px 15px 60.4px rgba(0, 0, 0, 0.37);
  box-shadow: 0px 15px 60.4px rgba(0, 0, 0, 0.37);
  border-radius: 10px;
  border-top: 3px solid #e04759;
  background: linear-gradient(to right, rgb(41 42 59) 0%, rgb(41 42 59) 40%, rgb(41 42 59 / 94%) 100%);
}

.hero-slide-title {
  margin-bottom: 5px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.6;
  font-size: 22px;
}

.hero-slide-desc {
  margin-bottom: 25px;
  font-size: 18px;
  font-weight: 300;
  color: #a7a8ba;
}

.breadcrumbs-list {
  padding-top: 40px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-bg);
  -webkit-column-gap: 14px;
  -moz-column-gap: 14px;
  column-gap: 14px;
}

.breadcrumbs-list li a {
  font-weight: 300;
  text-decoration: none;
}

.testimonials:not(:last-child) {
  margin-bottom: 70px;
}

.testimonials-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 23px;
}

.testimonials-item-img {
  width: 112px;
  height: 112px;
  background-image: url("../img/user-placeholder.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 100%;
  overflow: hidden;
}

.testimonials-item-img img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.testimonials-item-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.testimonials-item-name {
  margin-bottom: 13px;
  font-size: 24px;
  color: var(--red);
}

.testimonials-add-header {
  margin-bottom: 20px;
}

.header {
  position: relative;
  padding: 11px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: var(--header-bg);
  -webkit-box-shadow: 0px 8px 4px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 8px 4px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 99;
}

.header-nav {
  margin: 0 0 0 190px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.header-nav-list {
  gap: 62px;
}

.header-nav-list li a {
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  -webkit-transition: color ease-in-out 0.2s;
  transition: color ease-in-out 0.2s;
}

.header-nav-list li a:hover {
  color: var(--red);
}

.header-toggle {
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  position: relative;
  width: 33px;
  height: 24px;
  cursor: pointer;
}

.header-toggle span {
  display: block;
  height: 4px;
  width: 100%;
  background-color: var(--white);
  position: absolute;
  -webkit-transition: opacity ease-in-out 0.2s, top ease-in-out 0.2s, bottom ease-in-out 0.2s, -webkit-transform ease-in-out 0.2s;
  transition: opacity ease-in-out 0.2s, top ease-in-out 0.2s, bottom ease-in-out 0.2s, -webkit-transform ease-in-out 0.2s;
  transition: transform ease-in-out 0.2s, opacity ease-in-out 0.2s, top ease-in-out 0.2s, bottom ease-in-out 0.2s;
  transition: transform ease-in-out 0.2s, opacity ease-in-out 0.2s, top ease-in-out 0.2s, bottom ease-in-out 0.2s, -webkit-transform ease-in-out 0.2s;
}

.header-toggle span:nth-child(1) {
  top: 0;
}

.header-toggle span:nth-child(2) {
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.header-toggle span:nth-child(3) {
  bottom: 0;
}

.header-toggle.active span:nth-child(1) {
  top: 50%;
  -webkit-transform: translate(0, -50%) rotate(45deg);
  -ms-transform: translate(0, -50%) rotate(45deg);
  transform: translate(0, -50%) rotate(45deg);
}

.header-toggle.active span:nth-child(2) {
  opacity: 0;
}

.header-toggle.active span:nth-child(3) {
  bottom: inherit;
  top: 50%;
  -webkit-transform: translate(0, -50%) rotate(-45deg);
  -ms-transform: translate(0, -50%) rotate(-45deg);
  transform: translate(0, -50%) rotate(-45deg);
}

.header-actions {
  gap: 58px;
}

.header-actions-buttons {
  gap: 8px;
}

.main {
  overflow: hidden;
}

.footer {
  padding-top: 70px;
  padding-bottom: 50px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  background-color: var(--footer-bg);
  background-image: url("../img/footer-bg.jpg");
  background-repeat: repeat;
}

.footer-logo {
  margin-bottom: 40px;
}

.footer-payments {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 70px;
}

.footer-payments-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 1180px;
  margin: 0 auto;
}

.footer-payments-col {
  width: 20%;
  padding: 20px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.footer-payments-logo {
  height: 60px;
}

.footer-meta-links {
  gap: 22px;
  margin-bottom: 16px;
}

.footer-meta-links a {
  font-weight: 400;
  text-decoration: none;
  line-height: 1;
  -webkit-transition: color ease-in-out 0.2s;
  transition: color ease-in-out 0.2s;
}

.footer-meta-links a:hover {
  color: var(--red);
}

.footer-meta-copyright {
  font-size: 13px;
  color: #70708e;
}

@media screen and (min-width: 576px) {
  .col-sm-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    width: 8.33333%;
  }

  .col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    width: 16.66667%;
  }

  .col-sm-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    width: 25%;
  }

  .col-sm-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    width: 33.33333%;
  }

  .col-sm-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    width: 41.66667%;
  }

  .col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    width: 50%;
  }

  .col-sm-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    width: 58.33333%;
  }

  .col-sm-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    width: 66.66667%;
  }

  .col-sm-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    width: 75%;
  }

  .col-sm-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    width: 83.33333%;
  }

  .col-sm-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    width: 91.66667%;
  }

  .col-sm-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%;
  }

  .d-sm-none {
    display: none !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media screen and (min-width: 768px) {
  .col-md-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    width: 8.33333%;
  }

  .col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    width: 16.66667%;
  }

  .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    width: 25%;
  }

  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    width: 33.33333%;
  }

  .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    width: 41.66667%;
  }

  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    width: 50%;
  }

  .col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    width: 58.33333%;
  }

  .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    width: 66.66667%;
  }

  .col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    width: 75%;
  }

  .col-md-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    width: 83.33333%;
  }

  .col-md-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    width: 91.66667%;
  }

  .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%;
  }

  .d-md-none {
    display: none !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .footer-payments-col:not(:nth-child(5n)) {
    border-right: 1px solid var(--body-bg);
  }

  .footer-payments-col:not(:nth-last-child(1)):not(:nth-last-child(2)):not(:nth-last-child(3)):not(:nth-last-child(4)):not(:nth-last-child(5)) {
    border-bottom: 1px solid var(--body-bg);
  }
}

@media screen and (min-width: 991px) {
  .col-lg-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    width: 8.33333%;
  }

  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    width: 16.66667%;
  }

  .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    width: 25%;
  }

  .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    width: 33.33333%;
  }

  .col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    width: 41.66667%;
  }

  .col-lg-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    width: 50%;
  }

  .col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    width: 58.33333%;
  }

  .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    width: 66.66667%;
  }

  .col-lg-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    width: 75%;
  }

  .col-lg-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    width: 83.33333%;
  }

  .col-lg-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    width: 91.66667%;
  }

  .col-lg-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%;
  }

  .d-lg-none {
    display: none !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .ul-list-row,
  .ol-list-row {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media screen and (min-width: 1200px) {
  .col-xl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    width: 8.33333%;
  }

  .col-xl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    width: 16.66667%;
  }

  .col-xl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    width: 25%;
  }

  .col-xl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    width: 33.33333%;
  }

  .col-xl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    width: 41.66667%;
  }

  .col-xl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    width: 50%;
  }

  .col-xl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    width: 58.33333%;
  }

  .col-xl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    width: 66.66667%;
  }

  .col-xl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    width: 75%;
  }

  .col-xl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    width: 83.33333%;
  }

  .col-xl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    width: 91.66667%;
  }

  .col-xl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%;
  }

  .d-xl-none {
    display: none !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .table-box {
    -webkit-box-shadow: 0px 6px 14.6px rgba(0, 0, 0, 0.18);
    box-shadow: 0px 6px 14.6px rgba(0, 0, 0, 0.18);
  }

  .header {
    background-color: var(--header-bg);
    background-image: url("../img/header-bg.svg");
    background-position: center top;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
}

@media screen and (min-width: 1440px) {
  .col-xxl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    width: 8.33333%;
  }

  .col-xxl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    width: 16.66667%;
  }

  .col-xxl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    width: 25%;
  }

  .col-xxl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    width: 33.33333%;
  }

  .col-xxl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    width: 41.66667%;
  }

  .col-xxl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    width: 50%;
  }

  .col-xxl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    width: 58.33333%;
  }

  .col-xxl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    width: 66.66667%;
  }

  .col-xxl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    width: 75%;
  }

  .col-xxl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    width: 83.33333%;
  }

  .col-xxl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    width: 91.66667%;
  }

  .col-xxl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%;
  }

  .d-xxl-none {
    display: none !important;
  }

  .d-xxl-block {
    display: block !important;
  }

  .d-xxl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

@media (min-width: 1650px) {
  .container {
    max-width: 1460px;
  }
}

@media (max-width: 1440px) {
  .button {
    font-size: 16px;
  }

  .header-nav {
    margin: 0;
  }

  .header-nav-list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .header-nav-list {
    gap: 55px;
  }

  .header-nav-list li a {
    font-size: 16px;
  }

  .header-actions {
    gap: 45px;
  }
}

@media (max-width: 1200px) {
  .table {
    overflow-y: auto;
  }

  .faq-title {
    font-size: 32px;
  }

  .faq-item-header {
    font-size: 18px;
  }

  .testimonials-item-name {
    font-size: 20px;
  }

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

  .header-nav {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: calc(100dvh - 72px);
    margin: 0;
    width: 100%;
    left: 50%;
    top: 100%;
    background-color: var(--header-bg);
    padding: 16px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    z-index: 99;
    border-top: 1px solid var(--line-bg);
    box-sizing: border-box;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity ease-in-out 0.2s, visibility ease-in-out 0.2s;
    transition: opacity ease-in-out 0.2s, visibility ease-in-out 0.2s;
  }

  .header-nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .header-nav-list {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .header-nav-list li:not(:last-child) {
    border-bottom: 1px solid var(--ligth-blue);
  }

  .header-nav-list li a {
    font-size: 22px;
    font-weight: 500;
    display: inline-block;
    padding: 10px 0;
  }

  .header-actions {
    gap: 16px;
  }
}

@media (max-width: 991px) {
  .table {
    width: calc(100% + 15px);
    padding-bottom: 30px;
  }

  .table::-webkit-scrollbar {
    height: 6px;
    border-radius: 10px;
    background-color: var(--line-bg);
  }

  .table::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: var(--red);
  }

  .table::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: var(--line-bg);
  }

  .table-inner {
    min-width: 1000px;
  }

  .blockquote {
    font-size: 20px;
  }

  .blockquote:before {
    background-size: 50px;
    background-position: 30px 30px;
  }

  .toc-items {
    padding: 18px 0 0 0;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --h1-fz: 30px;
    --h2-fz: 24px;
    --h3-fz: 22px;
    --h4-fz: 20px;
    --h5-fz: 18px;
    --h6-fz: 16px;
    --sec-p: 25px;
  }
}

@media (max-width: 768px) {
  .swiper-pagination {
    bottom: 54px !important;
  }

  .swiper-pagination-bullet {
    background-color: var(--dot-mobile-bg) !important;
  }

  .swiper-pagination-bullet:hover {
    background-color: var(--red) !important;
  }

  .swiper-pagination-bullet-active {
    background-color: var(--red) !important;
  }

  .box {
    padding: 40px 30px;
  }

  .games-row {
    --row-gap-x: 20px;
    --row-gap-y: 20px;
  }

  .blockquote {
    padding: 30px 30px 30px 100px;
  }

  .hero {
    padding: 0;
  }

  .hero-slider .swiper-slide .container {
    padding: 0;
  }

  .hero-slide {
    padding: 12px 15px 35px 15px;
  }

  .hero-slide-bg {
    position: relative;
  }

  .hero-slide-content {
    max-width: 100%;
    text-align: center;
    width: 100%;
    padding: 25px 20px 40px 20px;
    -webkit-box-shadow: 0px 15px 20.4px rgba(0, 0, 0, 0.37);
    box-shadow: 0px 15px 20.4px rgba(0, 0, 0, 0.37);
  }

  .hero-slide-desc {
    font-size: 16px;
  }

  .breadcrumbs-list {
    padding-bottom: 16px;
  }

  .testimonials:not(:last-child) {
    margin-bottom: 50px;
  }

  .footer-payments {
    padding: 7.5px 0;
    width: calc(100vw - 32px);
    margin-left: auto;
    margin-right: auto;
    border-top: 1px solid var(--body-bg);
    border-bottom: 1px solid var(--body-bg);
    margin-bottom: 50px;
  }

  .footer-payments-col {
    padding: 7.5px 0;
  }

  .footer-payments-logo {
    height: 30px;
  }

  .footer-payments-logo img {
    max-width: 70%;
  }

  .footer-meta-links {
    gap: 14px;
  }
}

@media (max-width: 576px) {
  body {
    background-color: var(--body-mobile-bg);
  }

  .box {
    padding: 40px 20px;
  }

  .games:not(:last-child) {
    margin-bottom: 20px;
  }

  .games-box-name {
    font-size: 14px;
    padding: 0 10px 8px 10px;
  }

  .blockquote {
    padding: 80px 20px 40px 20px;
  }

  .blockquote:before {
    background-position: 20px 20px;
  }

  .faq {
    padding: 40px 0;
  }

  .faq-title {
    font-size: 24px;
  }

  .faq-item-header {
    padding: 40px 60px 40px 20px;
  }

  .faq-item-header:after {
    top: 50%;
    margin-top: -16px;
    right: 20px;
  }

  .faq-item-content {
    padding: 0 20px 20px 20px;
  }

  .testimonials-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .testimonials-item-img {
    width: 63px;
    height: 63px;
  }

  .header {
    padding: 13px 0;
  }

  .header-nav {
    height: calc(100dvh - 66px);
  }

  .header-actions-buttons .button {
    font-size: 14px;
    padding: 11px 13px;
  }

  .footer {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .footer-logo {
    margin-bottom: 21px;
  }

  .footer-payments {
    margin-bottom: 40px;
  }

  .footer-payments-logo img {
    max-width: 60%;
  }
}