html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
a,
abbr,
address,
big,
blockquote,
cite,
code,
del,
dfn,
em,
img,
ins,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
form,
label,
input,
fieldset,
legend,
caption,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
menu,
main,
nav,
output,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  border: none;
  outline: none;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
}

body {
  line-height: 1;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  text-size-adjust: none;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

ol,
ul,
nav,
menu {
  list-style: none;
}

img,
video,
canvas {
  max-width: 100%;
  height: auto;
}

img {
  vertical-align: bottom;
}

a,
button {
  cursor: pointer;
  margin: 0;
  padding: 0;
}

a:hover,
button:hover {
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: transparent;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

th,
td {
  vertical-align: middle;
}

iframe {
  width: 100%;
}

/* Work Sans */
@font-face {
  font-family: "Work Sans";
  src:
    url("../fonts/WorkSans-VariableFont_wght.woff2")
      format("woff2 supports variations"),
    url("../fonts/WorkSans-VariableFont_wght.woff2") format("woff2-variations");
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  font-stretch: 85% 100%;
}
/* =========================== all */
body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: "Work Sans", sans-serif;
  color: #313131;
  background: #fff;
  line-height: 1.5;
}

body:has(dialog[open]) {
  overflow: hidden;
}

.body_scroll {
  overflow: hidden;
}

/* heading */
.h2,
.h3,
.h4 {
  font-weight: 600;
  color: #181717;
}

.h1 {
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  color: #181717;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .h1 {
    font-weight: 600;
    font-size: 34px;
    line-height: 42px;
  }
}

.h2 {
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 25px;
}
.h2 b {
  text-decoration: underline;
}
.h2 img {
  margin: 0;
}
@media screen and (min-width: 768px) {
  .h2 img {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .h2 {
    font-size: 28px;
    line-height: 34px;
  }
  .h2 img {
    margin-bottom: 13px;
  }
}

.h3 {
  font-size: 28px;
  line-height: 34px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .h3 {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 15px;
  }
}

.h4 {
  font-size: 26px;
  line-height: 32px;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .h4 {
    font-size: 24px;
    line-height: 30px;
  }
}

.h5 {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .h5 {
    font-size: 22px;
    line-height: 30px;
  }
}

.heading-span {
  color: #ad0002;
}

.section {
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 20px;
}
.section_yellow {
  background: #ffffe0;
}
.section_gray {
  background: #f7f7f7;
}
.section p:last-child,
.section ul:last-child,
.section ol:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .section {
    padding: 20px;
  }
}

/* content */
a,
p,
ol:not([class]) li,
ul:not([class]) li {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

p {
  margin-bottom: 20px;
}

a:not([class]) {
  text-decoration: underline;
}
a:not([class]):hover {
  color: #ad0002;
}

.read {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #181717;
  text-decoration: underline;
}
.read:hover {
  color: #ad0002;
}

b,
strong {
  font-weight: 600;
}

i,
em {
  font-style: italic;
}

/* list */
ol:not([class]),
ul:not([class]) {
  margin-bottom: 20px;
}
ol:not([class]) li,
ul:not([class]) li {
  display: table;
  position: relative;
  font-weight: 600;
  color: #181717;
  padding-left: 42px;
}
ol:not([class]) li::before,
ul:not([class]) li::before {
  left: 0;
  top: -3px;
}
ol:not([class]) li:not(:last-child),
ul:not([class]) li:not(:last-child) {
  margin-bottom: 15px;
}

table ol:not([class]) li,
table ul:not([class]) li,
.table ol:not([class]) li,
.table ul:not([class]) li {
  display: block;
}

ol:not([class]),
.list-best {
  counter-reset: number;
}
ol:not([class]) li::before,
.list-best li::before {
  position: absolute;
  counter-increment: number;
  content: counter(number);
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  background: #181717;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  border-radius: 100%;
}

ul:not([class]) li::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--arrow-circle");
}

.list-best li {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  padding-left: 42px;
}
.list-best li::before {
  left: 0;
  top: -3px;
}
.list-best li b {
  text-decoration: underline;
}
.list-best li:not(:last-child) {
  margin-bottom: 15px;
}

.list-check li,
.list-not li {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  padding-left: 26px;
}
.list-check li::before,
.list-not li::before {
  position: absolute;
  content: "";
  left: 0;
  top: 3px;
}
.list-check li:not(:last-child),
.list-not li:not(:last-child) {
  margin-bottom: 12px;
}

.list-check li::before {
  width: 18px;
  height: 18px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--check-circle");
}

.list-not li {
  position: relative;
}
.list-not li::before {
  width: 18px;
  height: 18px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--close-circle");
}

summary {
  list-style: none;
}
summary::marker {
  display: none;
}
summary::-webkit-details-marker {
  display: none;
  color: transparent;
}

/* img */
img {
  display: block;
  margin: 0 auto;
}

.figure {
  margin-bottom: 20px;
}

/* transition */
* {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

/* btn */
.btn {
  display: block;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 auto;
}
.btn-span {
  position: relative;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  padding-right: 20px;
}
.btn-span::before {
  position: absolute;
  content: "";
  width: 9px;
  height: 10px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--arrow-white");
  right: 0;
  top: calc(50% - 5px);
}

.btn-play {
  width: 214px;
  height: 40px;
  line-height: 40px;
  background: #c20508;
  color: #fff;
  border-radius: 20px;
}
.btn-play:hover {
  background: #940002;
}
.btn-review {
  margin: 5px auto;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: underline;
}

.btn-dark {
  width: 253px;
  height: 44px;
  line-height: 44px;
  background: #181717;
  color: #fff;
  border-radius: 5px;
}
.btn-dark:hover {
  background: #363636;
}

.btn-light {
  height: 44px;
  line-height: 44px;
  border-radius: 20px;
  background: #ffb800;
  font-weight: 700;
  color: #181717;
}
.btn-light:hover {
  background: #ffd057;
}

.btn-more {
  width: 243px;
  height: 44px;
  line-height: 44px;
  background: #f7f7f7;
  color: #313131;
  border-radius: 40px;
}
.btn-more:hover {
  background: #ececec;
}

.btn-up {
  display: none;
  position: fixed;
  z-index: 90;
  bottom: 120px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  background: #fff;
  -webkit-box-shadow: 4px 5px 30px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 4px 5px 30px 0px rgba(0, 0, 0, 0.08);
}
.btn-up.banner-closed {
  bottom: 30px;
}
.btn-up svg {
  fill: #000;
}
.btn-up:hover svg {
  fill: #ad0002;
}

/* flexbox */
.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/* gridbox */
.gridbox {
  display: grid;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/* breadcrumbs */
.breadcrumbs {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-line-pack: center;
  align-content: center;
  margin-bottom: 30px;
}
.breadcrumbs__item,
.breadcrumbs-link {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}
.breadcrumbs__item {
  color: #313131;
}
.breadcrumbs__item:not(:last-child) {
  margin-right: 14px;
}
.breadcrumbs-link {
  position: relative;
  text-decoration: none;
  color: rgba(24, 23, 23, 0.5);
}
.breadcrumbs-link:hover {
  color: #181717;
}
.breadcrumbs-link::after {
  position: absolute;
  content: "";
  width: 4px;
  height: 7px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--breadcrumbs");
  top: calc(50% - 3.5px);
  right: -9px;
}

/* soc */
.soc {
  gap: 8px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.soc-link {
  width: 34px;
  height: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 100%;
  border: 1px solid rgba(0, 0, 0, 0.3);
}
.soc-link:hover {
  border-color: #ad0002;
}

/* side */
.side {
  gap: 15px 20px;
}
.side__item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 280px;
  border-radius: 10px;
  padding: 20px;
}
.side-pros {
  border: 1px solid #107935;
}
.side-cons {
  border: 1px solid #ad0002;
}
.side-header {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .side__item {
    padding: 15px 20px;
  }
  .side-header {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}

/* blockquote */
.blockquote {
  position: relative;
  border-radius: 10px;
  background: #ffffe0;
  padding: 65px 30px 23px;
  margin-bottom: 20px;
}
.blockquote p {
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  color: #181717;
  margin-bottom: 15px;
}
.blockquote .cite {
  display: block;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.blockquote::before,
.blockquote::after {
  position: absolute;
  content: "";
  width: 28px;
  height: 19px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--quote");
}
.blockquote::before {
  top: 26px;
  left: 31px;
}
.blockquote::after {
  bottom: 26px;
  right: 31px;
  -webkit-transform: scale(-1, -1);
  -ms-transform: scale(-1, -1);
  transform: scale(-1, -1);
}
@media screen and (max-width: 768px) {
  .blockquote {
    padding: 65px 20px 20px;
  }
  .blockquote .cite {
    text-align: left;
  }
}

/* block */
.overly {
  display: none;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(49, 49, 49, 0.5);
}

/* scroll */
.scroll {
  overflow: auto;
  -ms-scroll-chaining: none;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  scrollbar-width: thin;
  scrollbar-color: #dcdfe9 transparent;
}

.scroll::-webkit-scrollbar {
  width: 4px;
  height: 50%;
}

.scroll::-webkit-scrollbar-track {
  background-color: transparent;
}

.scroll::-webkit-scrollbar-thumb {
  background-color: #dcdfe9;
  border-radius: 5px;
  min-height: 50%;
  min-width: 4px;
}

.scroll::-webkit-scrollbar-thumb:hover {
  background-color: #dcdfe9;
}

.scroll::-webkit-scrollbar-thumb:active {
  background-color: #dcdfe9;
}

/* table */
.table_scroll {
  margin-bottom: 20px;
}
.table_scroll .table {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .table_scroll {
    width: calc(100% + 20px);
    margin-right: -20px;
  }
  .table_scroll .table {
    width: auto;
  }
}

.table {
  border-radius: 7px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-collapse: separate;
  background: #fff;
  overflow: hidden;
  margin-bottom: 20px;
}
.table tr:nth-child(even) td {
  background: #f7f7f7;
}
.table th,
.table td {
  vertical-align: middle;
  line-height: normal;
  text-align: left;
  line-height: 23px;
  padding: 15px;
}
.table th {
  background: #ad0002;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
}
.table th:not(:last-child) {
  border-right: 1px solid #f7f7f7;
}
.table td {
  font-weight: 400;
  font-size: 15px;
  color: #000;
}
.table a {
  font-size: 15px;
}
.table b {
  font-size: 15px;
}

/* form */
.form-sbscrb {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px 30px;
}
.form-title {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 475px;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: #181717;
}
.form-group {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px 15px;
}
.form-input {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 280px;
  height: 44px;
}
.form-input::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--mail-icon");
  left: 12px;
  top: calc(50% - 8px);
}
.form input {
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 44px;
  line-height: 42px;
  border: none;
  background: #fff;
  font-family: "Work Sans";
  font-size: 14px;
  font-weight: 500;
  border-radius: 5px;
  color: #181717;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding-left: 38px;
}
@media screen and (max-width: 1100px) {
  .form-title,
  .form-group {
    min-width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 570px) {
  .form-input {
    min-width: 100%;
    max-width: 100%;
  }
  .form .btn {
    width: 100%;
  }
}

button {
  display: inline-block;
  cursor: pointer;
  font-family: "Work Sans";
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #181717;
  font-family: "Work Sans";
  font-size: 14px;
  font-weight: 400;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #181717;
  font-family: "Work Sans";
  font-size: 14px;
  font-weight: 400;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #181717;
  font-family: "Work Sans";
  font-size: 14px;
  font-weight: 400;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #181717;
  font-family: "Work Sans";
  font-size: 14px;
  font-weight: 400;
}

input::placeholder,
textarea::placeholder {
  color: #181717;
  font-family: "Work Sans";
  font-size: 14px;
  font-weight: 400;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #181717;
  font-family: "Work Sans";
  font-size: 14px;
  font-weight: 400;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #181717;
  font-family: "Work Sans";
  font-size: 14px;
  font-weight: 400;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #181717;
  font-family: "Work Sans";
  font-size: 14px;
  font-weight: 400;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #181717;
  font-family: "Work Sans";
  font-size: 14px;
  font-weight: 400;
}

input[type="text"]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type="text"]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
  -webkit-appearance: none;
  appearance: none;
}

/* container */
.container {
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}

main {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-bottom: 70px;
}

/* header */
.header {
  position: relative;
  -webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.08);
  background: #fff;
}
.header_top {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  padding: 15px 0;
}
@media screen and (max-width: 1200px) {
  .header_top .soc {
    display: none;
  }
}

/* menu */
@media screen and (min-width: 1200px) {
  .navigation {
    overflow: visible;
    padding-bottom: 15px;
  }
  .navigation-body {
    overflow: visible;
  }
  .navigation .soc,
  .navigation .close,
  .navigation .logo {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .navigation {
    position: fixed;
    z-index: 101;
    top: 0;
    bottom: 0;
    left: 0;
    background: #fff;
    width: 0;
  }
  .navigation .close {
    position: absolute;
    display: none;
    width: 20px;
    height: 20px;
    background: center center/cover no-repeat;
    background-image: url("../img/sprite.svg#sprite--close-white-icon");
    top: 20px;
    right: -40px;
  }
  .navigation .logo {
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    padding: 20px;
  }
  .navigation .logo img {
    margin: 0;
  }
  .navigation-body {
    height: 100%;
  }
  .navigation .soc {
    padding: 20px;
  }
  .navigation.open {
    width: 300px;
  }
  .navigation.open .close {
    display: block;
  }
}

.menu-link {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #181717;
  text-transform: capitalize;
}
@media screen and (min-width: 1200px) {
  .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
  }
  .menu-btn {
    display: none;
  }
  .menu-arr {
    position: relative;
  }
  .menu-arr .menu-link {
    padding-right: 17px;
  }
  .menu-arr .menu-link::before {
    position: absolute;
    content: "";
    width: 11px;
    height: 6px;
    background: center center/cover no-repeat;
    background-image: url("../img/sprite.svg#sprite--arrow-dark");
    right: 0;
    top: calc(50% - 3px);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  .menu-arr:hover .menu-link::before {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
  .menu-arr:hover .menu-link::after {
    width: 100%;
  }
  .menu-arr:hover .downmenu {
    overflow: visible;
    padding-top: 22px;
  }
  .menu-arr:hover .submenu {
    max-height: 1000px;
  }
  .menu-link::after {
    position: absolute;
    z-index: 0;
    content: "";
    width: 0;
    height: 4px;
    bottom: -17px;
    left: 0;
    background: #ad0002;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  .menu-link:hover::after {
    width: 100%;
  }
  .menu__item:last-child .downmenu {
    left: auto;
    right: 0;
  }
}
@media screen and (max-width: 1200px) {
  .menu {
    display: block;
    padding: 20px;
  }
  .menu-btn {
    width: 20px;
    height: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: auto;
  }
  .menu-btn svg {
    fill: #181717;
  }
  .menu-arr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .menu-arr.open .downmenu {
    overflow: visible;
  }
  .menu-arr.open .submenu {
    max-height: 1000px;
    margin-top: 10px;
  }
  .menu-arr.open .menu-btn svg {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
    fill: #ad0002;
  }
  .menu-arr.open .menu-link {
    color: #ad0002;
  }
  .menu-link {
    color: #121111;
  }
  .menu__item:not(:last-child) {
    margin-bottom: 20px;
  }
}

.downmenu {
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .downmenu {
    position: absolute;
    left: calc(50% - 111px);
    z-index: 1;
    top: 18px;
  }
}
@media screen and (max-width: 1200px) {
  .downmenu {
    min-width: 100%;
    padding-top: 0;
  }
}

.submenu {
  max-height: 0;
  overflow: hidden;
}
.submenu__item:not(:last-child) {
  margin-bottom: 0;
}
.submenu-link {
  display: block;
  font-size: 15px;
  line-height: 23px;
}
@media screen and (min-width: 1200px) {
  .submenu {
    width: 222px;
    background: #ad0002;
    border-radius: 5px;
  }
  .submenu__item:not(:last-child) .submenu-link {
    border-bottom: 1px solid #ffffff;
  }
  .submenu-link {
    position: relative;
    font-weight: 500;
    color: #fff;
    padding: 15px 20px;
  }
  .submenu-link:hover {
    background: #181717;
  }
}
@media screen and (max-width: 1200px) {
  .submenu__item:first-child .submenu-link {
    border-top: 1px solid rgba(0, 0, 0, 0.15);
  }
  .submenu-link {
    font-weight: 400;
    color: #595959;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    padding: 12px 0;
  }
}

/* hamburger */
.hamburger {
  display: block;
  width: 20px;
  height: 17px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--hamburger");
}
@media screen and (min-width: 1200px) {
  .hamburger {
    display: none;
  }
}

/* bonus */
.bonus {
  position: fixed;
  z-index: -100;
  inset: 0;
  width: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}
.bonus-body {
  position: absolute;
  z-index: 101;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  background: #f7f7f7;
  border-radius: 10px;
  overflow: hidden;
  width: 1200px;
  padding: 50px 0;
  padding-right: 5px;
}
.bonus-wrapper {
  padding: 0 50px;
  padding-right: 45px;
}
.bonus-bg {
  position: absolute;
  z-index: 100;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(49, 49, 49, 0.5);
}
.bonus.open {
  z-index: 102;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.bonus .close {
  position: absolute;
  z-index: 10;
  width: 20px;
  height: 20px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--close-black-icon");
  top: 25px;
  right: 25px;
}
.bonus-heading {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 30px;
}
.bonus-heading .heading-span {
  position: relative;
}
.bonus-heading .heading-span::before {
  position: absolute;
  content: "";
  width: 178px;
  height: 4px;
  background: center center/cover no-repeat;
  background-image: url("../img/underline.svg");
  right: 5px;
  bottom: -3px;
}
.bonus .offer-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-gap: 15px 30px;
  margin-bottom: 30px;
}
.bonus .offer-card {
  display: grid;
  grid-template-columns: subgrid;
  grid-row: span 3;
  grid-gap: 20px;
  padding: 20px 25px;
}
.bonus .offer-card .img {
  height: 100px;
}
.bonus .offer-casino-name {
  margin-bottom: 15px;
}
.bonus .form-sbscrb .btn {
  width: 220px;
}
.bonus-btn {
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  width: 185px;
  height: 52px;
  border-radius: 5px;
  background: #ffb800;
  text-align: left;
  padding: 8px;
}
.bonus-btn .img {
  width: 54px;
  min-width: 54px;
  height: 36px;
  border-radius: 3px;
}
.bonus-btn-text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 13px;
  font-weight: 600;
  line-height: 17px;
  color: #181717;
}
.bonus-btn::before {
  position: absolute;
  content: "";
  width: 26px;
  height: 26px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--bonus-circle-icon");
  top: -4px;
  left: -5px;
}
@media screen and (max-width: 1240px) {
  .bonus-body {
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 1050px) {
  .bonus-body {
    height: 90%;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    top: 5%;
    bottom: 5%;
    left: 20px;
  }
  .bonus-wrapper {
    height: 100%;
  }
  .bonus .offer-list {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
}
@media screen and (max-width: 768px) {
  .bonus-body {
    padding: 30px 0;
    padding-right: 5px;
  }
  .bonus-body .close {
    top: 15px;
    right: 15px;
  }
  .bonus-wrapper {
    padding: 0 20px;
    padding-right: 15px;
  }
  .bonus-heading {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 20px;
  }
  .bonus-heading .heading-span::before {
    width: 158px;
    height: 4px;
  }
  .bonus-btn {
    width: 78px;
    min-width: 78px;
    height: 44px;
    padding: 6px;
  }
  .bonus-btn .img {
    display: none;
  }
  .bonus-btn-text {
    text-align: center;
    line-height: 16px;
  }
  .bonus-btn_hidden {
    display: none;
  }
  .bonus-btn::before {
    top: -5px;
    left: -10px;
  }
}
@media screen and (max-width: 600px) {
  .bonus .form-sbscrb .btn {
    width: 100%;
  }
}

/* hero */
.hero {
  background: #f7f7f7;
  padding: 20px 0 50px;
  margin-bottom: 45px;
}
.hero-update {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px 20px;
  margin-bottom: 20px;
}
.hero .update {
  margin-bottom: 0;
}
.hero-text .text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-bottom: 15px;
}
.hero-text.open .text {
  -webkit-line-clamp: none;
}
.hero p {
  margin-bottom: 15px;
}
.hero p:last-child,
.hero ul:last-child,
.hero ol:last-child {
  margin-bottom: 0;
}
.hero-review.offer-card {
  -webkit-box-shadow: none;
  box-shadow: none;
  background: transparent;
  border-radius: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px 20px;
  padding: 0;
  margin-top: 40px;
}
.hero-review .offer-logo {
  width: 220px;
  min-width: 220px;
}
.hero-review .offer-logo .rating {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.hero-review .offer-casino {
  display: block;
  width: 100%;
  margin-bottom: 5px;
}
.hero-review .offer-casino .img {
  height: 112px;
}
.hero-review .offer-bonus {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 636px;
  border: 2px dashed #ad0002;
  border-radius: 10px;
  gap: 15px 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 25px;
}
.hero-review .offer-bonus-body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.hero-review .offer-bonus-title {
  position: relative;
  font-size: 13px;
  font-weight: 600;
  line-height: 18px;
  color: #181717;
  text-transform: uppercase;
  padding-left: 22px;
  margin-bottom: 14px;
}
.hero-review .offer-bonus-title::before {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--bonus-red-icon");
  left: 0;
  top: 0;
}
.hero-review .offer-bonus-text {
  font-size: 22px;
  line-height: 28px;
  padding-left: 0;
}
.hero-review .offer-bonus-text::before {
  display: none;
}
.hero-review .offer-bonus .btn {
  width: 200px;
  min-width: 200px;
}
.hero-review .offer-rating {
  width: 294px;
  min-width: 294px;
}
.hero-review .offer-rating__item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}
.hero-review .offer-rating__item:not(:last-child) {
  margin-bottom: 5px;
}
.hero-review .offer-rating__item .rating {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 5px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.hero-review .offer-rating-title {
  width: 165px;
  min-width: 165px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #181717;
}
.hero-review .offer-update {
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  color: #313131;
}
@media screen and (max-width: 992px) {
  .hero-review {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .hero-review .offer-bonus {
    max-width: 100%;
    min-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .hero {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
  .hero .update {
    min-width: 100%;
  }
  .hero-text .text {
    -webkit-line-clamp: 7;
  }
  .hero-review.offer-card {
    margin-top: 30px;
  }
  .hero-review .offer-casino .img {
    height: 140px;
  }
  .hero-review .offer-bonus {
    padding: 20px;
  }
  .hero-review .offer-bonus-body {
    min-width: 100%;
  }
  .hero-review .offer-bonus .btn {
    width: 100%;
    min-width: 100%;
  }
  .hero-review .offer-rating {
    width: 100%;
    min-width: 100%;
  }
}
@media screen and (max-width: 450px) {
  .hero-review .offer-logo {
    width: 100%;
    min-width: 100%;
  }
  .hero-review .offer-rating {
    padding-bottom: 0;
  }
}

/* update */
.update {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 8px 26px;
  margin-bottom: 20px;
}
.update__item {
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 4px;
}
.update__item:not(:first-child)::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background: #181717;
  top: calc(50% - 3px);
  left: -14px;
}
.update-title,
.update-descr {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}
.update-descr {
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  color: #181717;
}
.update a {
  text-decoration: underline;
}
.update a:hover {
  color: #ad0002;
}
@media screen and (max-width: 700px) {
  .update__item {
    min-width: 100%;
    padding-left: 14px;
  }
  .update__item:first-child::before {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background: #181717;
    top: calc(50% - 3px);
    left: 0;
  }
  .update__item:not(:first-child)::before {
    left: 0;
  }
}

/* offer */
.offer {
  margin-bottom: 45px;
}
.offer-list,
.offer-head,
.offer-body {
  display: block;
}
.offer-list {
  counter-reset: number;
  margin-bottom: 25px;
}
.offer-list:not(.gridbox) .offer-card:nth-child(1),
.offer-list:not(.gridbox) .offer-card:nth-child(2) {
  border: 2px solid #ad0002;
}
.offer-list:not(.gridbox) .offer-card:nth-child(1) .offer-bonus,
.offer-list:not(.gridbox) .offer-card:nth-child(2) .offer-bonus {
  position: relative;
}
.offer-list:not(.gridbox) .offer-card:nth-child(1) .offer-bonus::before,
.offer-list:not(.gridbox) .offer-card:nth-child(2) .offer-bonus::before {
  position: absolute;
  top: -20px;
  left: 0;
  content: "Exclusive";
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  color: #181717;
  display: inline-block;
  background: #ffb800;
  border-radius: 0 0 5px 5px;
  padding: 3px 7px;
}
.offer-list:not(.gridbox) .offer-tr,
.offer-list:not(.gridbox) .offer-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}
.offer-list:not(.gridbox) .offer-logo {
  width: 180px;
  min-width: 180px;
}
.offer-list:not(.gridbox) .offer-rating {
  padding-right: 20px;
}
.offer-tr {
  border-radius: 5px;
  background: #f7f7f7;
  padding: 0 20px;
}
.offer-th {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 23px;
  color: #181717;
  text-transform: uppercase;
  padding: 15px 20px;
}
.offer-card {
  position: relative;
  gap: 20px 0;
  -webkit-box-shadow: 4px 4px 20px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 4px 4px 20px 0px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 20px 20px 15px;
}
.offer-td {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
}
.offer-logo {
  text-align: center;
}
.offer-logo .img {
  width: 100%;
  height: 92px;
  border-radius: 5px;
  -o-object-fit: cover;
  object-fit: cover;
}
.offer-td.offer-logo::before {
  position: absolute;
  counter-increment: number;
  content: counter(number);
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 100%;
  background: #ffffe0;
  font-size: 14px;
  font-weight: 600;
  color: #181717;
  top: 8px;
  left: 8px;
}
.offer-casino-name {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: underline;
  margin-bottom: 10px;
}
.offer-casino:hover {
  color: #ad0002;
}
.offer-td.offer-bonus,
.offer-td.offer-feature,
.offer-td.offer-rating {
  border-right: 1px solid rgba(0, 0, 0, 0.15);
  padding: 0 20px;
}
.offer-bonus,
.offer-feature {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.offer-bonus {
  max-width: 299px;
}
.offer-bonus-text {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: #181717;
  padding-left: 26px;
  margin-bottom: 0;
}
.offer-bonus-text::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--bonus-red-icon");
  top: 0;
  left: 0;
}
.offer-feature {
  max-width: 325px;
}
.offer-feature .list-check li {
  font-size: 14px;
  line-height: 20px;
  padding-left: 24px;
}
.offer-feature .list-check li:not(:last-child) {
  margin-bottom: 10px;
}
.offer-feature .list-check li::before {
  width: 14px;
  height: 14px;
}
.offer-rating {
  width: 119px;
  min-width: 119px;
}
.offer-play {
  width: 234px;
  min-width: 234px;
  padding-left: 20px;
}
.offer-play .payment {
  margin-top: 12px;
}
.offer-update {
  min-width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px 20px;
}
.offer-update__item {
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
}
.offer-update-time {
  font-weight: 600;
  display: inline-block;
  margin-left: 5px;
}
.offer-update time {
  position: relative;
  padding-left: 20px;
}
.offer-update time::before {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--update-icon");
  left: 0;
  top: calc(50% - 7px);
}
@media screen and (max-width: 992px) {
  .offer-head {
    display: none;
  }
  .offer-list {
    counter-reset: number;
    margin-bottom: 25px;
  }
  .offer-list:not(.gridbox) .offer-card {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .offer-feature {
    max-width: 100%;
    min-width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .offer-td.offer-feature {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    padding: 0;
    padding-bottom: 15px;
  }
  .offer-td.offer-bonus {
    border-right: none;
    padding-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .offer {
    margin-bottom: 40px;
  }
  .offer-card {
    gap: 15px 0;
  }
  .offer-td.offer-logo .img {
    height: 110px;
  }
}
@media screen and (max-width: 600px) {
  .offer:not(.gridbox) .offer-card:nth-child(1) .offer-bonus,
  .offer:not(.gridbox) .offer-card:nth-child(2) .offer-bonus {
    position: static;
  }
  .offer:not(.gridbox) .offer-card:nth-child(1) .offer-bonus::before,
  .offer:not(.gridbox) .offer-card:nth-child(2) .offer-bonus::before {
    top: 0;
    left: auto;
    right: 0;
    border-radius: 0 9px 0 5px;
  }
  .offer-td.offer-bonus {
    min-width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    padding-bottom: 15px;
    padding-left: 0;
  }
}
@media screen and (max-width: 450px) {
  .offer-list {
    counter-reset: number;
    margin-bottom: 25px;
  }
  .offer-list:not(.gridbox) .offer-rating {
    padding-right: 0;
    padding-left: 0;
  }
  .offer-list:not(.gridbox) .offer-logo {
    width: 100%;
    min-width: 100%;
  }
  .offer-td.offer-logo .img {
    height: 110px;
  }
  .offer-td.offer-rating {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    text-align: center;
    padding-bottom: 15px;
  }
  .offer-rating {
    width: 100%;
    min-width: 100%;
    padding-bottom: 15px;
  }
  .offer-play {
    width: 100%;
    min-width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    padding-bottom: 15px;
    padding-left: 0;
  }
}

/* rating */
.rating {
  position: relative;
  display: inline-block;
}
.rating-total {
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  text-align: center;
}
.rating-total-span {
  font-size: 16px;
  font-weight: 600;
}
.rating-star {
  position: relative;
  display: inline-block;
  height: 16px;
  width: 80px;
}
.rating-star::before {
  position: absolute;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 6.95448L11.4596 6.52449L8.99641 0.336426L6.53326 6.52449L0 6.95448L5.01096 11.2093L3.36663 17.6636L8.99641 14.1051L14.6262 17.6636L12.9819 11.2093L18 6.95448Z' fill='%23E8E6E2'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 16px;
  bottom: 0;
  display: block;
  height: 16px;
  left: 0;
  right: 0;
  top: 0;
  width: 80px;
}
.rating-span {
  display: block;
  text-indent: -10000px;
  width: 80px;
  height: 16px;
  position: absolute;
  overflow: hidden;
}
.rating-span:before {
  display: block;
  position: absolute;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='19' viewBox='0 0 18 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 7.45445L11.4596 7.02446L8.99641 0.836395L6.53326 7.02446L0 7.45445L5.01096 11.7093L3.36663 18.1636L8.99641 14.605L14.6262 18.1636L12.9819 11.7093L18 7.45445Z' fill='%23FFB800'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 16px;
  bottom: 0;
  height: 16px;
  left: 0;
  right: 0;
  text-indent: 10000px;
  top: 0;
}

/* payment */
.payment {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
}
.payment__item {
  width: 32px;
  height: 32px;
  border-radius: 100%;
  background: #f7f7f7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* faq */
.faq__item {
  overflow: hidden;
}
.faq__item:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.faq__item .heading {
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  color: #181717;
  cursor: pointer;
}
.faq__item .text {
  padding-top: 12px;
}
.faq__item[open] .heading {
  color: #ad0002;
}
.faq__item[open] svg {
  fill: #ad0002;
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.faq-heading {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 10px;
}
.faq-heading svg {
  width: 14px;
  min-width: 14px;
  fill: #181717;
  margin-left: auto;
  margin-top: 8px;
}
.faq-heading:hover .heading {
  color: #ad0002;
}
.faq-heading:hover svg {
  fill: #ad0002;
}

/* note */
.latest {
  margin: 50px 0;
}
.latest .h4 {
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .latest {
    margin-top: 38px;
  }
  .latest .h4 {
    margin-bottom: 20px;
  }
}

.note {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  grid-gap: 20px 30px;
}
.note-heading {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  color: #181717;
  margin-bottom: 15px;
}
.note-heading:hover {
  color: #ad0002;
}
.note-time {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  padding-left: 28px;
}
.note-time::before {
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--update-icon");
  left: 0;
  top: calc(50% - 9px);
}
@media screen and (min-width: 992px) {
  .note__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
  }
  .note__item .img {
    width: 210px;
    min-width: 210px;
    height: 130px;
    border-radius: 5px;
    -o-object-fit: cover;
    object-fit: cover;
    margin: 0;
  }
}
@media screen and (max-width: 992px) {
  .note {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    grid-gap: 25px;
  }
  .note__item .img {
    width: 100%;
    height: 198px;
    margin-bottom: 10px;
  }
}

/* footer */
.footer_top {
  background: #ad0002;
  padding: 60px 0;
}
.footer_top .container {
  gap: 40px 30px;
}
.footer-navigation {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  gap: 20px;
}
.footer-navigation__item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 150px;
}
.footer-heading {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 15px;
}
.footer-list__item {
  line-height: 24px;
}
.footer-list__item:not(:last-child) {
  margin-bottom: 8px;
}
.footer-list-link {
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
  color: rgba(255, 255, 255, 0.9);
}
.footer-list-link:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-info {
  width: 380px;
}
.footer-info .logo img {
  margin: 0;
  margin-bottom: 20px;
}
.footer_bottom {
  background: #2b0500;
  padding: 35px 0;
}
.footer_bottom .container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .footer_top {
    text-align: center;
    padding: 50px 0;
  }
  .footer-info {
    width: 100%;
  }
  .footer-info .logo img {
    margin-inline: auto;
    margin-bottom: 15px;
  }
  .footer-navigation {
    min-width: 100%;
  }
}

.reliable {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .reliable {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 25px;
  }
}

.copyright {
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .copyright {
    margin-bottom: 30px;
  }
}

.contact__item {
  position: relative;
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #fff;
  width: 100%;
  padding-left: 26px;
}
.contact__item::before {
  position: absolute;
  content: "";
  left: 0;
  top: 3px;
  margin-right: 5px;
}
.contact__item:not(:last-child) {
  margin-bottom: 12px;
}
.contact-address::before {
  width: 18px;
  height: 18px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--map-icon");
}
.contact-tel::before {
  width: 18px;
  height: 18px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--phone-icon");
}
.contact-email::before {
  width: 18px;
  height: 18px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--mail-white-icon");
}
@media screen and (max-width: 768px) {
  .contact__item {
    padding-left: 0;
  }
  .contact__item::before {
    position: static;
    display: inline-block;
    vertical-align: middle;
    min-width: 18px;
    width: 18px;
    margin-right: 8px;
  }
}

/* banner */
.banner {
  display: flex;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(20px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  contain: layout paint style;
  position: fixed;
  bottom: 20px;
  width: 1200px;
  left: calc(50% - 600px);
  border-radius: 10px;
  background: #720e24 url("../img/bg-elements.svg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px;
}
.banner.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.banner .close {
  position: absolute;
  width: 14px;
  height: 14px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--close-white-icon");
  top: 15px;
  right: 15px;
}
.banner-logo {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  padding-right: 20px;
}
.banner-name {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #fff;
  margin-bottom: 0;
}
.banner .img {
  border-radius: 8px;
  margin: 0;
}
.banner-bonus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 587px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0 20px;
}
.banner-bonus-text {
  position: relative;
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  color: #fff;
  padding-left: 28px;
  margin-bottom: 0;
}
.banner-bonus-text::before {
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--bonus-white-icon");
  left: 0;
  top: 4px;
}
.banner-play {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 20px;
}
@media screen and (min-width: 992px) {
  .banner-logo {
    width: 339px;
    min-width: 339px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .banner-logo .img {
    width: 180px;
    min-width: 180px;
    height: 92px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .banner-name {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
@media screen and (max-width: 1240px) {
  .banner {
    width: calc(100% - 40px);
    left: 20px;
  }
}
@media screen and (max-width: 992px) {
  .banner-logo {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 200px;
    min-width: 200px;
  }
  .banner-logo .img {
    width: 100px;
    height: 60px;
  }
  .banner-name {
    min-width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .banner {
    gap: 20px;
    padding: 12px 10px;
  }
  .banner-logo {
    width: 100px;
    min-width: 100px;
    border-right: none;
    padding-right: 0;
  }
  .banner-name {
    font-size: 14px;
    line-height: 20px;
  }
  .banner-bonus {
    border-right: none;
    padding: 0;
  }
  .banner-bonus-text {
    font-size: 16px;
    line-height: 22px;
    padding-left: 0;
  }
  .banner-bonus-text::before {
    display: none;
  }
  .banner-play {
    width: 40px;
    min-width: 40px;
    padding-left: 0;
  }
  .banner .btn {
    font-size: 0;
    width: 40px;
    height: 40px;
    border-radius: 100%;
  }
  .banner .btn .btn-span::before {
    right: 4.5px;
  }
}

/* advertising */
.advertising {
  position: relative;
  margin-left: auto;
}
.advertising-heading {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  color: #181717;
  cursor: pointer;
}
.advertising-heading .svg {
  width: 15px;
  min-width: 15px;
  height: 15px;
  fill: #181717;
}
.advertising-block {
  position: absolute;
  z-index: 50;
  top: 25px;
  left: calc(50% - 120px);
  width: 240px;
  max-height: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  padding: 0 15px;
}
.advertising-block p {
  font-size: 13px;
  line-height: 18px;
  color: #181717;
}
.advertising-block p:last-child {
  margin-bottom: 0;
}
.advertising:hover .advertising-heading {
  color: #ad0002;
}
.advertising:hover .advertising-heading .svg {
  fill: #ad0002;
}
.advertising:hover .advertising-block {
  max-height: 300px;
  -webkit-box-shadow: 4px 4px 20px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 4px 4px 20px 0px rgba(0, 0, 0, 0.08);
  padding: 15px;
}
@media screen and (max-width: 768px) {
  .advertising {
    min-width: 100%;
  }
  .advertising-block {
    left: 0;
  }
}

/* author */
.author {
  gap: 25px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.author-img {
  border-radius: 10px;
  width: 186px;
  height: 198px;
  -o-object-fit: cover;
  object-fit: cover;
  margin: 0;
}
.author-name {
  position: relative;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: #181717;
  padding-bottom: 12px;
  margin-bottom: 12px;
}
.author-name::before {
  position: absolute;
  content: "";
  width: 62px;
  height: 2px;
  border-radius: 2px;
  background: #ad0002;
  left: 0;
  bottom: 0;
}
.author-body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .author {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .author-body {
    min-width: 100%;
    text-align: center;
  }
  .author-img {
    width: 120px;
    height: 128px;
  }
  .author-name::before {
    left: calc(50% - 31px);
  }
  .author .soc {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

/* variety */
.variety {
  max-width: 933px;
  border-radius: 10px;
  background: #ad0002;
  gap: 20px 25px;
  color: #fff;
  padding: 20px 25px;
  margin-inline: auto;
}
.variety-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 245px;
  min-width: 245px;
  border-right: 1px solid #cb292b;
  text-align: center;
  padding-right: 25px;
}
.variety-logo .img {
  width: 220px;
  height: 140px;
  border-radius: 5px;
  -o-object-fit: cover;
  object-fit: cover;
  margin: 0;
  margin-bottom: 10px;
}
.variety-name {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}
.variety-bonus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border-right: 1px solid #cb292b;
  padding-right: 25px;
}
.variety-bonus-text {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  padding-top: 32px;
  margin-bottom: 15px;
}
.variety-bonus-text::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--bonus-white-icon");
  top: 0;
  left: calc(50% - 10px);
}
.variety-bonus .rating {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 6px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.variety-play {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 240px;
  min-width: 240px;
  text-align: center;
}
.variety-play .btn {
  width: 100%;
}
.variety-play .link {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: underline;
  margin-top: 10px;
}
.variety-play .link:hover {
  text-decoration: none;
}
@media screen and (max-width: 992px) {
  .variety {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .variety-logo,
  .variety-bonus {
    min-width: 100%;
    border-right: none;
    border-bottom: 1px solid #cb292b;
    padding-right: 0;
    padding-bottom: 20px;
  }
  .variety-logo {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media screen and (max-width: 500px) {
  .variety-logo .img {
    width: 100%;
  }
  .variety-play {
    min-width: 100%;
    max-width: 100%;
  }
}

/* tablecontent */
.tablecontent {
  background: #f7f7f7;
  border-radius: 10px;
  padding: 20px 25px;
  margin-bottom: 20px;
}
.tablecontent.open .tablecontent-block {
  grid-template-rows: 1fr;
  border-color: rgba(0, 0, 0, 0.15);
  padding-top: 20px;
  margin-top: 20px;
}
.tablecontent.open .heading {
  color: #ad0002;
}
.tablecontent.open .heading .svg {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
  fill: #ad0002;
}
.tablecontent .heading {
  width: 100%;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  width: 100%;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: #181717;
}
.tablecontent .heading::before {
  content: "";
  width: 20px;
  height: 20px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--table-icon");
  left: 0;
  top: calc(50% - 10px);
}
.tablecontent .heading .svg {
  width: 16px;
  min-width: 16px;
  height: 10px;
  fill: #181717;
  margin-left: auto;
}
.tablecontent-block {
  display: grid;
  grid-template-rows: 0fr;
  border-top: 1px solid transparent;
}
.tablecontent ol {
  overflow: hidden;
  border-top: 1px solid transparent;
  counter-reset: number;
  margin-bottom: 0;
}
.tablecontent ol li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 3px;
  padding-left: 0;
}
.tablecontent ol li::before {
  display: inline-block;
  position: static;
  counter-increment: number;
  content: counter(number) ". ";
  width: auto;
  height: auto;
  line-height: 24px;
  background: transparent;
  color: #181717;
  -ms-flex-item-align: start;
  align-self: start;
}
.tablecontent ol li a:not([class]),
.tablecontent ol li a {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  display: inline-block;
  font-weight: 600;
  color: #181717;
  text-decoration: none;
}
.tablecontent ol li a:not([class]):hover,
.tablecontent ol li a:hover {
  color: #ad0002;
}
.tablecontent ol li:not(:last-child) {
  margin-bottom: 10px;
}
.tablecontent ol li ol {
  min-width: 100%;
  counter-reset: list;
  margin-left: 20px;
  margin-bottom: 0;
}
.tablecontent ol li ol li::before {
  counter-increment: list;
  content: counter(number) "." counter(list) ". ";
}
.tablecontent ol li ol ol {
  counter-reset: sub;
}
.tablecontent ol li ol ol li::before {
  counter-increment: sub;
  content: counter(number) "." counter(list) "." counter(sub) ". ";
}
.tablecontent ol ol {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .tablecontent {
    position: fixed;
    z-index: 1000;
    border-radius: 0;
    padding: 20px;
    -webkit-margin-after: 0;
    margin-block-end: 0;
  }
  .tablecontent-block ol {
    overflow: auto;
  }
  .tablecontent .heading .svg {
    display: none;
  }
  .tablecontent:not(.open).banner-closed {
    inset-block-end: 90px;
  }

  .tablecontent:not(.open) {
    inline-size: 50px;
    block-size: 50px;
    background: #ad0002;
    inset-inline-end: 30px;
    inset-block-end: 175px;
    border-radius: 5px;
  }
  .tablecontent:not(.open) .heading {
    position: static;
    font-size: 0;
  }
  .tablecontent:not(.open) .heading::before {
    position: absolute;
    width: 20px;
    height: 17px;
    background: center center/cover no-repeat;
    background-image: url("../img/sprite.svg#sprite--table-icon-white");
    inset-block: calc(50% - 8.5px);
    inset-inline: calc(50% - 10px);
  }
  .tablecontent.open {
    inset: 0;
  }
  .tablecontent.open .heading::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 15px;
    background: center center/cover no-repeat;
    background-image: url("../img/sprite.svg#sprite--close-black-icon");
    inset-block-start: 25px;
    inset-inline-end: 25px;
  }
  .tablecontent.open .tablecontent-block {
    height: calc(100% - 30px);
    padding-top: 15px;
    margin-top: 15px;
  }
  .tablecontent.open .tablecontent-list {
    overflow: visible;
  }
}

/* source */
.source {
  border-radius: 10px;
  background: #f6e5e5;
  padding: 30px;
}
.source .heading {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 20px;
}
.source .heading::before {
  content: "";
  width: 30px;
  height: 30px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--info-icon");
  min-width: 30px;
  -ms-flex-item-align: start;
  align-self: start;
}
.source-list__item {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 7px;
}
.source-list__item:not(:last-child) {
  margin-bottom: 12px;
}
.source-list__item:hover .source-list-link {
  color: #ad0002;
}
.source-list__item:hover .svg {
  fill: #ad0002;
}
.source-list-link {
  text-decoration: underline;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}
.source-list .svg {
  fill: #181717;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
@media screen and (max-width: 768px) {
  .source {
    padding: 25px;
  }
  .source .heading {
    margin-bottom: 15px;
  }
}

/* feature */
.feature {
  margin-bottom: 40px;
}
.feature-block {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 10px;
  margin-bottom: 20px;
}
.feature-dl {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 20px;
}
.feature-dt {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #313131;
  padding-left: 30px;
}
.feature-dt::before {
  position: absolute;
  content: "";
  width: 20px;
  min-width: 20px;
  height: 20px;
  top: 2px;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
}
.feature-license::before {
  background-image: url("../img/sprite.svg#sprite--icon-license");
}
.feature-owner::before {
  background-image: url("../img/sprite.svg#sprite--owner");
}
.feature-game::before {
  background-image: url("../img/sprite.svg#sprite--game-icon");
}
.feature-rtp::before {
  background-image: url("../img/sprite.svg#sprite--rtp-icon");
}
.feature-support::before {
  background-image: url("../img/sprite.svg#sprite--support-icon");
}
.feature-deposit::before {
  background-image: url("../img/sprite.svg#sprite--deposit-icon");
}
.feature-time::before {
  background-image: url("../img/sprite.svg#sprite--time");
}
.feature-coin::before {
  background-image: url("../img/sprite.svg#sprite--coin");
}
.feature-dd {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #181717;
}
.feature .side {
  margin-bottom: 20px;
}

.h1 span {
  color: #ad0002;
}

.offer-list:not(.gridbox) .offer-card:nth-child(1),
.offer-list:not(.gridbox) .offer-card:nth-child(2) {
  border: none;
}

.offer-list:not(.gridbox) .offer-card:nth-child(1) .offer-bonus:before,
.offer-list:not(.gridbox) .offer-card:nth-child(2) .offer-bonus:before {
  display: none;
}

.offer-list:not(.gridbox) .offer-card .offer-bonus:before {
  display: none;
  position: absolute;
  top: -20px;
  left: 0;
  content: "";
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  color: #181717;
  background: #ffb800;
  border-radius: 0 0 5px 5px;
  padding: 3px 7px;
}

@media screen and (min-width: 992px) {
  .banner-logo .img {
    height: auto;
  }
}
.bonus-btn .img,
.offer-logo .img {
  height: auto;
}

@media screen and (max-width: 700px) {
  .update__item {
    min-width: unset;
  }
}

@media screen and (max-width: 992px) {
  .banner-logo .img {
    height: auto;
  }
}

@media screen and (max-width: 768px) {
  .offer-td.offer-logo .img {
    height: auto;
  }
}

@media screen and (max-width: 420px) {
  h1,
  .h1 {
    font-size: 24px;
    line-height: 26px;
  }

  .update.flexbox {
    margin-bottom: 10px;
    gap: 0px 5px;
  }
  .update-title,
  .update-descr {
    font-size: 12px;
    line-height: 16px;
  }
  .hero {
    padding: 10px 0 5px;
    margin-bottom: 5px;
  }
  .offer h2 {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 0;
  }
}

.section {
  h2,
  h3,
  h4 {
    font-weight: 600;
    color: #181717;
  }

  h2 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 25px;
  }
  h2 b {
    text-decoration: underline;
  }
  h2 img {
    margin: 0;
  }
  @media screen and (min-width: 768px) {
    h2 img {
      display: inline-block;
      vertical-align: middle;
      margin: 0;
    }
  }
  @media screen and (max-width: 768px) {
    h2 {
      font-size: 28px;
      line-height: 34px;
    }
    h2 img {
      margin-bottom: 13px;
    }
  }

  h3 {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 20px;
  }
  @media screen and (max-width: 768px) {
    h3 {
      font-size: 26px;
      line-height: 32px;
      margin-bottom: 15px;
    }
  }

  h4 {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 15px;
  }
  @media screen and (max-width: 768px) {
    h4 {
      font-size: 24px;
      line-height: 30px;
    }
  }

  h5 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 15px;
  }
  @media screen and (max-width: 768px) {
    h5 {
      font-size: 22px;
      line-height: 30px;
    }
  }
}

@media screen and (max-width: 768px) {
  .bonus-btn {
    width: auto;
    max-width: 100px;
  }
}

/* Skeleton base */
.offer-skeleton {
  margin-bottom: 30px;
}

.sk-row {
  display: flex;
  gap: 16px;
  padding: 20px;
  margin-bottom: 12px;
  border-radius: 10px;
  background: #f2f2f2;
  overflow: hidden;
  position: relative;
}

.sk-row-offer {
  min-height: 215px;
}

.sk-row::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  animation: skeleton 1.4s infinite;
}

@keyframes skeleton {
  100% {
    transform: translateX(100%);
  }
}

.sk-logo {
  width: 180px;
  height: 90px;
  background: #ddd;
  border-radius: 6px;
}

.sk-col {
  flex: 1;
  height: 18px;
  background: #ddd;
  border-radius: 6px;
}

.sk-col.small {
  width: 80px;
  flex: 0 0 80px;
}

.sk-btn {
  width: 120px;
  height: 36px;
  background: #ddd;
  border-radius: 18px;
}

/* hide real table while loading */
.offer.loading .offer-list {
  display: none;
}
.offer-skeleton-table {
  transition: opacity 0.3s ease;
}

.offer-skeleton-hidden {
  opacity: 0;
  pointer-events: none;
  height: 0;
  overflow: hidden;
}
