@import url(https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap);
@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --grey-50: rgba(143, 143, 149, 1);
  --red: rgba(232, 67, 67, 1);
  --domain-primary: rgba(57, 89, 218, 1);
  --grey-200: rgba(230, 218, 207, 1);
  --grey-300: rgba(148, 134, 130, 1);
  --yellow: rgba(233, 175, 81, 1);
  --green: rgba(55, 196, 131, 1);
  --white: rgba(255, 255, 255, 1);
  --primary: rgba(255, 101, 56, 1);
  --secondary: rgba(76, 158, 234, 1);
  --grey-40: rgba(187, 187, 193, 1);
  --surface: rgba(251, 244, 242, 1);
  --white-10: rgba(255, 255, 255, 0.1);
  --white-40: rgba(255, 255, 255, 0.4);
  --black: rgba(49, 26, 19, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  font-family: "Manrope", sans-serif;
}

.social {
  display: flex;
  justify-content: center;
}

.social a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 8px 0 0;
  width: 40px;
  height: 40px;
  text-decoration: none;
  border: 1px solid var(--grey-200);
  border-radius: 60px;
}

.social a svg {
  transition: 0.4s all linear;
}

.social a:hover svg {
  transform: scale(1.4);
}

.social a:last-child {
  margin: 0;
}

.social a svg path {
  fill: var(--black);
}

.burger {
  display: none;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 30px;
  border: 1px solid var(--grey-200);
  border-radius: 60px;
  text-decoration: none;
  color: var(--black);
  font-size: 16px;
  font-weight: 700;
  transition: 0.3s all linear;
  position: relative;
  overflow: hidden;
  z-index: 0;
  isolation: isolate;
  white-space: nowrap;
}
.btn.border {
  border-color: var(--secondary);
  color: var(--black);
}
.btn.border:hover {
  background: var(--secondary);
  color: var(--white);
}
.btn.color {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}
.btn.color svg {
  margin: 0 0 0 8px;
  width: 24px;
  height: 24px;
}
.btn.color svg path {
  fill: var(--white);
  transition: 0.3s all linear;
}
.btn.color:hover {
  background: transparent;
  color: var(--primary);
}
.btn.color:hover svg path {
  fill: var(--primary);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -1;
  transition: clip-path 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}
.btn.border::before {
  background: var(--secondary);
}
.btn.color::before {
  background: var(--white);
}
.btn:hover::before {
  clip-path: polygon(-20% 0, 120% 0, 100% 100%, 0 100%);
}
.btn::after {
  content: "";
  position: absolute;
  inset: -30% -60%;
  border-radius: inherit;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.3) 14%, rgba(255, 255, 255, 0.12) 22%, transparent 34%);
  transform: translateX(-130%);
  transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.btn:hover::after {
  transform: translateX(40%);
}
.btn:active {
  transform: translateY(1px);
}

@media (prefers-reduced-motion: reduce) {
  .btn, .btn::before, .btn::after {
    transition: none !important;
  }
}
.container {
  margin: 0 auto;
  max-width: 1320px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 27px 0;
  z-index: 9;
  background: var(--white);
}

header nav,
footer nav {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header nav .logo,
footer nav .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 44px 0 0;
  text-decoration: none;
  width: 139px;
}

header nav .logo img,
footer nav .logo img {
  width: inherit;
  height: 50px;
}

header nav .menu,
footer nav .menu {
  display: flex;
  align-items: center;
}

header nav .menu ul,
footer nav .menu ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: var(--surface);
  list-style: none;
  border-radius: 70px;
}

header nav .menu ul._header-menu.flex-wrap.wrapped {
  border-radius: 28px;
}

header nav .menu ul li,
footer nav .menu ul li {
  display: flex;
  margin: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  line-height: normal;
  background: var(--white);
  color: var(--black);
  border-radius: 60px;
  border: 1px solid transparent;
  transition: 0.4s all ease-in;
}

header nav .menu ul li.active,
header nav .menu ul li:hover,
footer nav .menu ul li.active,
footer nav .menu ul li:hover {
  background: var(--black);
  color: var(--white);
}

header nav .menu ul li a,
footer nav .menu ul li a {
  padding: 10px 16px;
  text-decoration: none;
  color: inherit;
}

header nav .action {
  display: flex;
  align-items: center;
  margin: 0 0 0 24px;
}

header nav .action .social {
  margin: 0 44px 0 0;
}

header nav .menu .social {
  display: none;
}

header nav .action .btns {
  display: flex;
  align-items: center;
}

header nav .action .btn.border {
  margin: 0 16px 0 0;
}

main {
  position: relative;
  width: 100%;
  min-height: 77vh;
}

.intro {
  padding: 70px 0 0 0;
}

.intro .row {
  display: flex;
  justify-content: space-between;
}

.intro .body {
  display: flex;
  flex-direction: column;
  width: 49%;
}

.intro .body.error {
  width: 100%;
}
.intro .body.error h1,
.intro .body.error p,
.intro .body.error .btn {
  align-self: center;
}

.intro .body h1 {
  margin: 0 0 32px 0;
  font-size: 48px;
  line-height: 48px;
  font-weight: 700;
  color: var(--black);
}

.intro .body p {
  margin: 0 0 44px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--black);
}

.intro .body .btn {
  align-self: flex-start;
}

.intro .img {
  position: relative;
  width: 49%;
  border-radius: 24px;
}

.intro .img img {
  width: 100%;
  height: 100%;
}

.intro .img-item {
  position: absolute;
  bottom: 12px;
  right: 18px;
  display: flex;
  justify-content: space-between;
  padding: 8px;
  align-items: center;
  border-radius: 77px;
  background: var(--white);
  z-index: 2;
}

.intro .img-item span {
  margin: 0 6px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 56px;
  background: var(--grey-200);
  transition: 0.3s all ease-in;
}

.intro .img-item span:last-child {
  margin: 0;
}

.intro .img-item span:hover {
  background: var(--primary);
}

.intro .img-item span.active {
  width: 20px;
  background: var(--primary);
}

.content {
  padding: 80px 0 0 0;
}

.content h2 {
  margin: 40px 0 10px 0;
  font-size: 32px;
  font-weight: 700;
  color: var(--black);
}

.content h3 {
  margin: 20px 0 15px 0;
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
}

.content h4 {
  margin: 10px 0 10px 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
}

.content .showcase {
  display: flex;
  flex-direction: column;
  margin: 20px 0;
}

.content .showcase-min {
  flex-direction: row;
  justify-content: space-between;
}

.content .showcase-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 20px 0;
  padding: 16px;
  background: var(--white-10);
  background: var(--surface);
  border-radius: 24px;
}

.content .showcase ._min .showcase-info {
  border: none;
}

.content .showcase-min .showcase-item {
  flex-direction: column;
  width: 32.5%;
}

.content .showcase-brand {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0 15px 0 0;
  width: 220px;
}

.content .showcase-brand-img-num {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primary);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  color: var(--white);
}

.content .showcase-min .showcase-brand {
  flex-direction: row;
  align-items: center;
}

.content .showcase-brand-img {
  width: 220px;
  height: 220px;
  border-radius: 22px;
  overflow: hidden;
  transition: 0.4s all linear;
}

.content .showcase-brand-img:hover {
  filter: brightness(70%);
}

.content .slots .slots-img img {
  width: 100%;
  height: 100%;
}

.content .showcase-min .showcase-brand-img {
  margin: 0 16px 0 0;
  width: 90px;
  height: 90px;
}

.content .showcase-brand-img img {
  width: inherit;
  height: inherit;
}

a.content .showcase-brand-img {
  display: flex;
  text-decoration: none;
}

.content .showcase-info-top,
.content .showcase-brand-btm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 16px 0;
}

.content .showcase ._min .showcase-info-top,
.content .showcase ._min .showcase-brand-btm {
  flex-direction: column;
}

.content .showcase ._min .showcase-info-title,
.content .showcase ._min .showcase-brand-title,
.content .showcase ._min .showcase-info-row,
.content .showcase ._min .showcase-brand-row {
  align-self: flex-start;
}

.content .showcase-brand-btm {
  display: none;
}

.content .showcase-brand-btm .showcase-action-list-item,
.content .showcase-brand-btm span {
  display: none;
}

.content .showcase-info-title,
.content .showcase-brand-title {
  font-size: 24px;
  font-weight: 700;
  align-self: center;
  text-align: center;
  color: var(--black);
  max-width: 100%;
  text-decoration: none;
  transition: 0.3s all linear;
}

.content .showcase-info-title:hover,
.content .showcase-brand-title:hover {
  color: var(--primary);
}

.content .showcase-min .showcase-info-title,
.content .showcase-min .showcase-brand-title {
  margin: 0;
  text-align: left;
}

.content .showcase-info-row,
.content .showcase-brand-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0 0 0;
}

.content .showcase-info-rating,
.content .showcase-brand-rating {
  display: flex;
  align-items: center;
}

.content .showcase-min .showcase-info-rating,
.content .showcase-min .showcase-brand-rating {
  margin: 0 5px 0 0;
}

.content .showcase-info-rating img,
.content .showcase-brand-rating img {
  margin: 0 5px 0 0;
  width: 16.67px;
  height: 15.83px;
}

.content .showcase-info-rating img:last-child,
.content .showcase-brand-rating img:last-child {
  margin: 0;
}

.content .showcase-info-rate,
.content .showcase-brand-rate {
  margin: 0 0 0 6px;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  text-align: right;
  color: var(--black);
  max-width: 100%;
}

.content .showcase-info {
  display: flex;
  flex-direction: column;
  width: 40%;
  margin: 0 15px 0 0;
  padding: 0 16px 0 0;
  border-right: 1px solid var(--grey-200);
}

.content .showcase-info-subtitle {
  margin: 0 0 16px 0;
  font-size: 20px;
  font-weight: 700;
  text-align: left;
  max-width: 100%;
  color: var(--green);
  text-decoration: none;
  transition: 0.3s all linear;
}

.content .showcase-info-subtitle:hover {
  color: var(--secondary);
}

.content .showcase-info-description {
  max-width: 100%;
}

.content .showcase-info-description {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  text-align: left;
  color: var(--grey-300);
  flex: 1;
}

.content .showcase-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 45%;
}

.content .showcase ._min .showcase-action {
  justify-content: flex-end;
  width: 30%;
}

.content .showcase-min .showcase-action {
  flex-direction: column;
  margin: 16px 0 0 0;
  width: 100%;
}

.content .showcase-action-list {
  display: flex;
  flex-direction: column;
  margin: 0 16px 0 0;
}

.content .showcase-action-list span {
  margin: 0 0 12px 0;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
  color: var(--grey-300);
}

.content .showcase-min .showcase-action-list {
  margin: 0;
  align-self: flex-start;
}

.content .showcase-action-list-item {
  display: flex;
  margin: 0 0 13px 0;
}

.content .showcase-action-list-item:last-child {
  margin: 0;
}

.content .showcase-action-list-item img {
  margin: 0 12px 0 0;
  width: 20px;
  height: 20px;
}

.content .showcase-action-list-item p {
  margin: 0;
  max-width: 100%;
}

.content .showcase-action-btns {
  display: flex;
  flex-direction: column;
}

.content .showcase-min .showcase-action-btns {
  flex-direction: row-reverse;
  margin: 16px 0 0 0;
  width: 100%;
}

.content .showcase-action-btns .btn {
  margin: 0 0 8px 0;
  padding: 17px 5px;
  min-width: 185px;
}

.content .showcase-min .showcase-action-btns .btn.color {
  margin: 0 0 0 8px;
  width: 65%;
  min-width: auto;
}

.content .showcase-min .showcase-action-btns .btn.border {
  width: 35%;
  min-width: auto;
}

.content .showcase-action-btns .btn:last-child {
  margin: 0;
}

.content .showcase-min .showcase-action-payments {
  display: flex;
  margin: 19px 0 0 0;
  justify-content: center;
  align-items: center;
}

.content .showcase-min .showcase-action-payments img {
  margin: 0 8.5px;
  width: 17.3px;
  height: 17.3px;
}

.content .showcase-min .showcase-action-payments span {
  margin: 0 8.5px;
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  color: var(--white);
}

.content .showcase-promocode {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 16px 0 0 0;
  padding: 8px 8px 8px 12px;
  border: 1px solid var(--green);
  border-radius: 60px;
  background: var(--primary);
  align-self: self-start;
}

.content .showcase-promocode-title {
  margin: 0 10px 0 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  text-align: left;
  color: var(--white);
}

.content .showcase-promocode-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 8px 8px 16px;
  border-radius: 40px;
  background: var(--white);
  cursor: pointer;
}

.content .showcase-promocode-wrapper p {
  margin: 0 8px 0 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  text-align: left;
  color: var(--black);
  max-width: 100%;
}

.content .showcase-promocode-wrapper img {
  width: 24px;
  height: 24px;
}

.content p,
.content ul li,
.content ol li,
.content td,
.content th {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  text-align: left;
  color: var(--black);
}

.content td {
  font-weight: 500;
}

.content thead td {
  font-size: 14px;
  line-height: normal;
  font-weight: 700;
  color: var(--grey-300);
  text-transform: uppercase;
  font-weight: 700;
}

.content p {
  margin: 0 0 15px 0;
}

.content ul li,
.content ol li {
  max-width: 100%;
}

.content ul,
.content ol {
  margin: 0 0 15px 0;
  padding: 0 0 0 20px;
  max-width: 70%;
}

.content p:not(:where([class], [id])) {
  margin: 0 0 16px 0;
}

.content .prosCons {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}

.content .prosCons-item {
  padding: 20px;
  border: 1px solid var(--surface);
  border-radius: 24px;
  background: var(--surface);
  width: 49.5%;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}

.content .prosCons-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  text-transform: uppercase;
}

.content .prosCons-title._pros {
  color: var(--green);
}

.content .prosCons-title._cons {
  color: var(--red);
}

.content .prosCons .prosCons-list {
  display: flex;
  flex-direction: row;
  margin: 20px 0 0 0;
}

.content .prosCons .prosCons-list p {
  margin: 0;
}

.content .prosCons img {
  margin: 0 10px 0 0;
  width: 24px;
  height: 24px;
}

.content .prosCons .prosCons-list p {
  max-width: 100%;
}

.content .table-responsive,
.content figure.table {
  margin: 0 0 15px 0;
  width: 100%;
  overflow-x: auto;
}

.table-responsive table,
.content figure.table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
  overflow: hidden;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}

.content .table-responsive thead,
.content figure.table thead {
  background: var(--white-40);
}

.content .table-responsive th,
.content .table-responsive td,
.content figure.table th,
.content figure.table td {
  padding: 12px 16px;
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--surface);
}

.content .table-responsive th:first-child,
.content .table-responsive td:first-child,
.content figure.table th:first-child,
.content figure.table td:first-child {
  border-radius: 24px 0px 0px 24px;
}

.content .table-responsive th:last-child,
.content .table-responsive td:last-child,
.content figure.table th:last-child,
.content figure.table td:last-child {
  border-radius: 0px 24px 24px 0px;
}

.content .information-table tbody tr > *:nth-child(1) {
  font-weight: 700;
  color: var(--white-40);
}

.content .information-table tbody tr > *:nth-child(2) {
  font-weight: 700;
  color: var(--white);
}

.content .information-table tbody tr > * {
  border-bottom: 1px solid var(--white-10);
}

.content .table-responsive th,
.content figure.table th {
  font-weight: 600;
}

.content .table-responsive ._tb-s,
.content figure.table ._tb-s {
  display: flex;
}

.content .table-responsive ._tb-s img,
.content figure.table ._tb-s img {
  margin: 0 8px 0 0;
  width: 24px;
  height: 24px;
}

.content .table-responsive ._tb-s span,
.content figure.table ._tb-s span {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: var(--green);
}

.content .table-responsive ._rating,
.content figure.table ._rating {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.content .table-responsive ._rating img,
.content figure.table ._rating img {
  margin: 0 6px 0 0;
  width: 24px;
  height: 24px;
}

.content .table-responsive ._rating span,
.content figure.table ._rating span {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: var(--black);
  flex: 1;
}

.content .table-responsive ._rating .btn,
.content figure.table ._rating .btn {
  padding: 8px 30px;
  width: 70%;
  white-space: nowrap;
}

.content .slots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.content .slots .slots-item {
  display: flex;
  flex-direction: column;
  padding: 16px;
  box-sizing: border-box;
  border: 1px solid var(--white);
  border-radius: 24px;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  background: var(--surface);
}

.content .slots .slots-img {
  display: flex;
  width: 100%;
  height: 229px;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.4s all linear;
}

.content .slots .slots-img img {
  width: 100%;
  height: 100%;
}

.content .slots .slots-img:hover {
  filter: brightness(70%);
}

.content .slots .slots-item-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 16px 0 0 0;
}

.content .slots .slots-item-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 33px;
  text-decoration: none;
  color: var(--black);
  transition: 0.4s all linear;
}

.content .slots .slots-item-title:hover {
  color: var(--primary);
}

.content .slots .slots-item-rating {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.content .slots .slots-item-rating img {
  margin: 0 6px 0 0;
  width: 20px;
  height: 20px;
}

.content .slots .slots-item-rate {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: var(--black);
}

.content .slots .slots-item-mid {
  display: flex;
  flex-wrap: wrap;
}

.content .slots .slots-item-mid-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 8px 8px 0 0;
  padding: 5px 16px 5px 5px;
  border-radius: 60px;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  background: var(--white);
}

.content .slots .slots-item-mid-item img {
  margin: 0 3px 0 0;
  width: 24px;
  height: 24px;
}

.content .slots .slots-item-mid-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  color: var(--black);
}

.content .slots .slots-item .btn {
  margin: 16px 0 0 0;
}

.content .slots .slots-item .btn.border {
  margin-right: 15px;
}

.content .slots .slots-action {
  display: flex;
  justify-content: space-between;
}

.content .slots .slots-action .btn:last-child {
  width: 70%;
}

.content .slots-promocode {
  display: flex;
  flex-direction: column;
  margin: 16px 0 0 0;
  padding: 12px;
  border-radius: 16px;
  background: var(--white);
}

.content .slots-promocode-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 27px;
  text-align: center;
  color: var(--green);
}

.content .slots-promocode-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 12px 16px;
  width: 100%;
  border: 1px solid var(--green);
  border-radius: 60px;
  background: var(--white);
  cursor: pointer;
}

.content .slots-promocode-wrapper span {
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  text-align: center;
  color: var(--black);
}

.content .slots-promocode-wrapper img {
  position: absolute;
  top: 12px;
  right: 19px;
  width: 18px;
  height: 18px;
  z-index: 2;
}

.content .spoiler {
  margin: 0 0 20px 0;
  padding: 16px;
  width: 100%;
  align-self: center;
  border: 1px solid var(--surface);
  border-radius: 24px;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  background: var(--surface);
  max-height: 65px;
  overflow: hidden;
  transition: 0.4s max-height linear;
}

.content .spoiler.sitemap {
  margin: 15px 0 0 0;
  max-height: -moz-max-content;
  max-height: max-content;
  overflow: visible;
}

.content .spoiler.active {
  max-height: 100%;
  overflow: visible;
}

.content .spoiler-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
  cursor: pointer;
}

.content .spoiler-top .spoiler-btn {
  width: 30px;
  height: 30px;
  transition: 0.4s all linear;
  transform: rotate(180deg);
}

.content .spoiler.active .spoiler-top .spoiler-btn {
  transform: rotate(360deg);
}

.content .spoiler-top .spoiler-btn path {
  fill: var(--black);
}

.content .spoiler span {
  font-size: 24px;
  font-weight: 700;
  line-height: 33px;
  color: var(--black);
}

.content .spoiler ol {
  margin: 16px 0 0 0;
  padding: 0;
  max-width: 100%;
  list-style: none;
  counter-reset: sitem;
}

.content .spoiler ol li {
  position: relative;
  display: flex;
  margin: 0 0 8px 0;
  padding: 0 0 0 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: var(--black);
  counter-increment: sitem;
  transition: 0.4s all linear;
  text-align: left;
  border-radius: 60px;
  background: var(--white);
}

.content .spoiler ol li::before {
  content: counter(sitem) ".";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  color: var(--black);
  opacity: 0.9;
}

.content .spoiler ol li:hover,
.content .spoiler ol li.active {
  color: var(--primary);
}

.content .spoiler ol li:last-child {
  margin: 0;
}

.content .spoiler ol li a {
  padding: 14px 16px;
  width: 100%;
  text-decoration: none;
  color: inherit;
  flex: 1 1 auto;
}

.snippet-image {
  display: flex;
  width: 250px;
  height: 250px;
}

.snippet-image-left {
  float: left;
  margin: 0 10px 10px 0;
}

.snippet-image-right {
  float: right;
  margin: 0 0 10px 10px;
}

.snippet-image img {
  width: inherit;
  height: inherit;
  border-radius: 24px;
}

.snippet-wrapper .table-responsive {
  width: auto;
}

.img-image {
  display: flex;
  width: 48%;
  height: auto;
}

.img-image img {
  width: 100%;
  height: inherit;
  border-radius: 24px;
}

.img-image-left {
  float: left;
  margin: 0 20px 10px 0;
}

.img-image-right {
  float: right;
  margin: 0 0 10px 20px;
}

.gamebanner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 20px 0;
  padding: 24px 22px 24px 44px;
  border-radius: 24px;
  background: var(--primary);
}

.gamebanner .gamebanner-body {
  display: flex;
  flex-direction: column;
  width: 45%;
}

.gamebanner .gamebanner-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 67px;
  text-align: left;
  color: var(--white);
}

.gamebanner .gamebanner-text {
  margin: 24px 0 0 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
  color: var(--white);
  width: 60%;
}

.gamebanner .gamebanner-body .btn {
  margin: 32px 0 0 0;
  background: var(--white);
  color: var(--black);
  border: none;
  align-self: flex-start;
  transition: 0.4s all linear;
}

.gamebanner .gamebanner-body .btn:hover {
  background: var(--black);
  color: var(--white);
}

.gamebanner .gamebanner-slots {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: 50%;
}

.gamebanner .gamebanner-slot {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  border-radius: 16px;
}

.gamebanner .gamebanner-slots .gamebanner-slot {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
}

.gamebanner .gamebanner-slot .flip {
  width: 100%;
  height: 100%;
}

.gamebanner-slot .flip {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1000px;
  border-radius: inherit;
}

.gamebanner-slot .flip-inner {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transition: transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
  border-radius: inherit;
}

.gamebanner-slot.is-flipped .flip-inner {
  transform: rotateY(180deg);
}

.gamebanner-slot .face {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  border-radius: inherit;
}

.gamebanner-slot .face.front {
  background: var(--white);
}

.gamebanner-slot .face.back {
  transform: rotateY(180deg);
  background: #000;
  border: 1px solid var(--grey-200);
}

.gamebanner-slot img {
  width: 56%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

._ts_sm {
  width: 19%;
}

.adv-cards {
  margin: 0 0 20px 0;
}

.adv-cards-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.adv-cards .adv-cards-item {
  display: flex;
  flex-direction: column;
  padding: 16px;
  border: 1px solid var(--surface);
  border-radius: 24px;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  background: var(--surface);
}

.adv-cards .adv-cards-item img {
  width: 24px;
  height: 24px;
}

.adv-cards .adv-cards-title {
  margin: 16px 0 0 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  color: var(--black);
}

.adv-cards .adv-cards-text {
  margin: 8px 0 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: var(--black);
}

content .reviews {
  margin: 0 0 20px 0;
}

.content .reviews-item {
  display: flex;
  flex-direction: column;
  margin: 0 0 15px 0;
  width: 100%;
  padding: 16px;
  border-radius: 24px;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  background: var(--surface);
}

.content .reviews-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.content .reviews-info {
  display: flex;
  align-items: center;
}

.content .reviews-img {
  margin: 0 16px 0 0;
  width: 52.68px;
  height: 52.68px;
  border-radius: 50%;
}

.content .reviews-info-row {
  display: flex;
  flex-direction: column;
}

.content .reviews-info-title {
  margin: 0 0 2px 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  text-align: left;
  flex: 1;
  color: var(--black);
  max-width: 100%;
}

.content .reviews-info-subtitle {
  display: flex;
  align-items: center;
  margin: 0;
}

.content .reviews-info-subtitle svg {
  margin: 0 8px 0 0;
  width: 24px;
  height: 24px;
}

.content .reviews-info-subtitle svg path {
  stroke: var(--black);
}

.content .reviews-info-subtitle svg rect {
  fill: var(--black);
}

.content .reviews-info-subtitle span {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  text-align: left;
  max-width: 100%;
  color: var(--black);
}

.content .reviews-date {
  margin: 0 0 0 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  text-align: right;
  max-width: 100%;
  color: var(--grey-300);
}

.content .reviews-data {
  margin: 16px 0 0 0;
  display: flex;
  align-items: center;
}

.content .reviews-data-title {
  margin: 0 5px 0 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  text-align: left;
  color: var(--black);
  max-width: 100%;
}

.content .reviews-data-rating {
  margin: 0 10px 0 0;
  display: flex;
  align-items: center;
}

.content .reviews-data-rating img {
  margin: 0 5px 0 0;
  width: 16px;
  height: 16px;
}

.content .reviews-data-rating img:last-child {
  margin: 0;
}

.content .reviews-data-rate {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  text-align: right;
  color: var(--black);
}

.content .reviews-data-text {
  margin: 16px 0 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
  color: var(--black);
  max-width: 100%;
}

.content .reviews-data-btm {
  display: flex;
  justify-content: space-between;
  margin: 10px 0 0 0;
  align-items: center;
}

.content .reviews-data-more {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  text-align: left;
  text-decoration: none;
  color: var(--primary);
}

.content .reviews-data-btm-action {
  display: flex;
  justify-content: center;
  align-items: center;
}

.content .reviews-data-btn {
  display: flex;
  align-items: center;
  margin: 0 0 0 22.5px;
  text-decoration: none;
}

.content .reviews-data-btn img {
  margin: 0 5px 0 0;
  width: 24px;
  height: 24px;
}

.content .reviews-data-btn span {
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  text-align: left;
  color: var(--green);
}

.content .reviews-data-btn:last-child span {
  color: var(--red);
}

.content ._mb820_v {
  display: none;
}

.content .feedback-form {
  display: flex;
  flex-direction: column;
  margin: 20px auto;
  width: 70%;
}

.feedback-form-title {
  margin: 0 0 20px 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 27px;
  color: var(--black);
  text-align: center;
}

.feedback-form-row {
  display: flex;
  justify-content: center;
  align-items: center;
}

.feedback-form-row span {
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  color: var(--black);
}

.feedback-form-rate {
  display: flex;
}

.feedback-form-rate svg {
  margin: 0 0 0 7px;
  width: 20px;
  width: 19px;
  cursor: pointer;
}

.feedback-form-rate svg:focus,
.feedback-form-rate svg path:focus {
  outline: none;
}

.feedback-form-rate svg path {
  fill: var(--grey-200);
  transition: fill 0.2s linear;
}

.feedback-form-rate svg.active path {
  fill: var(--yellow);
}

.content .feedback-form .feedback {
  margin: 21px 0 0 0;
}

.content .feedback-form .label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.content .feedback-form textarea,
.content .feedback-form input {
  width: 100%;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  border: none;
  border-radius: 24px;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  background: var(--surface);
}

.content .feedback-form textarea::-moz-placeholder, .content .feedback-form input::-moz-placeholder {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
}

.content .feedback-form textarea::placeholder,
.content .feedback-form input::placeholder,
.content .feedback-form textarea,
.content .feedback-form input {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
}

.content .feedback-form textarea {
  min-height: 140px;
  padding: 18px 18px;
  resize: vertical;
}

.content .feedback-form input {
  height: 54px;
  padding: 0 18px;
}

.content .feedback-form textarea:focus,
.content .feedback-form input:focus {
  border-color: var(--field-bd-focus);
  box-shadow: var(--shadow);
}

.content .feedback-form .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 8px 4px 0;
}

.content .feedback-form .hint {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: var(--grey-300);
}

.content .feedback-form .counter {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: var(--grey-300);
}

.content .feedback-form .grid {
  display: flex;
  justify-content: space-between;
  margin: 20px 0 0 0;
  width: 100%;
}

.content .feedback-form .grid .field {
  width: 39%;
}

.content .feedback-form .btn {
  width: 18%;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.is-invalid {
  border-color: red !important;
}

.faq {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 16px;
       column-gap: 16px;
}

.faq-item {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin: 0 0 8px 0;
  background: var(--surface);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-radius: 70px;
  overflow: hidden;
  transition: 0.4s all linear;
}

.faq-item.open {
  border-radius: 24px;
}

.faq-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 16px;
  gap: 12px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
}

.faq-title span {
  margin: 0;
  max-width: 88%;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  color: var(--black);
}

.faq-title svg {
  margin: 0 0 0 5px;
  width: 24px;
  height: 24px;
  transform: rotate(180deg);
  transition: 0.4s all linear;
}

.faq-item.open svg {
  transform: rotate(360deg);
}

.faq-text {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-text p {
  margin: 0;
  padding: 0 16px 16px 16px;
  max-width: 100%;
}

.faq-item.open .faq-title::after {
  transform: rotate(180deg);
  opacity: 1;
}

.author {
  display: flex;
  flex-direction: column;
  margin: 0 0 20px 0;
  padding: 16px;
  border-radius: 24px;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  background: var(--surface);
}

.author-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 16px 0;
}

.author-info {
  display: flex;
  align-items: center;
}

.author-img {
  margin: 0 16px 0 0;
  width: 52.68px;
  height: 52.68px;
  border-radius: 50%;
}

.author-info-row {
  display: flex;
  flex-direction: column;
}

.content .author-info-title {
  margin: 0 0 6px 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  text-align: left;
  color: var(--black);
  max-width: 100%;
  flex: 1;
}

.content .author-info-subtitle {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
  max-width: 100%;
  color: var(--black);
}

.content .author-title {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  text-align: left;
  max-width: 100%;
  color: var(--black);
}

.content .author-text {
  margin: 0 0 16px 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
  max-width: 100%;
  color: var(--black);
}

.author .social a:last-child,
footer .social a:last-child {
  margin: 0;
}

.bosuses-item {
  display: flex;
  align-items: center;
  margin: 0 0 20px 0;
  padding: 16px;
  border-radius: 24px;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  background: var(--surface);
}

.bosuses-item .bosuses-img {
  display: flex;
  text-decoration: none;
  width: 430px;
  height: 200px;
  border-radius: 16px;
  transition: 0.4s all linear;
}

.bosuses-item .bosuses-img:hover {
  filter: brightness(70%);
  border-radius: 16px;
}

.bosuses-item .bosuses-img img {
  width: inherit;
  height: inherit;
}

.bosuses-item .bosuses-body {
  display: flex;
  flex-direction: column;
  margin: 0 0 0 20px;
}

.bosuses-item .bosuses-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 33px;
  color: var(--black);
  text-decoration: none;
  transition: 0.4s all linear;
}

.bosuses-item .bosuses-title:hover {
  color: var(--primary);
}

.bosuses-item .bosuses-body p {
  margin: 8px 0 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: var(--black);
}

.bosuses-item .bonuses-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 24px 0 0 0;
}

.bosuses-item .bonuses-row .btn {
  width: 35%;
}

.bosuses-item .bonuses-row .faq-item {
  margin: 0;
  width: 63%;
  background: var(--white);
}

.bosuses-item .bonuses-row .faq-title {
  padding: 16px;
  transition: 0.4s all linear;
}

.bosuses-item .bonuses-row .faq-item.open .faq-title span {
  color: var(--primary);
}

.cookies {
  position: fixed;
  bottom: 1%;
  left: 0.5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 99%;
  padding: 16px;
  border-radius: 24px;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  background: var(--surface);
  z-index: 9;
}

.cookies .cookies-row {
  display: flex;
  flex-direction: row;
  max-width: 90%;
}

.cookies .cookies-row svg {
  margin: 0 14px 0 0;
  width: 43.91px;
  height: 43.91px;
  flex: 1 0 auto;
}

.cookies .cookies-row svg path {
  fill: var(--black);
}

.cookies .cookies-body {
  display: flex;
  flex-direction: column;
}

.cookies .cookies-title {
  margin: 0 0 6px 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  color: var(--black);
}

.cookies .cookies-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: var(--black);
}

.cookies .btn {
  white-space: nowrap;
}

.promocode-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
  padding: 20px;
  border-radius: 24px;
  background: var(--primary);
}

.promocode-banner .promocode-banner-body {
  display: flex;
  flex-direction: column;
}

.promocode-banner .promocode-banner-title {
  margin: 10px 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  text-transform: uppercase;
  color: var(--white);
}

.promocode-banner .promocode-banner-text {
  margin: 10px 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 32px;
  color: var(--white);
}

.promocode-banner .promocode-banner-row {
  display: flex;
  flex-direction: column;
  margin: 0 0 0 10px;
  width: 489px;
}

.promocode-banner .promocode-banner-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 24px;
  border: 2px solid var(--white);
  border-radius: 20px;
}

.promocode-banner .promocode-banner-timer span {
  font-size: 32px;
  font-weight: 700;
  line-height: 32px;
  color: var(--white);
}

.promocode-banner .promocode-banner-actions {
  display: flex;
  justify-content: space-between;
  margin: 10px 0 0 0;
}

.promocode-banner .slots-promocode-wrapper {
  width: 49%;
  align-items: center;
}

.promocode-banner .slots-promocode-wrapper img {
  position: static;
  margin: 0 0 0 15px;
}

.promocode-banner .btn {
  width: 49%;
  background: var(--green);
}

footer {
  display: flex;
  flex-direction: column;
  margin: 24px 0;
  padding: 24px;
  border-radius: 24px;
  background: var(--surface);
}

footer nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer .footer-i {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: center;
  margin: 32px 0 0 0;
  width: 75%;
}

footer .footer-i-l {
  display: flex;
  align-items: center;
}

footer .footer-i-l img {
  margin: 0 19px 0 0;
}

footer .footer-i a:last-child {
  margin: 0;
}

footer .footer-i-p {
  display: flex;
  align-items: center;
}

footer .footer-i-p img {
  margin: 0 19px 0 0;
  width: 32px;
  height: 32px;
}

footer .footer-i-p a:last-child {
  display: flex;
  margin: 0;
}

footer .footer-i-a {
  display: flex;
  align-items: center;
}

footer .footer-i-a img {
  width: 40px;
  height: 40px;
}

footer .eeat {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px 0 0 0;
  align-self: center;
  list-style: none;
}

footer .eeat li {
  margin: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  color: var(--grey-300);
  transition: 0.4s all linear;
}

footer .eeat li:hover {
  color: var(--secondary);
}

footer .eeat li a {
  text-decoration: none;
  color: inherit;
}

.breadcrumbs {
  margin: 0 0 20px 10px;
}
@media screen and (max-width: 1320px) {
  .breadcrumbs {
    margin: 0 0 10px 5px;
  }
}
.breadcrumbs ul {
  display: flex;
  align-items: center;
}
.breadcrumbs ul li {
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  color: var(--primary);
}
@media screen and (max-width: 620px) {
  .breadcrumbs ul li {
    font-size: 14px;
    line-height: 16px;
  }
}
.breadcrumbs ul li a {
  text-decoration: none;
  color: var(--black);
  font-weight: 500;
}

@media (prefers-reduced-motion: reduce) {
  .gamebanner-slot .flip-inner {
    transition: none;
  }
}
@media screen and (max-width: 1320px) {
  .container {
    padding: 0 20px;
  }
  .intro {
    padding: 174px 0 0 0;
  }
}
@media screen and (max-width: 1140px) {
  .container {
    padding: 0 20px;
  }
  header nav .action {
    flex-direction: column-reverse;
  }
  header nav .action .btns {
    margin: 0 0 20px 0;
  }
  header nav .action .social {
    margin: 0;
  }
  .content .showcase-action {
    flex-direction: column;
  }
  .content .showcase-action-btns {
    margin: 16px 0 0 0;
  }
  .content .slots .slots-img {
    height: 150px;
  }
  .content .slots .slots-item-title {
    font-size: 20px;
  }
  .gamebanner .gamebanner-title {
    font-size: 36px;
    line-height: 36px;
  }
  .gamebanner .gamebanner-text {
    width: 80%;
  }
  .сomparison-table table {
    min-width: 1200px;
  }
  .table-responsive.wide > table {
    min-width: 205%;
  }
  .promocode-banner .promocode-banner-row {
    width: 640px;
  }
  footer .footer-i {
    flex-direction: column;
  }
  footer .footer-i-p,
  footer .footer-i-a {
    margin: 10px 0 0 0;
  }
}
@media screen and (max-width: 820px) {
  header nav {
    flex-wrap: wrap;
  }
  .burger {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
  }
  .burger svg {
    width: 40px;
    height: 40px;
  }
  .burger svg rect {
    fill: var(--surface);
  }
  .burger svg path {
    stroke: var(--primary);
  }
  .burger svg._burger-close {
    display: none;
  }
  header.active .burger svg._burger-close {
    display: block;
  }
  header.active .burger svg._burger-open {
    display: none;
  }
  header nav .menu {
    position: absolute;
    top: 140px;
    left: -1%;
    display: none;
    flex-direction: column;
    padding: 50px 0;
    width: 102%;
    background: var(--white);
  }
  header.active nav .menu {
    display: flex;
  }
  header nav .menu ul,
  footer nav .menu ul {
    flex-direction: column;
    background: transparent;
    align-items: flex-start;
    align-self: flex-start;
    width: 100%;
  }
  header nav .menu ul li,
  footer nav .menu ul li {
    margin: 0 0 30px 0;
    font-size: 18px;
    line-height: 24px;
    background: none;
    color: var(--black);
    border: none;
  }
  header nav .menu ul li.active,
  header nav .menu ul li:hover,
  footer nav .menu ul li.active,
  footer nav .menu ul li:hover {
    background: transparent;
    color: var(--primary);
  }
  header nav .menu ul li a,
  footer nav .menu ul li a {
    padding: 0;
  }
  header nav .action {
    flex-direction: row;
    margin: 20px 0 0 0;
    width: 100%;
  }
  header nav .action .social {
    display: none;
  }
  header nav .action .btns {
    justify-content: space-between;
    margin: 0;
    width: 100%;
  }
  header nav .action .btn {
    margin: 0;
    width: 49%;
  }
  header nav .action .btn.border {
    margin: 0;
  }
  header nav .menu .social {
    display: flex;
    margin: 40px 0 0 0;
    align-self: flex-start;
  }
  .intro {
    padding: 105px 0 0 0;
  }
  .intro .row {
    flex-direction: column-reverse;
  }
  .intro .body {
    margin: 20px 0 0 0;
    width: 100%;
  }
  .intro .img {
    width: 100%;
    height: 400px;
  }
  .intro .body p {
    margin: 0 0 30px 0;
  }
  .intro .body .btn {
    width: 100%;
  }
  .content .showcase-min {
    flex-wrap: wrap;
  }
  .content .showcase-info-title {
    font-size: 20px;
    line-height: 26px;
  }
  .content .showcase-brand-title {
    font-size: 28px;
    line-height: 32px;
    align-self: flex-start;
  }
  .content .showcase-item {
    flex-wrap: wrap;
  }
  .content .showcase-min .showcase-item {
    width: 49%;
  }
  .content .showcase-action {
    flex-direction: row;
    margin: 25px 0 0 0;
    width: 100%;
  }
  .content .showcase-info {
    margin: 20px 0 0 0;
    padding: 0 0 20px 0;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--grey-200);
  }
  .content .showcase-info-top {
    display: none;
  }
  .content .showcase-brand-btm {
    display: flex;
    flex-direction: column;
    margin: 0 0 0 20px;
    justify-content: center;
  }
  .content .showcase-brand {
    flex-direction: row;
    width: 100%;
  }
  .content .showcase-promocode {
    align-self: center;
  }
  .content .showcase ._min .showcase-info {
    display: none;
    border: none;
  }
  .content .showcase ._min .showcase-action {
    margin: 0;
    width: 100%;
  }
  .content .showcase ._min .showcase-action-btns {
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
  }
  .content .showcase ._min .showcase-action-btns .btn {
    margin: 0;
    width: 49%;
  }
  .content .showcase ._min.showcase-item {
    width: 100%;
  }
  .content .slots {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .content .slots .slots-img {
    height: 190px;
  }
  .img-image {
    margin: 0 0 20px 0;
    float: none;
    width: 100%;
  }
  .img-image img {
    border-radius: 12px;
  }
  .snippet-image {
    width: 200px;
    height: 200px;
  }
  .snippet-image img {
    border-radius: 12px;
  }
  .gamebanner {
    flex-direction: column;
    margin: 0 0 10px 0;
    padding: 20px 16px;
    border-radius: 26px;
  }
  .gamebanner .gamebanner-body {
    width: 100%;
  }
  .gamebanner .gamebanner-title {
    font-size: 36px;
    line-height: 36px;
  }
  .gamebanner .gamebanner-text {
    font-size: 16px;
    line-height: 24px;
  }
  .gamebanner .gamebanner-body .btn {
    margin: 20px 0 0 0;
  }
  .gamebanner .gamebanner-slots {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 20px 0 0 0;
    width: 100%;
  }
  .gamebanner .gamebanner-slot {
    border-radius: 24px;
  }
  .adv-cards-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .content .reviews-item {
    border-radius: 16px;
  }
  .content ._mb820_v {
    display: flex;
    align-self: flex-end;
  }
  .content ._mb820_v.reviews-date {
    margin: 10px 0 0 0;
  }
  .content ._mb820_h {
    display: none;
  }
  .content .reviews-data._mb820_v {
    margin: 0;
    align-self: center;
  }
  .content .feedback-form {
    width: 100%;
  }
  .content .feedback-form .grid {
    flex-direction: column;
  }
  .content .feedback-form .grid .field {
    margin: 0 0 10px 0;
    width: 100%;
  }
  .content .feedback-form .btn {
    width: 100%;
  }
  .faq {
    margin: 0 0 20px 0;
    -moz-column-count: 1;
         column-count: 1;
  }
  .content .slots-promocode-wrapper span {
    font-size: 16px;
  }
  .bosuses-item {
    flex-direction: column;
  }
  .bosuses-item .bosuses-img {
    margin: 0 0 16px 0;
    width: 100%;
    height: 300px;
  }
  .bosuses-item .bosuses-body {
    margin: 0;
    width: 100%;
  }
  .bosuses-item .bonuses-row {
    margin: 0;
    flex-direction: column;
  }
  .bosuses-item .bonuses-row .faq-item,
  .bosuses-item .bonuses-row .btn {
    margin: 16px 0 0 0;
    width: 100%;
  }
  .cookies .cookies-row {
    max-width: 55%;
  }
  .promocode-banner {
    flex-direction: column;
  }
  .promocode-banner .promocode-banner-text {
    font-size: 20px;
  }
  .promocode-banner .promocode-banner-row {
    width: 50%;
  }
  footer nav {
    flex-direction: column;
  }
  footer nav .logo {
    margin: 0 0 17px 0;
    align-self: center;
    order: 0;
  }
  footer .social {
    order: 1;
  }
  footer nav .menu {
    margin: 15px 0 0 0;
    order: 2;
    align-self: flex-start;
  }
  footer nav .menu ul li {
    margin: 0 0 20px 0;
  }
}
@media screen and (max-width: 600px) {
  header {
    padding: 15px 0;
  }
  header nav .menu ul li {
    font-size: 16px;
    line-height: 22px;
  }
  header nav .menu .social {
    margin: 20px 0 0 0;
  }
  .intro {
    padding: 85px 0 0 0;
  }
  .intro .img {
    height: 200px;
  }
  .intro .img-item {
    padding: 6px;
  }
  .intro .img-item span {
    width: 8px;
    height: 8px;
  }
  .intro .img-item span.active {
    width: 13px;
  }
  .intro .body h1 {
    margin: 0 0 20px 0;
    font-size: 36px;
    line-height: 36px;
  }
  .intro .body p {
    margin: 0 0 20px 0;
    font-size: 16px;
  }
  .content .showcase-min .showcase-item {
    width: 100%;
  }
  .content .showcase-brand {
    flex-direction: row;
    margin: 0;
    width: 100%;
  }
  .content .showcase-brand-img {
    margin: 0 8px 0 0;
    width: 90px;
    height: 90px;
    border-radius: 12px;
  }
  .content .showcase-brand-btm {
    margin: 0;
    justify-content: flex-start;
  }
  .showcase-brand-btm {
    display: flex;
    flex-direction: column;
  }
  .content .showcase-brand-title {
    margin: 0;
    align-self: flex-start;
    font-size: 20px;
    line-height: 22px;
  }
  .content .showcase-brand-rating {
    margin: 0;
  }
  .content .showcase-info {
    margin: 16px 0 0 0;
    width: 100%;
  }
  .content .showcase-info-title {
    margin: 0 0 6px 0;
    font-size: 16px;
    line-height: 19px;
  }
  .content .showcase-info-description {
    margin: 0;
    font-size: 14px;
    line-height: 16px;
  }
  .content .showcase-promocode {
    padding: 0;
    background: transparent;
    border-radius: 16px;
    width: 100%;
  }
  .content .showcase-promocode-title {
    display: none;
  }
  .content .showcase-promocode-wrapper {
    flex-direction: row;
    padding: 4.5px 8px;
    border-radius: 19px;
    width: 100%;
  }
  .content .showcase-promocode-wrapper p {
    width: 90%;
    text-align: center;
    flex: 1;
  }
  .content .showcase-action {
    flex-direction: column;
    margin: 16px 0 0 0;
  }
  .content .showcase-min .showcase-action {
    margin: 8px 0 0 0;
  }
  .content .showcase-action-btns {
    flex-direction: row-reverse;
    width: 100%;
  }
  .content .showcase-action-btns .btn {
    margin: 0 0 0 8px;
    padding: 10.5px 5px;
    min-width: 90px;
  }
  .content .showcase-action-btns .btn.color {
    width: 60%;
  }
  .content .showcase-action-btns .btn.border {
    width: 40%;
  }
  .content .showcase-action-list {
    margin: 0;
    width: 100%;
  }
  .content .showcase-min .showcase-action-btns {
    margin: 0;
    order: 0;
  }
  .content .showcase-min .showcase-action-list {
    margin: 19px 0 0 0;
    order: 1;
  }
  .content .showcase-min .showcase-action-payments {
    order: 2;
  }
  .content h2 {
    margin: 15px 0;
    font-size: 24px;
  }
  .content h3 {
    margin: 15px 0;
    font-size: 22px;
  }
  .content h4 {
    margin: 15px 0;
    font-size: 20px;
  }
  .content .showcase-item {
    margin: 0 0 15px 0;
    border-radius: 16px;
  }
  .content .showcase-brand-btm .showcase-action-list-item,
  .content .showcase-brand-btm span {
    display: flex;
  }
  .content .showcase-info-row,
  .content .showcase-brand-row {
    margin: 0 0 10px 0;
  }
  .content .showcase-brand-btm span {
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    text-transform: uppercase;
    color: var(--grey-300);
    align-self: flex-start;
  }
  .content .showcase-brand-btm .showcase-action-list-item {
    margin: 4px 0 0 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    color: var(--black);
    align-self: flex-start;
  }
  .content .showcase-brand-img-num {
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    font-size: 16px;
  }
  .content .showcase-info-subtitle {
    font-size: 18px;
    max-width: 100%;
  }
  .content ._mb_h {
    display: none;
  }
  .content .prosCons {
    flex-wrap: wrap;
  }
  .content .prosCons-item {
    margin: 0 0 20px 0;
    padding: 16px;
    width: 100%;
  }
  .content .prosCons-item:last-child {
    margin: 0;
  }
  .content .prosCons-title {
    font-size: 14px;
    line-height: 16px;
  }
  .content .slots {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .content .slots .slots-item-mid-text {
    font-size: 14px;
  }
  .content .spoiler span {
    font-size: 20px;
  }
  .snippet-image {
    width: 200px;
    height: 200px;
  }
  .adv-cards {
    display: block;
    overflow-x: auto;
  }
  .adv-cards-row {
    display: flex;
    min-width: -moz-max-content;
    min-width: max-content;
    gap: 10px;
  }
  .adv-cards .adv-cards-item {
    padding: 10px;
    width: 300px;
    border-radius: 16px;
  }
  .adv-cards .adv-cards-item img {
    width: 18px;
    height: 18px;
  }
  .bosuses-item .bosuses-img {
    height: 190px;
  }
  .cookies {
    flex-direction: column;
  }
  .cookies .cookies-row {
    width: 100%;
    max-width: 100%;
  }
  .cookies .btn {
    margin: 15px 0 0 0;
    width: 100%;
  }
  .cookies .cookies-row svg {
    width: 35px;
    height: 35px;
  }
  .promocode-banner .promocode-banner-row {
    margin: 10px 0 0 0;
    width: 100%;
  }
  .promocode-banner .promocode-banner-timer span {
    font-size: 24px;
    line-height: 24px;
  }
  .promocode-banner .promocode-banner-actions {
    flex-direction: column;
  }
  .promocode-banner .slots-promocode-wrapper {
    margin: 0 0 10px 0;
    padding: 16px;
    width: 100%;
  }
  .promocode-banner .btn {
    width: 100%;
  }
  .promocode-banner-title {
    margin: 5px 0;
  }
  .promocode-banner .promocode-banner-text {
    margin: 5px 0;
  }
  footer .footer-i {
    width: 100%;
  }
  footer .footer-i-l {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
  }
  footer .footer-i-p {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
  }
  footer .footer-i-l img,
  footer .footer-i-p img {
    margin: 0;
    width: 100%;
  }
}
@media screen and (max-width: 375px) {
  .adv-cards .adv-cards-item {
    width: 245px;
  }
}
