
html {
    box-sizing: border-box;
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    background: #01102D;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: inherit;
  -webkit-tap-highlight-color: transparent;
}
* {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  color: #fff;
  background: #01102D;
}


.no-scroll {
  overflow-y: hidden;
}

  
body.no-scroll {
  overflow-y: hidden;
}
  
a {
  text-decoration: none;
  color: #fff;
  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 30px;
  display: flex;
  gap: 20px;
  position: relative;
}


.container {
  width: 100%;
  margin: 0 auto;
  padding:32px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  margin-bottom: 20px;
  background: #281DE21A;  
  border: 1px solid #FFFFFF26;
  border-radius: 6px;
}

.image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 6px;
}
.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.image-box {
  width: 100%;
  height: 100%;
  border-radius:12px;
  overflow: hidden;
}
.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.title {
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  text-align: left;
  color: #FFF;
  text-transform: uppercase;
}


p {
  font-size: 15px;
  font-weight:400;
  line-height: 22.5px;
  text-align: left;
  position: relative;
}

p span {
  font-weight: 900;
  font-size: 15px;
  line-height: 145%;
}


h2 {
  font-weight: 700;
  font-size: 26px;
  line-height: 120%;
  position: relative;
  text-align: left;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, #6B2D86 0%, rgba(22, 22, 96, 0.7) 100%);
  border-radius: 6px;
  padding: 10px 15px;
}


h3 {
  font-weight: 900;
  font-size: 20px;
  line-height: 120%;
  text-transform: uppercase;
  color: #fff;
  text-align: left;
  position: relative;
}
h3.small {
  font-weight: 600;
  font-size: 24px;
  line-height: 150%;
  text-align: center;
  color: #fff;
  position: relative;
}
h3.small2 {
  font-weight: 600;
  font-size: 24px;
  line-height: 150%;
  text-align: left;
  color: #fff;
  text-transform: none;
  position: relative;
}

h4 {
  font-weight: 600;
  font-size: 18px;
  line-height: 150%;
  color: #fff;
  position: relative;
}



h5 {
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #fff;
  text-align: left;
  position: relative;
  background: linear-gradient(180deg, #6B2D86 0%, rgba(22, 22, 96, 0.7) 100%);
  border-radius: 6px;
  padding: 13px 20px;
}


ul.simple {
  display: flex;
  gap: 16px;
  flex-direction: column;
}
ul.simple li {
  padding-left: 22px;
  font-size: 15px;
  font-weight:400;
  line-height: 160%;
  position: relative;
}
ul.simple li::before {
  content: "";
  position: absolute;
  top: 12px;
  transform: translateY(-50%);
  left: 0px;
  width: 6px;
  height: 6px;
  background: #fff;
  box-shadow: 0px 1px 4px 0px #372D82;
  border-radius: 50%;
}
ol {
  display: flex;
  gap: 16px;
  flex-direction: column;
  counter-reset: item;
}
ol li {
  padding-left: 28px;
  font-weight: 400;
  font-size: 15px;
  line-height: 160%;
  position: relative;
  counter-increment: item;
}
ol li::before {
  content: counter(item) ". ";
  position: absolute;
  top: 0px;
  font-size: 16px;
  font-weight:400;
  line-height: 150%;
  left: 0px;
  min-width: 20px;
  color: #fff;
  border-radius: 50%;
}


ul.list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
}
ul.list li {
  position: relative;
  width: 100%;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  position: relative;
  padding: 13px 20px 13px 41px;
  background: linear-gradient(180deg, #6B2D86 0%, rgba(22, 22, 96, 0.7) 100%);
  border-radius: 6px;
   
}
ul.list li::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 20px;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
}


ol.list  {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  counter-reset: item;
  padding: 0;
}

ol.list.short {
  max-width: 706px;
}
ul.list.short {
  max-width: 650px;
}

ol.list li {
  width: 100%;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  counter-increment: item;
  position: relative;
  padding: 13px 20px 13px 60px;
  background: linear-gradient(180deg, #6B2D86 0%, rgba(22, 22, 96, 0.7) 100%);
  border-radius: 6px;
   
}

ol.list li::before {
  content: counter(item) "";
  color: #223CA8;
  font-weight: 700;
  font-size: 15px;
  line-height: 20px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: #FFF;
  border-radius: 6px 0 0 6px;
  margin: 0;
  position: absolute;
  left: 0px;
  top: 0px;
}



.button {
  border-radius: 100px;
  background: #18C214;
  box-shadow: 0px 15px 10px 0px #0D1D4233;
  font-weight: 800;
  font-size: 20px;
  line-height: 100%;
  color: #fff;
  text-align: center;
  display: inline-block;
  max-width: max-content;
  min-width: 211px;
  position: relative;
  padding: 13px;
}

.burger-menu {
  display: none;
}

.button.center {
  margin: 0 auto;
}
.button.small {
  min-width: 180px;
  font-weight: 900;
  font-size: 14px;
  line-height: 16px;
  padding: 17px;
}
.button.transparent {
  padding: 11px 38px;
  background: transparent;
  display: flex;
  gap: 20px;
  align-items: center;
  min-width: 180px;
  font-weight: 900;
  font-size: 14px;
  line-height: 16px;
}

.button:hover {
  scale: 1.05;
}

.button.register-button {
  padding: 8px 20px;
  background: #18C214;
  box-shadow: none;
  min-width: 128px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.15px;
}

.button.login-button {
  padding: 8px 20px;
  background: #21BEFE;
  box-shadow: none;
  min-width: 128px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
}

.button.login-button:hover {
  scale: 1.05;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: #01102D;
  z-index: 103;
}

.header__container {
  max-width: 1600px;
  padding: 0 30px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 101px;
}

.header__logo {
  width: 198px;
  height: auto;
  margin-right: 71px;
  margin-left: 21px;
  transition: all 0.3s linear;
  position: relative;
}

.header__logo::after {
  content: "";
  background: #6B2D86;
  filter: blur(50px);
  width: 175px;
  height: 77px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.header__logo:hover {
  scale: 1.02;
}


.header-logo__img1 {
  width: 100%;
  height: 100%;
  z-index: 1;
}
.header-logo__img2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.header-menu__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.header-menu__list li a {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  position: relative;
  color: #fff;
  opacity: 0.5;
  transition: color 0.3s linear;
}

.header-menu__list a:hover {
  opacity: 1;
}
.header-menu__list li a.active {
  opacity: 1;
}

.header__right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-left: auto;
}

.header__buttons {
  display: flex;
  align-items: center;
  gap:16px;
}

.header__lang {
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 100px;
  border-radius: 100px;
  padding: 10px 25px;
  background: #16225A;
  color: #fff;
}

.header__lang img {
  width: 24px;
  height: 24px;
}



.hero {
  max-width: 1440px;
  margin: 101px auto 16px;
  width: 100%;
}

.hero__container {
  position: relative;
  padding: 66px 30px;
  border-radius: 12px;
}


.hero__image img {
  right: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}

.hero-content__rating {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content:flex-start;
  gap: 18px;
  margin-bottom: 10px;
  color: #fff;
}


.hero-content__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  margin-top: 17px;
  margin-bottom: 20px;
  color: #fff;
}

.hero-content__wrap {
  display: flex;
  flex-direction: column;
  max-width: 675px;
  position: relative;
}



.features__box {
  overflow: auto;
}

.features__box::-webkit-scrollbar {
  display: none;
}
.features__list  {
  overflow-x: auto;
  background: linear-gradient(180deg, #6B2D86 0%, rgba(22, 22, 96, 0.7) 100%);
  width: 100%;
  border-radius:  6px;
  
}
.features__list thead {
  border-radius:  6px 6px 0 0;
  border-bottom: none;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.features__list tbody {
  border-radius: 0 0 6px 6px;
  border-top: none;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.features__list tr {
  font-size: 15px;
  font-weight: 300;
  line-height: 150%;
  text-align: left;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
  position: relative;
  overflow: hidden;
  padding: 12px 20px;
  gap: 20px;
}

.features__list tbody tr {
  border-top: 1px solid #FFFFFF26;
}


.features__list tr td:nth-child(1), .features__list tr th:nth-child(1) {
  width: 20%;
}
.features__list tr td:nth-child(2), .features__list tr th:nth-child(2) {
  width: 80%;
}

.features__list td ul {
  display: flex;
  flex-direction: row;
  gap: 4px;
}
.features__list td ul li {
  padding: 0;
  margin: 0;
}
.features__list td ul li::before {
  display: none;
}

.features__list tr th {
  font-weight: 900;
  font-size: 20px;
  line-height: 150%;
}
.features__list tr td {
  font-size: 15px;
  font-weight: 400;
  line-height: 150%;
}
.features__list tr td a {
  font-size: 15px;
  font-weight: 400;
  line-height: 150%;
  text-decoration: underline;
}
.features__box2 {
  overflow: auto;
}

.features__box2::-webkit-scrollbar {
  display: none;
}
.features__list2  {
  overflow-x: auto;
  background: linear-gradient(180deg, #6B2D86 0%, rgba(22, 22, 96, 0.7) 100%);
  width: 100%;
  border-radius:  6px;
  
}
.features__list2 thead {
  border-radius:  6px 6px 0 0;
  border-bottom: none;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.features__list2 tbody {
  border-radius: 0 0 6px 6px;
  border-top: none;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.features__list2 tr {
  font-size: 15px;
  font-weight: 300;
  line-height: 150%;
  text-align: left;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
  position: relative;
  overflow: hidden;
  padding: 12px 20px;
  gap: 20px;
}

.features__list2 tbody tr {
  border-top: 1px solid #FFFFFF26;
}


.features__list2 tr td:nth-child(1), .features__list2 tr th:nth-child(1) {
  width: 20%;
}
.features__list2 tr td:nth-child(2), .features__list2 tr th:nth-child(2) {
  width: 80%;
}

.features__list2 td ul {
  display: flex;
  flex-direction: row;
  gap: 4px;
}
.features__list2 td ul li {
  padding: 0;
  margin: 0;
}
.features__list2 td ul li::before {
  display: none;
}

.features__list2 tr th {
  font-weight: 900;
  font-size: 20px;
  line-height: 150%;
}
.features__list2 tr td {
  font-size: 15px;
  font-weight: 400;
  line-height: 150%;
}
.features__list2 tr td a {
  font-size: 15px;
  font-weight: 400;
  line-height: 150%;
  text-decoration: underline;
}

.props-cons__box {
  display: flex;
  gap: 20px;
}

.props-cons__item {
  width: calc(50% - 10px);
  background: linear-gradient(180deg, #6B2D86 0%, rgba(22, 22, 96, 0.7) 100%);
  border-radius: 6px;
  padding: 20px;
}
.pros-cons__item-list {
  margin-left: 64px;
  gap: 12px;
  display: flex;
  flex-direction: column;
  width: calc(100% - 64px);
}
.pros-cons__item-list li {
  padding-left: 18px;
  font-size: 15px;
  font-weight: 400;
  line-height: 165%;
  position: relative;
}
.pros-cons__item-list li::before {
  content: "";
  position: absolute;
    top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

.props-cons__item h3 {
  position: relative;
  font-size: 20px;
  font-weight: 600;
  line-height: 165%;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  gap: 24px;
  margin-bottom: 16px;
}
.props-cons__item h3 img {
  width: 40px;
  height: 40px;
}


.banner.container {
  position: relative;
  border: none;
  display: flex;
  position: relative;
  background: transparent;
  border-radius: 6px;
  padding: 148px 40px;
}
.banner2.container {
  position: relative;
  border: none;
  display: flex;
  position: relative;
  background: transparent;
  border-radius: 6px;
  padding: 63px 126px 63px 164px;
  margin: 0;
}
.banner3.container {
  position: relative;
  border: none;
  display: flex;
  position: relative;
  background: transparent;
  border-radius: 6px;
  padding: 63px 165px;
}

.container .image.opr img {
  object-position: right;
}
.container .image.opr2 img {
  object-position: 82%;
}

.container .image.opl img {
  object-position: left;
}
.container .image.opc img {
  object-position: center;
}

.banner__image {
  width: 100%;
  height: 100%;
  right: 0;
  left: auto;
  bottom: 0;
  top: auto;
  position: absolute;

}
.banner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  object-position: left;

}
.banner__wrapper {
  position: relative;
  min-width: 674px;
  max-width: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.banner__wrapper2 {
  position: relative;
  min-width: 674px;
  max-width: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
}
.banner__wrapper3 {
  position: relative;
  min-width: 674px;
  max-width: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

.banner__wrapper h2, .banner__wrapper2 h2, .banner__wrapper3 h2 {
  font-weight: 900;
  font-size: 32px;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
  text-align: center;
  color: #FFFC65;
  padding: 0;
  background: transparent;
  margin-bottom: 10px;
}
.banner-wrapper__text {
  font-weight: 500;
  font-size: 26px;
  line-height: 119%;
  text-align: center;
  color: #FFFC65;
  margin-bottom: 24px;
}

.banner-wrapper__buttons a {
  text-transform: uppercase;
}

.banner-wrapper__buttons {
  display: flex;
  gap: 24px;
}
.banner-wrapper__buttons2 {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.banner-wrapper__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 16px 32px;
  border-radius: 100px;
  background: #18C214;
  max-width: max-content;
  gap: 20px;
  transition: all 0.3s linear;
}
.banner-wrapper__button:hover {
  scale: 1.05;
}
.banner-wrapper__button div {
  font-weight: 900;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  text-transform: uppercase;
}
.banner-wrapper__button div span {
  display: block;
}
.banner-wrapper__link {
  width: 205px;
  height: auto;
}
.banner-wrapper__link img {
  width: 100%;
  height: 100%;
}

.how-register {
  position: relative;
}


.install {
  position: relative;
  border-radius: 6px;
  padding: 20px;
  overflow: hidden;
}
.install__box {
  width: 100%;
  max-width: 706px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.install__box2 {
  width: 100%;
  max-width: 632px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.install__box3 {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}



.bonuses__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bonuses-list__item {
  display: flex;
  align-items: center;
  position: relative;
  height: 443px;
  width: 100%;
  padding: 0px 80px 0 110px;
  overflow: hidden;
  border-radius: 6px;
}
.bonuses-list__item:nth-child(even) .bonus-item__box {
  margin-left: auto;
}
.bonuses-list__item img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 0;
  top: 0;
  object-position: right;
}
.bonuses-list__item:nth-child(even) img {
  object-position: left;
}

.bonus-item__box {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 578px;
}
.bonus-item__box p {
  font-weight: 300;
}
.bonus-item__box .button.small {
  min-width: 203px;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 16px;
  line-height: 100%;
}
.button.small2 {
  min-width: 203px;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 16px;
  line-height: 100%;
  padding: 17px;
}

.box {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.box.color {
  background: linear-gradient(180deg, #6B2D86 0%, rgba(22, 22, 96, 0.7) 100%);

}

.bonuses__list li h3 {
  padding-bottom: 16px;
  font-weight: 900;
  font-size: 20px;
  line-height: 150%;
  text-transform: none;
  border-bottom:1px solid #FFFFFF26;

}
.bonuses__list li div {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bonuses__list li:last-child {
  padding: 0px;
}
.bonuses__list li:last-child img  {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
  position: relative;
}
.bonuses__list li a {
  min-width: 203px;
  font-weight: 500;
  font-size: 17px;
  line-height: 100%;
}


.list {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 40px;
}
.list div {
  position: relative;
  width: max-content;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  position: relative;
  padding: 13px 20px 13px 41px;
  background: linear-gradient(180deg, #6B2D86 0%, rgba(22, 22, 96, 0.7) 100%);
  border-radius: 6px;
}

.list div::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 20px;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
}
.list.second {
  padding: 0;
}
.list.second div {
  width: calc(50% - 10px);
}
.list.second div:nth-child(3) {
  width: 100%;
}
.list.third {
  padding: 0;
}
.list.third div {
  width: calc(25% - 15px);
}
.list.forse {
  padding: 0;
}
.list.forse div {
  width: calc(33.33% - 13.33px);
}
.list.list5 {
  padding: 0;
}

.list-logo__box {
  display: flex;
  gap: 20px;
  align-items: stretch;
  position: relative;
}
.list-logo__box .list {
  width: 100%;
  max-width: 706px;
  flex-shrink: 1;
}
.logo-big {
  width: calc(100% - 706px);
  position: relative;
  
}
.logo-big img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
      width: 100%;
    object-fit: cover;
}

.igaming__list {
  display: flex;
  gap: 20px;
  position: relative;
}
.igaming__list div {
  width: calc(33.33% - 13.33px);
  padding: 12px 20px;
  border-radius: 6px;
  background: linear-gradient(180deg, #6B2D86 0%, rgba(22, 22, 96, 0.7) 100%);
  font-weight: 400;
  font-size: 15px;
  line-height: 165%;
}
.igaming__list div strong {
  font-weight: 600;
}


.games__box, .games__box2 {
  border-radius: 6px;
  width: 100%;
  overflow: auto;
}

.games__box::-webkit-scrollbar, .games__box2::-webkit-scrollbar {
  display: none;
}

.games__table, .games__table2 {
  width: 100%;
  overflow-x: auto;
  background: linear-gradient(180deg, #6B2D86 0%, rgba(22, 22, 96, 0.7) 100%);
  border-radius: 6px;
}

.games__table thead,
.games__table2 thead {
  border-bottom: none;
  font-size: 15px;
  font-weight: 700;
  line-height: 140%;
  text-transform: uppercase;
  border-radius: 6px 6px 0 0;
}

.games__table tbody,
.games__table2 tbody {
  border-top: none;
  border-radius: 0 0 6px 6px;
}

.games__table tr, 
.games__table2 tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.games__table tr th {
  width: 20%;
  text-align: left;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 15px;
  line-height: 140%;
  text-transform: uppercase;
}
.games__table2 tr th {
  width: 33.33%;
  text-align: left;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 15px;
  line-height: 140%;
}


.games__table tr td {
  padding: 12px 20px;
  width: 20%;
  font-weight: 300;
  font-size: 15px;
  line-height: 135%;
}
.games__table thead tr {
  border-bottom: 1px solid #FFFFFF;
}
.games__table2 tr td {
  padding: 12px 20px;
  width: 33.33%;
  font-weight: 300;
  font-size: 15px;
  line-height: 135%;
}

.games__table tbody tr, .games__table2 tbody tr {
  border-top: 1px solid #FFFFFF26;
}

.games__table td, .games__table2 td {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}



.ac {
  width: 100%;
  margin-top: 0;
  border: none;
  position: relative;
  border-radius: 6px;
  background: transparent;
  overflow: hidden;
  background: linear-gradient(180deg, #6B2D86 0%, rgba(22, 22, 96, 0.7) 100%);

}


.ac:not(:last-child) {
  margin-bottom: 16px;
}
.ac-header {
  width: 100%;
}
.ac-header::after, .ac-header::before {
  display: none;
}
.ac .ac-trigger {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 22.5px;
  text-align: left;
  color: #fff;
  white-space: normal;
  border-bottom: 1px solid transparent;
  padding: 16px 60px 16px 16px !important;
}
  
.ac .ac-trigger:focus {
  color: #fff;
}

.ac.is-active > .ac-header {
  color: #fff;
 
}
.ac.is-active > .ac-header .ac-trigger {
  color: #fff;
  border-bottom: 1px solid #FFFFFF;
}

.ac .ac-panel {
  padding: 0;
  background: transparent;
}

.ac .ac-panel p {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  text-align: left;
  color: #fff;
  padding: 12px 16px;
  margin:8px 0 0;
}
  

.ac .ac-trigger::after {
  content: url('./img/plus.svg');
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: all 0.3s linear;
}
.ac.is-active > .ac-header .ac-trigger::after {
  content: url('./img/minus.svg');
  width: 32px;
  height: 32px;
  transform: translateY(-50%) rotate(180deg);
}


.swiper-slide {
  width: calc(50% - 10px); 
  max-width: 558px;

}

.swiper {
    padding: 0px 52px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none; 
}


.swiper-button-next {
  background-image: url('img/sw-arr-right.svg');
  width: 32px;
  height: 32px;
  right: 0px;
  left: auto;

}
.swiper-button-prev {
  background-image: url('img/sw-arr-left.svg');
  width: 32px;
  height: 32px;
  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;
}
.revievs-item {
  padding: 32px;
  border-radius: 6px;
  min-height: 188px;
  background: linear-gradient(180deg, #6B2D86 0%, rgba(22, 22, 96, 0.7) 100%);
}


.reviews-item__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-bottom: 32px;
  border-bottom: 1px solid #FFFFFF;
  margin-bottom: 32px;
}
.reviews-item__name span {
  font-weight: 600;
  font-size: 20px;
  line-height: 165%;
}
.reviews-item__rate {
  display: flex;
  gap: 4px;
}
.reviews-item__text {
  font-weight: 400;
  font-size: 15px;
  line-height: 135%;

}
.reviews__box {
  position: relative;

}



.rating__box {
  border-radius: 6px;
  width: 100%;
  overflow: auto;
}
.rating__box::-webkit-scrollbar {
  display: none;
}

.rating__list {
  width: 100%;
  overflow-x: auto;
}

.rating__list thead {
  border: 3px solid #21BEFE;
  border-bottom: none;
  background: #21BEFE66;
  font-size: 15px;
  font-weight: 700;
  line-height: 140%;
  text-transform: uppercase;
  border-radius: 6px 6px 0 0;
}

.rating__list tbody {
  border: 3px solid #21BEFE;
  border-top: none;
  background: #21BEFE66;
  border-radius: 0 0 6px 6px;
}

.rating__list tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.rating__list tbody tr {
  min-height: 64px;
}
.rating__list tr td:nth-child(1), .rating__list tr td:nth-child(2) {
  display: flex;
  align-items: center;
}

.rating__list tr th {
  width: 33.33%;
  text-align: left;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 15px;
  line-height: 140%;
}

.rating__list tr td {
  padding: 12px 20px;
  width: 33.33%;
  font-weight: 300;
  font-size: 15px;
  line-height: 135%;
}
.rating__list tr td ul {
  display: flex;
  gap: 5px;
}

.rating__list tbody tr {
  border-top: 1px solid #FFFFFF12;
}

.rating__list td {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}


.summary__element {
  display: flex;
  gap: 16px;
}

.summary-element__img {
  width: 165px;
  height: 165px;
  flex-shrink: 0;
}
.summary-element__img img {
  width: 100%;
  height: 100%;
}

.summary-element__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.summary-element__text h4 {
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  color: #fff;
}

.summary-element__text p {
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
}


.content {
  flex-shrink: 1; 
  width: calc(100% - 260px);
}



.footer {
  padding-top: 0px;
  padding-left: 290px;
  padding-right: 30px;
  max-width: 1600px;
  margin: 0 auto;
  padding-bottom: 100px;
}

.footer__lang-list {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.footer__lang-list div a {
  border-radius: 8px;
  background: #281DE21A;
  border: 1px solid #FFFFFF26;
  padding: 12px;
  gap: 12px;
  display: flex;
  align-items: center;
  transition: all 0.3s linear;
}
.footer__lang-list div a:hover {
  border: 1px solid #fff;
}
.footer__payment {
  display: flex;
  padding: 32px;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
  background: #281DE21A;
  border: 1px solid #FFFFFF26;
  border-radius: 6px;
}


.footer__content {
  background: #281DE21A;
  border: 1px solid #FFFFFF26;
  border-radius: 6px;
  padding: 32px 24px;
  display: flex;
  flex-direction: row;
}
.footer__logo {

  flex-shrink: 0;
  margin-right: 40px;
}
.footer__logo img {
  width: 100px;
  height: auto;
}


.footer__nav {
  width: 100%;
  display: flex;
  gap: 50px;
  align-items: flex-start;
  justify-content: center;

}
.footer-nav__box {
  min-width: 180px;
}

.footer-nav__title {
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  margin-bottom: 16px;
  display: flex;
  gap: 10px;
}
.footer-nav__list {
  display: flex;
  gap: 16px;
  flex-direction: column;
}
.footer-nav__list li {
  padding: 0;
}
.footer-nav__list li::before {
  display: none;
}
.footer-nav__list li a {
  position: relative;
  color: #fff;
  display: block;
  font-weight: 400;
  font-size: 14px;
  line-height: 200%;
  transition: all 0.3 linear;
}
.footer-nav__list li a:hover {
  color: #BCBCBC;
}

.footer__mail {
  position: relative;
  display: flex;
  gap: 9px;
  font-weight: 500;
  font-size: 21px;
  line-height: 20px;
  border-radius: 100px;
  padding: 12px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 261px;
  margin-bottom:101px;
  border: 1.5px dashed #FFFFFF66;
  transition: all 0.3s linear;
}
.footer__mail:hover {
  border-color: #21BEFE;
}

.footer__support {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 28px;
  gap: 20px;
}
.footer__support a img {
  width: 54px;
  height: 54px;
}
.footer__support a:hover img {
  scale: 1.05;
}


.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: 40px;
  height: 40px;
  box-shadow: 0px 5.33px 6.67px 0px #3D1F8626, 0px -2.67px 0px 0px #3D1F861A inset, 0px -1.33px 2.67px 0px #3D1F8640 inset;
}

.button-up img {
  width: 40px;
  height: 40px;
}
  

.burger-button {
  display: none;
}




.sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 109px;
  height: calc(100vh - 109px);
  overflow-y: auto;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 240px;
  -webkit-flex: 0 1 240px;
  flex: 0 1 240px;
  padding-bottom: 20px;
  flex-shrink: 0;
}

.sidebar::-webkit-scrollbar {
  display: none;
  width: 0;
}
  
  
@media screen and (min-width: 1600px) {
  .sidebar {
    left: calc((100% - 1600px) / 2 + 30px);
  }
}

.aside-left__nav {
  background: linear-gradient(180deg, #6B2D86 0%, rgba(22, 22, 96, 0.7) 100%);
  border-radius: 6px;
}
  
  
.aside-left__wrapper {
  position: sticky;
  padding: 0 21px;
}
.aside-left__wrap {
  overflow-y: auto;
  height: auto;
  background: transparent;
  border-radius: 0px;
  padding: 0px;
}
.aside-left__wrap::-webkit-scrollbar {
  width: 0;
}

.aside-left-wrap__box {
  margin-bottom: 20px;
  background: #01102D;
}

  
.main-left-nav__desc {
  border-radius: 12px;
}
.main-left-nav__desc.active {
  border-radius: 12px;
}
   
  
.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: 1500px;
  padding-bottom: 8px;
  opacity: 1;
  overflow-y: auto;
}

.aside-left-wrap__list {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 7px;
}


.aside-left-wrap__list li a {
  padding: 11px;
  font-size: 15px;
  font-weight: 400;
  line-height: 15px;
  text-align: left;
  position: relative;
  gap: 9px;
  display: flex;
  align-items: center;
  background: transparent;
  transition: all 0.3s linear;
}

.aside-left-wrap__list li a::before {
  display: none;
}

.aside-left-wrap__list li a::after {
  content: url('./img/arrow-right.svg');
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  position: absolute;
}
.aside-left-wrap__list li:nth-child(3) a::after {
  content: "5";
  width: 23px;
  height: 23px;
  background: linear-gradient(180deg, #1EBDFE 0%, #C813CB 100%);
  border-radius: 50%;

  font-weight: 700;
  font-size: 15px;
  line-height: 100%;
  text-align: center;
  color: #FFF;

  display: flex;
  align-items: center;
  justify-content: center;

  top: 50%;
  transform: translateY(-50%);
  right: 19px;
  position: absolute;
}

.aside-left-wrap__list li a div {
  filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  background: #281DE2;
  z-index: 0;
}

.aside-left-wrap__list li a img {
  z-index: 1;
}

.aside-left-wrap__list li a:hover {
  color: #1EBDFE;
}

.aside__download-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #CE730B 0%, #2D09E6 100%);
  gap: 7px;
  font-weight: 400;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  padding: 10px 16px;
  max-width: 198px;
  margin: 32px 0px;
  border-radius: 8px;
  transition: all 0.3s linear;
}
.aside__download-button:hover {
  background: linear-gradient(270deg, #CE730B 0%, #2D09E6 100%);
}


.main-left-nav__desc, .aside-left-nav__desc {
  border-radius: 12px;
}
.main-left-nav__desc.active, .aside-left-nav__desc.active {
  border-radius: 12px 12px 0 0;
}
.aside-left-nav__desc {
  position: relative;
  padding: 10px 0px;
  margin: 0 10px;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  text-transform: capitalize;
  text-align: left;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s linear;
  border-bottom:1px solid #FFFFFF26;

}

.aside-left-nav__desc::after {
  content: url('./img/arrow-right.svg');
  position: absolute;
  top: 10px;
  right: 0px;
  width: 14px;
  height: 14px;
  transform: rotate(0deg);
  transform-origin: center center;
  transition: all 0.3s linear;
}

.aside-left-nav__desc.active::after{
  content: url('./img/arrow-right.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;
}
  
.aside-left-nav__list.visible {
  max-height: 1500px;
  opacity: 1;
  overflow-y: auto;
  padding-top: 10px;
  padding-bottom: 12px;
}

.aside-left-nav__list.visible::-webkit-scrollbar {
  width: 0;
}

.aside-left-nav__list {
  display: flex;
  flex-direction: column;
  padding-bottom: 0px;
  gap: 12px;
}

.aside-left-nav__list li a {
  padding: 0px 10px;
  font-weight: 400;
  font-size: 15px;
  line-height: 120%;
  color: rgba(255, 255, 255, 0.5);
  text-align: left;
  position: relative;
  display: flex;
  transition: all 0.3s linear; 
}


.aside-left-nav__list li a:hover {
  color: rgba(255, 255, 255, 1);
}

.main-left {
  display: none;
}
  


@media screen  and (max-width: 1500px) {
  .footer-nav__box {
    min-width: 100px;
  }
  .revievs-item {
    min-height: 210px;
  }
}
@media screen  and (max-width: 1440px) {
  .footer__content {
    padding: 47px 20px;
    justify-content: space-between;
    gap: 20px;
  }
  .footer__contacts {
    max-width: 245px;
  }
  .footer__nav {
    flex: 1;
    display: flex;
    gap: 20px;
    max-width: 780px;
    margin-right: 0px;
  }
  .footer__inner {
    width: 104px;
    margin-right: 30px;
  }
  .bonuses-list__item {
    padding: 0 20px;
  }
  .bonus-item__box {
    padding: 16px;
    border-radius: 6px;
    background: rgba(22, 22, 96, 0.7);
    position: relative;
  }
}
@media screen  and (max-width: 1340px) {
  .banner__wrapper {
    flex-direction: column;
    justify-content: center;
}
}
@media screen  and (max-width: 1296px) {
  .revievs-item {
    min-height: 233px;
  }
}
@media screen  and (max-width: 1200px) {
  .aside-left-wrap__list {
    padding: 0;
  }
  .aside-left-wrap__list li:last-child {
    margin-bottom: 10px;
  }
  .aside-left-wrap__list::after {
    display: none;
  }
  .aside-left-wrap__list li a {
    display: block;
  }
  .main-left {
    display: block;
  }
  .main-left.container {
    padding: 0;
  }
  .sidebar {
    display: none;
  }
  .hero__content {
    padding-left: 20px;
  }
  .footer {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 60px;
  }
  .footer__content {
    max-width: 100%;
  }
  .footer__nav-list li:not(:last-child)::after {
    display: none;
    }
  .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%;
    object-position: right;
  }
  .hero.container {
    width:100%;
    margin-right: 0px;
  }
  .aside-left-nav__desc {
    padding: 12px;
    padding-right: 45px;
  }
  .aside-left-nav__desc::after {
    top: 14px;
  }
  .hero-content__wrap {
    align-items: center;
    justify-content: center;
    background: rgba(22, 22, 96, 0.7);
    border-radius: 12px;
    padding: 16px;
    margin: 0 auto;
  }
  .hero-content__text {
    text-align: center;
  } 
  .hero-content__subtitle {
    text-align: center;
  }
  .main {
    padding-right: 20px;
  }
  .title {
    text-align: center;
  }
  .aside-left-nav__list li a {
    font-size: 15px;
  }
}

@media screen and (max-width: 1120px) {
  .header__menu {
    display: none;
  }
  .header__container {
    padding-right: 20px;
    height: 60px;
  }
  .hero.bonus-page {
    margin-top: 80px;

  }
  .header__buttons {
    position: fixed;
    width: 100%;
    padding: 16px;
    background: #101F2EF2;
    bottom: 0;
    left: 0;
    gap: 16px;
    z-index: 103;
    justify-content: center;
    display: none;
  }
  .header__buttons .button.register-button {
    min-width: 163px;
  }
  .header__buttons .button.login-button {
    min-width: 163px;
  }
  .button-up {
    bottom: 10px;
  }


.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: #01102D;
  
  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-size: 15px;
  line-height: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  width: 300px;
  height: 46px;
  color: #FFF;
  border: 1px solid #fff;
  border-radius: 100px;
}
.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%;
  font-size: 15px;
}
.burger-menu .button.register-button {
  font-size: 15px;
  width: 300px;
  height: 46px;
  max-width: 100%;
}
.aside__right {
  display: none;
}
.main {
  padding-right: 20px;
}
.footer__down {
  padding: 0;
}
.burger-menu__lang {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
}
.burger-menu__lang a {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: 15px;
  font-weight: 400;
  line-height: 22.5px;
  color:#E3E8EB;
  margin-top: 40px;
  justify-content: center;
  text-transform: uppercase;
}
.burger-menu__lang a img {
  width: 24px;
  height: 24px;
}
.hero {
  margin: 76px auto 16px;
}
.header__right {
  gap: 20px;
}
.footer__content {
  flex-direction: column;
  gap: 40px;
  justify-content: flex-start;
}
.footer__mail,.footer__socials {
  margin-bottom: 40px;
}
.footer__nav {
  max-width: none;
  justify-content: space-between;
}
.footer__contact {
  max-width: 261px;
  margin: 0 auto;
}
.footer__support {
  justify-content: center;
  padding-right: 0px;
}
.footer__logo {
    margin: 0 auto;
}
  .install__image2 {
    opacity: 0.4;
  }
  .install__image3 {
    opacity: 0.3;
  } 
}
@media screen  and (max-width: 1100px) {
  .revievs-item {
    min-height: 205px;
  }
}


@media screen and (max-width: 950px) {
  .hero-content__wrap {
    margin: 0 auto;
  }
  .banner__wrapper, .banner__wrapper2, .banner__wrapper3 {
    justify-content: center;
    align-items: center;
    min-width: auto;
    margin: 0 auto;
    
  }
  .banner__wrapper-subtitle {
    text-align: center;
  }
  .banner__image img {
    object-position: 0%;
  }
  .banner.container {
    width: 100%;
    padding: 40px 10px;
  }
  .title {
    text-align: center;
  }
  .hero-content__subtitle {
    text-align: center;
  }
  .hero.container {
    padding: 40px 10px;

  }

  .banner__wrapper-desc {
    text-align: center;
    font-size: 24px;
    line-height: 35px;
  }
  .banner__wrapper-title {
    text-align: center;
    font-size:40px;
  }
  .banner__button {
    margin: 0 auto;
  }
  .rating__item {
    width: calc(50% - 8px);
  }
  .rating-item__stars li img {
    width: 28px;
  }
  .props-cons__box {
    flex-direction: column;
  }
  .props-cons__item {
    width: 100%;
  }
  .bonuses__list li {
    width: 100%;
  }
  .bonuses__list li:last-child div {
    flex-direction: column;
  }
  .vip__image {
    display: none;
  }
  .vip__list {
    width: 100%;
    max-width: 100%;
  }
  .games__table tr td {
    min-width: 190px;
  }

  .games__table2 tr td:first-child, .games__table2 tr th:first-child {
    min-width: 170px;
  }
  .games__table2 tr td, .games__table2 tr th {
    min-width: 300px;
  }
  .features__list tr td:nth-child(1), .features__list tr th:nth-child(1) {
    min-width: 200px;
  }
  .features__list tr td::nth-child(2), .features__list tr th:nth-child(2) {
    min-width: 300px;
  }
  .features__list2 tr td:nth-child(1), .features__list2 tr th:nth-child(1) {
    min-width: 150px;
  }
  .features__list2 tr td:nth-child(2), .features__list2 tr th:nth-child(2) {
    min-width: 100px;
  }
  .banner-wrapper__buttons2 {
    flex-direction: column;
    margin: 0 auto;
  }
  .banner2.container, .banner.container, .banner3.container {
    padding: 40px 10px;
  }
  .igaming__list div {
    width: 100%;
  }
  .igaming__list {
    flex-direction: column;
  }
}

@media screen and (max-width: 850px) {
  .live__list li {
    width: 100%;
  }
  .footer__content {
    flex-direction: column;
    padding: 20px 10px;
  }
  .footer__nav {
    gap: 20px;
    max-width: 100%;
    width: 100%;
    margin-right: 0px;
  }
  .footer__inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-right: 0px;
  }
  .footer__lang {
    width: max-content;
  }
  .footer__logo {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  .hero.container {
    padding: 42px;
  }
  .features__list tbody {
    flex-direction: column;
  }
  .features__list tr {
    width: 100%;
  }
  .hero__container {
    padding: 48px 10px;
  }

  .footer {
    padding: 0 20px 40px;
  }
  .banner__wrapper, .banner__wrapper2, .banner__wrapper3 {
    background: rgba(22, 22, 96, 0.7);
    padding: 16px 10px;
    border-radius: 6px;
    position: relative;
  }

  .banner {
    padding: 20px 7px;
  }
  .footer__wrapper {
    flex-direction: column;
  }

  .footer__logo-wrap, .footer__menu {
    flex:0;
    margin-bottom: 16px;
  }
  .footer__button {
    margin: 0;
  }

  .footer__wrapp div {
   justify-content: flex-start;
  }
  .footer__btn {
    flex-direction: row;
  }
  .rating-item__stars li img {
    width: 23px;
  }
  .features__list tr td:nth-child(1), .features__list tr th:nth-child(1) {
    width: calc(40% - 8px);
    flex-shrink: 0;
  }
  .live__box ul li {
    width: calc(50% - 8px);
  }


  .reviews__list li {
    width: 100%;
  }
  .article .live__list {
    flex-direction: column;
  }
  .article .live__list li {
    width: 100%;
  }
  .support__box {
    flex-direction: column;
  }
  .support-box__left, .support-box__right {
    width: 100%;
  }
  .support-box__right {
    padding: 20px 15px;
  }
  .summary__element {
    flex-direction: column;
  }
  .list {
    padding: 0;
  }
  .list div {
    width: 100%;
  }
  .list.second div {
  width: 100%;
  }
  .list.second div:nth-child(3) {
    width: 100%;
  }
}
@media screen and (max-width: 700px) {
  .footer__contacts {
    flex-direction: column;
    gap: 16px;
  }
  .bonuses-list__item {
    width: 100%;
    padding: 40px 10px;
    height: auto;
  }
  .footer__nav {
    flex-direction: column;
    gap: 24px;
  }
  .footer__payment {
    padding: 20px 10px;
    gap: 24px;
  }
  .install__image {
    opacity: 0.5;
  }
  .revievs-item {
    min-height: 210px;
  }
}
@media screen and (max-width: 650px) {

  .footer__nav {
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer__nav ul {
    width: calc(50% - 10px);
  }
  .rating__item {
    width: 100%;
  }
  .rating-item__stars li img {
    width: 28px;
  }
  .features__list tr td:nth-child(1),.features__list tr th:nth-child(1) {
    min-width: 160px;
  }
  .features__list tr td:nth-child(2),.features__list tr th:nth-child(2) {
    min-width: 260px;
  }
}
@media screen and (max-width: 600px) {
  .install, .box {
    padding: 20px 10px;
  }
  .hero-content__wrap {
    padding: 20px 7px;
  }
  .banner__wrapper, .banner__wrapper2, .banner__wrapper3{
    padding: 20px 10px;
    margin: 0 auto;
  }
  .container.banner {
    padding: 40px 4px;
  }
  .container.hero {
    padding: 40px 10px;
  }
  .main {
    padding: 0px 10px;
  }
  .hero {
    padding: 0;
  }
  .footer {
    padding-right: 10px;
    padding-left: 10px;
  }
  .title {
    font-size: 25px;
    text-align: center;
    margin: 0 auto ;
  }
  .banner-wrapper__buttons {
    flex-direction: column;
  }

  .banner__wrapper h2, .banner__wrapper2 h2, .banner__wrapper3 h2 {
    font-size: 24px;
  }
  .banner-wrapper__text {
    font-size: 20px;
  }

  .hero-content__rating {
    justify-content: center;
    flex-direction: column;
    gap: 10px;
  }
  .hero-content__subtitle {
    text-align: center;
    font-size: 28px;
    line-height: 24px;
  }
  .hero__button {
    margin: 0 auto;
  }
  h2, .article h2  {
    font-size: 22px;
    line-height: 30px;
  }


  .header__logo {
    width: 110px;
    height: auto;
    margin-left: 0;
    margin-right: 0;
  }
  .header__lang {
    min-width: 80px;
    padding: 8px 12px;
  }

  h3, .article h3 {
    font-size: 16px;
    line-height: 22px;
  }
  .header__container {
    padding-right: 10px;
    padding-left: 10px;
  }

  .button.banner__button {
    margin: 0 auto;
  }
  .banner__wrapper {
  align-items: center;
  }
  
  .hero-content__wrap {
    align-items: center;
  }

  .ac .ac-trigger {
    font-size:16px;
    line-height: 24px;
  }
  .bonuses__list li:last-child div a {
    min-width: 100%;
    max-width: none;
  }
  .tournaments .banner {
    padding: 40px 10px;
  }
  .live__box ul li {
    width: 100%;
  }
  .live__box .image img {
    object-position: 67%;
  }
  .hero__image img {
    object-position: 89%;
  }
  .live__buttons {
    flex-direction: column;
  }
  .revievs-item {
    min-height: 209px;
    padding: 20px 10px;
  }
  .reviews-item__inner {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 480px) {
  .header__buttons a {
    min-width:calc(50% - 8px);
    width: calc(50% - 8px);
  }
  .header__buttons .button.register-button {
    min-width:calc(50% - 8px);
    width: calc(50% - 8px);
  }
  .header__buttons .button.login-button {
    min-width:calc(50% - 8px);
    width: calc(50% - 8px);
  }
  .footer__menu li {
    flex: 1 0 calc(50% - 8px);
    width: calc(50% - 8px);
  }
  .footer__menu li .footer__info li {
    flex: 1 0 100%;
    width: 100%;
  }
  .pros-cons__item-list {
    margin-left:0px;
    width: 100%;
  }
  .rating__list td:first-child {
    width: 70%;
  }
  .rating__list td:last-child {
    width: 30%;
  }
  .revievs-item {
    min-height: 254px;
  }
  .swiper {
    padding: 0px 32px;
  }
}

@media screen and (max-width: 425px) {

  .banner__wrapper {
    width: 100%;
  }
  .container {
    padding: 20px 10px;
  }
  .footer__nav ul {
    width: 100%;
  }
  .rating-item__stars li img {
    width: 22px;
  }
}
@media screen and (max-width: 385px) {
  .revievs-item {
    min-height: 282px;
  }
  .reviews-item__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (max-width: 345px) {
  .revievs-item {
    min-height: 304px;
  }
}



/* BONUS PAGE */


.container.bonus {
  padding: 0px;
  background: transparent;
}

.bonus__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}

.bonus-list__item {
  width: calc(50% - 10px);
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.bonus-item__image {
  width: 100%;
  position: relative;
  z-index: 1;
  max-height: 278px;
}

.bonus-item__image-img  {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bonus-item__wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px 30px 30px;
  background: #2C4ED9;

}


.bonus-item__title {
  font-weight: 900;
  font-size: 26px;
  line-height: 120%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-align: center;
  text-transform: uppercase;
}


.bonus-item__desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  margin-bottom: 32px;
}


.button.bonus-item__button {
  margin: 0 auto;
  box-shadow: 10px 10px 50px 0px #1EE9324D, -10px -10px 50px 0px #1B0C71, -2px -6px 20px 0px #1EE9324D, 0px 0px 10px 0px #FFFFFF99 inset;
}

.hero.bonus-page {
  width: 100%;
  padding: 0 40px;
  max-width: 1440px;
}

.hero__container.bonus {
  padding: 66px 40px;
}
.hero__container.bonus-page {
    padding: 54px 40px;
}

.breadcrumbs {  
  display: flex;
  margin-bottom: 10px;
  align-items: center;
  gap: 12px;
}
.breadcrumbs li {
  position: relative;
}
.breadcrumbs a {
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: #fff;
  transition: all 0.2s linear;
}
.breadcrumbs li:first-child a {
  opacity: 0.7;

}

.decor__img {
  position: absolute;
  width: 100%;
  max-width: 440px;
  height: 100%;
  object-fit: cover;
  object-position: right;
  top: 0;
  left: 0;
}
.decor__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: calc(100% - 440px);
  margin-left: auto;
}




@media screen and (max-width: 1500px) {
  .list-logo__box .list {
    max-width: 550px;
  }
    .logo-big {
    width: calc(100% - 570px);
    position: relative;
  }
}

@media screen and (max-width: 1300px) {
  .list-logo__box .list {
    max-width: 450px;
  }
    .logo-big {
    width: calc(100% - 470px);
    position: relative;
  }
}

@media screen and (max-width: 1280px) {
  .decor__img {
    max-width: 340px;
  }
  .decor__list {
    width: calc(100% - 340px);
  }
}
@media screen and (max-width: 1200px) {
  .breadcrumbs {
    justify-content: center;
  }
}

@media screen and (max-width: 950px) {

    .decor__img {
    display: none;
  }
  .decor__list {
    width: 100%;
  }
  .list.third div, .list.forse div {
    width: 100%;
  }
}

@media screen and (max-width: 900px) {
    .list-logo__box {
      flex-direction: column;
    }
    .list-logo__box .list {
      max-width: none;
    }
    .logo-big {
      display: none;
    }
    .install__box {
      flex-direction: column;
    }
    .install-box__part {
      width: 100%;
    }
}
@media screen and (max-width: 850px) {
  .spin__image {
    display: none;
  }
  .spin__box {
    max-width: 100%;
  }
  .loyalty__buttons {
    flex-wrap: wrap;
  }
  .article .loyalty__list li {
    width: 100%;
  }
  .cashback__box {
    flex-direction: column;
  }
  .cashback-box__element {
    width: 100%;
  }
  .cashback__container {
    width: 100%;
  }
  .win__box {
    flex-direction: column;
  }
  .win-box__element {
    width: 100%;
  }
  .limit__box {
    flex-direction: column;
  }
  .limit__box.limit__box2 {
    flex-direction: column;
  }
  .limit__img, .limit__img2 {
    width: 100%;
    max-width: 100%;
    flex-shrink: 0;
  }
  .limit-box__right {
    width: 100%;
  } 
  .list__img-mag {
   display: none;
  }
  .mobile__box .image img {
    object-position: right;
  }

}

@media screen and (max-width: 768px) {
  .offers__container::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    border-radius: 6px;
    background:rgba(0, 0, 0, 0.7);
  }
  .offers__box {
    z-index: 2;
    position: relative;
  }
  .offers__box.right {
    margin-left: 0;
  }
  .offers__container .image img {
    object-position: 68%;
  }
  .offers__container.second .image img {
    object-position: 0%;
  }
  .hero__container.bonus {
    padding: 40px 10px
  }
  .hero__container.bonus-page {
    padding: 40px 10px
  }
  .article.greetings ul {
    flex-direction: column;
  }
  .article.greetings ul li {
    width: 100%;
  }
  .balance__box {
    flex-direction: column;
  }
  .balance-box__element {
    width: 100%;
  }
  .balance__wrap {
    flex-direction: column-reverse;
  }
  .offer__box .image img {
    object-position: 0%;
  }
  .article.lealtad ul {
    flex-direction: column;
  }
  .article.lealtad ul li {
    width: 100%;
  }
  .responsible__box {
    padding: 20px;
  }
  .responsible__logo {
    position: static;
    transform: translate(0, 0);
  }
  .responsible__box2 {
    align-items: center;
    justify-content: center;
  }
  .responsible__box2 h4, .responsible__box2 a {
    position: relative;
    z-index: 2;
  }

}

@media screen and (max-width: 650px) {
  .greetings__box .image img {
    object-position: 0%;
  }
}
@media screen and (max-width: 600px) {
  .article .start__list li::before {
    padding: 20px 12px;
  }
  .reload ul li, .reload ul.reload__list2 li {
    width: 100%;
  }
  .reload ul {
    flex-wrap: wrap;
  }
  .reload__buttons {
    flex-wrap: wrap;
  }
  .claim .image img {
    object-position: 82%;
  }
  .claim {
    padding: 20px 10px 30px;
  }
}

@media screen and (max-width: 425px) {
  .claim__buttons .button {
    min-width: 100%;
  }
  .offers__container .image img {
    object-position: 85%;
  }
  .offers__container.second .image img {
    object-position: 17%;
  }
}


 


/* APP PAGE */

.hero__container.app {
  padding: 63px 40px;
}

.app__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.app-list__item {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(107, 45, 134, 0.8) 0%, rgba(22, 22, 96, 0.56) 100%);
  width: calc(50% - 10px);
  border-radius: 6px;
  border-top: 4px solid #6B2D86;
  border-bottom: 4px solid rgba(22, 22, 96, 0.7);
  position: relative;
}
.app-list__item:last-child {
  width: 100%;
}
.app-list__item::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 4px;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #6B2D86 0%, rgba(22, 22, 96, 0.7) 100%);
}
.app-list__item::after {
    content: "";
  position: absolute;
  height: 100%;
  width: 4px;
  top: 0;
  right: 0;
  background: linear-gradient(180deg, #6B2D86 0%, rgba(22, 22, 96, 0.7) 100%);
}

.app-list__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  background: transparent;
  border: none;
}


@media screen and (max-width: 900px) {
  .app-list__item {
    width: 100%;
  }
  
}