
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  background: #0F0F12;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: inherit;
  -webkit-tap-highlight-color: transparent;
}
* {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;                                           
  background: #0F0F12;
  color: #F3F3F3;
}

.no-scroll {
  overflow-y: hidden;
}



body.no-scroll {
  overflow-y: hidden;
}
  
a {
  text-decoration: none;
  color: #F3F3F3;
  transition: all 0.3s linear;
}
  
button {
  cursor: pointer;
  font-family: inherit;
}
  
ul, ol {
  padding: 0;
  margin: 0;
  list-style: none;
}
ul li {
  position: relative;
}
  
h1,
h2,
h3,
h4,
h5,
h6,
p {
  padding: 0;
  margin: 0;
}
  
img {
  display: block;
}

.main {
  max-width: 1600px;
  margin: 0 auto;
  padding:  0px 20px;
  display: flex;
  gap: 20px;
  position: relative;
}


.container {
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  margin-bottom: 20px;
  background: #262B31;
  border-radius: 3px;
  border: 2px solid #262B31;
}


.image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;;
}

.image-box {
  width: 100%;
  height: 100%;
  border-radius: 6px;
}
.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

h1 {
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  text-transform: uppercase;
  color: #fff;
}

p {
  font-size: 15px;
  line-height: 22px;
  text-align: left;
  position: relative;
  z-index: 1;
}


h2 {
  font-weight: 700;
  font-size: 24px;
  line-height:32px;
  padding: 8px 12px;
  position: relative;
  border-bottom: 2px solid #2E861E;
  overflow: hidden;
  z-index: 1;
  background: #17181C;
  color: #F3F3F3;
  border-radius: 3px;
  text-transform: uppercase;
}


h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 22px;
  position: relative;
  z-index: 1;
  color: #F3F3F3;
  padding: 4px 2px 4px 12px;
  border-left: 4px solid #2E861E;
}


h4 {
  font-weight:700;
  font-size: 16px;
  line-height: 22px;
  text-align: left;
  position: relative;
  z-index: 1;
  color: #fff;
}

h5 {
  font-weight: 600;
  font-size: 16px;
  line-height: 160%;
    position: relative;
  z-index: 1;
}


ul.list  {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
}
ul.list.duo {
  flex-direction: row;
}
ul.list.trio {
  flex-direction: row;
}
ul.list li {
  width: 100%;
  text-align: left;
  background: #19191C;
  border-left: 2px solid #4CA421;
  border-radius: 0 3px 3px 0;
  padding: 12px 20px 12px 68px;
  overflow: hidden;
  color: #FFFFFF;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
}
ul.list.duo li {
  width: calc(50% - 6px);
}
ul.list.trio li {
  width: calc(33.33% - 8px);
}
ul.list.white li {
  width: 100%;
  text-align: left;
  background: #D5D5D5;
  border-left: none;
  border-radius: 8px;
  padding: 12px 20px 12px 68px;
  overflow: hidden;
  color: #171717;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
}


ul.list li::before {
  content:url("./img/list-icon.svg");
  width: 30px;
  height: 30px;
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
}


ol {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 12px;
  counter-reset: item;
  position: relative; 
  z-index: 1;
  width: 100%;
}


ol li {
  position: relative;
  z-index: 1;
  overflow: visible;
  width: 100%;
  list-style: none;
  counter-increment: item;
  background: #D5D5D5;
  border-radius: 8px;
  padding: 12px 12px 12px 68px;
  overflow: hidden;
  color: #171717;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
}

ol li::before {
  content: counter(item, decimal) " ";
  color: #2E861E;
  font-weight: 700;
  font-size: 24px;
  line-height: 22px;
  text-transform: uppercase;
  text-align: center;
  width: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.list-element {
  background: #D5D5D5;
  border-radius: 8px;
  padding: 12px 20px 12px 0px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
.list-text p {
  font-size: 16px;
  line-height: 22px;
  color: #171717;
}
.list-text a {
  font-size: 16px;
  line-height: 22px;
  color: #171717;
  text-decoration: underline;
}
.list-number {
  font-weight: 900;
  font-size: 24px;
  line-height: 22px;
  color: #2E861E;
  min-width: 68px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.row {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.row li {
  font-size: 16px;
  line-height: 22px;
  color: #171717;
  padding-left: 16px;
  position: relative;
}
.row li::before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #171717;
  left: 7px;
  top: 50%;
  transform: translate(-50%);
  position: absolute;
}


.short {
  max-width: 660px;
}


.container.dark p, .container.dark h3, .container.dark h4 {
  color: #fff;
}
.box.dark p, .box.dark h3, .box.dark h4, .box.dark h2 {
  color: #fff;
}
.box-divider {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 3.5%, #06E5A0 48.91%, rgba(255, 255, 255, 0) 97%);
  height: 1px;
  position: relative;
  z-index: 2;
}



.button {
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 220px;
  padding: 12px 16px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  text-align: center;
  text-transform: uppercase;
  max-width: max-content;
  color: #FFFFFF;
  background: #2E861E;
  
  border: none;
  outline: none;
  transition: all 0.3s linear;
}


.burger-menu {
  display: none;
}

.button.center {
  margin: 0 auto;
}

.button:hover {
  scale: 1.05;
}

.button.register-button {
  min-width: 136px;
  padding: 7.5px 12px;
  border-radius: 3px;
  font-size: 14px;
  line-height: 17px;
  font-weight: 400;
  background: #4EA522;
}
.button.login-button {
  min-width: 134px;
  padding: 7.5px 12px;
  background: #23272E;
  border-radius: 3px;
  font-size: 14px;
  line-height: 17px;
  font-weight: 400;
}

.decor {
  width: 437px;
  height: auto;
  position: absolute;
  right: 40px;
  bottom: 0px;
  z-index: 2;
}
.decor2 {
  width: 434px;
  height: auto;
  position: absolute;
  right: 50px;
  bottom: 0px;
  z-index: 0;
}

.box-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.box.half {
  width: calc(50% - 10px);
}
.button.mta {
  margin-top: auto;
}
.bet-box {
  display: flex;
  gap: 20px;
  align-items: center;
}
.bet-box__left {
  width: calc(100% - 345px);
}
.bet-box__right {
  width: 325px;
  position: relative;
} 
.bet-box__right img {
  width: 100%;
}
.box.flex {
  align-items: center;
  justify-content: center;
  padding: 16px 10px;
}

.header-clock-box {
  display: flex;
  align-items: center;
  gap: 6px;
}
.header__clock {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
  text-transform: uppercase;
  padding: 5px;
  padding-right: 21px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}
.header__clock-img {
  width: 15px;
  height: 15px;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: #16181D;
  z-index: 103;
  box-shadow: 0px 0px 10px 0px #12131780;

}
.header__container {
  max-width: 1600px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 52px;

}

.header__logo {
  width: auto;
  height: 52px;
  margin-right: 67px;
}
.header__logo img {
  width: 100%;
  height: 100%;
}


.header-menu__list {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-menu__list li a {
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.1px;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  transition: color 0s linear;
}

.header-menu__list a:hover {
   color: #4CA421;
}
.header__links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__gift {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__gift-counter {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #4CA421;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 2px;
  right: 2px;
  font-weight: 700;
  font-size: 9px;
  line-height: 11px;
  text-align: center;
  color: #FFFFFF;
}



.header__right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-left: auto;
  position: relative;
}
.header__buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}


.header__lang {
  position: relative;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  text-transform: uppercase;
  color: #FFF;
  padding: 5px 8px;
}
.header__lang-button {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  color: #FFF;
  background-color: transparent;
  border: none;
  outline: none;
  position: relative;
  transition: all 0.3s linear;
}




.hero {
  position: relative;
  padding: 60px;
  margin-top: 72px;
  margin-bottom: 20px;
  background: transparent;
  position: relative;
}


.hero__image img {
  right: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}

.hero-content__rating {
  font-weight: 700;
  font-size: 15px;
  line-height: 22px;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  margin-bottom:8px;
}
.hero-content__rating span  {
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
}


.hero-content__subtitle {
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: #fff;
  text-align: left;
  margin-top: 8px;
  margin-bottom: 16px;
}

.hero-content__wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 530px;
  position: relative;
  z-index: 2;
}



.features__box {
  overflow: auto;
  position: relative;
  background: #19191C;
  border-radius: 8px;
}


.features__box::-webkit-scrollbar {
  display: none;
}
.features__list  {
  overflow-x: auto;
  width: 100%;
  border-collapse: collapse;
  position: relative;
  
}
.features__list thead {
  border-radius:  8px 8px 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  background: #DFDFDF;
}
.features__list tbody {
  border-radius: 0 0 8px 8px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.features__list thead {
  overflow: hidden;
}
.features__list thead tr th {
  padding: 12px 20px;
  display: flex;
  align-items: center;
}
.features__list tbody tr td {
  padding: 12px 20px;
}

.features__list tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.features__list tr th {
  font-weight: 700;
  font-size: 15px;
  line-height: 140%;
  text-transform: uppercase;
  color: #1E2229;
}
.features__list tr td {
  font-weight: 400;
  font-size: 15px;
  line-height: 135%;
  color: #F3F3F3;
}
.features__list tr td {
  position: relative;
}
.features__list tbody tr:not(:last-child) {
  border-bottom: 1px solid #fff;
}

.features__list tr td:nth-child(1), .features__list tr th:nth-child(1) {
  width: 50%;
}
.features__list tr td:nth-child(2), .features__list tr th:nth-child(2) {
  width: 50%;
}




.pros-cons__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pros-cons__item {
  background: #D5D5D5;
  border-radius: 8px;
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 32px;
  gap: 20px;
  display: flex;
  flex-direction: column;
}

.pros-cons__item h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 155%;
  text-transform: uppercase;
  color: #171717;
  border: none;
  padding: 0;
  text-transform: none;
}


.item__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.item__list div {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
  position: relative;
}

/* .item__list div::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8.5px;
  width: 6px;
  height: 6px;
  background: #41B15B;
  border-radius: 50%;
} */

.register__item {
  display: flex;
  text-align: left;
  font-weight: 400;
  font-size: 16px;
  line-height:160%;
  position: relative;
  padding: 8px 12px 8px 44px;
  background: #E5E8ED33;
  border: 1px solid #00A964;
  box-shadow: 0px 0px 8px 0px #00A964;
  backdrop-filter: blur(84px);
  overflow: hidden;
  border-radius: 12px;
}

.register__item .number {
  height: 100%;
  position: absolute;
  left: 12px;
  top: 12px;
  font-weight:600;
  font-size: 16px;
  line-height: 160%;
  color: #fff;

}
.register-item__text h5 {
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;
  color: #fff;
}
.register-item__text p {
  color: #fff;
}
.register-item__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.register-item__text ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.register-item__text ul li {
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #fff;
}
.register-item__text ul li strong {
  font-weight: 700;
}

.last-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 692px;
}
.last-box p {
  color: #171717;
}

.banner.container {
  display: flex;
  position: relative;
  background: transparent;
  border-radius: 3px;
  padding:82px 78px; 
}
.banner2 {
  display: flex;
  position: relative;
  background: transparent;
  border-radius: 3px;
  padding: 98px 78px;
}
.banner3.container {
  display: flex;
  position: relative;
  background: transparent;
  border-radius: 3px;
  padding: 44px 72px;
}
.banner4.container {
  display: flex;
  position: relative;
  background: transparent;
  border-radius: 12px;
  padding: 140px 50px;
}
.banner5.container {
  display: flex;
  position: relative;
  background: transparent;
  border-radius: 12px;
  padding: 105px 60px;
}
.banner__logo {
  position: relative;
  width: 274px;
  height: auto;
}
.banner__wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 1;
}


.image.opr img {
    object-position: right;
}
.image.opr2 img {
    object-position: 78%;
}
.image.opl img{
  object-position: left;
}
.image.opc img{
  object-position: center;
}
.image.op img {
  opacity: 1;
}


.banner__wrapper {
  position: relative;
  max-width: 301px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;

}
.banner__wrapper2 {
  position: relative;
  max-width: 434px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
}
.banner__wrapper3 {
  position: relative;
  max-width: 500px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
}
.banner__wrapper4 {
  position: relative;
  max-width: 678px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
}


.banner__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  padding: 0;
  border: none;
  background: none;
  backdrop-filter: none;
  box-shadow: none;
  margin-bottom: 8px;
}
.banner__title::after, .banner__title::before {
  display: none;
}

.banner__text {
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  text-align: center;
  margin-bottom: 16px;
  color: #fff;
}

.banner__buttons2 {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.banner__box {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}


.banner2__button {
  padding: 7px 20px;
  min-width: 220px;
  gap: 6px;
  align-items: center;
  justify-content: center;
  display: flex;
  position: relative;
  z-index: 1;
  border-radius: 8px;
  background: #2E861E;
}
.banner2__button img {
  width: 32px;
  height: 32px;
}

.banner2__button div {
  font-weight: 700;
  font-size: 15px;
  line-height: 140%;
  text-align: center;
  color: #fff;
  min-width: 142px;
  text-transform: uppercase;
}


.banner__wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  width: max-content;
}
.logo-big {
  width: 274px;
  height: auto;
  position: relative;
}
.banner__buttons {
  display: flex;
  gap: 32px;
}


.box {
  position: relative;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 8px;
  background: #23272E;
  width: 100%;
  max-width: 100%;
}
.box5 {
  position: relative;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 100%;
}
.box h3, .box p {
  color: #fff;
}
.box5 h3, .box5 p {
  color: #fff;
}
.box h3, .box3 h3, .box5 h3, .box6 h3 {
  border: none;
  padding: 0;
}
.box4 {
  display: flex;
  gap: 20px;
  align-items: stretch;
}
.box4-half {
  width: calc(50% - 10px);
  border-radius: 8px;
  background: #373D47;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
}

.box__item {
  width: calc(50% - 10px);
}
.box-inside {
  position: relative;
  z-index: 1;
  max-width: 672px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.box-inside.second {
  margin-left: auto;
}

.box2 {
  padding: 0px;
  position: relative;
  display: flex;
  gap: 0;
}
.box3 {
  padding: 20px;
  position: relative;
  border-radius: 8px;
  background: #D5D5D5;
}
.box6 {
  padding: 32px;
  position: relative;
  border-radius: 8px;
  background: #D5D5D5;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.box3 h3, .box3 p {
  color: #171717;
}
.box6 h3, .box6 p {
  color: #171717;
}
.box2__right {
  width: 100%;
  max-width: 290px;
}
.box2__right img  {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.box2__left {
  width: calc(100% - 290px);
}
.casino-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.casino-list div {
  padding: 20px;
  background: #19191C;
  border-left: 4px solid #2E861E;
  border-radius: 0px 8px 8px 0px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}



.games__box {
  overflow: auto;
  position: relative;
  background: #19191C;
  border-radius: 8px;
}

.games__box::-webkit-scrollbar {
  display: none;
}

.games__table {
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  position: relative;
}

.games__table thead {
  border-radius:  8px 8px 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  background: #DFDFDF;
}

.games__table tbody {
  border-radius: 0 0 8px 8px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.games__table thead {
  overflow: hidden;
}
.games__table thead tr th {
  padding: 12px 20px;
  display: flex;
  align-items: center;
}
.games__table tbody tr td {
  padding: 12px 20px;
}


.games__table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.games__table tr th:nth-child(1), .games__table tr td:nth-child(1) {
  width: 20%;
  text-align: left;
}
.games__table tr th:nth-child(2), .games__table tr td:nth-child(2),
.games__table tr th:nth-child(3), .games__table tr td:nth-child(3) {
  width: 40%;
  text-align: left;
}
.games__table.second tr th:nth-child(1), .games__table.second tr td:nth-child(1) {
  width: 25%;
  text-align: left;
}
.games__table.second tr th:nth-child(2), .games__table.second tr td:nth-child(2) {
  width: 50%;
  text-align: left;
}
.games__table.second tr th:nth-child(3), .games__table.second tr td:nth-child(3) {
  width: 25%;
  text-align: center;
  justify-content: center;
}



.games__table tr td {
  position: relative;
}


.games__table tr td ul {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
}
.games__table tbody tr:not(:last-child) {
  border-bottom: 1px solid #fff;
}

.games__table tr th {
  font-weight: 700;
  font-size: 15px;
  line-height: 140%;
  text-transform: uppercase;
  color: #1E2229;

}
.games__table tr td {
  font-weight: 400;
  font-size: 15px;
  line-height: 135%;
  color: #F3F3F3;

}


.games__box2 {
  overflow: auto;
  position: relative;
  background: #19191C;
  border-radius: 8px;
}


.games__box2::-webkit-scrollbar {
  display: none;
}

.games__table2 {
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  position: relative;
}

.games__table2 thead {
  border-radius:  8px 8px 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  background: #F3F3F3;
}

.games__table2 tbody {
  border-radius: 0 0 8px 8px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.games__table2 thead {
  overflow: hidden;
}
.games__table2 thead tr th {
  padding: 12px 20px;
  display: flex;
  align-items: center;
}
.games__table2 tbody tr td {
  padding: 12px 20px;
}


.games__table2 tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.games__table2 tr th {
  width:20%;
  text-align: left;
}

.games__table2 tr td {
  width:20%;
}
.games__table2 tr td {
  position: relative;
}

.games__table2 tbody tr:not(:last-child) {
  border-bottom: 1px solid #fff;
}

.games__table2 tr th {
  font-weight: 700;
  font-size: 15px;
  line-height: 140%;
  text-transform: uppercase;
  color: #1E2229;

}
.games__table2 tr td {
  font-weight: 400;
  font-size: 15px;
  line-height: 135%;
  color: #F3F3F3;

}


.games__box3 {
  overflow-x: auto;
  position: relative;
  background: #F2F9F1;
  border-radius: 3px;
  width: 100%;
  max-width: 100%;
}


.games__box3::-webkit-scrollbar {
  display: none;
}

.games__table3 {
  min-width: 940px;
  width: 100%;
  /* width: auto;         */
  overflow: visible;  
}

.games__table3 thead {
  border-radius:  3px 3px 0 0;
  width: 100%;
  background: #4CA421;
}

.games__table3 tbody {
  border-radius: 0 0 3px 3px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.games__table3 thead {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.games__table3 thead tr th {
  padding: 12px 20px;
  justify-content: flex-start;
  display: flex;
}
.games__table3 tbody tr td {
  padding: 12px 20px;
}


.games__table3 tr {
  display: -webkit-box;
  display: -ms-flexbox;
  position: relative;
  display: flex;
}

.games__table3 tr th:nth-child(1), .games__table3 tr td:nth-child(1) {
  width: 101px;
}
.games__table3 tr th:nth-child(2), .games__table3 tr td:nth-child(2) {
  width: 90px;
}
.games__table3 tr th:nth-child(3), .games__table3 tr td:nth-child(3) {
  width: 122px;
}
.games__table3 tr th:nth-child(4), .games__table3 tr td:nth-child(4) {
  width: 149px;
}
.games__table3 tr th:nth-child(5), .games__table3 tr td:nth-child(5) {
  width: 133px;
}
.games__table3 tr th:nth-child(6), .games__table3 tr td:nth-child(6) {
  width: 127px;
}
.games__table3 tr th:nth-child(7), .games__table3 tr td:nth-child(7) {
  width: 117px;
}
.games__table3 tr th:nth-child(8), .games__table3 tr td:nth-child(8) {
  width: 105px;
}

.games__table3 tr td:not(:last-child) {
  border-right: 1px solid #D5D9DD;
}
.games__table3 tr td {
  position: relative;
}
.games__table3 tbody tr:not(:last-child) {
  border-bottom: 1px solid #D5D9DD;
}

.games__table3 tr th {
  font-weight: 700;
  font-size: 15px;
  line-height: 140%;
  text-transform: uppercase;
  color: #fff;
}


.game__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}
.game-list__item {
  padding: 20px;
  background: #19191C;
  border-left: 4px solid #2E861E;
  border-radius: 0px 8px 8px 0px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: calc(50% - 10px);
}
.game-list__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: #fff;
}

.games__box4 {
  overflow: auto;
  position: relative;
  background: #19191C;
  border-radius: 8px;
}

.games__box4::-webkit-scrollbar {
  display: none;
}

.games__table4 {
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  position: relative;
}

.games__table4 thead {
  border-radius:  8px 8px 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  background: #F3F3F3;
}

.games__table4 tbody {
  border-radius: 0 0 8px 8px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.games__table4 thead {
  overflow: hidden;
}
.games__table4 thead tr th {
  padding: 12px 20px;
  display: flex;
  align-items: center;
}
.games__table4 tbody tr td {
  padding: 12px 20px;
}
.games__table4 tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.games__table4 tr th:nth-child(1), .games__table4 tr td:nth-child(1),
.games__table4 tr th:nth-child(2), .games__table4 tr td:nth-child(2),
.games__table4 tr th:nth-child(3), .games__table4 tr td:nth-child(3) {
  width: 20%;
  text-align: left;
}
.games__table4 tr th:nth-child(4), .games__table4 tr td:nth-child(4) {
  width: 40%;
  text-align: left;
}
.games__table4.second tr th:nth-child(1), .games__table4.second tr td:nth-child(1),
.games__table4.second tr th:nth-child(2), .games__table4.second tr td:nth-child(2),
.games__table4.second tr th:nth-child(3), .games__table4.second tr td:nth-child(3) {
  width: 25%;
  text-align: left;
}
.games__table4.second tr th:nth-child(4), .games__table4.second tr td:nth-child(4) {
  width: 25%;
  text-align: left;
}

.games__table4 tr td {
  position: relative;
}

.games__table4 tr td {
  position: relative;
}
.games__table4 tbody tr:not(:last-child) {
  border-bottom: 1px solid #fff;
}

.games__table4 tr th {
  font-weight: 700;
  font-size: 15px;
  line-height: 140%;
  text-transform: uppercase;
  color: #1E2229;

}
.games__table4 tr td {
  font-weight: 400;
  font-size: 15px;
  line-height: 135%;
  color: #F3F3F3;

}




.games__box5 {
  overflow: auto;
  border-radius: 10px;
  position: relative;
  background: #E5E8ED;

  border: 1px solid #00A964;
  box-shadow: 0px 0px 8px 0px #00A964;
  backdrop-filter: blur(84px);
  border-radius: 12px;
}


.games__box5::-webkit-scrollbar {
  display: none;
}

.games__table5 {
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  position: relative;
}

.games__table5 thead {
  border-radius:  10px 10px 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 20px;
  line-height: 160%;
  text-transform: none;
}

.games__table5 tbody {
  border-radius: 0 0 10px 10px;
  width: 100%;
  display: flex;
  flex-direction: column;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #3E4049;
}

.games__table5 thead {
  overflow: hidden;
}
.games__table5 thead tr th {
  padding: 12px 20px;
  display: flex;
  align-items: flex-start;
}
.games__table5 tbody tr td {
  padding: 12px 20px;
}


.games__table5 tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.games__table5 tr th, .games__table5 tr td {
  width:22%;
  text-align: left;
  
}
.games__table5 tr th:nth-child(4), .games__table5 tr td:nth-child(4) {
  width:34%;
 
}


.games__table5 tr td {
  position: relative;
}

.games__table5 tr td {
  position: relative;
}

.games__table5 tbody tr::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #3E404929;
}


.swiper-slide {
  width: calc(50% - 10px); 
  max-width: 450px;
}

.swiper {
    padding: 0px 44px;
    width: 100%;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none; 
}


.swiper-button-next {
  background-image: url('img/sw-arr-right.svg');
  width: 24px;
  height: 24px;
  right: 0px;
  left: auto;

}
.swiper-button-prev {
  background-image: url('img/sw-arr-left.svg');
  width: 24px;
  height: 24px;
  left: 0px;
}
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 1;
  cursor: auto;
  pointer-events: none;
}

.swiper-wrapper {
  align-items: stretch;
}

.reviews__box {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}


.reviews__item {
  background: #19191C;
  overflow: hidden;
  position: relative;
  border-radius: 0px 8px 8px 0px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
  width: calc(50% - 10px);
  border-left: 4px solid #2E861E;
}

.reviews-item__name {
  font-weight: 700;
  font-style: Bold;
  font-size: 15px;
  line-height: 160%;
  color: #fff;
}

.reviews-item__text {
  font-weight: 400;
  font-size: 15px;
  line-height: 160%;
  color: #fff;
  text-align: left;
}
.reviews-item__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.reviews-item__stars {
  display: flex;
  gap: 5px;
  justify-content: center;
}

.slots__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
}
.slots__item {
  position: relative;
  width: calc(50% - 10px);
  padding: 20px;
  border-radius: 12px;
  overflow: hidden;
}
.slots__item:last-child {
  padding: 0;
}
.slots-item__inside {
  padding: 20px;
  background: #E5E8ED33;
  border: 1px solid #00A964;
  box-shadow: 0px 0px 8px 0px #00A964;
  backdrop-filter: blur(84px);
  border-radius: 12px;
  gap: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.slots-item__inside a.button {
  margin-top: auto;
}

.slots__item h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 160%;
  display: flex;
  gap: 20px;
  align-items: center;
  color: #fff;
  position: relative;
}


.slots__item p {
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  text-align: left;
  color: #fff;
}
.slots__item a {
  margin: 0;
}

.ac {
  width: 100%;
  margin-top: 0;
  border: none;
  position: relative;
  background: #DFDFDF;  
  overflow: hidden;
  border-radius: 8px;
}


.ac:not(:last-child) {
  margin-bottom: 16px;
}
.ac-header {
  width: 100%;
   border-left: none;
}
.ac-header::after, .ac-header::before {
  display: none;
}
.ac .ac-trigger {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 22px;
  text-align: left;
  padding: 16px 60px 16px 20px !important;
  background: transparent;
  white-space: normal;
  color: #0F0F12;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;

}
  
.ac .ac-trigger:focus {
  color: #0F0F12;
}

.ac.is-active > .ac-header {
  color: #0F0F12;
}
.ac.is-active > .ac-header .ac-trigger {
  color: #0F0F12;
}

.ac .ac-panel {
  padding: 0;
  background: #17181C;
  position: relative;
}

.ac .ac-panel p {
  padding: 16px 12px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  text-align: left;
  color: #fff;
  margin: 0;
}

  
.ac .ac-trigger::after {
  content: url('./img/arrow-up.svg');
  width:24px;
  height: 24px;
  flex-shrink: 0;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  transition: all .3s ease;
}
.ac.is-active > .ac-header .ac-trigger::after {
  content: url('./img/arrow-up.svg');
  width:24px;
  height: 24px;
  transform: translateY(-50%) rotate(0deg);
  transition: all .3s ease;
}


.grade__box {
  overflow: auto;
  border-radius: 10px;
  position: relative;
  background: #E5E8ED;
  border: 1px solid #00A964;
  box-shadow: 0px 0px 8px 0px #00A964;
  backdrop-filter: blur(84px);
  overflow: hidden;
}


.grade__box::-webkit-scrollbar {
  display: none;
}
.grade__list  {
  overflow-x: auto;
  width: 100%;
  border-collapse: collapse;
  position: relative;
  
}
.grade__list thead {
  border-radius:  10px 10px 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;

}
.grade__list tbody {
  border-radius: 0 0 10px 10px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.grade__list thead {
  overflow: hidden;
}
.grade__list thead tr th {
  padding: 12px 20px;

}
.grade__list tbody tr td {
  padding: 12px 20px;
}
.grade__list tbody tr td img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.grade__list tr {
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
  text-align: left;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
  position: relative;
  overflow: hidden;
}

.grade__list tbody tr:not(:first-child)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #3E404924;
}

.grade__list tr td {
  position: relative;
}


.grade__list tr td:nth-child(1), .grade__list tr th:nth-child(1) {
  width: 50%;
}
.grade__list tr td:nth-child(2), .grade__list tr th:nth-child(2) {
  width: 50%;
  text-align: right;
}

.grade__list tr th {
  font-weight: 700;
  font-size: 20px;
  line-height: 160%;
  text-transform: none;
  color: #3E4049;

}
.grade__list tr td {
  font-weight: 500;
  font-size: 16px;
  line-height: 165%;
  color: #3E4049;

}



.footer {
  background: transparent;
}

.footer__container {
  max-width: 1600px;
  padding: 0px 20px 100px;
  margin: 0 auto;
}

.footer__nav-list {
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__nav-list div a {
  font-size: 14px;
  font-weight: 350;
  line-height: 16px;
  color: #2E99DC;
  transition: all 0.3s ease;
}
.footer__nav-list div a:hover {
  color:#FFF;
}
.language__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 10px 0 20px;
  justify-content: center;
  padding: 0 20px;
}
.language__link {
  display: flex;
  background: #fff;
  border-radius:12px;
  padding: 12px 12px;
  border: 1px solid #FEC07E33;
  color: #082529;
  gap: 8px;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 15px;
  line-height: 15px;
  text-transform: uppercase;
  transition: all 0.3s ease;

}
.language__link:hover {
  border: 1px solid #4EA522;
}
.language__link img {
  width: 24px;
  height: 24px;
}

.footer__wrap {
  display: flex;
  flex-direction: column; 
  gap: 8px;
}
.footer__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
    background: #16181D;
    padding: 12px;
    border-radius: 8px;
  }
  
  .footer-nav__title {
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  color: #FFFFFF;

}
.footer-nav__list ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav__list ul li a {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}
.footer-nav__list ul li a:hover {
  color: #BEBFC1;
}


.footer__cards {
  padding: 30px 0px;
  gap: 40px;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}
.footer__cards img {
  width: auto;
  height: 40px;
}


.footer__down {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-down__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 8px;
  padding: 24px 12px;
  background: #16181D;
  width: calc(100% - 16px - 290px - 300px);
}
.footer-down__text p {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  text-align: left;
  color: #BEBFC1;
}
.footer-down__button {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 300px;
}
.footer-down__button a {
  background: #23272E;
  width: 100%;
  padding: 12px 20px;
  border-radius: 8px;
  align-items: center;
  display: flex;
  justify-content: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  transition: all 0.3s ease;
}
.footer-down__button a:hover {
  background: #4EA522;
}
.footer-down__button a:nth-child(1) {
  background: #16181D;
}
.footer-down__img {
  width: 290px;
  height: auto;
}



.button-up {
  position: fixed; 
  bottom: 10px;    
  right: 20px;   
  cursor: pointer;
  display: flex;   
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  background: transparent;
  display: none;  
  z-index: 102;   
  width: 64px;
  height: 64px;
}

.button-up img {
  width: 64px;
  height: 64px;
}
  

.burger-button {
  display: none;
}


.content {
  flex-shrink: 1; 
  width: calc(100% - 250px - 250px - 40px);
}


.sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 72px;
  left: 20px;
  height: calc(100vh - 72px);
  overflow-y: auto;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 250px;
  -webkit-flex: 0 1 250px;
  flex: 0 1 250px;
  padding-bottom: 20px;
  flex-shrink: 0;
}

.sidebar::-webkit-scrollbar {
  display: none;
  width: 0;
}
.sidebar-right {
  position: -webkit-sticky;
  position: sticky;
  top: 72px;
  right: 20px;
  height: calc(100vh - 72px);
  overflow-y: auto;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 250px;
  -webkit-flex: 0 1 250px;
  flex: 0 1 250px;
  padding-bottom: 20px;
  flex-shrink: 0;
}

.sidebar-right::-webkit-scrollbar {
  display: none;
  width: 0;
}
  
  
@media screen and (min-width: 1600px) {
  .sidebar {
    left: calc((100% - 1600px) / 2 + 20px);
  }
}
@media screen and (min-width: 1600px) {
  .sidebar-right {
    right: calc((100% - 1600px) / 2 + 20px);
  }
}
  
  
.aside-left__wrapper {
  position: sticky;
}
.aside-left__wrap {
  overflow-y: auto;
  height: auto;
  padding: 0px;
}
.aside-left-wrap__box {
  background: #FFFFFF;
  box-shadow: 0px 0px 6px 0px #06E5A040;

  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;

}
.aside-left__wrap::-webkit-scrollbar {
  width: 0;
}

.aside-left-wrap__box {
  margin-bottom: 20px;
}
.aside-left__nav {
  border-radius: 3px;
  overflow: hidden;
  margin-top: 12px;
}

  
.main-left-nav__desc {
  border-radius:3px;
}
.main-left-nav__desc.active {
  border-radius: 3px;
}
   
  
.main-left-nav__list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}
.main-left-nav__list.visible {
  max-height: 2000px;
  padding-bottom: 8px;
  opacity: 1;
  overflow-y: auto;
}

.aside-left-wrap__list {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 0;
  gap: 0px;
}

.aside-left-wrap__list li {
  padding: 0;
}
.aside-left-wrap__list li::before {
  display: none;
}
.aside-left-nav__list li {
  padding: 0;
}
.aside-left-nav__list li::before {
  display: none;
}
.aside-left-wrap__list li a {
  padding: 8px 12px;
  background: #141414;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 160%;
  display: flex;
  text-align: left;
  position: relative;
  text-transform: uppercase;
  transition: all 0.3s linear;
  position: relative;
}
.aside-left-wrap__list li:not(:last-child) a {
  border-bottom: 1px solid #F6F6F6;
}
.aside-left-wrap__list li a:hover {
    background: #9E01FF;
}
.link-list-toggle::after {
  content: url('./img/arr-sidebar.svg');
  position: absolute;
  top: 11.5px;
  right: 12px;
  width: 12px;
  height: 12px;
  transform: rotate(180deg);
  transform-origin: center center;
  transition: all 0.3s linear;
}

.link-list-toggle.active::after{
  content: url('./img/arr-sidebar.svg');
  transform: rotate(0deg);
} 

.link-list {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-5px);
  transition: max-height 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
}

.aside-left-wrap__list li .link-list a {
  display: flex;
  grid-auto-flow: 12px;
  align-items: center;
  background: #fff;
  padding: 11px 12px;
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  gap: 12px;
  color: #3E4049;
  text-transform: none;
}
.aside-left-wrap__list li .link-list a:not(:last-child) {
  border-bottom: 1px solid #E2E8EE;
}

.aside-left-wrap__list li .link-list a:hover {
  background: #06E5A008;

}

.link-list.open {
  max-height: 1500px; 
  opacity: 1;
  transform: translateY(0);
}



.main-left-nav__desc, .aside-left-nav__desc {
  border-radius: 3px;
}
.main-left-nav__desc.active, .aside-left-nav__desc.active {
  border-radius: 3px 3px 0 0;
}
.aside-left-nav__desc {
  padding: 8px;
  background: #F3F3F3;
  color: #23272E;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  display: flex;
  text-align: left;
  position: relative;
  cursor: pointer;
}


.aside-left-nav__desc::before {
  content: "";
  position: absolute;
  top: 0;
  right: 31px;
  width: 1px;
  height: 100%;
  background: #23272E;
}
.aside-left-nav__desc::after {
  content: url('./img/arr-sidebar.svg');
  position: absolute;
  top: 0;
  right: 0px;
  width: 33px;
  height: 32px;
  transform:rotate(0deg);
  transition: all 0.3s linear;
}

.aside-left-nav__desc.active::after{
  content: url('./img/arr-sidebar.svg');
  transform: rotate(180deg);
}

.aside-left-nav__list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  background: #23272E;
}
  
.aside-left-nav__list.visible {
  max-height: 2000px;
  opacity: 1;
  overflow-y: auto;
}

.aside-left-nav__list.visible::-webkit-scrollbar {
  width: 0;
}

.aside-left-nav__list {
  display: flex;
  flex-direction: column;
  padding-bottom: 0px;
  gap: 0px;
}

.aside-left-nav__list li a {
  padding: 6px 8px;
  color: #F3F3F3;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  display: flex;
  text-align: left;
  position: relative;
  transition: all 0.3s linear;
  position: relative;
}


.aside-left-nav__list li a:hover {
  font-weight: 700;
  background: #191D24;
  padding-left: 20px;
  border-left: 2px solid #2E861E;
}

.aside-left__links a {
    display: flex;
    background: #23272E;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    line-height: 16px;
    color: #fff;
    font-weight: 400;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.2s linear;
    position: relative;
}

.aside-left__links a:hover {
    background: #2d323a;
}

.aside-left__links a + a {
    margin-top: 2px;
}

.aside-left-links__first {
    padding-right: 33px;
}

.aside-left-links__top {
    padding-right: 33px;
}

.aside-left__links a > span:nth-child(1) {
    flex: 0 1 16px;
    margin-right: 8px;
}

.aside-left__links a > span:nth-child(2) {
    flex: 1;
}

.aside-left__links a > span:nth-child(3) {
    flex: 0 1 55px;
    text-align: center;
    padding: 0 16px;
    color: #BEBFC1;
    position: relative;
}

.aside-left__links a > span:nth-child(3) span {
    color: #fff;
}

.aside-left-links__first:after {
    content: '';
    position: absolute;
    right: 10px;
    top: calc(50% - 3px);
    width: 10px;
    height: 6px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(./img/nav-icon.svg);
    cursor: pointer;
    transition: all 0.2s linear;
}

.aside-left-links__first:before {
    content: '';
    position: absolute;
    right: 30px;
    top: 0;
    height: 100%;
    width: 1px;
    background: #121317;
}

.aside-left-links__top > span:nth-child(3):before, .aside-left-links__top > span:nth-child(3):after {
    content: '';
    position: absolute;
    width: 6px;
    height: 10px;
    top: calc(50% - 5px);
    background-size: cover;
    background-image: url(./img/arrow-right.svg);
    background-repeat: no-repeat;
}

.aside-left-links__top > span:nth-child(3):before {
    left: 0;
    transform: scale(-1, 1);
}

.aside-left-links__top > span:nth-child(3):after {
    right: 0;
}



.aside-left-events__all  {
    font-size: 12px;
    line-height: 14px;
    text-transform: uppercase;
    padding: 13px 8px;
    background: #F3F9F1;
    color: #000000;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.aside-left-events__link {
  background: #F9FCF9;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #000000;
  padding: 8px 8px;
  display: block;
}



.aside-left-events__all strong {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 24px;
}
.aside-left-events__all p img {
  margin-right: 4px;
  margin-left: 10px;
  width: 12px;
  height: 12px;
}
.aside-left-events__all p {
  font-weight: 400;
  display: flex;
  align-items: center;
      font-size: 12px;
    line-height: 14px;  
}

.aside-left-events__all {
    background: #F3F9F1;
    position: relative;
}

.aside-left-events__all:before {
    content: '';
    position: absolute;
    right: 8px;
    width: 24px;
    height: 24px;
    top: calc(50% - 13px);
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(./img/aside-left-all.svg);
}

.aside-left-events__all:hover, .aside-left-events__link:hover {
    background: #ebf9e9;
}


.aside-left__events {
    margin-top: 12px;
    overflow: hidden;
    border-radius: 8px;
}

.aside-left-events__top {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    background: #17191E;
}

.aside-left-events__top span {
    display: block;
    flex: 0 1 50%;
    font-size: 14px;
    line-height: 16px;
    color: #BEBFC1;
    font-weight: 400;
    text-transform: uppercase;
    padding: 8px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s linear;
}

.aside-left-events__top span:hover {
    background: #24272d98;
}

.aside-left-events__top span.active {
    color: #fff;
    background: #23272E
}

.aside-left-events__top span.active:before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #A0CE50;
    margin-right: 10px;
}

.aside-left__events img {
    display: block;
    margin: auto;
}

.aside-left-events__list li {
    display: block;
    z-index: 1;
    position: relative;
    background: #fff;
}

.aside-left-events__list li:not(:last-child) {
    border-bottom: 1px solid #D5D9DD;
}

.aside-left-events__list li a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #000;
    padding: 8px 33px 8px 8px;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    transition: all 0.2s linear;
    z-index: 10;
}

.aside-left-events__list li a:hover {
    background: #F2F9F1;
}

.aside-left-events__list li a img {
    display: block;
    margin: auto;
}

.aside-left-events__list li a:before {
    content: '';
    position: absolute;
    width: 10px;
    height: 6px;
    right: 12px;
    top: calc(50% - 3px);
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(./img/select.svg);
}


.aside-left-events__list li a > span:first-child {
    flex: 0 1 18px;
    margin-right: 10px;
}

.aside-left-events__list li a > span:last-child {
    flex: 0 1 calc(100% - 18px - 10px);
}

.aside-left-events__list li a > span:last-child span {
    color: #464946;
}
.aside__right img {
    display: block;
    margin: auto;
}

.aside-right__registration {
    border-radius: 8px;
    background: #F2F9F1;
    overflow: hidden;
    display: block;
}

.aside-right-registration__desc {
    text-transform: uppercase;
    color: #000;
    font-weight: 700;
    text-align: center;
    font-size: 16px;
    line-height: 16px;
    margin: 12px 8px;
}
.aside-right-registration__phone {
  padding: 8px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #23272E;
  gap: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #fff;
  margin: 0 8px 14px;
}

.aside-right-registration__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 3px;
    color: #24272D;
    overflow: hidden;
    background: #EDF5EA;
}

.aside-right-registration__list li {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 13px;
    flex: 0 1 50%;
    font-size: 13px;
    font-weight: 400;
    line-height: 15px;
    text-align: left;
    color: #464946;
    transition: all 0.3s linear;
    overflow: hidden;
}

.aside-right-registration__list li.active {
    color: #fff;
    background: #000;
}

.aside-right-registration__list li span:first-child {
    margin-right: 4px;
    min-width: 16px;
}

.aside-right-registration__list li span:last-child {
    max-width: calc(100% - 16px - 4px);
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    overflow: hidden;
}

.aside-right-registration__list li:hover {
    background: #deebda;
}

.aside-right-registration__currency, .aside-right-registration__country, .aside-right-registration__code, .aside-right-registration__code2 {
    margin:0 8px 8px;
    background: #fff;
    border-radius: 8px;
    padding: 8px 22px 8px 8px;
    color: #253E5B;
    font-size: 14px;
    line-height: 16px;
}

.aside-right-registration__code, .aside-right-registration__code2 {
    min-height: 32px;
    font-size: 14px;
    font-weight: 400;
    line-height:14px;
    text-align: left;
    padding-left: 8px;
    position: relative;
    color: #464946;
}

.aside-right-registration__code {
  color: rgba(70, 73, 70, 0.65);
}


.aside-right-registration__currency, .aside-right-registration__country {
    padding: 8px 10px;
    color: #000;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;   
    position: relative;
}

.aside-right-registration__currency:before, .aside-right-registration__country:before {
    content: '';
    position: absolute;
    width: 10px;
    height: 6px;
    right: 10px;
    top: calc(50% - 3px);
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(./img/select.svg);
}
.aside-right-registration__code:before {
    content: '';
    position: absolute;
    width: 38px;
    height: 32px;
    right: 0px;
    top: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(./img/code.svg);
}

.aside-right-registration__country span:first-child {
    flex: 0 1 16px;
    min-width: 16px;
    margin-right: 8px;
    border-radius: 50%;
    border: 1px solid #ECF6EA;
}

.aside-right-registration__country span:last-child {
    flex: 0 1 calc(100% - 16px - 8px);
}

.aside-right-registration__button.button {
    width: 100%;
    min-width: calc(100% - 16px);
    margin: 0 8px 13px;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    background: #93C879;
}

.aside-right-registration__footnote {
    font-size: 10px;
    line-height: 12px;
    text-align: center;
    color: #464946;
    margin: 0 8px 15px;
}

.aside-right-registration__footnote span {
    color: #46941E;
    text-decoration: underline;
}

.aside-right-registration__bonus {
    width: 100%;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    line-height: 14px;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    background: #23272E;

}



.aside-right__registration + .aside-right__bets {
    margin-top: 12px;
}

.aside-right__bets {
    border-radius: 8px;
    background: #F2F9F1;
    overflow: hidden;
}

.aside-right-bets__list {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    background: #17191E;
}

.aside-right-bets__list span {
    display: block;
    flex: 0 1 50%;
    color: #BEBFC1 !important;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    padding: 8px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s linear;
}

.aside-right-bets__list span.active {
    color: #fff !important;
    background: #23272E;
}

.aside-right-bets__list span:hover {
    background: #24272d98;
}


.aside-right-bets__settings {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000;
    font-size: 12px;
    line-height: 14px;
    text-transform: uppercase;
    padding: 11px 10px;
}

.aside-right-bets__settings span:nth-child(2) {
    flex: 0 1 24px;
    margin-left: 10px;
}

.aside-right-bets__settings span:nth-child(1) {
    flex: 0 1 calc(100% - 24px - 10px);
}


.aside-right-bets__desc {
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 18px;
    border-radius: 8px;
    background: #fff;
    font-size: 14px;
    line-height: 120%;
    color: #000;
    min-height: 120px;
    margin: 0 8px 8px;
}

.aside-right-bets__button.button {
    width: 100%;
    padding: 8px 20px;
    margin-top: 9px;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    background: #4EA522;
    border-radius: 8px;
    margin: 0 8px 8px;
    width: calc(100% - 16px);
    min-width: calc(100% - 16px);
}
.aside-right-bets__footnote {
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    padding-top: 18px;
    color: #000;
    border-top: 1px dashed #000000;
    border-bottom: 1px dashed #000000;
    margin-bottom: 8px;
}

.aside-right-device__list  {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    background: #17191E;
    margin-top: 12px;
    border-radius: 8px;
    overflow: hidden;
}

.aside-right-device__list  span {
    display: block;
    flex: 0 1 50%;
    color: #BEBFC1;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    padding: 8px 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.2s linear;
}

.aside-right-device__list  span.active {
    color: #fff;
    background: #23272E;
}



.main-left {
  display: none;
}

.settings {
  padding: 11px 16px;
  gap: 10px;
  display: flex;
  align-items: center;
  box-shadow: 0px 5px 10px 0px #0000001F;
  background: #000000;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  line-height: 17.5px;
  text-transform: uppercase;
  border-radius: 12px;
}
.aplication {
  box-shadow: 0px 0px 6px 0px #00000040;
  background: #000000;
  border-radius: 16px;
  margin-top: 16px;
  overflow: hidden;
  display: block;
}
.aplication__up {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12.47px;
  line-height: 17.5px;
  text-transform: uppercase;
}
.aplication__tabs {
  background: #181818;
  display: flex;

}
.aplication__tab {
  width: 50%;
  padding: 8px 0px;
  font-weight: 600;
  font-size: 10px;
  line-height: 17px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF66;
  border: none;
  outline: none;
  background: transparent;
  border-bottom: 1px solid #C5CCD8;
}
.aplication__tab.active {
  color: #FFFFFF;
  border-bottom: 2px solid #0CE5A0;
}

.aplication__image {
  width: 132px;
  height: auto;
  margin: 0 auto 14px;
}  
.aplication__text {
  font-weight: 500;
  font-size: 12px;
  line-height:20px;
  text-align: center;
  color: #818E95;
  margin-bottom: 12px;
  padding: 0 12px;
}
.aplication__text2 {
  font-weight: 400;
  font-size: 10px;
  line-height:20px;
  text-align: center;
  color: #818E95;
  margin-bottom: 14px;
  padding: 0 12px;
}
.aplication__input {
  border: 1px solid #EEF1F2;
  background: transparent;
  margin: 0 12px 21px;
  width: calc(100% - 24px);
  border-radius: 24px;
  padding: 9px 12px;
  color: #fff;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  color: #818E95;
}

.aplication__buttons {
  display: flex;
  background: #181818;
  padding: 8px 12px 12px;
  gap: 12px;
  justify-content: space-between;
  border-radius: 8px 8px 0px 0px;
}
.aplication__input2 {
  border: 1px solid #6F7B8D;
  background: transparent;
  margin: 0;
  width: 116px;
  border-radius: 48px;
  padding: 5px 17px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #818E95;
}

.button.violet.aplication__button {
  padding: 8px 12px;
  width: calc(100% - 116px);
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  min-width: 72px;
  border-radius: 18px;
}

.casino {
  background: #F8F8F8;
  box-shadow: 0px 5px 10px 0px #0000001F;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 16px;
}
.casino.bonus-page {
  margin-top: 0;
}
.casino__top {
  background: #000000;
  padding: 0 16px;
}
.casino__top p {
  padding: 8px 14px;
  font-weight: 700;
  font-size: 13px;
  line-height: 20px;
  text-transform: uppercase;
  border-top: 5px solid #06E5A0;
  max-width: max-content;
  color: #fff;
}
.casino__list {
  padding: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.casino__list a {
  width: calc(50% - 4px);
}


  



@media screen  and (max-width: 1570px) {
  .text {
    max-width: 500px;
  }
  .op3 {
    opacity: 0.2;
  }
}
@media screen  and (max-width: 1520px) {
  .hero-content__wrap {
    backdrop-filter: blur(10px);
    padding: 20px 10px;
    border-radius: 12px;
    max-width: 620px;
  }
  .blur, .last-box {
    backdrop-filter: blur(10px);
    padding: 20px 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.5);
  }
  .decor2 {
    right: 20px;
  }
}
@media screen  and (max-width: 1440px) {
  .decor {
    width: 50%;
    z-index: 0;
  }
  .decor2 {
    width: 50%;
  }
}

@media screen  and (max-width: 1380px) {
  .pros-cons__item {
    width: 100%;
  }
  .pros-cons__list, .flex-box  {
    flex-wrap: wrap;
  }
  .flex-box__left, .flex-box__right {
    width: 100%;
  }
  .container.banner, .container.banner3, .container.banner4, .container.banner5 {
    padding: 40px 10px;
  }

}


@media screen  and (max-width: 1350px) {
  .sidebar-right {
    display: none;
  }
  .main {
    padding-right: 20px;
  }
  .content {
    width: calc(100% - 260px);
  }
}

@media screen  and (max-width: 1320px) {
  .header__logo {
    margin-right: 50px;
  }
  .list__item {
    width: 100%;
  }
  .banner__wrapper, .banner__wrapper2, .banner__wrapper3 {
    margin: 0 auto;
  }
  .banner__wrap {
    backdrop-filter: blur(10px);
    padding: 20px 10px;
    border-radius: 12px;
    position: relative;
    z-index: 1;
    margin: 0 auto;
  }
  .header-menu__list {
    gap: 20px;
  }
}

@media screen  and (max-width: 1200px) {
  .aside-left__nav {
    margin-top: 0;
  }
  .decor2 {
    position: static;
    margin: 0 auto -20px;
    width: 400px;
  }
  .list__item { 
    width: calc(50% - 10px);
  }
  .games__table2 tr td, .games__table2 tr th {
    width: 25%;
  }

  .aside-left-wrap__list {
    padding: 0;
  }
  .aside-left-wrap__list li:last-child {
    margin-bottom: 10px;
  }
  .aside-left-wrap__list::after {
    display: none;
  }
  .main-left {
    display: block;
  }
  .main-left.container {
    padding: 0;
    background: transparent;
  }
  .sidebar {
    display: none;
  }
  .hero__content {
    padding-left: 20px;
  }
  .footer__container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .main {
    padding-left: 20px;
  }
  .button-up {
    right: 20px;
  }
  .content, .container {
    width: 100%;
    max-width: 100%;
  }

  .header__container {
    padding-left: 20px;
  }
  .hero__image img {
    right: 0px;
    width: 100%;
  }
  .hero.container {
    width:100%;
    margin-right: 0px;
  }
  .aside-left-nav__desc {
    padding: 8px 12px;
    padding-right: 45px;
  }
  .pros-cons__item {
    width: calc(50% - 10px);
  }
  .slots__item {
    width: calc(50% - 10px);
  }
  .header__menu {
    display: none;
  }
  .header__container {
    padding-right: 20px;
    height: 60px;
  }
  .main {
    padding-top: 0px;
  }
  .main.bonus-page {
    margin-top: 20px;
  }
  .hero.bonus-page {
    margin-top: 60px;

  }
  .header__buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #101F2EF2;
    padding: 16px;
    gap: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
  }
  .header__buttons a {
    min-width: 163px;
    text-align: center;
  }
  .header__buttons .button.register-button,
  .header__buttons .button.login-button {
    min-width: 163px;
    text-align: center;
  }
  .footer__container {
    padding-bottom: 100px;
  }
  .button-up {
    bottom: 20px;
  }

  .burger-button {
    display: flex;
    margin-left: auto;
    flex-direction: column;
    justify-content: space-around;
    height: 30px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 2; 
    }
  .burger-button span {
    width: 30px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
  }
  .burger-button.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .burger-button.open span:nth-child(2) {
    opacity: 0;
  }
  .burger-button.open span:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
  }
  .burger-menu {
    position: fixed;
    top: 60px;
    right: -100%; 
    width: 100%;
    height: 100%;
    padding: 0 10px;
    background: #101F2E;
    padding-bottom: 100px;
    transition: right 0.3s ease; 
    overflow-y: auto;
    display: block;
    z-index: 105;
  }
  .burger-menu.open {
    right: 0; 
    overflow-y: auto;

  }
  .burger-menu ul {
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    display: flex;
    margin-top: 16px;
    min-width: 300px;
  }
  .burger-menu ul li {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .burger-menu ul li a {
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    width: 300px;
    height: 46px;
    color: #FFF;
    text-transform: uppercase;
    border: 2px solid #4CA421;
    border-radius: 8px;
  }
  .burger-menu__buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    min-width: 300px;
    margin-top: 20px;
  }
  .burger-menu__buttons a {
    width: 300px;
  }
  .burger-menu .button.login-button {
    width: 300px;
    height: 46px;
    max-width: 100%;
  }
  .burger-menu .button.register-button {
    width: 300px;
    height: 46px;
    max-width: 100%;
  }
  .main {
    padding-right: 20px;
  }
  .features__list {
    width: 100%;
  }
  .features__box {
    flex-direction: column;
  }
}


@media screen and (max-width: 950px) {
  .op3 img {
    opacity: 0.2;
  }
  .hero-content__wrap {
    margin: 0 auto;
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
  }
  h1 {
    text-align: center;
  }
  div.list2 .list__item h4 {
    font-size: 16px;
  }
  .hero-content__subtitle {
    text-align: center;
  }
  .hero {
    padding: 40px 10px;
  }
  .rating__list {
    flex-direction: column;
  }
  .rating__item {
    width: 100%;
  }
  .flex-box {
    flex-direction: column;
  }
  .flex-box__item {
    width: 100%;
    padding: 20px 10px;
  }
  .flex-box__left {
    width: 100%;
  }
  .flex-box__right {
    width: 100%;
  }
  .list2 {
    flex-direction: column;
  }
  .list2__item {
    width: 100%;
  }
  .list2-blur {
    max-width: 100%;
  }
  .games__table2 tr th,  .games__table4 tr th {
    width: 200px;
  }

  .games__table2 tr td,  .games__table4 tr td {
    width: 200px;
  }

  .list__item {
    width: 100%;
    padding: 20px 10px;
  } 
  .box, .box3, .box6 {
    padding: 20px 10px;
  }
  .games__table tr th:nth-child(1), .games__table tr td:nth-child(1) {
    width: 200px;
  }
  .games__table tr th:nth-child(2), .games__table tr td:nth-child(2),
  .games__table tr th:nth-child(3), .games__table tr td:nth-child(3) {
    width: 320px;
  }
  .games__table.second tr th:nth-child(1), .games__table.second tr td:nth-child(1),
  .games__table.second tr th:nth-child(2), .games__table.second tr td:nth-child(2) {
    width: 250px;
  }
  .games__table.second tr th:nth-child(3), .games__table.second tr td:nth-child(3) {
    width: 182px;
    text-align: left;
    justify-content: flex-start;
  }
  .games__table tr th, .games__table tr td {
    width: 250px;
  }
  .games__table tr th:nth-child(1), .games__table tr td:nth-child(1) {
    width: 200px;
  }
  .games__table.second tr th:nth-child(1), .games__table.second tr td:nth-child(1) {
    width: 200px;
  }
  .footer-nav__list {
    width: 33.33%;
  }
  .footer__nav { 
    flex-wrap: wrap;
    gap: 20px 0;
  }
  .footer__down {
    flex-direction: column;
  }
  .footer-down__text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px 12px;
    width: 100%;
  }
  .games__table4 tr th:nth-child(1), .games__table4 tr td:nth-child(1),
  .games__table4 tr th:nth-child(2), .games__table4 tr td:nth-child(2),
  .games__table4 tr th:nth-child(3), .games__table4 tr td:nth-child(3) {
    width: 200px;
  }
  .games__table4 tr th:nth-child(4), .games__table4 tr td:nth-child(4) {
    width: 300px;
  }
  .games__table4.second tr th:nth-child(1), .games__table4.second tr td:nth-child(1),
  .games__table4.second tr th:nth-child(2), .games__table4.second tr td:nth-child(2),
  .games__table4.second tr th:nth-child(3), .games__table4.second tr td:nth-child(3) {
    width: 220px;
  }
  .games__table4.second tr th:nth-child(4), .games__table4.second tr td:nth-child(4) {
    width: 140px;
  }
}



@media screen and (max-width: 850px) {
  .opacity2 {
    opacity: 0.3;
  } 
  .footer__nav-list {
    gap: 16px;
  }
  .banner__title {
    font-size: 26px;
    line-height: 120%;
  }
  .decor15 {
    right: 0;
    width: 300px;
  }
  .bet-box {
    flex-direction: column;
  }
  .bet-box__left {
    width: 100%;
  }
  .bet-box__right {
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .bet-box__right img {
    max-width: 325px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  ol li {
    padding: 12px 12px 12px 48px;
  }
  ol li::before {
    width: 48px;
  }
  .decor {
    position: static;
    margin: 0 auto -20px;
    width: 400px;
  }
  .game__list {
    flex-direction: column;
  }
  .game-list__item {
    width: 100%;
    padding: 20px 10px;
  }
  .box-inside.second {
    margin-left: 0;
  }
  .box2 {
    flex-direction: column-reverse;
    align-items: center;
  }
  .box2__left {
    width: 100%;
  }
  .reviews__item {
    width: 100%;
    padding: 10px;  
  }
  .box5 {
    padding: 20px 10px;
  }

  .list2-item__box {
    width: 100%;
  }
  .list2__item {
    padding: 20px 10px;
  }
  .hero.container {
    padding: 42px;
  }
  .hero {
    padding: 48px 10px;
  }
  .banner__image {
    right: 0;
  }
  .footer {
    padding: 0;
  }

  .banner__image {
    width: 100%;
  }

  .banner {
    padding: 20px;
  }
  .hero__image img {
    object-position: 78%;
  }
  .hero-content__wrap {
    padding: 20px 10px;
  }
  .features__list tr td:nth-child(1),.features__list tr th:nth-child(1) {
    min-width: 210px;
  }
  .features__list tr td:nth-child(2),.features__list tr th:nth-child(2) {
    min-width: 280px;
  }
  .features__list2 tr td:nth-child(1),.features__list2 tr th:nth-child(1) {
    min-width: 200px;
  }
  .features__list2 tr td:nth-child(2),.features__list2 tr th:nth-child(2) {
    min-width: 150px;
  }
  .flex-box__left, .flex-box__right, .slots__item {
    width: 100%;
    padding: 20px 10px;
  }

  .hero-content__wrap {
    padding: 20px 10px;
  }
  .banner__wrapper, .banner__wrapper2,.banner__wrapper3 {
    padding: 20px 10px;
    backdrop-filter: blur(8px);
  }
  .banner2 {
    padding: 40px 10px;
  }
  .pros-cons__item {
    width: 100%;
    padding: 20px 10px;
  }
  .image.op img {
    opacity: 0.6;
  }
   .logo-big {
    width: 220px;
  }
  .box.box4 {
    padding: 0;
  }
  .box.half {
    width: 100%;
  }
  .games__item.sm, .games__item.md {
    width: 100%;
  }
  .banner__wrap {
    flex-direction: column;
  }
  .decor6 {
    z-index: 0;
    opacity: 0.3;
  }
  .decor10 {
    opacity: 0.2;
  }
  .decor11 {
    width: 100%;
    height: auto;
  }
  .button-up, .button-up img {
    width: 44px;
    height: 44px;
  }
  .footer__container {
    padding-bottom: 50px;
  }
  ul.list li::before, ul.list.white li::before {
    left: 13px;
  }
  ul.list li, ul.list.white li {
    padding-left: 58px;
  }
  .list-number {
    min-width: 58px;
  }
  ul.list.duo li {
    width: 100%;
  }
  ul.list.trio li {
    width: 100%;
  }
}



@media screen and (max-width: 600px) {
  .banner__wrap {
    gap: 20px;
  }
  .banners {
    flex-direction: column;
    gap: 20px;
  }
  .logo-big {
    width: 274px;
    height: auto;
    position: relative;
  }
  .banner__buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .games__item {
    padding: 20px 10px;
  }
  .decor3 {
    opacity: 0.2;
  }
  .decor4 {
    opacity: 0.2;
  }
  .decor5 {
    opacity: 0.2;
  }
  .hero-content__wrap {
    padding: 20px 7px;
  }
  .footer__card-list {
    padding: 0px 0 20px;
    gap: 16px 16px;
    margin-bottom: 20px;
  }

  .main {
    padding: 0px 10px;
  }

  .footer {
    padding-right: 10px;
    padding-left: 10px;
  }
  h1  {
    font-size: 27px;
    line-height: 35px;
    text-align: center;
  }
  .hero-content__rating {
    justify-content: center;
  }
  .hero-content__subtitle {
    text-align: center;
  }
  .hero__button {
    margin: 0 auto;
  }
  .hero {
    margin-top: 76px;
  }
  h2  {
    font-size: 22px;
    line-height: 30px;
  }

  .header__logo {
    width: 110px;
    height: auto;
    margin-right: 0;
  }
  .header__logo img {
    width: 100%;
    height: auto;
  }
  h3{
    font-size: 16px;
    line-height: 22px;
  }
  .header__container {
    padding-right: 10px;
    padding-left: 10px;
  }
  .button.banner__button {
    margin: 0 auto;
  }
  .banner__wrapper, .banner__wrapper2,.banner__wrapper3 {
    align-items: center;
    max-width: 400px;
  }
  .box4 {
    flex-direction: column;
  }
  .box4-half {
    width: 100%;
    padding: 20px 10px;
  }
  
  .hero-content__wrap {
    align-items: center;
  }

  .box {
    padding: 20px 10px; 
  }
  .box.color p, .box.color h3 {
    color: #fff;
  }
  .image.op2 img {
    opacity: 0.3;
  }
  .games__table3 tr td, .games__table3 tr th {
    width: 250px;
  }
}

@media screen and (max-width: 480px) {
  .reviews-item__top {
    flex-direction: column;
    align-items: start;
  }
  .decor, .decor2 {
    width: 100%;
  }
  .header__clock {
    display: none;
  }
  .header__right {
    gap: 8px;
  }
  .casino-list div {
    padding: 20px 10px;
  }
  .footer-nav__list {
    width: 50%;
  }
  .article__title, .features__title {
    width: 100%;
  }
  .article__title::after, .features__title::after {
    display: none;
  }
  .article__title::before, .features__title::before {
    display: none;
  }
  .features__list li {
    width: 100%;
    gap: 12px;
  }
  .footer__nav-list {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .footer__nav-list li::after {
    display: none;
  }
  .footer__down {
    flex-direction: column;
    justify-content: center;
    padding: 0px;
  }
  .footer__cards { 
    padding: 20px 10px;
  }
  .footer__nav {
    padding: 20px 10px;
    align-items: flex-start;
  }
  .footer__container {
    padding-left: 0px;
    padding-right: 0px;
  }
  .features__list li strong {
    min-width: auto;
    width: 50%;
  }
  .features__list li strong::after {
    display: none;
  }
  .features__list li span::after {
    display: none;
  }
  .features__list li span {
   padding-right: 0;
  }
  .header__buttons a {
    min-width:calc(50% - 8px);
    width: calc(50% - 8px);
  }
  .rating__item p:first-child::after {
    display: none;
  }
  .rating__item p:first-child {
    max-width: 150px;
  }
  .header__buttons .button.register-button,
  .header__buttons .button.login-button {
    min-width: calc(50% - 8px);
    max-width: calc(50% - 8px);
    text-align: center;
  }

  .language__list {
    gap: 10px;
    padding: 0;
  }
  .swiper {
    padding: 0px 24px;
    width: 100%;
  }

}

@media screen and (max-width: 400px) {

    .language__link {
      padding: 8px 12px;
      /* width: 100%; */
    }
    .container {
      padding: 20px 10px;
    }
    .banner__logo {
      width: 240px;
    }
}





/* BONUS PAGE */

.border-img {
  border-radius: 8px;
  border: 1px solid #4CA421;
}
.breadcrumbs {
  display: flex;
  margin-bottom: 6px;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumbs li {
  position: relative;
}
.breadcrumbs a {
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: rgba(255, 255, 255, 1);
  transition: all 0.2s linear;
  text-transform: uppercase;
}
.breadcrumbs li:first-child::after {
  content: "/";
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: rgba(255, 255, 255, 1);
  text-align: left;
  opacity: 1;
  margin: 0 8px;
}
.breadcrumbs li:first-child span {
  font-weight: 700;
}
.banners {
  display: flex;
  gap: 32px;
  align-items: center;
}

.hero-bonus {
  padding: 60px;
}
.app-bonus {
  padding: 55px 60px;
}
.betting-hero {
  padding: 64px 30px;
}
.hero-content__wrap.bonus {
  max-width: 637px;
}
.hero-content__wrap.app {
    max-width: 642px;
}

ul.block-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
ul.block-list li {
  border-radius: 6px;
  background: #13646DBF;
  padding: 8px 12px 8px 36px;
  border: 2px solid #54979E;
  font-weight: 700;
  font-size: 15px;
  line-height: 165%;
  color: #fff;
  position: relative;
}
ul.block-list li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #41B15B;
  border-radius: 50%;
}
.betting-item {
  border-radius: 3px;
  background: #23272E;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.betting-item.reverse {
  flex-direction: row-reverse;
}
.betting-item__image {
  width: 100%;
  max-width: 280px;
  height: 100%;
}
.betting-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.betting-item__text {
  display: flex;
  flex-direction: column;
  width: calc(100% - 300px);
  gap: 20px;
}
.betting-item__text h3, .betting-item__text p {
  color: #fff;
}
.box__decor {
  position: absolute;
  z-index: 2;
  width: 386px;
  height: auto;
  bottom: 0;
  right: 0;
}
.box__decor2 {
  position: absolute;
  z-index: 2;
  width: 424px;
  height: auto;
  bottom: 0;
  right: 17px;
}
.box__decor3 {
  position: absolute;
  z-index: 2;
  width: 367px;
  height: auto;
  bottom: 0;
  right: 0px;
}
.box__decor4 {
  position: absolute;
  z-index: 2;
  width: 355px;
  height: auto;
  bottom: 0;
  right: -20px;
}
.casino-list {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1586px) {
  .box__decor3 {
    width: 300px;
  }
  .box__decor4 {
    width: 300px;
    right: -20px;
  }
}

@media screen and (max-width: 1520px) {
  .box__decor {
    z-index: 0;
  }
  .box__decor3 {
    opacity: 0.3;
    z-index: 0;
  } 
}
@media screen and (max-width: 1450px) {
  .box__decor4 {
    z-index: 0;
  }
}
@media screen and (max-width: 1400px) {
  .box__decor2 {
    z-index: 0;
    right: 0px;
  } 
}
@media screen and (max-width: 1200px) {
  .hero-bonus, .app-bonus, .betting-hero {
    padding: 40px 10px;
  }
  .box__decor2 {
    z-index: 2;
    right: 0px;
  } 
  .box__decor3 {
    opacity: 1;
    z-index: 0;
  }
  
}
@media screen and (max-width: 1020px) {
  .box__decor3 {
    opacity: 0.3;
    z-index: 0;
  }
}
@media screen and (max-width: 768px) {
  .betting-item.reverse, .betting-item {
    flex-direction: column-reverse;
    padding: 20px 10px;
  }
  .betting-item__text {
    width: 100%;
  }
  .betting-item__image {
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .betting-item__image img {
    width: 100%;
    height: auto;
    max-width: 280px;
    object-fit: cover;
  }
  .box__decor2 {
    position: static;
    margin: 0 auto -20px;
    width: 300px;
  } 
  .box__decor3 {
    width: 200px;
    display: none;
  }
  .box__decor4 {
    position: static;
    margin: 0 auto;
    width: 300px;
  }
  
}
@media screen and (max-width: 600px) {
  .banners{
    flex-direction: column;
    gap: 20px;
  }
  .box__decor {
    position: static;
    margin: 0 auto -20px;
    width: 300px;
  }
}
@media screen and (max-width: 480px) {
  .betting-item__image img {
    max-width: 100%;
  }
  .box__decor, .box__decor2 {
    width: 100%;
  }
  .box__decor4 {
    position: static;
    margin: 0 auto;
    width: 100%;
  }  
}



.app-box {
  display: flex;
  border-radius: 3px;
  background: #23272E;

}
.app-box.reverse {
  flex-direction: row-reverse;

}
.app-text {
  padding: 20px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: calc(100% - 280px);
}
.app-text h3 {
  margin-bottom: 20px;
  color: #fff;
}
.app-text p {
  color: #fff;
}
.app-img {
  width: 100%;
  max-width: 280px;
  height: 100%;
  object-fit: cover;
}


@media screen and (max-width: 950px) {
  .banner2.container {
    padding: 40px 10px;
  }
  .hero.app-hero {
    padding: 8px 10px 10px;

  }
  .breadcrumbs {
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .banner__buttons {
    flex-direction: column;
    gap: 20px;
  }
  .container {
    padding: 20px 10px;
  }
}
@media screen and (max-width: 600px) {
.app-box, .app-box.reverse {
  flex-direction: column;
}
.app-text {
  padding: 20px 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}
.app-img {
  width: 100%;
  max-width: none;
  height: auto;
  max-height: 400px;
  object-fit: cover;
}
}

