html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  background: #292526;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: inherit;
  -webkit-tap-highlight-color: transparent;
}
* {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: #292526;
  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 30px;
  display: flex;
  gap: 20px;
  position: relative;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  margin-bottom: 20px;
  background: #322e2f;
  box-shadow: 0px 0px 4px 0px #00000040;
  border-radius: 12px;
}

.image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.image-box {
  width: 100%;
  height: 100%;
  border-radius: 6px;
}
.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  text-align: left;
  color: #fec07e;
}

p {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 160%;
  text-align: left;
  position: relative;
  z-index: 1;
}

p.center {
  text-align: center;
}

h2 {
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  position: relative;
  text-align: left;
  color: #fec07e;
  z-index: 1;
  text-transform: uppercase;
}

h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 40px;
  color: #fec07e;
  position: relative;
  z-index: 1;
  text-align: left;
}
h3.white {
  color: #fff;
}

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: 20px;
  position: relative;
  z-index: 1;
  width: 100%;
}
ul.list.row {
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
ul.list.row.sb {
  justify-content: space-between;
}
ul.list.row.center {
  justify-content: center;
}
ul.list.row li {
  width: max-content;
}
ul.list.third {
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
ul.list.third li {
  width: calc(33.33% - 13.33px);
}
ul.list.five {
  flex-direction: row;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
ul.list.five li {
  width: calc(20% - 12px);
  align-items: center;
}
ul.list li {
  width: 100%;
  text-align: left;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #fff;
  position: relative;
  padding-left: 28px;
  display: inline;
}
ul.list li strong {
  font-weight: 600;
}

ul.list li::before {
  content: "";
  width: 4px;
  height: 4px;
  position: absolute;
  left: 12px;
  background: #fff;
  border-radius: 50%;
  top: 12px;
}

ol {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 84px;
  counter-reset: item;
  position: relative;
  z-index: 1;
  width: 100%;
}

ol li {
  position: relative;
  z-index: 1;
  overflow: visible;
  width: 100%;
  list-style: none;
  counter-increment: item;
  background: #282526;
  border-radius: 12px;
  padding: 15px 16px 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 19px;
}

ol.dark-ol li {
  color: #3e4049;
}
ol li strong {
  font-weight: 600;
}

ol li::before {
  content: counter(item, decimal-leading-zero) " ";
  font-weight: 700;
  font-size: 24px;
  line-height: 135%;
  text-transform: uppercase;
  color: #fec07e;
  position: absolute;
  left: 16px;
  top: 12px;
  min-width: 32px;
  z-index: 1;
}
ol li h5 {
  padding-left: 47px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  line-height: 160%;
}

ol li::after {
  content: url("./img/ol-item.svg");
  position: absolute;
  height: 44px;
  width: 51px;
  z-index: 0;
  bottom: -70px;
  left: 0px;
}

ol li:last-child::after {
  content: none;
}

.ol-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.ol-list div {
  font-weight: 400;
  font-size: 15px;
  line-height: 160%;
  color: #fff;
  position: relative;
  padding-left: 28px;
}
.ol-list div::before {
  content: "";
  width: 4px;
  height: 4px;
  position: absolute;
  background: #fff;
  border-radius: 50%;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.list__img {
  width: 323px;
  max-height: none;
  bottom: 0;
  right: 52px;
  position: absolute;
  object-fit: cover;
}

ol.list2 {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  counter-reset: item;
  position: relative;
  z-index: 1;
  width: 100%;
}

ol.list2 li {
  width: 100%;
  text-align: left;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #fff;
  background: transparent;
  counter-increment: item;
  position: relative;
  padding: 0;
  padding-left: 41px;
  display: inline;
}

ol.list2 li strong {
  font-weight: 600;
}

ol.list2 li::before {
  content: counter(item, decimal-leading-zero) " ";
  color: #fec07e;
  font-weight: 700;
  font-size: 24px;
  line-height: 135%;
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
}
ol.list2 li::after {
  display: none;
}
ol.list2.border {
  gap: 84px;
}
ol.list2.border li {
  border: 1px solid #ffffff;
  padding: 12px 16px 12px 67px;
}
ol.list2.border li::after {
  display: block;
}
ol.list2.border li::before {
  left: 16px;
}
ol.list2.bg {
  gap: 84px;
}
ol.list2.bg li {
  background: #282526;
  border-radius: 12px;
  padding: 12px 16px 12px 67px;
}
ol.list2.bg li::after {
  display: block;
}
ol.list2.bg li::before {
  left: 16px;
}

ol.list2.list {
  gap: 84px;
}
ol.list2.list li {
  padding: 0;
  padding-left: 42px;
}
ol.list2.list li::after {
  display: block;
}

ol.list2.bg2 {
  gap: 20px;
}
ol.list2.bg2 li {
  background: #282526;
  border-radius: 12px;
  padding: 12px 16px 12px 57px;
}
ol.list2.bg2 li::after {
  display: none;
}
ol.list2.bg2 li::before {
  left: 16px;
}

.short {
  max-width: 753px;
}
p.short,
h3.short {
  max-width: 720px;
}

.decor-image {
  position: absolute;
  width: 844px;
  height: auto;
  right: 0;
  bottom: 0;
}

.button {
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 13px 32px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 22px;
  max-width: max-content;
  text-align: center;
  color: #292526;
  background: linear-gradient(180deg, #fec882 0%, #ffa06d 100%);
  border: none;
  outline: none;
  transition: all 0.3s linear;
  position: relative;
  z-index: 1;
}

.burger-menu {
  display: none;
}

.button.center {
  margin: 0 auto;
}

.button:hover {
  scale: 1.05;
}

.button.register-button {
  min-width: 182px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  padding: 8px 32px;
}
.button.login-button {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  padding: 7px 32px;
  border: 1px solid #fec07e;
  background: transparent;
  min-width: 155px;
  color: #fec07e;
}

.box__logo {
  width: 275px;
  height: auto;
  position: absolute;
  top: 50%;
  right: 160px;
  transform: translateY(-50%);
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: #292526;
  z-index: 103;
}
.header__container {
  max-width: 1600px;
  padding: 0 30px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 80px;
}

.header__logo {
  width: 120px;
  height: 48px;
  margin-right: 40px;
}
.header__logo img {
  width: 100%;
  height: 100%;
}

.header-menu__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 72px;
}

.header-menu__list li a {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #94897a;
  position: relative;
  transition: color 0.3s linear;
}
.header-menu__list li:not(:last-child)::after {
  content: url("./img/menu.svg");
  width: 40px;
  height: 16px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -56px;
}

.header-menu__list a:hover {
  color: #fec07e;
}

.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-button {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  text-transform: uppercase;
  color: #fec07e;
  background-color: transparent;
  border: none;
  outline: none;
  position: relative;
  transition: all 0.3s linear;
}
.header__lang-arrow {
  width: 24px;
  height: auto;
  transition: transform 0.3s ease;
}
.header__lang.open .header__lang-arrow {
  transform: rotate(180deg);
}

.header__lang-flag {
  display: block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.header__lang-list {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  background: #101f2e;
  border-radius: 6px;
  overflow: hidden;
  opacity: 0;
  width: 100%;
  min-width: 74px;
  transform: translateY(-10px);
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  z-index: 10;
}

.header__lang.open .header__lang-list {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 106;
}

.header__lang-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  line-height: 150%;
}
.header__lang-list a img {
  width: 24px;
  height: 24px;
}

.hero {
  position: relative;
  padding: 78px 70px;
  margin-top: 80px;
  margin-bottom: 20px;
  background: transparent;
  position: relative;
}

.hero__image img {
  right: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  object-position: right;
}

.hero-content__rating {
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 16px;
}

.hero-content__subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  color: #fff;
  text-align: left;
  margin-top: 16px;
  margin-bottom: 16px;
}

.hero-content__wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 715px;
  position: relative;
}

.features__box {
  overflow: auto;
  background: #282526;
  border-radius: 12px;
  position: relative;
  border: 1px solid #ffffff24;
}

.features__box::-webkit-scrollbar {
  display: none;
}
.features__list {
  overflow-x: auto;
  width: 100%;
  border-collapse: collapse;
}
.features__list thead {
  border-radius: 12px 12px 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  background: #fec07e;
}
.features__list tbody {
  border-radius: 0 0 12px 12px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.features__list thead {
  overflow: hidden;
}
.features__list thead tr th {
  padding: 12px 20px;
}
.features__list tbody tr td {
  padding: 12px 20px;
}
.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: 16px;
  line-height: 160%;
  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: 1px;
  background: #ffffff24;
}

.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: 160%;
  text-transform: none;
  color: #2a2829;
}
.features__list tr td {
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #fff;
}
.features__list3 tr td {
  display: flex;
  gap: 8px;
}

.pros-cons__list {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.pros-cons__el {
  display: flex;
  flex-direction: column;
  background: #2a2829;
  border-radius: 12px;
  position: relative;
  border: 1px solid #ffffff24;
  width: calc(50% - 10px);
}
.pros-cons__item {
  display: flex;
  flex-direction: column;
}
.pros-cons__el h3 {
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  font-size: 20px;
  line-height: 160%;
  color: #fff;
}
.pros-cons__item div {
  padding: 12px 20px;
  border-top: 1px solid #ffffff24;
  font-weight: 400;
  font-size: 15px;
  line-height: 160%;
}

.banner.container {
  display: flex;
  position: relative;
  background: transparent;
  border-radius: 12px;
  padding: 72px 80px;
}
.banner2 {
  display: flex;
  position: relative;
  background: transparent;
  border-radius: 12px;
  padding: 32px 10px;
}
.banner3.container {
  display: flex;
  position: relative;
  background: transparent;
  border-radius: 12px;
  padding: 72px 100px;
}
.banner4.container {
  display: flex;
  position: relative;
  background: transparent;
  border-radius: 12px;
  padding: 72px 40px;
}

.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 {
  position: relative;
  max-width: 473px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border-radius: 6px;
  padding: 30px 10px;
}
.banner__wrapper2 {
  margin-left: auto;
  position: relative;
  padding: 30px 10px;
  border-radius: 12px;
  max-width: 473px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.banner__wrapper3 {
  position: relative;
  padding: 30px 10px;
  border-radius: 12px;
  max-width: 493px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
}
.banner__wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  margin: 0 auto;
}

.banner__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  text-align: center;
  width: 100%;
  text-transform: uppercase;
  color: #fec07e;
  padding: 0;
  margin-bottom: 8px;
}

h2.banner__title::after,
h2.banner__title::before {
  display: none;
}

.banner__text {
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 30px;
}

.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: 14px 17px;
  min-width: 286px;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
  display: flex;
  position: relative;
  z-index: 1;
  border-radius: 6px;
  background: #fec07e03;
  border: 1px solid #fec07e;
  backdrop-filter: blur(10px);
}

.banner2__button div {
  font-weight: 600;
  font-size: 16px;
  line-height: 128%;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  min-width: 210px;
}

.box {
  position: relative;
  background: #282526;
  backdrop-filter: blur(84px);

  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 12px;

  position: relative;
  z-index: 1;
}
.box2 {
  background: #2a282980;
  backdrop-filter: blur(84px);
}

.decor {
  position: absolute;
  width: 281px;
  height: 253px;
  bottom: 0;
  right: 124px;
  object-fit: cover;
  max-height: none;
}

.card {
  position: relative;
  padding: 24px;
}
.card__content {
  max-width: 600px;
}
.card__content h4 {
  font-weight: 600;
  font-size: 16px;
  line-height: 160%;
  color: #fff;
  margin-bottom: 16px;
}
.card__content p {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #fff;
  margin-bottom: 20px;
}
.card.reverse .card__content {
  margin-left: auto;
}

.games__box {
  overflow: auto;
  background: #282526;
  border-radius: 12px;
  position: relative;
  border: 1px solid #ffffff24;
}

.games__box::-webkit-scrollbar {
  display: none;
}

.games__table {
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

.games__table thead {
  border-radius: 12px 12px 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  background: #fec07e;
  font-weight: 700;
  font-size: 20px;
  line-height: 160%;
  text-transform: none;
  color: #2a2829;
}

.games__table tbody {
  border-radius: 0 0 12px 12px;
  width: 100%;
  display: flex;
  flex-direction: column;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #fff;
}

.games__table thead {
  overflow: hidden;
}
.games__table thead tr th {
  padding: 12px 20px;
  display: flex;
  align-items: center;
}
.games__table tbody tr td {
  padding: 12px 20px;
}

.games__table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.games__table tr th {
  width: 33.33%;
  text-align: left;
}

.games__table tr td {
  width: 33.33%;
}

.games__table tr td {
  position: relative;
}

.games__table tbody tr:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ffffff24;
}
.games__box2 {
  overflow: auto;
  background: #282526;
  border-radius: 12px;
  position: relative;
  border: 1px solid #ffffff24;
}

.games__box2::-webkit-scrollbar {
  display: none;
}

.games__table2 {
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

.games__table2 thead {
  border-radius: 12px 12px 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  background: #fec07e;
  font-weight: 700;
  font-size: 20px;
  line-height: 160%;
  text-transform: none;
  color: #2a2829;
}

.games__table2 tbody {
  border-radius: 0 0 12px 12px;
  width: 100%;
  display: flex;
  flex-direction: column;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #fff;
}

.games__table2 thead {
  overflow: hidden;
}
.games__table2 thead tr th {
  padding: 12px 20px;
  display: flex;
  align-items: center;
}
.games__table2 tbody tr td {
  padding: 12px 20px;
}

.games__table2 tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.games__table2 tr th {
  width: 20%;
  text-align: left;
}

.games__table2 tr td {
  width: 20%;
}
.games__table2 tr td {
  position: relative;
}

.games__table2 tr td {
  position: relative;
}

.games__table2 tbody tr::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ffffff24;
}
.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: #282526;
  border: 1px solid #ffffff24;
  overflow: hidden;
  border-radius: 12px;
}

.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: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  text-align: left;
  color: #94897a;

  padding: 14px 58px 14px 16px !important;
  border-radius: 6px;
  white-space: normal;
  text-transform: uppercase;
}

.ac .ac-trigger:focus {
  color: #94897a;
}

.ac.is-active > .ac-header {
  color: #94897a;
}
.ac.is-active > .ac-header .ac-trigger {
  color: #94897a;
}

.ac .ac-panel {
  padding: 0;
  background: transparent;
}
.ac .ac-panel p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
  color: #fff;
  padding: 10px 16px 14px;
  margin: 0;
}

.ac .ac-trigger::after {
  content: url("./img/arrow-up.svg");
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
}
.ac.is-active > .ac-header .ac-trigger::after {
  content: url("./img/arrow-down.png");
  width: 32px;
  height: 32px;
  transform: translateY(-50%) rotate(180deg);
}

.reviews__box {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
}
.reviews__item {
  width: calc(50% - 10px);
  background: #282526;
  border: 1px solid #ffffff24;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.reviews-item__top {
  display: flex;
  gap: 20px;
  align-items: center;
}
.reviews-item__name {
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;
  text-align: left;
  color: #fff;
  margin-bottom: 16px;
}
.reviews-item__stars {
  display: flex;
  gap: 5px;
  justify-content: center;
}
.reviews-item__text {
  color: #fff;
  text-align: left;
}
.reviews-item__img {
  width: 80px;
  height: 80px;
}

.footer {
  background: transparent;
}

.footer__container {
  max-width: 1600px;
  padding: 20px 30px 44px 308px;
  margin: 0 auto;
}

.footer__line {
  width: 100%;
  height: auto;
  margin: 0 auto 20px;
}

.footer__nav-list {
  display: flex;
  gap: 35px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}
.footer__nav-list a {
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  color: #94897a;
  text-align: center;
  transition: all 0.3s ease;
}
.footer__nav-list a:not(:last-child)::after {
  content: "";
  width: 3px;
  height: 100%;
  top: 0;
  right: -19px;
  position: absolute;
  background: #fec07e;
}
.footer__nav-list a:hover {
  color: #fec07e;
}
.language__list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 52px;
  gap: 20px;
  justify-content: center;
}
.language__link {
  display: flex;
  background: #2a2829;
  border: 1px solid #ffffff24;
  border-radius: 12px;
  padding: 12px;
  gap: 8px;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-weight: 400;
  font-size: 15px;
  line-height: 100%;
  text-transform: uppercase;
  color: #fff;
  transition: all 0.3s ease;
}
.language__link:hover {
  border: 1px solid #fec07e;
}
.language__link img {
  width: 24px;
  height: 24px;
}

.footer__card-list {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}
.footer__card-list li img {
  width: 144px;
  height: auto;
}
.footer__divider {
  background: linear-gradient(
    270deg,
    rgba(254, 192, 126, 0) 0%,
    #fec07e 50.75%,
    rgba(254, 192, 126, 0) 100%
  );
  height: 2px;
  width: 100%;
  margin-bottom: 32px;
}
.footer__age {
  width: 40px;
  height: 40px;
  margin: 0 auto 32px;
}
.footer__label {
  width: 150px;
  height: 60px;
  margin: 0 auto 34px;
}
.footer__down {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}
.footer__down p {
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  text-align: center;
  color: #94897a;
}

.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: 42px;
  height: 42px;
}

.button-up img {
  width: 42px;
  height: 42px;
}

.burger-button {
  display: none;
}

.content {
  flex-shrink: 1;
  width: calc(100% - 278px);
}

.sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
  left: 30px;
  height: calc(100vh - 80px);
  overflow-y: auto;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 258px;
  -webkit-flex: 0 1 258px;
  flex: 0 1 258px;
  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-wrap__buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.aside__button {
  padding: 18px 20px 18px 60px;
  min-width: 100%;
  background: linear-gradient(180deg, #fec882 0%, #ff9f6c 100%);
  border-radius: 5px;
  border: none;
  outline: none;
  font-weight: 700;
  font-size: 15px;
  line-height: 100%;
  color: #2b1234;
  overflow: hidden;
  transition: all 0.3s ease;
}
.aside__button:hover {
  background: linear-gradient(0deg, #fec882 0%, #ff9f6c 100%);
}

.aside__button:nth-child(1)::before {
  content: url("./img/ab1.svg");
  position: absolute;
  bottom: -2px;
  left: 0;
}
.aside__button:nth-child(2)::before {
  content: url("./img/ab2.svg");
  position: absolute;
  bottom: 6px;
  left: 8px;
  width: 40px;
  height: 40px;
}

.aside-left__wrapper {
  position: sticky;
}
.aside-left__wrap {
  overflow-y: auto;
  height: auto;
  padding: 0px;
}
.aside-left-wrap__box {
  background: #2a2829;
  padding: 16px;
  border-radius: 6px;
  margin-top: 16px;
  margin-bottom: 16px;
}
.aside-left__wrap::-webkit-scrollbar {
  width: 0;
}

.aside__divider {
  background: linear-gradient(
    270deg,
    rgba(254, 192, 126, 0) 0%,
    #fec07e 50.75%,
    rgba(254, 192, 126, 0) 100%
  );
  height: 1px;
  width: 100%;
}

.aside-left-wrap__box {
  margin-bottom: 20px;
}
.aside-left__nav {
  margin-top: 16px;
  padding: 0px;
  border-radius: 6px;
  background: #322e2f;
}

.aplication {
  position: relative;
  background: #4e4842;
  padding: 20px 23px;
  box-shadow:
    0px 1px 0px 0px #80808066 inset,
    0px 3px 1px 0px #1d191a4d;
  border-radius: 5px;
  margin-top: 16px;
  display: block;
}

.aplication img {
  width: 50px;
  height: auto;
  position: absolute;
  right: 20px;
  top: 14px;
}

.aplication h5 {
  font-weight: 700;
  font-size: 14px;
  line-height: 13.8px;
  color: #ffffff;
  margin-bottom: 8px;
}
.aplication p {
  font-weight: 400;
  font-size: 10px;
  line-height: 12px;
  color: #d4c5b1;
}

.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__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: 15px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
  position: relative;
  gap: 8px;
  display: flex;
  align-items: center;
  color: #94897a;
  transition: all 0.1s linear;
}

.counter {
  background: linear-gradient(180deg, #fec882 0%, #ffa06d 100%);
  width: 32px;
  height: 24px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  text-align: center;
  color: #292526;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.aside-left-wrap__list li a:hover {
  color: #fff;
}
.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;
}

.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: 9px 24px;
  font-weight: 700;
  font-size: 15px;
  line-height: 22px;
  text-transform: uppercase;
  text-align: left;
  color: #fec07e;
  background: #2a2829;
  border: 1px solid #6c645b;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s linear;
}

.aside-left-nav__desc::after {
  content: url("./img/arr-sidebar.svg");
  position: absolute;
  right: 24px;
  width: 24px;
  height: 24px;
  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;
}

.aside-left-nav__list.visible::-webkit-scrollbar {
  width: 0;
}

.aside-left-nav__list {
  display: flex;
  flex-direction: column;
  padding-bottom: 0px;
  gap: 16px;
}

.aside-left-nav__list li a {
  font-weight: 400;
  font-size: 15px;
  line-height: 165%;
  color: #94897a;
  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: 1360px) {
  .hero-content__wrap,
  .banner__wrapper,
  .banner__wrapper2,
  .banner__wrapper3 {
    margin: 0 auto;
    background: rgba(50, 46, 47, 0.6);
    backdrop-filter: blur(3px);
    border-radius: 12px;
    border: 1px solid #ffffff1a;
    padding: 20px 10px;
  }
  .backdrop::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    top: 0;
    left: 0;
    z-index: 0;
    background: rgba(50, 46, 47, 0.6);
  }
  .box__logo {
    width: 200px;
    height: auto;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
  }
  .list__img {
    width: auto;
    max-height: 100%;
    height: 100%;
    bottom: 0;
    right: 10px;
    position: absolute;
    object-fit: cover;
    opacity: 0.2;
  }
  .card .image img {
    opacity: 0.1;
  }
}
@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;
  }
}

@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: #292526;

    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: #fec07e;
    border: 1px solid #fec07e;
    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(3px);
  }
  .hero {
    padding: 40px 10px;
  }
  .rating__list {
    flex-direction: column;
  }
  .rating__item {
    width: 100%;
  }
  .flex-box {
    flex-direction: column;
  }
  .flex-box__left {
    width: 100%;
  }
  .flex-box__right {
    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 {
    max-height: 100%;
    right: 10px;
  }
  .decor-backdrop::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    background: rgba(50, 46, 47, 0.6);
  }
  .decor-image {
    width: 100%;
  }
}

@media screen and (max-width: 850px) {
  .slots__item {
    width: 100%;
    padding: 10px;
  }
  .slots__item:last-child {
    padding: 0;
  }

  .banner.container {
    padding: 40px 10px;
  }
  .banner__wrapper,
  .banner__wrapper2,
  .banner__wrapper3 {
    padding: 20px 7px;
    border-radius: 6px;
    margin: 0 auto;
  }
  .banner__title {
    font-size: 26px;
    line-height: 120%;
  }
}
@media screen and (max-width: 768px) {
  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;
  }
}

@media screen and (max-width: 600px) {
  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;
  }
}

@media screen and (max-width: 480px) {
  .article__title,
  .features__title {
    width: 100%;
  }
  .article__title::after,
  .features__title::after {
    display: none;
  }
  .article__title::before,
  .features__title::before {
    display: none;
  }
  .features__list li {
    width: 100%;
    gap: 12px;
  }
  .footer__nav-list {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .footer__nav-list 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;
  }
}

@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;
  }
}

@media screen and (max-width: 375px) {
  .banner2__button {
    min-width: 100%;
    padding: 10px;
    gap: 5px;
    justify-content: center;
  }
  .banner2__button div {
    min-width: 190px;
    text-align: center;
  }
}

/* BONUS PAGE */

.breadcrumbs {
  display: flex;
  margin-bottom: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.breadcrumbs li {
  position: relative;
}
.breadcrumbs a {
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
  color: #fff;
  transition: all 0.2s linear;
  text-transform: uppercase;
}
.breadcrumbs li:first-child::after {
  content: "/";
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  color: #fff;
  text-align: left;
  opacity: 1;
  margin: 0 2px;
}

@media screen and (max-width: 1360px) {
  .opacity img {
    opacity: 0.5;
  }
}
@media screen and (max-width: 768px) {
  .banner__item ul {
    padding-left: 0px;
  }
  .banner3.container {
    padding: 30px 10px;
  }
  .banner4.container {
    padding: 40px 10px;
  }
  .breadcrumbs {
    justify-content: center;
  }
  .opacity.image.opr img {
    object-position: left;
    opacity: 1;
  }
}
