
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  background: #0B0C21;

}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: inherit;
  -webkit-tap-highlight-color: transparent;
}
* {
  scroll-behavior: smooth;
}

body {
  font-family: "Work Sans", sans-serif;
  background: #0B0C21;
  color: #fff;
}

.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 20px;
  display: flex;
  gap: 23px;
  position: relative;
}


.container {
  width: 100%;
  margin: 0 auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  margin-bottom: 24px;
  background: #1F2038;
  border-radius: 10px;
  overflow: hidden;
}
.container2 { 
  padding: 40px;
}
.container3 { 
  background: transparent;
}


.image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.image-box {
  width: 100%;
  height: 100%;
}
.image1 {  
  width: 100%;
  height: 100%;
  max-width: 837px;
  object-fit: cover;
  margin: 0 auto;
}
.image2 {  
  width: 100%;
  height: 100%;
  max-width: 1023px;
  object-fit: cover;
  margin: 0 auto;
}
.image3 {  
  width: 100%;
  height: 100%;
  max-width: 602px;
  object-fit: cover;
  margin: 0 auto;
}

h1 {
  width: 100%;
  position: relative;
  font-weight: 900;
  font-size: 30px;
  line-height: 40px;
  text-align: center;
  color: #FFF;
  text-transform: uppercase;
}



p {
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  line-height: 135%;
  text-align: left;
  position: relative;
  z-index: 1;
}

p.center {
  text-align: center;
}


h2 {
  font-weight: 700;
  font-size: 28px;
  line-height: 120%;
  position: relative;
  text-align: left;
  color: #FFF;
  z-index: 1;
  padding: 6px 18px;
  text-transform: uppercase;
  position: relative; 
  background: #1F2038;
  border-radius: 10px 10px 20px 20px;
}

.title-box {
  overflow: hidden;
  background: linear-gradient(90deg, #C98017 0%, #A84A16 100%);
  padding: 2px;
  border-radius: 10px 10px 20px 20px;
  position: relative;
}


h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 135%;
  color: #fff;
  position: relative;
  z-index: 1;
  text-align: left;
}


h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
  position: relative;
  z-index: 1;
  text-align: left;
  color: #FFF;
}


ul.list  {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 2px;
  position: relative;
  z-index: 1;
  width: 100%;
}

ul.list li {
  width: 100%;
  text-align: left;
  font-weight: 400;
  font-size: 14px;
  line-height:135%;
  color: #fff;
  position: relative;
  padding-left: 24px;
}
ul.list li strong {
  font-weight: 700;
}

ul.list li::before {
  content: "";
  width: 4px;
  height: 4px;
  position: absolute;
  left: 10px;
  background: #fff;
  border-radius: 50%;
  top: 8px;
}

ol {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap:2px;
  counter-reset: item;
  position: relative;
  z-index: 1;
  width: 100%;
}


ol li {
  position: relative;
  z-index: 1;
  width: 100%;
  list-style: none;
  counter-increment: item;
  font-weight: 400;
  line-height: 135%;
  font-size: 14px;
  padding-left: 18px;
}

ol li strong {
  font-weight: 700;
}

ol li::before {
  content: counter(item) ". ";
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
  color: #fff;
  position: absolute;
  left: 2px;
  min-width: 16px;
  z-index: 1;
}

.short {
  max-width: 693px;
}
p.short, h3.short {
  max-width: 720px;
}
.decor {
  position: absolute;
  width: 344px;
  height: auto;
  max-height: none;
  right: 36px;
  bottom: 0;
  z-index: 2;
}


.button {
  border-radius: 10px 10px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 141px;
  padding: 12px 24px;
  font-family: "Work Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 24px;
  max-width: max-content;
  text-align: center;
  color: #fff;
  background: #E93E3A;
  border: none;
  outline: none;
  transition: all 0.3s linear;
  position: relative;
  z-index: 1;
}

.buttons__box {
  display: flex;
  gap: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.buttons__box2 {
  display: flex;
  gap: 8px;
  flex-direction: row;
  width: max-content;
  margin: 0 auto;
}


.burger-menu {
  display: none;
}

.button.center {
  margin: 0 auto;
}

.button:hover {
  scale: 1.05;
}

.button.register-button {
  background: #FCC211;
  box-shadow: 0px 4px 40px 0px #E93E3A;
  color: #05071A;
}
.button.login-button {
  border-radius: 20px 20px 10px 10px;
  background: #23293A;
  color: #FFF5D6;
}



header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: #05071A;
  z-index: 103;
}
.header__container {
  max-width: 1600px;
  padding: 0 48px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 80px;

}

.header__logo {
  width: 145px;
  height: 56px;
  margin-right: 97px;
}
.header__logo img {
  width: 100%;
  height: 100%;
}


.header-menu__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.header-menu__list li a {
  font-size: 15px;
  font-weight: 700;
  line-height: 24px;
  color: #FFF5D6;
  position: relative;
  transition: color 0.3s linear;
}


.header-menu__list a:hover {
  color: #FCC211;
}



.header__right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-left: auto;
}
.header__buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}


.header__lang {
  position: relative;
}

.header__lang-flag {
   display: block;
   border-radius: 50%;
   width: 32px;
   height: 32px;
}



.hero {
  position: relative;
  padding: 60px 57px;
  margin-top: 104px;
  margin-bottom: 24px;
  background: transparent;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  border-bottom: 2px solid rgba(255, 255, 255, 0.04);
}
.hero::before { 
  content: "";
  height: 100%;
  width: 2px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.04) 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.hero::after {
  content: "";
  height: 100%;
  width: 2px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.04) 100%);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

.hero__image img {
  right: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius:10px;
  object-position: right;
}

.hero-content__rating {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2px;
  margin-bottom: 8px;
}



.hero-content__subtitle {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #fff;
  text-align: center;
  margin-top: 8px;
  margin-bottom: 16px;
}

.hero-content__wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width:636px;
  position: relative;
  background: #FB8A0014;
  backdrop-filter: blur(19.299999237060547px);
  border-radius: 10px;
  padding: 24px;
}


.features__box {
  overflow: auto;
  border-radius: 20px 10px;
  position: relative;
  border: 2px solid #C98017;
}

.features__box::-webkit-scrollbar {
  display: none;
}
.features__list  {
  overflow-x: auto;
  width: 100%;
  border-collapse: collapse;
  
}
.features__list thead {
  border-radius:  20px 20px 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.features__list tbody {
  border-radius: 0 0 10px 10px;
  width: 100%;
  display: flex;
  flex-direction: column;

}

.features__list thead {
  overflow: hidden;
}
.features__list thead tr th {
  padding: 8px 12px;

}
.features__list tbody tr td {
  padding: 12px;
}
.features__list2 tbody tr td {
  display: flex;
  gap: 20px;
  align-items: center;
}
.features__list tbody tr td img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.features__list tr {
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
  text-align: left;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.features__list tr td {
  position: relative;
}

.features__list tbody tr::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #C98017 0%, #A84A16 100%);
}

.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%;
}

.features__list tr th {
  font-weight: 700;
  font-size: 20px;
  line-height: 16px;
  text-transform: uppercase;
  color: #fff;
}
.features__list tr td {
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
  color: #fff;

}


.pros-cons__list {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
.pros-cons__el{
  display: flex;
  flex-direction: column;
  border: 1px solid #C98017;
  border-radius: 10px;
  position: relative;
  width: calc(50% - 12px);
  overflow: hidden;
}
.pros-cons__item {
  display: flex;
  flex-direction: column;
}
.pros-cons__el h3 {
  padding: 8px 12px;
  border: none;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 700;
  font-size: 20px;
  line-height: 16px;
  color: #fff;
  background: #C98017;
  border-radius: 10px 10px 0 0;
}
.pros-cons__item-list {
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.pros-cons__item-list div {
  padding: 12px;
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
  color: #fff;
  position: relative;
  min-height: 62px;
  display: flex;
  align-items: center;
}
.pros-cons__item-list div:not(:last-child) {
  border-bottom: 1px solid #C98017;
}





.banner.container {
  display: flex;
  position: relative;
  background: #0B0C21;
  border-radius: 10px;
  padding: 159px 93px 114px 10px;
}
.banner2 {
  display: flex;
  position: relative;
  background: transparent;
  border-radius: 10px;
  padding: 162px 10px;
}
.banner3.container {
  display: flex;
  position: relative;
  background: transparent;
  border-radius: 10px;
  padding: 171px 10px 126px 176px;
}
.banner4.container {
  display: flex;
  position: relative;
  background: transparent;
  border-radius: 10px;
  padding: 146px 10px 151px 169px;
}
.banner5.container {
  display: flex;
  position: relative;
  background: transparent;
  border-radius: 10px;
  padding: 131px 10px 165px 87px;
}
.banner6.container {
  display: flex;
  position: relative;
  background: transparent;
  border-radius: 10px;
  padding: 170px 88px 129px 10px;
}


.image.opr img {
    object-position: right;
}
.image.opr2 img {
    object-position: 78%;
}
.image.opl img{
  object-position: left;
}
.image.opl2 img{
  object-position: 13%;
}
.image.opc img{
  object-position: center;
}
.image.op img {
  opacity: 1;
}



.banner__wrapper {
  display: flex;
  flex-direction: column;
  background: #FB8A0014;
  backdrop-filter: blur(19.299999237060547px);
  border-radius: 10px;
  padding: 24px;
  gap: 0px;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 584px;
  margin-left: auto;
}
.banner__wrapper2 {
  display: flex;
  flex-direction: column;
  background: #FB8A0014;
  backdrop-filter: blur(19.299999237060547px);
  border-radius: 10px;
  padding: 24px;
  gap: 0px;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 584px;
  margin: 0;
}


.banner__title {
  font-weight: 900;
  font-size: 30px;
  line-height: 40px;
  text-align: center;
  width: 100%;
  text-transform: uppercase;
  color: #FFF;
  margin-bottom: 8px;
  background: transparent;
  padding: 0;
}


.banner__text {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  margin-bottom: 16px;
}

.banner__buttons {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.banner__box {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}

.banner__logo {
  width: 275px;
  position: relative;
  margin: 0 auto;
}


.banner2__button {
  padding: 18px 40px;
  min-width: 250px;
  gap: 16px;
  align-items: center;
  justify-content: center;
  display: flex;
  position: relative;
  z-index: 1;
  border-radius: 10px 10px 20px 20px;
  background: #E93E3A;
  box-shadow: 0px 4px 4px 0px #00000040;
}

.banner2__button div {
  font-weight: 700;
  font-size: 15px;
  line-height: 130%;
  text-align: left;
  text-transform: uppercase;
  color:#fff;
  min-width: 117px;
}

.card__list {
  display: flex;
  flex-direction: row;
  gap: 16px 20px;
  flex-wrap: wrap;
}
.card-list__item {
  width: calc(25% - 15px);
  background: linear-gradient(180deg, #C98017 0%, #A84A16 100%);
  padding: 4px;
  border-radius: 20px 20px 10px 10px;
}
.card-list__border {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  background: #0B0C21;
  gap: 16px;
  padding: 28px 20px;
  border-radius: 20px 20px 10px 10px;
}
.card-list__inside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card-list__item.big {
  width: calc(50% - 10px);
}
.card-list__item img {
  width: 183px;
  height: 95px;
  margin: 0 auto;
}
.card-list__item h3 {
  font-size: 20px;
  line-height: 135%;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.card-list__item p {
  font-size: 14px;
  line-height: 135%;
  font-weight: 400;
  color: #fff;
  text-align: left;
}


.box {
  position: relative;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
  background: linear-gradient(90deg, #C98017 0%, #A84A16 100%);
  border-radius: 20px 20px 10px 10px;
}
.box2 {
  position: relative;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.flex-box {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.flex-box__item {
  width: calc(50% - 10px);
  border-radius: 6px;
  overflow: hidden;
  

}

.flex-box__item h4 {
  background: #2B1234;
  border-bottom: 1px solid #FDCD0B;
  padding: 8px;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  line-height: 150%;
}
.flex-box__item p {
  background: #3E0F4B;
  padding: 12px;
  text-align: left;
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
}


.card {
  position: relative;
  background: linear-gradient(180deg, #9517B8 0%, #51156B 100%),
              linear-gradient(180deg, #A736CF 0%, #350048 100%);
  border: 1px solid #FDCD0B;
  border-radius: 12px;
  padding: 20px;
  width: 100%;
  overflow: hidden;
}
.card-content {
  width: 100%;
  max-width: 693px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card-content.reverse {
  margin-left: auto;
}


.games__box {
  overflow: auto;
  border-radius: 20px 20px 10px 10px;
  position: relative;
  border: 2px solid #C98017;
}

.games__box::-webkit-scrollbar {
  display: none;
}

.games__table {
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

.games__table thead {
  border-radius:  20px 20px 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 20px;
  line-height: 16px;
  text-transform: uppercase;
  color: #fff;
}

.games__table tbody {
  border-radius: 0 0 10px 10px;
  width: 100%;
  display: flex;
  flex-direction: column;
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
  color: #FFF;
}
.games__table thead {
  overflow: hidden;
}
.games__table thead tr th {
  padding: 8px 12px;
  display: flex;
  align-items: center;
}
.games__table tbody tr td {
  padding: 12px;
}


.games__table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.games__table tr th {
  width: 25%;
  text-align: left;
}

.games__table tr td {
  width: 25%;
}

td ul {
  display: flex;
  flex-direction: column !important;
  gap: 4px;
}
td ul li {
  font-size: 15px;
  font-weight: 300;
  line-height: 22px;
  padding-left: 20px;
  position: relative;
}
td ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #FFF;
}


.games__table tr td {
  position: relative;
}

.games__table tbody tr::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #C98017 0%, #A84A16 100%);

}
.games__box2 {
  overflow: auto;
  border-radius: 20px 20px 10px 10px;
  position: relative;
  border: 2px solid #C98017;
}

.games__box2::-webkit-scrollbar {
  display: none;
}

.games__table2 {
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

.games__table2 thead {
  border-radius:  20px 20px 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 20px;
  line-height: 16px;
  text-transform: uppercase;
  color: #fff;
}

.games__table2 tbody {
  border-radius: 0 0 10px 10px;
  width: 100%;
  display: flex;
  flex-direction: column;
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
  color: #FFF;
}

.games__table2 thead {
  overflow: hidden;
}
.games__table2 thead tr th {
  padding: 8px 12px;
  display: flex;
  align-items: center;
}
.games__table2 tbody tr td {
  padding: 12px;
}


.games__table2 tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.games__table2 tr th {
  width:16.6%;
  text-align: left;
}

.games__table2 tr td {
  width:16.6%;
}


.games__table2 tr td {
  position: relative;
}


.games__table2 tbody tr::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #C98017 0%, #A84A16 100%);
}

.games__box4 {
  overflow: auto;
  background: #172D44;
  border-radius: 6px;
  border: 1px solid #FFFFFF66;
}

.games__box4::-webkit-scrollbar {
  display: none;
}

.games__table4 {
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

.games__table4 thead {
   border-radius:  6px 6px 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  font-weight: 800;
  font-size: 15px;
  line-height: 150%;
  text-transform: none;
  color: #FFF;

}

.games__table4 tbody {
  border-radius: 0 0 6px 6px;
  width: 100%;
  display: flex;
  flex-direction: column;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #FFF;
}

.games__table4 thead {
  overflow: hidden;
}
.games__table4 thead tr th {
  padding: 12px 20px;
  display: flex;
  align-items: center;
}
.games__table4 thead tr th:first-child {
  background: #408FD4;
}
.games__table4 tbody tr td {
  padding: 12px 20px;
}
.games__table4 tbody tr td:first-child {
  background: #408FD4;
}


.games__table4 tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.games__table4 tr th {
  width:20%;
  text-align: left;
}

.games__table4 tr td {
  width:20%;
}
.games__table4 tr td {
  position: relative;
}

.games__table4 tr td {
  position: relative;
}

.games__table4 tbody tr::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #FFFFFF66;
}


.games__box5 {
  overflow: auto;
  background: #172D44;
  border-radius: 6px;
  border: 1px solid #FFFFFF66;
}

.games__box5::-webkit-scrollbar {
  display: none;
}

.games__table5 {
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

.games__table5 thead {
   border-radius:  6px 6px 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  font-weight: 800;
  font-size: 15px;
  line-height: 150%;
  text-transform: none;
  color: #FFF;
  background: #408FD4;
}

.games__table5 tbody {
  border-radius: 0 0 6px 6px;
  width: 100%;
  display: flex;
  flex-direction: column;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #FFF;
}

.games__table5 thead {
  overflow: hidden;
}
.games__table5 thead tr th {
  padding: 12px 20px;
  display: flex;
  align-items: center;
}
.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 {
  width:25%;
  text-align: left;
}

.games__table5 tr td {
  width:25%;
}
.games__table5 tr td {
  position: relative;
}

.games__table5 tr td {
  position: relative;
}

.games__table5 tbody tr:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #FFFFFF66;
}

.games__box3 {
  overflow: auto;
  background: #282526;
  border-radius: 12px;
  position: relative;
}

.games__box3::-webkit-scrollbar {
  display: none;
}

.games__table3 {
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

.games__table3 thead {
  border-radius:  12px 12px 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 20px;
  line-height: 160%;
  text-transform: none;
  color: #FFF;
}

.games__table3 tbody {
  border-radius: 0 0 12px 12px;
  width: 100%;
  display: flex;
  flex-direction: column;
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
  color: #FFF;
}

.games__table3 thead {
  overflow: hidden;
}
.games__table3 thead tr th {
  padding: 12px 20px;
  display: flex;
  align-items: center;
}
.games__table3 tbody tr td {
  padding: 12px 20px;
}
.games__table3 tbody tr td:last-child {
  text-align: right;
}


.games__table3 tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.games__table3 tr td {
  width:50%;
}


.games__table3 tr td {
  position: relative;
}

.games__table3 tbody tr:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #FFFFFF24;
} 

td ul {
  display: flex;
  flex-direction: row;
  gap: 5px;
  justify-content: flex-end;
}

.slots__list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.slots__item {
  position: relative;
  padding: 20px;
  width: calc(50% - 10px);
  border-radius: 12px;
}
.slots-item__inside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  background: #292526CC;
  border: 1px solid #FEC07E;
  border-radius: 8px;
  padding: 20px;
  position: relative;
  z-index: 1;
}
.slots__item h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 160%;
  text-align: center;
  text-transform: uppercase;
  color: #FEC07E;
}
.slots__item p {
  text-align: center;
  margin-bottom: 16px;
}
.slots__item:last-child {
  padding: 0;
}
.slots__item:last-child img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.ac {
  width: 100%;
  margin-top: 0;
  border: none;
  position: relative;
  background: transparent;
  overflow: hidden;
}


.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: "Work Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  text-align: left;
  background: linear-gradient(90deg, #C98017 0%, #A84A16 100%);
  color: #FFFFFF;
  padding: 16px 56px 16px 20px !important;
  border-radius: 20px 20px 10px 10px ;
  white-space: normal;
}
  
.ac .ac-trigger:focus {
  color: #FFFFFF;
}

.ac.is-active > .ac-header {
  color: #FFFFFF;
}
.ac.is-active > .ac-header .ac-trigger {
  color: #FFFFFF;
  border-radius: 20px 20px 0px 0px ;
}

.ac .ac-panel {
  padding: 4px;
  background: linear-gradient(90deg, #C98017 0%, #A84A16 100%);
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}
.ac .ac-panel div {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 20px 20px 20px;
  background: #1F2038;
  border-radius: 0 0 10px 10px;
}
.ac .ac-panel p {
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 135%;
  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);
}
.ac.is-active > .ac-header .ac-trigger::after {
  content: url('./img/arrow-up.svg');
  width:24px;
  height: 24px;
  transform: translateY(-50%) rotate(0deg);
}

.reviews__box {
  display: flex;
  gap: 12px 16px;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
}
.reviews__item {
  width: calc(50% - 8px);
  background: linear-gradient(90deg, #C98017 0%, #A84A16 100%);
  border-radius: 10px 10px 20px 20px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
.reviews__item h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 135%;
  color: #fff;
}
.reviews-item__text {
  color: #fff;
  font-size: 14px;
  line-height: 135%;
  text-align: left;
}
.reviews-item__text strong {
  font-weight: 700;
  display: block;
}

.grade {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.grade__item {
  width: 100%;
  background: linear-gradient(90deg, #C98017 0%, #A84A16 100%);
  border-radius: 10px 10px 20px 20px;
  padding: 37px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}
.grade-item__list {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 33.33%;
  justify-content: center;
}
.grade__item h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 135%;
  color: #fff;
  width: 33.33%;
}
.grade__item p {
  font-weight: 700;
  font-size: 14px;
  line-height: 135%;
  color: #fff;
  width: 33.33%;
}
.grade-item__list ul {
  display: flex;
  gap: 5px;
  width: 120px;
}
.grade-item__list ul li img {
  width: 20px;
  height: 20px;
}
.grade-item__list p {
  font-weight: 700;
  font-size: 14px;
  line-height: 135%;
}

.rating-item__range {
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  height: 18px;
  background: linear-gradient(180deg, #5D4484 0%, #2B1234 100%);
  border-radius: 10px;
  transition: width 0.3s ease;
}  

.grade__box {
  overflow: auto;
  background: transparent;
  position: relative;
}
.grade__box::-webkit-scrollbar {
  display: none;
}
.grade__table {
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

.grade__table tbody {
  width: 100%;
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 15px;
  line-height: 135%;
  color: #FFF;
}

.grade__table tbody tr td {
  padding: 12px 20px;
}

.grade__table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.grade__table tr th {
  width:50%;
  text-align: left;
}

.grade__table tr td {
  width:50%;
}
.grade__table tr td:last-child {
  text-align: right;
}

.grade__table tr td {
  position: relative;
}

.grade__table tbody tr::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #FFFFFF4D;
}
.last-box {
  background: linear-gradient(180deg, #A736CF 0%, #350048 100%);
  border-radius: 12px;
  width: 100%;
  max-width: 713px;
  border: 1px solid #FDCD0B;
  position: relative;
  padding: 20px;
  gap: 16px;
  display: flex;
  flex-direction: column;
}


.footer {
  background: transparent;
  position: relative;
  padding: 20px 10px 40px;
}
.footer-logo__img {
  width: 274px;
  height: auto;
  margin: 0 auto 48px;
  display: block;
}

.footer__container {
  max-width: 1600px;
  padding: 20px 30px 44px 30px;
  margin: 0 auto;
}

.footer__line {
  width: 100%;
  height: auto;
  margin: 0 auto 20px;
}

.footer__nav-list {
  display: flex;
  background: #05071A;
  border: 2px solid #242D3D;
  padding: 13px 50px;
  gap: 8px 91px;  
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  border-radius: 32px;
  margin-bottom: 85px;
  z-index: 1;
  position: relative;
}
.footer__nav-list a {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #8F99AD;
  text-transform: uppercase;
  text-align: center;
  transition: all 0.3s ease;
}
.footer__nav-list a:hover {
  color:#FDCD0B;
}
.language__list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 48px;
  gap: 20px;
  justify-content: center;
}
.language__link {
  display: flex;
  background: #05071A;
  border: 2px solid #242D3D;
  border-radius: 32px;
  padding: 12px;
  gap: 8px;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  text-transform: uppercase;
  color: #fff;
  transition: all 0.3s ease;

}
.language__link:hover {
  border: 2px solid #E93E3A;
}
.language__link img {
  width: 24px;
  height: 24px;
}
.footer__bg {
  position: absolute;
  width: 100%;
  height: auto;
  bottom: 0;
  left: 0;
  z-index: 0;
}


.footer__card-list {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.footer__card-list li img {
  width: 122px;
  height: auto;
}
.footer__divider {
  background: linear-gradient(270deg, rgba(253, 205, 11, 0) 0%, #FDCD0A 50.75%, rgba(253, 205, 11, 0) 100%);
  height: 2px;
  width: 100%;
  margin-bottom: 32px;
}
.footer__age {
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 1;
}
.footer__label {
  width: 150px;
  height: 60px;
  margin: 0 auto 34px;
}
.footer__down {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-down__box {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-down__box p {
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: #8F99AD;
}




.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;
}

.button-up img {
  width: 40px;
  height: 40px;
}
  

.burger-button {
  display: none;
}


.content {
  flex-shrink: 1; 
  width: calc(100% - 280px);
  position: relative;
}


.sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 104px;
  left: 0px;
  height: calc(100vh - 104px);
  overflow-y: auto;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 256px;
  -webkit-flex: 0 1 256px;
  flex: 0 1 256px;
  padding:0 20px 20px;
  flex-shrink: 0;
  z-index: 1;
}

.sidebar::-webkit-scrollbar {
  display: none;
  width: 0;
}
  
  
@media screen and (min-width: 1600px) {
  .sidebar {
    left: calc((100% - 1600px) / 2 + 20px);
  }
}
  
.aside-left-wrap__buttons {
  display: flex;  
  flex-direction: column;
  gap: 10px;
}
.aside__button {
  padding: 21px 35px 21px 73px;
  min-width: 100%;
  background: linear-gradient(180deg, #F0CE58 0%, #C25630 65%);
  border-radius: 10px;
  border: none;
  outline: none;
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  color: #fff;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
}
.aside__button:hover {
  background: linear-gradient(0deg, #F0CE58 0%, #C25630 65%);
}

.aside__button:nth-child(1)::before {
  content: url('./img/ab1.svg');
  position: absolute;
  bottom: -4px;
  left: 0;
}
.aside__button:nth-child(2)::before {
  content: url('./img/ab2.svg');
  position: absolute;
  bottom: 0px;
  left: 2px;
  width: 64px;
  height: 60px;
}
  
.aside-left__wrapper {
  position: sticky;
}
.aside-left__wrap {
  overflow-y: auto;
  height: auto;
  padding: 0px;
}
.aside-left-wrap__box {
  background: #1F2038;
  padding: 20px 10px;
  border-radius: 10px 10px 0 0;
  margin-top: 10px;
}
.aside-left__wrap::-webkit-scrollbar {
  width: 0;
}

.aside__divider {
  background: linear-gradient(270deg,  rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8)  50.75%,  rgba(255, 255, 255, 0) 100%);
  height: 1px;
  width: 100%;
}

.aside-left__nav {
  padding: 0px;
  padding: 20px 10px;
  border-radius: 0 0 10px 10px;
  background: #1F2038;
}


  
.main-left-nav__desc {
  border-radius:6px;
}
.main-left-nav__desc.active {
  border-radius: 6px;
}
   
  
.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: 16px;
}
.aside-left-wrap__img {
  display: block;
}
.aside-left-wrap__img-hover {
  display: none;
}
.aside-left-wrap__list li a:hover .aside-left-wrap__img {
  display: none;
}
.aside-left-wrap__list li a:hover .aside-left-wrap__img-hover {
  display: block;
}

.aside-left-wrap__list li {
  padding: 0;
  position: relative;
}
.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: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  text-align: left;
  position: relative;
  gap: 24px;
  display: flex;
  align-items: center;
  color: #fff;
  transition: all 0.1s linear;
}
.aside-left-wrap__list li a:hover {
  color: #E93E3A;
}

.counter {
  background: #E93E3A;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 12px;
  line-height: 12px;
  text-align: center;
  color: #fff;
  position: absolute;
  left: 32px;
  top: 4px;
  transform: translateY(-50%);

}



.main-left-nav__desc, .aside-left-nav__desc {
  border-radius: 6px;
}
.main-left-nav__desc.active, .aside-left-nav__desc.active {
  border-radius: 6px;
}
.aside-left-nav__desc {
  position: relative;
  padding: 10px 12px;
  font-weight: 700;
  font-size: 17px;
  line-height: 32px;
  text-transform: capitalize;
  text-align: left;
  color: #FFF;
  cursor: pointer;
  background-image: url('./img/border.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: all 0.3s linear;
}


.aside-left-nav__desc::after {
  content: url('./img/arr-sidebar.svg');
  position: absolute;
  right: 10px;
  width: 24px;
  height: 24px;
  top: 14px;
  transform: rotate(180deg);
  transform-origin: center center;
  transition: all 0.3s linear;
}

.aside-left-nav__desc.active::after{
  content: url('./img/arr-sidebar.svg');
  transform: rotate(0deg);
}

.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: 2000px;
  opacity: 1;
  overflow-y: auto;
  padding: 16px 0px 0px 0px;
}

.aside-left-nav__list.visible::-webkit-scrollbar {
  width: 0;
}

.aside-left-nav__list {
  display: flex;
  flex-direction: column;
  padding-bottom: 0px;
  gap: 8px;
}

.aside-left-nav__list li a {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #fff;
  text-align: left;
  position: relative;
  display: flex;
  transition: all 0.3s linear; 
}

.aside-left-nav__list li a:hover {
  color: #E93E3A;
}


.main-left {
  display: none;
}
  

@media screen  and (max-width: 1540px) {
  .banner__decor,.banner__decor2,.banner__decor3 {
      right: -38px;
  }
  .banner.container {
    padding: 110px 10px;
  } 
  .decor {
    z-index: 0;
    right: 0;
  }
}

@media screen  and (max-width: 1360px) {
  .banner__decor,.banner__decor2,.banner__decor3, .banner__decor4 {
    z-index: 0;
  }
  .hero-content__wrap {
    margin: 0 auto;
    padding: 20px 10px;
  }
}
@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;
  }
  .main-left {
    display: block;
  }
  .main-left.container {
    padding: 0;
  }
  .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: 12px;
    padding-right: 45px;
    background-image: none;
  }
  .aside-left__nav {
    padding: 0px;
    border-radius: 6px;
  }
  .aside-left-nav__desc::after {
    top: 14px;
  }
  .aside-left-nav__list.visible {
    padding: 0 10px 10px;
  }
}

@media screen and (max-width: 1120px) {
  .header__menu {
    display: none;
  }
  .header__container {
    padding-right: 20px;
    height: 60px;
  }
  .hero {
    margin-top: 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: 50px;
  }
  .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: #05071A;

    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: 700;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    width: 300px;
    height: 46px;
    color: #FDCD0B;
    border: 1px solid #FDCD0B;
    border-radius: 6px;
  }
  .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%;
  }
  .aside__right {
    display: none;
  }
  .main {
    padding-right: 20px;
  }
  .footer__down {
    padding: 0;
  }
  .features__list {
    width: 100%;
  }
  .features__box {
    flex-direction: column;
  }
}

@media screen and (max-width: 950px) {
  .hero-content__wrap {
    margin: 0 auto;
    backdrop-filter: blur(8px);
  }
  .hero {
    padding: 40px 10px;
  }
  .rating__list {
    flex-direction: column;
  }
  .rating__item {
    width: 100%;
  }
  .flex-box {
    flex-direction: column;
  }
  .flex-box__item {
    width: 100%;
  }
  .list2 {
    flex-direction: column;
  }
  .list2__item {
    width: 100%;
  }
  .list2-blur {
    max-width: 100%;
  }

  .games__table tr th,.games__table tr td {
    width: 250px;
  }

  .games__table2 tr th,  .games__table4 tr th {
    width: 200px;
  }

  .games__table2 tr td,  .games__table4 tr td {
    width: 200px;
  }
  .games__table3 tr th:nth-child(1), .games__table3.games__table3-js tr th:nth-child(1), .games__table3 tr td:nth-child(1), .games__table3.games__table3-js tr td:nth-child(1) {
    width: 200px;
  }
  .games__table3 tr th:nth-child(2), .games__table3 tr th:nth-child(3), .games__table3 tr td:nth-child(2), .games__table3 tr td:nth-child(3), .games__table3.games__table3-js tr th:nth-child(2), .games__table3.games__table3-js tr td:nth-child(2), .games__table3.games__table3-js tr td:nth-child(3), .games__table3.games__table3-js tr th:nth-child(3) {
    width: 150px;
  }
  .reviews__item {
    width: calc(50% - 10px);
  }
  .games__table5 tr th:nth-child(1),
  .games__table5 tr th:nth-child(2),
  .games__table5 tr th:nth-child(3),
  .games__table5 tr th:nth-child(4) {
    width: 150px;
  }

  .games__table5 tr td:nth-child(1),
  .games__table5 tr td:nth-child(2),
  .games__table5 tr td:nth-child(3),
  .games__table5 tr td:nth-child(4) {
   width: 150px;
  }
  .banner2 {
    padding: 40px 10px;
  }
  .banner__buttons {
    flex-direction: column;
    gap: 20px;
  }

  .decor-image {
    width: 100%;
  }
  h3 {
    max-width: 100%;
    width: 100%;
  }
  .reviews__box {
    flex-direction: column;
  }
  .reviews__item {
    width: 100%;
  }
  .opacity {
    opacity: 0.2;
  }
  .banner__wrapper, .banner__wrapper2, .banner__wrapper3, .banner__wrapper4 {
    padding: 20px 10px;
    backdrop-filter: blur(4px);
    margin: 0 auto;
  }
  .banner__title, .banner__text {
    text-align: center;
  }
}



@media screen and (max-width: 850px) {
  .banner__decor,.banner__decor2,.banner__decor3, .banner__decor4 {
      right: 0px;
      height: 100%;
      width: auto;
      object-fit: cover;
  }
  .banner.container, .banner3.container, .banner4.container, .banner5.container, .banner6.container {
    padding: 40px 10px;
  } 
  .banner__title {
    font-size: 26px;
    text-align: center;
  }
  .banner__text {
    font-size: 20px;
    text-align: center;
  }
  .banner__wrapper {
    padding: 20px 10px;
  }
  .grade__item {
    width: 100%;
  }
  .footer__nav-list a:not(:last-child)::after {
    display: none;  
  }
}
@media screen and (max-width: 768px) {
  .button-up {  
    width: 40px;
    height: 40px;
  }

  .button-up img {
    width: 40px;
    height: 40px;
  }
  ul.list.row2 li {
    width: 100%;
  }
  .card {
    padding: 20px 10px;
  }
  .buttons__box {
    flex-direction: column;
    align-items: center;
  }
  h2::before {
    display: none;
  }
  h2::after {
    display: none;
  }
  .pros-cons__list {
    flex-direction: column;
  }
  .pros-cons__el {
    width: 100%;
  }
  .list2-item__box {
    width: 100%;
  }
  .list2__item {
    padding: 20px 10px;
  }
  .hero.container {
    padding: 42px;
  }
  .reviews__item {
    width: 100%;
  }
  .hero {
    padding: 48px 10px;
  }
  .banner__image {
    right: 0;
  }
  .footer {
    padding: 0;
  }

  .banner__image {
    width: 100%;
  }

  .banner {
    padding: 20px;
  }
  .hero__image img {
    object-position: 94%;
  }
  .hero-content__wrap {
    padding: 20px 10px;
  }
  .features__list tr td:nth-child(1),.features__list tr th:nth-child(1) {
    min-width: 240px;
  }
  .features__list tr td:nth-child(2),.features__list tr th:nth-child(2) {
    min-width: 300px;
  }
  .footer__down {
    flex-direction: column;
  }
  .backdrop2::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    background: rgba(50, 46, 47, 0.8);
  }
    .box__logo {
      display: none;
  }
  .hero-content__rating {
    justify-content: center;
  }
  h1 {
    text-align: center;
  }
  .hero-content__subtitle {
    text-align: center;
  }
  .hero__button {
    margin: 0 auto;
  }
  .box2 {
    padding: 20px 10px;
  }
  .reviews__item {
    padding: 20px 10px;
  }
  .banner__wrap {
    gap: 20px;
    margin: 0 auto;
    padding: 20px 10px;
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(253, 205, 11, 1);
    background: linear-gradient(90deg, rgba(68, 13, 88, 0.8) 0%, rgba(68, 13, 88, 0.3) 52.08%, rgba(242, 195, 15, 0.8) 79.81%);
    position: relative;
  }
  .card-list__item {
    width: 100%;
  }
  .grade__item {
    flex-direction: column;
    padding: 20px 10px;
  }
  .grade__item h3, .grade__item p  {
    width: 100%;
    min-width: 100%;
    text-align: center;
    justify-content: center;
  
  }
  .grade-item__list {
    width: 100%;
  }
  .grade-item__list p {
    min-width: auto;
    width: auto;
  }
  .card-list__border {
    padding: 20px 10px;
  }
  .card-list__item.big {
      width: 100%;
  }
}



@media screen and (max-width: 600px) {
  .footer__nav-list {
    padding: 13px 10px;
  }
  h1 img {
    display: none;
  }
  ul.list.row li {
    width: 100%;
  }
  ul.list.third li {
    width: 100%;
  }
  .hero-content__wrap {
    padding: 20px 7px;
  }
  

  .main {
    padding: 0px 10px;
  }

  .footer {
    padding-right: 10px;
    padding-left: 10px;
  }
  h1 {
    font-size: 24px;
    line-height: 30px;
  }
  .hero-content__rating {
    justify-content: center;
  }
  .hero-content__subtitle {
    text-align: center;
  }
  .hero__button {
    margin: 0 auto;
  }
  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 {
  align-items: center;
  }
  
  .hero-content__wrap {
    align-items: center;
  }

  .box {
    padding: 20px 10px; 
  }
  .box.color p, .box.color h3 {
    color: #fff;
  }
  .image.op2 img {
    opacity: 0.6;
  }
  .ac .ac-trigger {
      font-size: 15px;
      line-height: 25px;
  }
  .reviews-item__img {
      top: -55px;
  }
}

@media screen and (max-width: 480px) {

  .footer__nav-list {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .footer__nav-list a::after {
    display: none;
  }
  .footer__down {
    gap: 24px;
  }
  .footer__container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .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;
  }
  .footer__nav  {
    padding: 4px;
  }
  .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;
  }
  .list__img {
    width: 100%;
    height: auto;
    right: 0px;
  }
  .footer__nav-list a {
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
  }
}

@media screen and (max-width: 425px) {
  .banner2__button div {
    font-size: 15px;
  }
  .banner__wrapper {
    width: 100%;
  }
  .language__link {
    width: 100%;
  }
  .language__list, .footer__nav-list, .footer__divider, .footer__age  {
    margin-bottom: 20px;
  }
  .footer__container {
      padding-bottom: 20px;
  }

  .footer__link {
    padding-right: 38px;
  }

  .container {
    padding: 20px 10px;
  }
  .footer__payments {
    gap: 8px 8px;
  } 
  .footer__payments li {
    max-width: none;
    width: calc(50% - 4px);
  } 
  .footer__payments li img {
    max-width: none;
    width: 100%;
  } 
  .rating__item p:first-child {
    max-width: 100%;
    text-align: center;
  }
  .rating__item {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .rating__item img {
    margin-left: 0;
  }
  .grade-item__top p {
      font-weight: 700;
      font-size: 16px;
      line-height: 160%;
  }
  .grade__item {
    padding: 20px 10px;
  }
  .banner2__logo {
    width: 240px;
  }

}

@media screen and (max-width: 375px) {
  .banner2__button {
    justify-content: center;
    min-width: 100%;
    padding: 18px 20px;
  }
}


/* BONUS PAGE */


.breadcrumbs {
  display: flex;
  margin-bottom: 8px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumbs li {
  position: relative;
}
.breadcrumbs a {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  text-align: left;
  color: rgba(255, 255, 255, 0.80);
  text-transform: uppercase;
  transition: all 0.2s linear;
}
.breadcrumbs li:first-child::after {
  content: "|";
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #fff;  
  text-align: left;
  opacity: 1;
  margin: 0 16px;
}
.breadcrumbs li:last-child a {
  color: rgba(255, 255, 255, 1);
}
.hero-content__subtitle.bonus {
  max-width: 580px;
}
.hero.bonus {
  padding: 88px 80px 135px;
}
.hero.app {
  padding: 92px 65px;
}


@media screen and (max-width: 950px) {
 .bonus-list__item {
  width: 100%;
 }
}
@media screen and (max-width: 768px) {
  .hero.bonus, .hero.app {
    padding: 40px 10px;
  }
  .banner__item ul {
    padding-left: 0px;
  }
  .breadcrumbs {
    justify-content: center;
  }
  .opacity.image.opr img {
    object-position: left;
    opacity: 1;
  }
  .container2, .container {
    padding: 20px 10px;
  }
}





