html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  text-decoration: none;
}
button {
  border: none;
  cursor: pointer;
  background: transparent;
}

* {
  --bg: #fff;
  --shadow: rgba(0, 0, 0, 0.5);
  --bg-secondary: #1f3335;
  --bg-active: #fff7d4;
  --text: #212529;
  --title: #1c2d44;
  --breadcrumbs: #d5eadc;
  --border-line: #e2e9f8;
  --light: #bcc4d8;
  --text-cart: #6a6a6a;
  --line: #2ad445;
  --active: #e5f523;
  --btn-first: #1271fc;
  --link: #007bff;
  --cart-button: #0768d8;
  --play-button: #3dbb0c;
  --olive: olive;
  --active-text: #e28408;

  --border-l: 2em;
  --border-m: 1em;
  --border-s: 0.5em;
}
body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: var(--text);
  background: linear-gradient(135deg, rgb(242 238 228 / 44%) 0%, rgb(255 255 255) 100%);
}
b {
  font-weight: 600;
}
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}
a {
  color: var(--link);
}
h1,
h2,
h3 {
  color: var(--title);
  font-family: "Archivo Black", sans-serif;
  font-weight: 700;
  position: relative;
}
.sub_title {
  font-size: 34px;
  font-weight: 600;
  display: inline-block;
  position: relative;
  margin-bottom: 28px;
  padding-bottom: 8px;
  color: var(--text-color);
  letter-spacing: 0.5px;
  width: 100%;
  text-align: center;
  margin: 0 auto 30px;
}

.sub_title::before {
  content: "";
  position: absolute;
  left: calc(50% - 60px);
  bottom: 0;
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, var(--line), transparent);
  border-radius: 2px;
}

h3 {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 18px;
  color: #fff;
  background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
  padding: 10px 80px 10px 25px;
  border-left: 4px solid #ffd700;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  overflow: hidden;
  margin-bottom: 25px;
}

h3::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 100%;
  background: linear-gradient(135deg, #77ff00, #058f09);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

#breadcrumbs {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
}
#breadcrumbs a {
  color: var(--cart-button);
}
.breadcrumb-container {
  padding: 15px 0;
  background: var(--border-line);
}
h1 {
  position: relative;
  font-size: 42px;
  line-height: 1.2;
  margin: 40px 0 30px;
  text-align: center;
  color: var(--text-color, #222);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: capitalize;
}

h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent, #00bcd4), var(--accent2, #3f51b5));
  transition: width 0.3s ease, background 0.3s ease;
}

h1:hover::after {
  width: 120px;
  background: linear-gradient(90deg, var(--accent2, #3f51b5), var(--accent, #00bcd4));
}


/* header */
.header {
  background: var(--bg-secondary);
  left: 0;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 200;
}

@media (max-width: 62em) {
  .header {
    align-items: center;
    display: flex;
    min-height: 56px;
    width: 100%;
  }
}

.header.mobile-menu-active {
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
}

.header__container {
  align-items: baseline;
  display: flex;
  align-items: center; 
  flex-direction: column;
  margin: 0 auto;
  max-width: 1440px;
  padding: 15px 15px 0;
}

@media (max-width: 62em) {
  .header__container {
    width: 100%;
  }
}

.header__mobile-toggle,
.header__search-mobile {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  padding: 15px;
}

@media (max-width: 62em) {
  .header__mobile-toggle,
  .header__search-mobile {
    display: block;
  }
}

.header__mobile-toggle.is-active,
.header__mobile-toggle:hover,
.header__search-mobile.is-active,
.header__search-mobile:hover {
  color: var(--active);
}

@media (max-width: 62em) {
  .header__search-mobile {
    display: flex;
  }

  .header__mobile-toggle {
    order: 2;
  }
}

.header__search-mobile {
  color: var(--bg);
  font-size: 17px;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 62em) {
  .header__search-mobile {
    order: 1;
  }
}

.header__logo {
  align-items: center;
  display: block;
  justify-content: center;
}

@media (max-width: 62em) {
  .header__logo {
    max-width: 180px;
    order: 1;
  }
}

.header__logo img {
  height: auto;
  max-width: 100%;
}

.header__mobile-actions {
  align-items: center;
  display: flex;
}

@media (max-width: 62em) {
  .header__mobile-actions {
    order: 2;
  }
}
.header__subcategory {
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.header__menu {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.header__menu.active {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 56px;
  left: 0;
  width: 100%;
  background: var(--bg-secondary);
  z-index: 300;
  box-shadow: 0 4px 8px var(--shadow);
  animation: menuFadeIn 0.3s ease;
}

@keyframes menuFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 62em) {
  .header__menu {
    display: none;
  }
  .header__main-menu {
    flex-direction: column;
    height: 100vh;
    text-align: center;
  }
}

.header__main-menu {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__actions {
  align-items: center;
  display: flex;
}

@media (max-width: 62em) {
  .header__actions {
    display: none;
  }
}

.header__actions .header__link--disabled,
.header__actions a,
.header__actions button {
  background-color: inherit;
  border: none;
  border-radius: 4px;
  color: var(--active);
  cursor: pointer;
  padding: 8px 16px;
  text-decoration: none;
  white-space: nowrap;
}

.header__actions .header__link--disabled:focus,
.header__actions .header__link--disabled:hover,
.header__actions a:focus,
.header__actions a:hover,
.header__actions button:focus,
.header__actions button:hover {
  color: var(--active);
}

.header__actions .header__link--disabled span,
.header__actions a span,
.header__actions button span {
  font-family: Founders-Grotesk-Regular, sans-serif;
  font-size: 16px;
  text-transform: uppercase;
}

@media (max-width: 75em) and (min-width: 62em) {
  .header__actions .header__link--disabled:before,
  .header__actions a:before,
  .header__actions button:before {
    color: var(--active);
    content: "BLOG";
    font-size: 16px;
    text-transform: uppercase;
  }

  .header__actions .header__link--disabled span,
  .header__actions a span,
  .header__actions button span {
    display: none;
  }
}

.header__list {
  padding: 0;
}

.header__link {
  color: var(--bg);
  cursor: pointer;
  display: block;
  font-family: Founders-Grotesk-Regular, sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding:  12px;
  text-decoration: none; 
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

@media (max-width: 75em) and (min-width: 62em) {
  .header__link {
    padding: 24px 8px;
  }
}

.header__link.is-active,
.header__link:hover {
  color: var(--active);
}

.header__submenus {
  margin-left: 50px;
  max-width: 720px;
  opacity: 0;
  padding: 15px;
  position: relative;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
  width: auto;
  z-index: 2;
}

.header__submenus.is-visible {
  opacity: 1;
  visibility: visible;
}

.header__submenu {
  display: none;
  padding: 10px;
}

.header__submenu.is-visible {
  display: block;
}

.header__submenu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__submenu li {
  margin: 8px 0;
}

.header__submenu li .header__link--disabled,
.header__submenu li a {
  color: var(--bg);
  display: block;
  font-family: Founders-Grotesk-Regular, sans-serif;
  font-size: 17px;
  padding: 6px 15px;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.header__submenu li .header__link--disabled:hover,
.header__submenu li a:hover {
  color: var(--active);
  transform: translateX(5px);
}

.header__search {
  cursor: pointer;
  padding: 10px;
  transition: color 0.2s ease;
}

.header__search:hover {
  color: var(--active);
}

.header__megamenu {
  background-color: var(--bg-secondary);
  display: flex;
  height: 0;
  justify-content: center;
  left: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: auto;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  visibility: hidden;
  width: 100%;
  z-index: 101;
}

.header__megamenu.is-active {
  height: auto;
  min-height: 300px;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.header__megamenu-content {
  height: 100%;
  margin: 0 auto;
  max-width: 1440px;
  padding: 30px 15px;
  position: relative;
  width: 100%;
}

.mobile-menu {
  background: #1f2435;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: none;
  height: calc(100vh - 56px);
  left: 0;
  overflow-y: auto;
  position: fixed;
  top: 56px;
  width: 100%;
  z-index: 99;
}

.mobile-menu.is-active {
  display: block;
}

.mobile-menu__nav {
  padding: 10px 0;
}

.mobile-menu__list,
.mobile-menu__subcategories,
.mobile-menu__submenu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu__item {
  border-bottom: 1px solid #fffeff;
}

.mobile-menu__item,
.mobile-menu__subcategory,
.mobile-menu__submenu-item {
  position: relative;
}

.mobile-menu__item.has-submenu > .mobile-menu__item-text,
.mobile-menu__item.has-submenu > .mobile-menu__submenu-text,
.mobile-menu__subcategory.has-submenu > .mobile-menu__item-text,
.mobile-menu__subcategory.has-submenu > .mobile-menu__submenu-text,
.mobile-menu__submenu-item.has-submenu > .mobile-menu__item-text,
.mobile-menu__submenu-item.has-submenu > .mobile-menu__submenu-text {
  padding-right: 50px;
  position: relative;
}

.mobile-menu__toggle {
  cursor: pointer;
  display: block;
  height: 16px;
  position: relative;
  transition: transform 0.3s ease;
  width: 16px;
}

.mobile-menu__toggle-wrapper {
  align-items: center;
  border-radius: 100%;
  display: flex;
  height: 40px;
  justify-content: center;
  margin-right: -12px;
  width: 40px;
}

.mobile-menu__toggle:after,
.mobile-menu__toggle:before {
  background-color: #fff;
  content: "";
  height: 1px;
  position: absolute;
  top: 50%;
  transition: all 0.3s ease;
  width: 7px;
}

.mobile-menu__toggle:before {
  left: 2px;
  transform: rotate(45deg);
}

.mobile-menu__toggle:after {
  right: 2px;
  transform: rotate(-45deg);
}

.mobile-menu__toggle.is-active {
  transform: rotate(180deg);
}

.mobile-menu__toggle.is-active:after,
.mobile-menu__toggle.is-active:before {
  background-color: #e5f523;
}

.mobile-menu__item-text,
.mobile-menu__submenu-text {
  align-items: center;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-family: Founders-Grotesk-Regular, sans-serif;
  font-size: 17px;
  font-weight: 500;
  gap: 14px;
  padding: 15px;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mobile-menu__item-text.is-active,
.mobile-menu__item-text:hover,
.mobile-menu__submenu-text.is-active,
.mobile-menu__submenu-text:hover {
  background-color: hsla(0, 0%, 100%, 0.03);
  color: #e5f523;
}

.mobile-menu__item-text {
  text-transform: uppercase;
}

.mobile-menu__submenu-text {
  font-weight: 300;
}

.mobile-menu .header__link--disabled.mobile-menu__item-text,
.mobile-menu .header__link--disabled.mobile-menu__submenu-text,
.mobile-menu a.mobile-menu__item-text,
.mobile-menu a.mobile-menu__submenu-text {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.mobile-menu__submenu {
  background: #282f45;
  display: none;
}

.mobile-menu__submenu.is-active {
  display: block;
}

.mobile-menu__subcategories {
  background: #323a55;
  display: none;
  padding-left: 15px;
}

.mobile-menu__subcategories.is-active {
  display: block;
}

.mobile-menu__subcategory .header__link--disabled,
.mobile-menu__subcategory a {
  color: var(--bg);
  display: block;
  font-size: 17px;
  padding: 12px 15px 12px 20px;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu__subcategory .header__link--disabled:hover,
.mobile-menu__subcategory a:hover {
  color: var(--active);
  transform: translateX(5px);
}

.mobile-menu__search {
  background: var(--bg-secondary);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: none;
  left: 0;
  padding: 15px;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 110;
}

.mobile-menu__search.is-active {
  display: block;
}

.mobile-menu__search form {
  position: relative;
}

.mobile-menu__search form input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: var(--bg-secondary);
  border: none;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
  color: var(--bg);
  font-size: 17px;
  padding: 12px 40px 12px 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.mobile-menu__search form input::-moz-placeholder {
  color: hsla(0, 0%, 100%, 0.5);
  opacity: 1;
}

.mobile-menu__search form input::placeholder {
  color: hsla(0, 0%, 100%, 0.5);
  opacity: 1;
}

.mobile-menu__search form input:focus {
  background: inherit;
  border-bottom: 1px solid var(--bg);
  color: var(--bg);
  outline: none;
}

.mobile-menu__search form input:focus-visible {
  outline: none;
}

.mobile-menu__search form input:-webkit-autofill,
.mobile-menu__search form input:-webkit-autofill:focus,
.mobile-menu__search form input:-webkit-autofill:hover {
  -webkit-text-fill-color: var(--bg);
  -webkit-box-shadow: inset 0 0 0 1000px var(--bg-secondary);
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

.mobile-menu__search form button {
  background: none;
  border: none;
  color: hsla(0, 0%, 100%, 0.5);
  cursor: pointer;
  left: 10px;
  padding: 8px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu__search form button:hover {
  color: var(--active);
}

.mobile-menu__search form button:focus {
  outline: none;
}

.mobile-menu__search form button i {
  align-items: center;
  color: var(--bg);
  display: flex;
  font-size: 17px;
  justify-content: center;
}

.mobile-menu__blog-button {
  display: flex;
  text-align: center;
}

.mobile-menu__blog-button .header__link--disabled,
.mobile-menu__blog-button a {
  background-color: transparent;
  display: inline-block;
  padding: 10px 15px;
}

.mobile-menu__blog-button .header__link--disabled span,
.mobile-menu__blog-button a span {
  color: var(--active);
  display: inline-block;
  font-family: Founders-Grotesk-Regular, sans-serif;
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
}

.mobile-menu input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.mobile-toggle__bar {
  background: var(--bg);
  display: block;
  height: 2px;
  margin: 5px 0;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  width: 24px;
}

.mobile-toggle__bar:first-child {
  margin-top: 0;
}

.mobile-toggle__bar:last-child {
  margin-bottom: 0;
}

.is-active .mobile-toggle__bar:first-child {
  transform: translateY(7px) rotate(45deg);
}

.is-active .mobile-toggle__bar:nth-child(2) {
  opacity: 0;
}

.is-active .mobile-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.megamenu__section {
  align-items: flex-start;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  max-width: 1440px;
  min-height: 300px;
  opacity: 0;
  pointer-events: none;
  position: relative;
  transform: translateY(8px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0s linear cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
  visibility: hidden;
  width: 100%;
  will-change: transform, opacity;
}

.megamenu__section.is-active {
  height: auto;
  opacity: 1;
  pointer-events: auto;
  position: relative;
  transform: translateY(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear;
  visibility: visible;
}

.megamenu__wrapper {
  align-items: flex-start;
  display: flex;
  margin: 0 auto;
  max-width: 1440px;
  padding: 0 15px;
  position: relative;
  width: 100%;
}

.megamenu__primary {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  max-height: none;
  min-width: 200px;
  overflow: visible;
  position: relative;
  z-index: 2;
}

.megamenu__primary ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
}

.megamenu__secondary {
  min-width: 200px;
  padding-left: 40px;
  position: relative;
}

.megamenu__secondary .secondary-content {
  background-color: var(--bg-secondary);
  border-radius: 4px;
  left: 0;
  min-width: 200px;
  opacity: 0;
  padding-left: 40px;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: translateX(-10px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0s linear cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
  visibility: hidden;
  white-space: nowrap;
  z-index: 102;
}

.megamenu__secondary .secondary-content.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear;
  visibility: visible;
}

.form_content h5 span {
  color: var(--active); 
}

.sub-form__description {
  font-size: 16px;
  color: var(--light);
  margin-bottom: 25px;
}

.form_group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.form_item {
  flex: 1 1 calc(50% - 10px);
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form_item label {
  font-size: 14px;
  font-weight: 600;
  color: var(--light);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.form_item input {
  padding: 12px 15px;
  border: 2px solid var(--border-line);
  border-radius: 6px;
  font-size: 15px;
  color: var(--text);
  transition: all 0.3s ease;
  background: transparent;
}

.form_item input:focus {
  border-color: var(--active);
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
  outline: none;
}

.btn_submit {
  display: inline-block;
  padding: 14px 40px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  background: linear-gradient(135deg, var(--btn-first), var(--active));
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: all 0.3s ease;
  margin-bottom: 15px;
}

.btn_submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 204, 0, 0.5);
}

.custom-checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-size: 13px;
  color: var(--light);
  gap: 10px;
}

.custom-checkbox-wrapper input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--active);
  cursor: pointer;
}

.custom-checkbox-wrapper a {
  color: var(--link);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.custom-checkbox-wrapper a:hover {
  color: var(--active);
}
.megamenu__secondary .secondary-content ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
}

.megamenu__item {
  cursor: pointer;
  padding: 0;
  position: relative;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.megamenu__item.is-active .megamenu__item-text {
  color: var(--active);
}

.megamenu__item.is-active
  .megamenu__item-text.has-submenu
  .megamenu__toggle-line {
  background-color: var(--active);
  width: 45px;
}

.megamenu__item.is-active
  .megamenu__item-text.has-submenu
  .megamenu__toggle-line:after {
  transform: translate(5px, -50%);
}

.megamenu__item-text {
  color: var(--bg);
  display: block;
  font-family: Founders-Grotesk-Regular, sans-serif;
  font-size: 17px;
  padding: 8px 15px;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.megamenu__item-text.has-submenu {
  align-items: center;
  display: flex;
  position: relative;
}

.megamenu__item-text.has-submenu .megamenu__toggle-line {
  background-color: transparent;
  border-radius: 4px;
  display: inline-block;
  height: 2px;
  margin-left: 8px;
  position: relative;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  vertical-align: middle;
  width: 0;
}

.megamenu__item-text.has-submenu .megamenu__toggle-line:after {
  color: inherit;
  content: ">";
  font-size: 17px;
  left: 100%;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.megamenu__item:hover .megamenu__item-text {
  color: var(--active);
}

.megamenu__item:hover .has-submenu .megamenu__toggle-line {
  background-color: var(--active);
  width: 45px;
}

.megamenu__item:hover .has-submenu .megamenu__toggle-line:after {
  transform: translate(5px, -50%);
}
.header__list:hover ~ .header__menu-container,
.header__list:focus ~ .header__menu-container {
  opacity: 1 !important;
  visibility: visible !important;
  height: auto !important;
  min-height: 200px !important;
  transition: opacity 0.3s, visibility 0.3s, height 0.3s;
}
.megamenu__subitem {
  padding: 0;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.megamenu__subitem-link {
  color: var(--bg);
  display: block;
  font-size: 17px;
  padding: 6px 15px;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.megamenu__subitem-link:hover {
  color: var(--active);
  transform: translateX(5px);
}

.megamenu__search {
  margin: 0 auto;
  padding-bottom: 15px;
  padding-left: 15px;
  width: 100%;
}

.megamenu__search-trending {
  padding-bottom: 15px;
  padding-top: 15px;
}

.megamenu__search-trending-title {
  color: var(--bg);
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 15px;
}

.megamenu__search-trending-link {
  color: hsla(0, 0%, 100%, 0.7);
  display: block;
  font-size: 17px;
  padding: 5px 0;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.megamenu__search-trending-link:hover {
  color: #e5f523;
  text-decoration: none;
  transform: translateX(5px);
}

.megamenu__search-trending-columns {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 75em) {
  .megamenu__search-trending-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 62em) {
  .megamenu__search-trending-columns {
    grid-template-columns: 1fr;
  }
}

.megamenu__search-trending-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.megamenu__search-trending-item {
  margin-bottom: 10px;
}

.megamenu__search-trending-item:last-child {
  margin-bottom: 0;
}

.megamenu__search-trending-link {
  align-items: center;
  display: flex;
  gap: 10px;
}

.megamenu__links-icon {
  height: 100%;
  max-height: 20px;
  max-width: 20px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  width: 100%;
}

.search-container {
  margin: 0 auto;
  max-width: 600px;
  padding: 20px;
  width: 100%;
}

.search-wrapper {
  position: relative;
  width: 100%;
}

.search-wrapper .megamenu__search-button {
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  left: 15px;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.search-wrapper .megamenu__search-button:hover .search__icon {
  color: var(--active);
}

.search-wrapper .search__icon {
  color: hsla(0, 0%, 100%, 0.5);
  font-size: 17px;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-input {
  background: hsla(0, 0%, 100%, 0.1);
  border: 1px solid hsla(0, 0%, 100%, 0.2);
  border-radius: 6px;
  color: var(--bg);
  padding: 12px 20px 12px 50px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.search-input:focus {
  background: hsla(0, 0%, 100%, 0.15);
  outline: none;
  transform: translateY(-1px);
}

.search-input::-moz-placeholder {
  color: hsla(0, 0%, 100%, 0.5);
  padding-left: 5px;
}

.search-input::placeholder {
  color: hsla(0, 0%, 100%, 0.5);
  padding-left: 5px;
}

.search-results {
  margin-top: 20px;
  min-height: 200px;
}

.sub-menu {
  display: none;
}

.sub-menu.active {
  display: block;
}

.search-input {
  background: transparent;
  font-family: Founders-Grotesk-Regular, sans-serif;
  font-size: 17px;
  width: 100%;
}

.search-input:focus {
  background: transparent;
  border-color: var(--active);
  transform: none;
}

.admin-bar .header {
  top: 32px;
}

.info_autor {
  display: flex;
  gap: 10px;
  justify-content: flex-end;

  align-items: center;
  margin: 0 0 20px;
}
.autor_img {
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 4px 1px var(--shadow);
}
.autor_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.info_start .info_autor p {
  font-size: 12px;
  margin: 0;
}
.info_autor a {
  color: var(--link);
}
.info_start p {
  margin: 0 0 20px;
}
/* card */

.started_header {
  background-color: var(--bg-secondary);
  border-bottom: 3px solid var(--bg);
  border-radius: var(--border-s);
  color: var(--bg);
  display: grid;
  font-weight: 700;
  grid-template-columns: 2.5em 1.5fr repeat(5, 1fr);
  grid-gap: 0.5em 2em;
  padding: 15px;
  place-items: center;
  position: relative;
  text-align: center;
  z-index: 2;
  margin-top: 20px;
}
.started_item {
  display: block;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  padding: 1em;
  transition: all 0.3s linear;
  border-radius: var(--border-s);
  box-shadow: 0 0 15px rgba(66, 116, 41, 0.5);
  color: var(--text-cart);
  margin-bottom: 20px;
}
.started_item:hover {
  background: var(--bg-active);
}
/* .started_item:first-child {
  padding-top: 3em;
} */
.started_items {
  /* margin-top: -2em; */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.started_rank {
  color: var(--btn-first);
  font-size: 2.1875em;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.card_item {
  /* display: grid;
  grid-template-columns: 2.5em 1.5fr repeat(5, 1fr); */
  grid-gap: 0.5em 2em;
  display: flex;
  flex-direction: column;
  align-items: stretch; 
  padding-bottom: 10px;
  color: var(--title);
  position: relative;
}
.card_item > div {
  position: relative;
  height: 100%;
}
.card_item > div:not(:first-child)::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: -1em;
  background: var(--border-line);
}
.started_items > a:first-child {
  background-color: var(--bg-active);
  border: 2px solid var(--active);
}

.started_logo img {
  max-width: 210px;
  display: block;
  width: 100%;
  margin: 0 auto;
}
.started_logo {
  text-align: center;
  font-size: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}
.started_deposit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  align-items: center;
  flex-wrap: wrap;
}
.started_deposit li {
  background: var(--bg);
  width: 45px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  box-sizing: border-box;
}
.started_deposit img {
  display: block;
  width: 100%;
  max-width: 70px;
}
.started_bonus {
  text-align: center;
  display: flex;
  flex-direction: column;
  color: var(--title);
  padding: 0 0 10px;  
}
.started_logo p{
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.bonus_num {
  font-size: 50px;
  color: var(--line);
  font-weight: 800;
  line-height: 1;
  margin: 10px 0;
}
.started_payout {
  position: relative;
  color: var(--title);
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.card_item .started_deposit li {
  width: max-content;
  height: auto;
}
.gambling-operator__speed-meter {
  background-image: url(../images/speed-meter.png);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  height: 25px;
  position: relative;
  width: 45px;
}
.gambling-operator__speed-meter:before {
  background-image: url(../images/speed-needle.png);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: -5px;
  content: "";
  height: 14px;
  left: 9px;
  position: absolute;
  transform-origin: 14px 7px;
  width: 20px;
}
.started_payout_90 .gambling-operator__speed-meter:before {
  transform: rotate(var(--rotation, 90deg));
}
.started_payout_120 .gambling-operator__speed-meter:before {
  transform: rotate(var(--rotation, 120deg));
}
.started_payout_180 .gambling-operator__speed-meter:before {
  transform: rotate(var(--rotation, 180deg));
}
.started_products img {
  width: 40px;
  display: block;
}
.gambling-operator__product {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
}
.started_products {
  display: flex;
  gap: 15px;
  height: auto !important;
  flex-wrap: wrap;
  justify-content: center;
  color: var(--title);
  padding: 10px;
  align-items: flex-end;
}
.started_button p {
  display: inline-block;
  text-decoration: underline;
}
.fantom_btn {
  background-color: var(--cart-button);
  border-bottom: 3px solid var(--active);
  border-radius: var(--border-m);
  color: #fff;
  display: block;
  font-size: 1.125em;
  font-weight: 700;
  padding: 0.5em;
  box-sizing: border-box;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  width: 90%;
  transition: all 0.3s linear;
}
.started_items > a:hover .fantom_btn {
  background-color: var(--bg-secondary);
  color: var(--bg);
  border-bottom-color: var(--active);
}
.started_items > a:first-child .fantom_btn {
  background-color: var(--bg-secondary);
  border-bottom-color: var(--bg);
  transition: all 0.3s linear;
}
.started_items > a:first-child:hover .fantom_btn {
  background-color: var(--bg);
  color: var(--btn-first);
}
.started_button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.started_item > p {
  padding-top: 1em; 
  border-top: 1px solid var(--border-line);
  padding-left: 10px;
  border-left: 1px solid var(--active);
  border-radius: 10px;
}
.full_btn {
  align-items: center;
  background-color: var(--bg-secondary);
  border-radius: var(--border-s);
  color: var(--bg);
  display: flex;
  font-size: 1em;
  text-transform: uppercase;
  max-width: 500px;
  font-weight: 700;
  justify-content: center;
  padding: 0.9em;
  text-align: center;
  gap: 6px;
  margin: 30px auto;
}
.full_btn::before {
  background-image: url(../images/icon-double-chevron-down.png);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 1em;
  width: 1em;
}
.full_btn::after {
  background-image: url(../images/icon-double-chevron-down.png);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 1em;
  width: 1em;
}
.emphasized-box {
  background-color: var(--border-line);
  font-size: 16px;
  line-height: 24px;
  margin: 15px 0;
  overflow: hidden;
  padding: 15px 150px;
  position: relative;
  box-sizing: border-box;
  text-align: center;
  max-width: 1100px;
  width: 100%;
  margin: 30px auto;
}
.emphasized-box:before {
  bottom: -10px;
  content: url(../images/emphasis-left.png);
  left: -145px;
  position: absolute;
}
.emphasized-box:after {
  bottom: -10px;
  content: url(../images/emphasis-right.png);
  position: absolute;
  right: -238px;
}
ul.checkBullet li:before {
 
  border-width: 0.5px 2px; 
  content: "";
  width: 30px;
  height: 30px;
  background: url('data:image/svg+xml,<svg id="Layer_1" style="enable-background:new 0 0 612 792;" version="1.1" viewBox="0 0 612 792" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><style type="text/css">.st0{clip-path:url(%23SVGID_2_);fill:none;stroke:%2341AD49;stroke-width:45;}.st1{fill:%2341AD49;}</style><g><g><defs><rect height="512" id="SVGID_1_" width="512" x="50" y="140"/></defs><clipPath id="SVGID_2_"><use style="overflow:visible;" xlink:href="%23SVGID_1_"/></clipPath><path class="st0" d="M306,629.5c128.8,0,233.5-104.7,233.5-233.5S434.8,162.5,306,162.5S72.5,267.2,72.5,396 S177.2,629.5,306,629.5L306,629.5z"/></g><polygon class="st1" points="421.4,271 241.9,450.5 174.9,383.5 122,436.4 241.9,556.2 257.3,540.8 257.4,540.8 474.3,323.9 421.4,271 "/></g></svg>')
    no-repeat;
  background-size: contain;
  display: inline-flex;
  align-content: center;
  justify-content: center;
  font-size: 20px;
  margin-left: 0px;
  margin-right: 5px;
  vertical-align: middle;
}
.container > p,
.criteria_section p,
.important_section p,
.last_block p {
  margin-bottom: 20px;
}
.greenBullet {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 580px;
  gap: 10px;
  font-weight: 600;
  margin: 0 auto 40px;
}
.checklist_box h2 {
  text-transform: uppercase;
  border-bottom: 2px solid var(--line);
  clear: both;
  display: table;
 
  font-size: 19px;
  margin: 10px auto 20px;
  padding: 7px 0;
  text-align: center;
  width: auto;
}
.greenBullet li{
  padding: 10px;
  background: var(--border-line);
  border-radius: var(--border-m);
}
.checklist{ 
  padding: 40px 0;
}
.checklist_box h2::before {
  border-bottom: 3px solid var(--line);
  bottom: -4px;
  content: "";
  left: 37.5%;
  position: absolute;
  right: auto;
  width: 25%;
}

/* reviews_section */
.reviews_section img {
  display: block;
  width: 100%;
  margin-bottom: 20px;
}
.expandable-list-container {
  background-color: var(--breadcrumbs);
  border: 3px solid var(--line);
  padding:20px  10px;
}
.expandable-list-container ul {
  align-items: flex-start;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin: 0 auto;
  padding: 0 0 0 40px;
}
.expandable-list-container ul li {
  list-style: disc;
}
.expandable-list-container ul li::marker {
  color: var(--line);
}
.expandable-list-container ul li a {
  color: var(--link);
  font-weight: 600;
}

/* Add styles */
.regular {
  gap: 12px;
  transition: all 0.3s linear;
  max-height: 170px;
  overflow: hidden;
}
.show.regular {
  max-height: 10000px;
}

.started_header li:nth-child(1) { order: 1; }   /* Rank */
.started_header li:nth-child(2) { order: 8; }   /* Online Casino */
.started_header li:nth-child(3) { order: 12; }  /* Deposit Methods */
.started_header li:nth-child(4) { order: 9; }  /* Deposit Bonus */
.started_header li:nth-child(5) { order: 10; }  /* Payout Speed */
.started_header li:nth-child(6) { order: 24; }  /* Products */
.started_header li:nth-child(7) { order: 28; }  
 
.started_rank { order: 1; display: none; }
.started_logo { order: 8; }
.started_deposit { order: 12; }
.started_bonus { order: 9; }
.started_payout { order: 10; }
.started_products { order: 24; }
.started_button { order: 28; }
.started_header{
  display: none;
}
/* -------- */
.list_btn {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  justify-content: center;
  line-height: 48px;
  max-width: 162px;
  width: 100%;
  align-items: center;
  background: linear-gradient(-80deg, var(--bg-secondary) 30%, var(--cart-button) 0);
  border-radius: 5px;
  cursor: pointer;
  color: var(--bg);
  display: flex;
  margin: 20px auto;
  flex-direction: row;
  transition: all 0.3s linear;
}
.list_btn:hover {
  background: var(--bg-secondary);
  color: var(--bg);
}
.expandable-list-container {
  margin-bottom: 40px;
}
.form_box {
  background: var(--bg-secondary);
  width: 90%;
  max-width: 800px;
  margin: 0 auto 30px;
  border-radius: var(--border-m);
  /* display: grid; */
  align-items: center;
  grid-template-columns: 1fr 1.3fr;
}
.form_box img{
  display: none;
}
.form_content {
  padding: 3rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.form_content h5 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
  color: var(--bg);
}
.form_content h5 span {
  color: var(--active);
  font-size: 0.9em;
  display: block;
}
.sub-form__description {
  color: var(--bg);
  font-size: 12px;
  text-align: center;
  margin: 0 0 20px;
}
.form_item label {
  color: var(--bg);
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  text-align: left;
}
.form_item input {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--bg);
  border-radius: var(--border-s);
  box-sizing: border-box;
}
.form_group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.custom-checkbox-wrapper input {
  cursor: pointer;
}
.custom-checkbox-wrapper {
  color: var(--bg);
  font-size: 14px;
}
.custom-checkbox-wrapper a {
  color: var(--active);
}
.btn_submit {
  align-items: center;
  background-color: var(--btn-first);
  border: none;
  border-radius: var(--border-s);
  color: var(--text);
  cursor: pointer;
  display: flex;
  font-weight: 600;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  position: relative;
  transition: 2s linear all;
  width: 100% !important;
  margin-top: 20px;
}
.btn_submit:hover {
  background: var(--active);
}

/* footer */
.footer {
  background: linear-gradient(145deg, #0f172a 0%, #1e293b 40%, #101b65 100%);
  position: relative;
  padding: 60px 0 25px;
  color: #f1f1f1;
  overflow: hidden;
}
 
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, #ffd700, #ff7b00, #ff0000, #ff7b00, #ffd700);
  background-size: 300% 100%;
  animation: moveStripe 8s linear infinite;
  border-radius: 0 0 10px 10px;
}
 
.footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
}
 
@keyframes moveStripe {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

.footer>div{
  display: flex;
  flex-direction: column;
}
.footer_discription{
  order: 3;
}
.copy{
  order: 6;
}
.footer_logos{
  order: 4;
}
.footer_center{
  order: 1;
}
.footer_nav {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  order: 2;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.footer_nav a {
  color: var(--bg);
  padding: 10px 20px;
  box-sizing: border-box;
  display: block; 
  text-transform: uppercase;
  background: var(--bg-secondary);
  font-weight: 700;
  transition: all 0.3s linear;
}
.footer_nav a:hover {
  color: var(--line);
}
.footer_center { 
  margin: 0 auto 30px;
  display: flex;
  justify-content: space-between; 
  align-items: center;
  gap: 40px;
}
.footer_center img {
  display: block;
  width: 100%;
}
.footer_center ul {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}
.footer_center ul img {
  width: 20px;
}
.footer_discription {
  max-width: 1000px;
  text-align: center;
  margin: 0 auto 50px;
  padding-top: 10px;
  border-top: 1px solid var(--text);
}
.footer_discription h4 {
  font-weight: 700;
  color: var(--bg);
}
.footer_discription p {
  color: var(--bg);
  font-size: 0.9rem;
  margin: 0;
}
.footer_logos{
  display: flex;
  flex-direction: column;
}
.footer_logos p {
  color: var(--bg);
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
}
.footer_logos ul {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
}
.footer_logos ul  a{
  border-radius: var(--border-m);
  overflow: hidden;
  display: inline-block;
}
footer a {
  transition: all 0.3s linear;
}
footer a:hover {
  opacity: 0.7;
}
.footer_bottom {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.copy {
  text-align: center;
  color: var(--bg);
  font-size: 14px;
  margin-top: 30px;
}
.title_mob {
  display: none;
}
.header__menu-container {
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.header__menu-container.active {
  opacity: 1;
  visibility: visible;
  height: auto;
}

.header__subcategory {
  flex-wrap: wrap;
  gap: 20px;
  padding-left: 18%;
  padding-top: 30px;
}
.header__subcategory a {
  color: var(--bg);
}
.header__subcategory a:hover {
  color: var(--active);
}
.header__subcategory.active {
  display: flex;
}
.header__subcategory {
  display: none;
}
.header__menu-container {
  background: var(--bg-secondary);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 100;
}
header {
  position: relative;
}

@media (max-width: 992px) {
  .header__main-menu {
    display: flex;
    flex-direction: column;
  }
  .header__menu-container {
    position: static;
  }
}

/* start */
.main_screen {
  background: url(../images/home-banner-971x446.webp) no-repeat;
  background-size: cover;
  background-position: center;
  padding: 3.4em 25px;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main_screen h1 {
  font-size: 70px;
  color: var(--bg);
  line-height: 1.1;
  font-weight: 400;
  margin: 0 0 30px;
  position: static;
  border: none;
  text-transform: uppercase;
}
.main_screen p {
  color: var(--bg);
  margin-bottom: 20px;
}
.trust_box__content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  color: var(--bg);
  text-transform: uppercase;
  font-weight: 17px;
}
.trust_box__content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.line_block {
  padding: 20px 0;
  background: var(--bg-secondary);
  color: var(--bg);
}
.trending_now__heading {
  text-transform: uppercase;
  font-weight: 500;
}
.trending_now__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 30px;
}
.trending_now__links{
  justify-content: center;
}
.trending_now__links a {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--bg);
  font-size: 14px;
}
.trending_now__links img {
  width: 20px;
  filter: invert(1);
  display: block;
}
.trending_now__links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.screen_contain {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.slotsbox__image {
  background-color: var(--border-line);
  overflow: hidden;
  position: relative;
  text-align: center;
  height: 100%;
}
.slotsbox__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: center;
}
.gambling_categoty_item {
  display: grid;
  grid-template-columns: 220px 1fr;
  border: 1px solid var(--light);
  border-radius: 10px;
  margin: 0 auto 30px; 
  background: var(--bg);
  box-shadow: 0 1px 10px var(--light);
  overflow: hidden;
}
.gambling_categoty_item > div:not(.slotsbox__image) {
  padding: 25px 35px;
}
.left_info_box {
  display: flex;
  flex-direction: column;
}

/* Исходя из исходного порядка: */
.left_info_box > :nth-child(1) { order: 3; }  /* .left_top_block */
.left_info_box > :nth-child(2) { order: 5; }  /* .comparing_slot */
.left_info_box > :nth-child(3) { order: 6; }  /* первый .gambling_categoty */
.left_info_box > :nth-child(4) { order: 8; }  /* .block_how */
.left_info_box > :nth-child(5) { order: 1; }  /* .trust_block */
.left_info_box > :nth-child(6) { order: 9; }  /* .rounded-corners-cta */
.left_info_box > :nth-child(7) { order: 17; } /* .slot_questions */
.left_info_box > :nth-child(8) { order: 11; } /* .sing_up_block */
.left_info_box > :nth-child(9) { order: 12; } /* .site_bonus */
.left_info_box > :nth-child(10) { order: 4; } /* .stay_safe */
.left_info_box > :nth-child(11) { order: 7; } /* второй .gambling_categoty (blacklist) */
.left_info_box > :nth-child(12) { order: 13; } /* .responsible_block */
.left_info_box > :nth-child(13) { order: 10; } /* .read_more */
.gambling_categoty_item h3 {
  color: var(--text);
  padding: 0;
  background: transparent;
}
.gambling_categoty_item h3::after{
  content: none;
}
.rounded-corners-cta {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: 21px 0 40px;
}
.rounded-corners-cta__wrapper {
  border-radius: 10px;
  height: 248px;
  overflow: hidden; 
}
.rounded-corners-cta__primary-image-container {
  height: 120px;
  overflow: hidden;
  width: 100%;
}
.rounded-corners-cta__primary-image {
  -o-object-fit: cover;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
.rounded-corners-cta__description {
  align-items: center;
  border-bottom: 1px solid var(--border-line);
  border-left: 1px solid var(--border-line);
  border-radius: 0 0 10px 10px;
  border-right: 1px solid var(--border-line);
  color: var(--title);
  display: flex;
  font-size: 20px;
  background: var(--breadcrumbs);
  gap: 10px;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  height: 77px;
  box-sizing: border-box;
  justify-content: center;
  overflow: hidden;
  padding: 16px;
}
.howtobox {
  grid-column-gap: 25px;
  display: grid;
  grid-template-areas:
    "num title"
    "photo title"
    "photo textcontent";
  grid-template-columns: 2fr 5fr;
  margin-bottom: 40px;
  padding: 0 25px 0 0;
  border: 1px solid var(--border-line);
  border-radius: 10px;
  overflow: hidden;
}
.sing_up_block {
  margin: 40px 0;
}
.howtobox__num {
  grid-area: num;
  height: 0;
}
.howtobox__num .step-number {
  background-color: var(--link);
  border-radius: 10px 0;
  bottom: 0;
  color: var(--bg);
  display: block;
  font-size: 20px;
  font-weight: 700;
  height: 40px;
  padding-top: 8px;
  position: relative;
  right: 0;
  text-align: center;
  width: 40px;
}
.howtobox__header {
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
  grid-area: title;
  line-height: 27px;
  padding: 25px 20px 20px;
}
.howtobox__image {
  display: flex;
  grid-area: photo;
  margin-bottom: 20px;
  padding-bottom: 15px;
  background: var(--breadcrumbs);
}
.howtobox__image img {
  height: 150px;
  margin: auto;
  width: 150px;
}
.howtobox__content {
  padding: 0 20px 20px;
}
.howtobox__content li {
  list-style: disc;
  margin: 0 0 10px 20px;
}
.site_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.recent-blogs-link a {
  margin: 30px auto;
  text-align: center;
}

/* card_item */

.title_fix_card div p {
 margin: 0;
 color: var(--bg);
 font-size: 18px;
}
.title_fix_card{
  background: var(--bg-secondary);
}
.item_cart_bonus {
  font-weight: 700;
  font-size: 14px;
  padding: 20px 15px;
  text-align: center;
}
.item_cart_bonus span {
  color: var(--line);
  display: block;
}
.flag span {
  color: var(--cart-button);
  width: 20px;
  height: 20px;
  display: flex;
  font-weight: 700;
  line-height: 0;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  padding-bottom: 2px;
  box-sizing: border-box;
  overflow: hidden;
  border: 2px solid var(--cart-button);
}
.flag {
  display: none;
  align-items: center;
  gap: 10px;
}
.title_fix_card_group {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}
.logo_card img {
  display: block;
  height: 70px;
}
.logo_card {
  padding: 0 7%;
  background: var(--bg-secondary);
}
.button_play_now {
  background: var(--play-button);
  border-radius: 22px;
  box-shadow: 0 3px var(--cart-button);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  height: 44px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  width: 190px;
  transition: all 0.3s linear;
}
.button_play_now:hover {
  background: var(--cart-button);
}
.review-ratingbox__starrating {
  align-content: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 10px;
}
.star-rating {
  display: inline-block;
  height: 47px;
  margin: auto;
  position: relative;
  width: 15.3em;
}
.star-rating__overlay {
  background: url(../images/review-star-icon.png);
  background-position: 0;
  background-size: 49px;
  height: 98.5%;
  left: 0;
  position: absolute;
  top: 0;
}
.star-rating__underlay {
  filter: grayscale(1);
  width: 100%;
}
.star-rating__overlay {
  z-index: 1;
}
.review_cart {
  align-items: center;
  border: 2px solid var(--light);
  border-radius: 20px;
  display: flex;
  background: var(--border-line);
  padding: 20px;
  gap: 10px;
  flex-direction: column;
  justify-content: center;
  max-width: 300px;
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
}
.review_logo {
  margin-bottom: 20px;
  display: block;
  max-width: 150px;
}
.review_logo img {
  display: block;
  width: 100%;
}
.info_content {
  display: flex;
 flex-direction: row-reverse;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}
.review_cart p {
  font-weight: 700;
}

.review-table-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 20px auto;
  max-width: 90%;
}
table {
  width: 100%;
}

th {
  background-color: var(--bg-secondary);
  border-right: 5px solid var(--line);
  color: var(--bg);
  padding: 15px 0;
  width: 225px;
}
.review-table-container td {
  border: 1px solid var(--border-line);
  font-size: 12px;
  font-weight: 700;
  height: 46px;
  padding-left: 8px;
  text-align: left;
}
td {
  border: 1px solid var(--border-line);
  font-size: 12px;
  font-weight: 700;
  height: 46px;
  padding-left: 8px;
  vertical-align: middle;
  text-align: left;
}
.primary {
  margin-bottom: 40px;
}
table.primary tbody tr:nth-child(odd) {
  background: var(--breadcrumbs);
}
.primary thead,
.primary tbody {
  width: 100%;
  display: table;
  text-align: center;
}
.primary td {
  width: 24%;
  padding: 10px;
  box-sizing: border-box;
}
.primary td {
  text-align: center;
  font-weight: 800;
  font-size: 14px;
}
td .review-table-button a {
  color: #fff;
  display: inline-block;
  font-weight: 300;
  height: 100%;
  padding-top: 5px;
  text-decoration: none;
  text-transform: uppercase;
  width: 100%;
}
td .review-table-button {
  background-color: var(--line);
  border-radius: 18px;
  box-shadow: 0 2px #557227;
  display: inline-block;
  height: 30px;
  margin: 5px auto auto;
  text-align: center;
  width: 110px;
}
.review-proscons {
  border: 1px solid var(--border-line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 900px;
  box-sizing: border-box;
  margin: 40px auto 40px;
}
.review-proscons__pros {
  display: flex;
  flex-direction: column; 
  /* border: 1px solid var(--border-line); */
  padding: 20px;
  background: var(--bg);
}
.review-proscons__pros .pros-title {
  align-self: center;
  background-color: #dbe6c4;
  border: 1px solid var(--line);
  color: var(--line);
  display: flex;
  height: 44px;
  align-content: center;
  justify-content: center;
  margin: 20px;
  width: 100%;
  align-items: center;
}
.review-proscons .prosconsListItem {
  margin: 10px 10px 10px 0;
}
.review-proscons__cons .cons-title {
  align-self: center;
  background-color: #f0c8c8;
  border: 1px solid #a84848;
  color: #a84848;
  display: flex;
  align-content: center;
  justify-content: center;
  height: 44px;
  align-items: center;
  margin: 20px;
  width: 100%;
}
.review-proscons__cons {
  display: flex;
  flex-direction: column;
  background: #fdefef7d ;
  /* margin: 20px; */
  border: 1px solid var(--active-text);
  padding: 20px;
}
.review-table-container{
  display: none;
}
/* Псевдоэлементы для prosconsListItem */
.prosItem.prosconsListItem::before {
  content: "✔";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--line);
  color: var(--bg);
  font-size: 16px;
  margin-right: 8px;
}
.consItem.prosconsListItem::before {
  content: "✔";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--cart-button);
  color: var(--bg);
  font-size: 16px;
  margin-right: 8px;
}
.emphasized-box--green {
  background-color: var(--border-line);
  font-size: 18px;
  line-height: 24px;
  margin: 15px 0;
  box-sizing: border-box;
  overflow: hidden;
  padding: 15px 40px;
  position: relative;
  text-align: center;
  width: 100%;
}
.emphasized-box--green:before {
  bottom: -10px;
  content: url(../images/emphasis-left.png);
  left: -238px;
  position: absolute;
}
.emphasized-box--green:after {
  bottom: -10px;
  content: url(../images/emphasis-right-green.png);
  position: absolute;
  right: -238px;
}
.emphasized-box--green .titleText {
  display: block;
  font-weight: 700;
  padding: 0 0 10px;
}
table.primary {
  display: block;
  margin: 30px 0;
  overflow-x: auto;
  white-space: nowrap;
  width: 100%;
}
th {
  background-color: var(--bg-secondary);
  border-right: 5px solid var(--bg-secondary);
  color: #fff;
  padding: 15px 0;
  width: 225px;
}
table.primary thead tr {
  background: var(--bg-secondary);
  border: 1px solid var(--border-line);
  color: var(--bg);
  font-size: 1em;
  font-size: 0.75em;
  padding: 2px;
  min-height: 30px;
  white-space: nowrap;
  width: 0.1%;
}
.casino_img img {
  display: block;
  max-width: 900px;
  margin: 20px auto 40px;
  width: 100%;
}
.slot_items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}
.slot_item{
  padding: 10px;
  border-radius: var(--border-s);
  background: #f5f7fa;
  box-shadow: 0 1px 10px var(--light);
  text-align: center;
}
.wrapper_card p {
  margin-bottom: 20px;
}
.list_d li {
  list-style: disc;
  margin: 0 0 10px 20px;
}
.list_d li::marker {
  color: var(--line);
}
.title_slot {
  font-weight: 800;
  color: var(--line);
  font-size: 1.2rem;
}
.slot_img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  box-shadow: 0 1px 7px var(--border-line);
  overflow: hidden;
  margin: 0 auto;
  min-width: 150px;
}
.slot_img img {
  max-width: 1000px;
  max-height: 1000px;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.slot_content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 20px;
}
.ram_action img {
  display: block;
  width: 160px;
  margin-bottom: 20px;
}
.review-toc__links a {
  display: inline-block;
  margin-left: 10px;
  text-decoration: underline;
}
.ram_action {
  box-sizing: border-box;
  background: var(--breadcrumbs);
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 30px auto 40px;
  padding: 20px 10px 0;
  text-align: center;
  max-width: 600px;
  position: relative;
  box-shadow: 0 1px 10px var(--active);
  border-radius: var(--border-s);
  width: 100%;
}
/* 
button up */

.back-to-top-area {
  background: var(--border-line);
  border: 1px solid var(--light);
  border-radius: 50px 0 0 50px;
  border-right: 0;
  bottom: 40px;
  right: 0;
  cursor: pointer;
  display: block;
  height: 100px;
  line-height: 1.4;
  padding-bottom: 0;
  position: fixed;
  width: 64px;
  z-index: 9999;
  display: none;
}
#back_to_top_button {
  display: flex;
  padding: 12px 0;
  padding: 20px 0 0 10px;
  flex-direction: column;
  align-items: center;
}
.back-to-top-area span {
  display: block;
  text-align: right;
  font-size: 12px;
}
.below-fold .back-to-top-area a {
  align-items: center;
  color: var(--bg-secondary);
  display: inline-flex;
  flex-direction: column;
  font-size: 12px;
  height: 100%;
  justify-content: center;
  padding-left: 8px;
  position: absolute;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 80ms ease-in;
  width: 100%;
}

/* slot */
.nav_right {
  background: var(--breadcrumbs);
  border: 1px solid #cfd6eb;
  border-radius: 10px;
  padding: 47px;
  box-sizing: border-box;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.102);
}
.nav_right .sub_title {
  border: none;
}
.nav_right .sub_title::before,
.nav_right .sub_title::after {
  content: none;
}
.links__list li a {
  color: var(--link);
  line-height: 1.5;
}
.links__list li::before {
  background-image: url(../images/arrow-right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 15px;
  margin: 0 5px -2px 0;
  width: 10px;
}
.grid_section {
  display: flex;
  flex-direction: row-reverse;
  gap: 10%;
  padding-top: 30px;
  margin: 0 0 40px;
}
.grid_section>div:first-child{
  order: 1;
  max-width: 600px;
}
.grid_section .info_autor{
  justify-content: start;
}
.nav_right{
  order: 2;
}
.date_publick {
  color: var(--text-cart);
}
.title_operators__heading {
  color: var(--bg);
  font-size: 25px;
  font-weight: 800;
  text-shadow: 0 1px 3px var(--bg-secondary);
  letter-spacing: 0.02px;
  text-transform: uppercase;
}
.slot_section {
  background: var( --play-button);
  padding: 42px 0 100px;
}
.slot_section > div {
  max-width: 1200px;
}
.operatorCard__extraDetails-wrapper{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.slot_top_title a {
  color: var(--bg);
  font-weight: 800;
  text-decoration: underline;
}
.slot_top_title {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  gap: 0;
  margin-bottom: 2em;
}
.operator_details {
  padding: 23px;
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  text-align: center;
  background: var(--bg);
  max-width: 332px;
  border-radius: 10px;
}
.operator_details .logo_img{
  order: -1;
}
.topfive_operators {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.star_rating {
  background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='18.911' height='17.986' viewBox='0 0 20.911 19.986'%3E%3Cg id='Group_141' data-name='Group 141' transform='translate(0 0)'%3E%3Cpath id='Path_543' data-name='Path 543' d='M6.84,7.1,0,7.628l5.223,4.447L3.612,18.744l5.844-3.593L15.3,18.744l-1.612-6.668,5.223-4.447L12.072,7.1,9.456.758Z' transform='translate(0 -0.758)' fill='%23FF6B0F'/%3E%3Cpath id='Path_544' data-name='Path 544' d='M503.4,15.15l5.844,3.593-1.612-6.668,5.223-4.447-6.84-.528L503.4.758Z' transform='translate(-493.94 -0.758)' fill='%23FF6B0F'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  height: 24px;
  width: 24px;
}
.details_star {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.87rem;
}
.logo_img {
  display: block;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
  margin-bottom: 15px;
  margin-top: 12px;
  max-width: 300px;
  overflow: hidden;
  width: 90%;
}
.logo_img img {
  max-width: 1000px;
  max-height: 1000px;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.operator_details p {
  font-size: 18px;
  font-weight: 600;
  color: var(--active-text);
  text-shadow: 0 1px 1px var(--active);
}
.operator_details .welcome_bonus {
  text-transform: uppercase;
}
.operators__button {
  background-color: var(--cart-button);
  border-bottom: none;
  border-radius: 10px;
  color: var(--bg);
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 19px;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  text-transform: uppercase;
  margin-top: 20px;
  animation: move 2s ease-in-out infinite;
}
@keyframes move {
  0% {
    transform: scale(1);
  }
   50% {
    transform: scale(1.14);
  }
   100% {
    transform: scale(1);
  }
}
.operator_reviewlink {
  font-size: 14px;
  text-decoration: underline;
  font-weight: 300;
  color: var(--text);
}
.our_blogItitle {
  background-color: var(--bg-secondary);
  border-bottom: 5px solid var(--cart-button);
  border-radius: 10px 10px 0 0;
  font-weight: 700;
  height: 60px;
  display: flex;
  align-items: center;
  align-items: center;
}
.our_blogItitle h3 {
  color: var(--bg);
  margin: 0;
  font-size: 22px;
  box-sizing: border-box;
  font-weight: 500;
  background: transparent;
}
.blog-feed-sidebar__post-container h4 {
  color: var(--title);
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 14px;
  text-decoration: underline;
}
.blog-feed-sidebar__post__image {
  border-radius: 5px;
  height: 70px;
  width: 125px;
  overflow: hidden;
}
.blog-feed-sidebar__post__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.blog-feed-sidebar__post__keepreading {
  color: var(--line);
  display: block;
  font-size: 13px;
  text-decoration: underline;
}
.gr_item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-feed-sidebar__post-container { 
  border: 1px solid var(--border-line);
  border-radius: 0 0 10px 10px;
  background: var(--bg);
}
.blog-feed-sidebar__post {
  padding: 10px;
  border-bottom: 1px solid var(--border-line);
  display: block;
  box-sizing: border-box;
}
.right_info_box {
  max-width: 370px;
}
.simple-operator-cta__logo-link {
  display: block;
  width: 90%;
  margin: 0 auto;
}
.simple-operator-cta__logo-link img {
  display: block;
  width: 100%;
}
.grid_boxes {
  display: grid;
  grid-template-columns: 65% 30%;
  gap: 5%;
  justify-content: space-between;
  position: relative;
  padding: 50px 0;
}
h2 {
  font-size: 38px;
  line-height: 46px;
  margin: 20px 0 15px;
}
.wp-block-table {
  margin-bottom: 30px;
}
.wp-block-table.is-style-gsorg-centered-text-table table tr td {
  border: 1px solid var(--light);
  border-top: 0;
  padding: 20px 12px;
  box-sizing: border-box;
  text-align: center;
  position: relative;
}
.wp-block-table.is-style-gsorg-centered-text-table table tr:nth-child(2n) {
  background-color: var(--breadcrumbs);
}
.slotsbox {
  display: grid;
  grid-template-areas:
    "title title title"
    "photo description info";
  grid-template-columns: 220px 2fr 1fr;
  border: 1px solid var(--light);
  border-radius: 10px;
  background: var(--breadcrumbs);
  margin: 0 auto 30px;
  overflow: hidden;
}
.slotsbox_img {
  background-color: var(--breadcrumbs);
  grid-area: photo;
  overflow: hidden;
  position: relative;
  text-align: center;
}
.slotsbox_img img {
  max-width: 1000px;
  width: 100%;
  display: block;
  max-height: 1000px;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.slotsbox_info {
  border-bottom: 0;
  border-right: 1px solid var(--border-line);
  margin: 25px 35px;
  padding-right: 20px;
  grid-area: description;
}
.slotsbox_more_info {
  grid-area: info;
  padding: 45px 25px 25px 0;
}
.slotsbox__button {
  background-color: var(--bg);
  border: 1px solid var(--title);
  border-radius: 7px;
  color: var(--title);
  display: flex;
  font-size: 15px;
  align-items: center;
  font-weight: 700;
  padding: 10px 25px;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  width: -moz-fit-content;
  transition: all 0.3s linear;
  width: fit-content;
}
.slotsbox__button:hover {
  background-color: var(--title);
  color: var(--bg);
}
.slotsbox {
  display: grid;
  grid-template-areas:
    "title title title"
    "photo description info";
  grid-template-columns: 220px 2fr 1fr;
}
.left_top_block p {
  margin-bottom: 20px;
}
.slotsbox_info h3 {
  background: none;
  color: var(--title);
  padding: 0;
}
.slotsbox_info h3::after{
  content: none;
}
.slotsbox_info p {
  margin-bottom: 20px;
}
.slotsbox__additional_info {
  font-weight: 600;
  margin: 0 0 15px;
}
.slotsbox__additional_info span {
  font-weight: 400;
  display: block;
}
.slot_cart_group {
  grid-row-gap: 10px;
  background-color: var(--breadcrumbs);
  border: 1px solid var(--light);
  border-radius: 20px;
  grid-template-areas:
    "photo"
    "title"
    "text-content";
  margin: 20px auto 20px;
  padding: 30px 20px 30px 70px;
  position: relative;
  width: 90%;
  box-sizing: border-box;
  margin-left: auto;
}
.icon_background {
  background: var(--link);
  border-radius: 10%;
  bottom: 50px;
  display: flex;
  height: 100px;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  margin: auto;
  padding: 20px;
  position: relative;
  width: 100px;
  grid-area: photo;
  position: absolute;
  top: 0;
  left: -50px;
}
.icon_background img {
  width: 70px;
  display: block;
}
.text_slot_cart {
  grid-area: title;
}
.text_slot_cart h3 {
  color: var(--title);
  background: transparent;
  padding: 0;
}
.text_slot_cart h3::after{
  content: none;
}
.online_slot_game {
  margin-top: 60px;
}
.is-style-gsorg-fixed-horizontal-table table tr td {
  text-align: center;
}
.wp-block-table.is-style-gsorg-fixed-horizontal-table
  table
  tr
  td:first-of-type {
  background-color: #f5f7fa;
}
.types_slot p {
  margin-bottom: 20px;
}
.real_slot {
  margin-top: 70px;
}
.info-box {
  grid-column-gap: 30px;
  grid-row-gap: 10px;
  border: 1px solid #adbdd4;
  border-top: 7px solid var(--title);
  border-radius: 0 0 6px 6px;
  box-shadow: 0 5px 25px rgba(28, 45, 68, 0.102);
  display: grid;
  grid-template-areas:
    "photo title"
    "photo box-content";
  margin: 0 auto 25px;
  max-width: 945px;
  padding: 25px;
}
.info-box__title {
  font-size: 18px;
  font-weight: 700;
  text-align: left;
}
.slot_list_popular li {
  padding: 20px;
  background-color: var(--breadcrumbs);
  border: 1px solid var(--light);
  border-radius: 20px;
  margin: 20px auto;
}
.slot_list_popular h3 {
  color: var(--title);
  padding: 0;
  background: transparent;
  margin-bottom: 10px;
}
.popular_provider {
  margin-top: 70px;
}
.testimonials__wrapper {
  border: 1px solid #bbc4d8;
  border-radius: 10px;
  padding: 45px 12px 25px;
  position: relative;
  box-sizing: border-box;
}
.testimonials__img {
  height: 67px;
  left: 0;
  top: 0;
  border-radius: 50%;
  width: 67px;
  overflow: hidden;
  position: absolute;
  transform: translateX(-50%);
}
.testimonials__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
}
.testimonials__wrapper--answer:before {
  background: url(./assets/images/icon-arrow-down.svg);
  background-repeat: no-repeat;
  content: "";
  display: block;
  filter: invert(85%) sepia(85%) saturate(1605%) hue-rotate(198deg)
    brightness(97%) contrast(89%);
  height: 18px;
  left: 50%;
  position: absolute;
  top: 0;
  top: -58px;
  transform: translateX(-50%);
  width: 16px;
}
.testimonials__wrapper--answer { 
  border-color: var(--link);
  margin-top: 20px;
  background: var(--breadcrumbs);
}
.slot_list_popular h3::after{
  content: none;
}
.testimonials__wrapper {
  padding: 26px 58px 35px;
  width: 90%;
}
.testimonials__single {
  margin-bottom: 42px;
  margin-left: 34px;
}
.slot_questions {
  margin-top: 70px;
  order: 11;
}
.slotsbox__description h3::after, .top_tip_item h3::after{
  content: none;
}
.sites_block{
  order: 7;
}
.slot_questions > p {
  margin-bottom: 20px;
}
.testimonials__wrapper--answer {
  margin-left: 46px;
}
.recent-blogs-posts .recent-blog {
  border: 1px solid var(--light);
  border-radius: 10px;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  flex-shrink: 0;
  gap: 10px;
  max-width: 500px;
  padding-bottom: 30px;
  text-decoration: none;
  width: 32%;
  box-sizing: border-box;
}
.recent-blogs-posts .recent-blog__image {
  max-height: 344px;
}
.recent-blogs-posts .recent-blog__category {
  border-radius: 5px;
  color: var(--bg);
  font-size: 12px;
  font-weight: 400;
  font-weight: 700;
  margin-left: 25px;
  padding: 2px 10px;
  text-transform: uppercase;
  width: -moz-fit-content;
  width: fit-content;
  background: var(--olive);
}
.recent-blogs-posts .recent-blog__title h4 a {
  color: var(--title);
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}
.recent-blog__title {
  padding-left: 20px;
}
.recent-blog__author img {
  border-radius: 50px;
  margin-right: 10px;
}
.recent-blogs-posts .recent-blog__date {
  color: var(--text);
  font-size: 14px;
  font-weight: 400;
  margin-left: 25px;
}
.recent-blogs-posts .recent-blog__author {
  color: var(--link);
  font-size: 14px;
  font-weight: 400;
  margin-left: 25px;
  display: flex;
  align-items: center;
  text-decoration: underline;
}

.recent-blogs-posts {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  overflow-x: auto;
}
.recent-blog__image img {
  max-width: 1000px;
  max-height: 1000px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.recent_blogs_link a {
  margin: 30px auto;
  text-align: center;
}
.explore_slot {
  margin-top: 70px;
}
.left_info_box p {
  margin: 0 0 20px;
}
.wp-block-list a {
  list-style: upper-alpha;
}
.wp-block-list li {
  list-style: disc;
  margin: 0 0 10px 20px;
}
.group_btn {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.reels_block h3 {
  padding: 0;
  background: transparent;
  color: var(--line);
}
.slot_cart_box{
  display: flex;
  flex-direction: column;
}
.slot_cart_group:nth-child(1) { order: 3; }
.slot_cart_group:nth-child(2) { order: 1; }
.slot_cart_group:nth-child(3) { order: 4; }
.slot_cart_group:nth-child(4) { order: 2; }

.bottom-author-block { 
  border: 1px solid #bbc4d8;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 30px 0;
  padding: 25px 15px 10px;
}
.author__avatar {
  align-self: start;
  height: 140px;
  margin: 0 50px 0 auto;
  width: 140px;
  overflow: hidden;
  position: relative;
  clip-path: circle(50%);
}
.author__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: all .3s linear;
}
.bottom-author-block:hover img{
  transform: scale(1.1);
}
.author__name {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}
.author__name a {
  text-decoration: underline;
}
.author__bio {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}
.author__title {
  font-weight: 700;
  margin: 0 0 20px;
  font-size: 24px;
}
.author-name {
  padding-right: 10px;
  border-right: 1px solid var(--light);
  margin-right: 10px;
}
.autor_grid {
  display: grid;
  grid-template-columns: 140px auto;
  gap: 40px;
}
.author__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.avt_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.simple-oeprator-cta__widget-content {
  padding: 29px 32px;
}
.simple-operator-cta__widget-heading {
  background: var(--bg-secondary);
  border-bottom: 5px solid var(--cart-button);
  color: var(--bg);
  display: block;
  font-size: 30px;
  padding: 20px 15px;
  text-align: center;
}
.simple-operator-cta {
  background: var(--breadcrumbs);
  border: 1px solid var(--border-line);
  border-radius: 10px;
  font-family: Open Sans, sans-serif;
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
}
.simple-operator-cta__bonus-text {
  color: var(--text);
  font-size: 18px;
  line-height: 1.6;
}
.simple-operator-cta__bonus-text .dollar-value {
  color: var(--link);
  font-size: 28px;
  font-weight: 700;
}
.simple-operator-cta__bonus-heading {
  color: #000;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}
.info-box__content p {
  margin: 0;
}
.simple-operator-cta__bonus {
  text-align: center;
}
.info-box {
  gap: 20px;
}
.simple-operator-cta__reviewlink {
  color: var(--title);
  text-decoration: underline;
  font-weight: 300;
  text-align: center;
  display: block;
  width: max-content;
  margin: 0 auto;
}
.grid_container {
  position: relative;
}
.page-sidebar__widget {
  position: sticky;
  top: 100px;
  height: max-content;
}
.our_blog {
  margin: 0 0 100px;
}

/* online casinos */
.hover_content {
  background-color: var(--breadcrumbs);
  border: 1px solid var(--light);
  border-radius: 6px;
  display: flex;
  font-size: 12px;
  gap: 8px;
  line-height: 18px;
  margin: 12px 0;
  padding: 8px;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.3s linear;
  margin-bottom: 40px;
}
.hover_content > span {
  font-size: 12px;
  font-weight: 700;
  display: block;
  width: max-content;
  min-width: fit-content;
}
.hover_content:hover {
  background: var(--bg-secondary);
  color: var(--bg);
}
.hover_item {
  display: none;
  margin: 0;
}
.hover_content:hover .hover_item {
  display: block;
}
.online_casino__title h3 {
  background: none var(--title);
  border-radius: 10px 10px 0 0;
  color: var(--bg);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 16px;
  min-height: 55px;
  margin: 0;
  box-sizing: border-box;
  padding: 12px 10px 10px;
  text-align: center;
  width: 100%;
}
.online_casino__info {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  text-align: center;
  background: var(--bg);
}
.operatorCard__payment{
  order: -1;
}
.casino__info_left {
  margin: 0 auto;
  width: 197px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.casino__info_left p {
  margin: 30px 0 0;
}
.casino__info_left img {
  display: block;
  width: 100%;
  border-radius: 7px;
  overflow: hidden;
}
.operator-star-rating__overlay,
.operator-star-rating__underlay {
  background: url(../images/review-star-icon.png);
  background-position: 0;
  background-size: 23px;
  height: 98.8%;
  left: 0;
  position: absolute;
  top: 0;
}
.operator-star-rating__overlay {
  z-index: 1;
}
.operator-star-rating__underlay {
  filter: grayscale(1);
  width: 100%;
}
.operator-star-rating {
  display: inline-block;
  height: 20px;
  margin: auto;
  position: relative;
  width: 116px;
}
.operatorCard__bonus {
  color: var(--link);
  display: table;
  font-size: 22px;
  font-weight: 700;
  padding: 0 20px;
  margin: 17px auto 10px;
  text-align: center;
}
.gambling_categoty_items{
  display: grid;
  /* grid-template-columns: repeat(2, 1fr); */
  gap: 20px;
}
/* .operatorCard__action {
  padding-right: 40px;
} */
.operatorCard__bonus span {
  color: var(--title);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}
.operatorCard__bonus span.welcome-text {
  color: var(--text);
  display: table;
  font-size: 16px;
  font-weight: 700;
  margin: 0 auto;
}
.read_review {
  font-size: 15px;
  text-decoration: underline;
  color: var(--link);
}
.operatorCard__middleBar {
  background-color: var(--breadcrumbs);
  border-bottom: 1px solid var(--border-line);
  border-top: 1px solid var(--border-line);
  display: grid;
  gap: 7px;
  grid-template-columns: 1fr;
  padding: 9px 24px;
  grid-column-gap: 33px;
  align-items: baseline;
  text-align: center;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
}
.operatorCard__ss img {
  display: block;
  object-fit: cover;
  width: 100%;
  object-position: center;
}
.operatorCard__ss{
  order: -1;
}
.casino__info_center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 340px;
}
.operatorCard__middleBar > div > span:first-child {
  font-size: 14px;
  font-weight: 700;
  display: block;
  color: var(--title);
}
.operatorCard__middleBar .more {
  font-size: 14px;
  color: var(--link);
  text-decoration: underline;
  cursor: pointer;
  display: block;
  position: relative;
}
.operatorCard__middleBar span.more-options {
  background: #3e5184;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.071);
  color: #fff;
  font-family: Open Sans, sans-serif;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 30px;
  width: 320px;
  box-sizing: border-box;
  opacity: 0;
  padding: 19px;
  position: absolute;
  top: 20px;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  z-index: 10;
}
.operatorCard__middleBar span.more:hover .more-options {
  opacity: 1;
  visibility: visible;
}
.online_casino_item {
  border: 1px solid var(--border-line);
  border-radius: 10px;
  margin: 30px 0;
}
.operatorCard__content {
  padding: 20px 30px;
}
.operatorCard__extraDetails-wrapper ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.operatorCard__extraDetails-wrapper li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  line-height: 1.2;
  font-size: 15px;
  color: #222;
}

.operatorCard__extraDetails-wrapper li i {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08) inset;
}

.operatorCard__extraDetails-wrapper .pros li i.icon-checkmark-fill {
  background: var(--line);
}
.operatorCard__extraDetails-wrapper .pros li i.icon-checkmark-fill::after {
  content: "✓";
  line-height: 1;
}
.operatorCard__extraDetails-wrapper .cons li i.icon-crossmark-fill {
  background: var(--cart-button);
}
.operatorCard__extraDetails-wrapper .cons li i.icon-crossmark-fill::after {
  content: "✕";
  line-height: 1;
}
/* .tips_playing h3 {
  background: none;
  padding: 0;
  color: var(--title);
} */
.operatorCard__extraDetails-wrapper li:hover i {
  transform: translateY(-50%) scale(1.06);
  transition: transform 120ms ease;
}
.operatorCard__moreDetails {
  padding: 0 30px 20px;
}
@media (max-width: 520px) {
  .operatorCard__extraDetails-wrapper {
    flex-direction: column;
    display: flex;
    gap: 0.75rem;
  }
}

.blog_items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
.blog_img {
  display: block;
}
.blog_img img {
  display: block;
  width: 100%;
}
.blog_item_body {
  padding: 30px 20px;
}
.blog_item {
  border: 1px solid var(--border-line);
  border-radius: 10px;
  background: var(--breadcrumbs);
  overflow: hidden;
}
.recent {
  border-radius: 5px;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  font-weight: 700;
  display: block;
  margin-bottom: 20px;
  padding: 5px 10px;
  text-transform: uppercase;
  width: fit-content;
  background: var(--btn-first);
}
.recent_blog__title a {
  color: var(--title);
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 14px;
  display: inline-block;
}
.recent-blog__date {
  font-size: 13px;
  margin-bottom: 14px;
}
.recent_blog__author img {
  border-radius: 50%;
}
.recent_blog__author {
  display: inline-flex;
  align-items: center;
  text-decoration: underline;
  gap: 10px;
}
.responsible_block {
  margin-top: 40px;
}
.spin_today h4 {
  color: var(--line);
  display: block;
  font-size: 1.3em;
  margin: 20px auto 10px;
}
.list_spin {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}
.list_spin a {
  background: transparent none;
  border-color: var(--title);
  border-width: 1px;
  border-style: solid;
  color: currentColor;
  padding-top: 18px;
  padding-right: 18px;
  padding-bottom: 18px;
  font-weight: 600;
  padding-left: 18px;
  border-radius: 10px;
  transition: all 0.3s linear;
  display: block;
}
.list_spin a:hover {
  background-color: var(--title);
  color: var(--bg);
}
.wp-block-list {
  padding-left: 20px;
}

/* sites */
.group_aytor {
  position: relative;
  padding-right: 40px;
}
.group_aytor > .autor_img:last-child {
  position: absolute;
  right: 10px;
  top: 50%;
  z-index: -1;
  transform: translateY(-50%) scale(0.8);
}
.review-table-left, .review-table-right{
  border-radius: var(--border-m);
  overflow: hidden;
}
.topfive_operators_3columns {
  grid-template-columns: repeat(3, 1fr);
}
.online_casino__info_columns {
  padding: 20px 0;
  align-items: center;
}
.screen_contain h1:after {
  content: none;
}
.trending_now__links {
  gap: 10px 20px;
}
.table_block td {
  text-align: center;
  padding: 10px;
  text-decoration: underline;
}
.black_list_item {
  /* display: grid;
  grid-template-columns: 220px 2fr 1fr; */
  gap: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--border-line);
  border-radius: 10px;
  margin: 0 auto 30px;
  padding:0 20px;
}
.slotsbox__image{
  max-width: 250px;
}
.black_list_slotsbox{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.black_list_item img {
  display: block;
  width: 100%;
  height: auto;
}
.black_list_item h3,
.top_tip_item h3 {
  padding: 0;
  background: transparent;
  color: var(--title);
}
.slotsbox__additional-info span {
  display: block;
}
.slotsbox__additional-info {
  text-align: left;
  padding-bottom: 20px;
  margin-right: auto;
}
.slotsbox__additional-info-label {
  font-weight: 700;
}
.top_tip_item {
  margin: 20px auto;
  padding: 20px 20px 20px 40px;
  background-color: var(--breadcrumbs);
  border: 1px solid var(--light);
  border-radius: 20px;
}
.top_tip {
  margin: 40px 0;
}
.wrapper_card {
  display: flex;
  flex-direction: column; 
}

/* первые три секции — фиксированные */
.title_fix_card { order: 1; }
.info_start { order: 2; }
.table_block { order: 3; }

/* начиная с четвёртой — перемешанные */
.text_block_items{
  order: 5;
}
.casino_section { order: 16; }         /* 1 */
.vip_section { order: 20; }            /* 2 */
.bonus_section { order: 24; }          /* 3 */
.security_section { order: 28; }       /* 4 */
.bool_section { order: 32; }           /* 5 */
.slot_section_block { order: 9; }     /* 6 */
.mobile_section { order: 14; }         /* 7 */
.banking_section { order: 10; }        /* 8 */
.form_information { order: 48; }       /* 9 */
.finel_section { order: 11; }          /* 10 */
.form_section { order: 56; }           /* 11 */

.bonus_num span {
  font-size: 20px;
}
.criteria_section .block_1 { order: 8; }
.criteria_section .block_2 { order: 4; }
.criteria_section .block_4 { order: 3; }
.criteria_section .block_5 { order: 6; }
.criteria_section .block_6 { order: 5; }
.criteria_section .block_7 { order: 24; }
.centerList{
  order: 10;
}
.criteria_top{
  order: 1;
}

.criteria_section .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.btn_read_review {
  /* position: absolute;
  top: 60%;
  right: 25px; */
  margin: 0 auto;
  font-weight: 600;
  padding: 10px;
  display: block;
  max-width: max-content;
  box-sizing: border-box;
  background: var(--light); 
  color: var(--text);
  color: var(--bg-secondary);
  border-radius: 10px;
  z-index: 10;
  transition: all .3s linear;
}
.left_info_box{
  display: flex;
  flex-direction: column;
}
.left_top_block{
  order: 1;
}
.comparing_slot{
  order: 4;
}
.online_slot_game{
  order: 2;
}
.tips_playing{
  order: 3;
}

.blog_container{
  order: 7;
}
.spin_today{
  order: 6;
}
.bottom-author-block{
  order: 8;
}
.responsible_block{
  order: 5;
}
.btn_read_review:hover{
  color: var(--link);
}

.box_cart_started {
  position: relative;
  padding-bottom: 10px;
}
.table_block>div{
  display: flex;
  flex-direction: column;
}
.review-toc{
  order: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.review-table-container{
  order: 3;
}
.review-proscons{
  order: 2;
}
/* .started_button{
  padding-bottom: 20px;
} */

@media screen and (max-width: 1199px) {
  .card_item {
    gap: 16px;
  }
  .card_item > div:not(:first-child)::before {
    left: -8px;
  }
  h1 {
    font-size: 30px;
  }
  .started_header li {
    font-size: 14px;
  }
  .bonus_num {
    font-size: 40px;
  }
  .logo_card {
    padding: 0 10px;
  }
  .nav_right {
    padding: 20px;
  }
  .grid_boxes {
    display: block;
  }
  .right_info_box {
    display: none;
  }
  .main_screen h1 {
    font-size: 50px;
  }
  .item_cart_bonus {
    text-align: center;
    max-width: 187px;
    width: 100%;
    box-sizing: border-box;
  }
  .title_fix_card_group {
    gap: 15px;
  }
  .gambling_categoty_items{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 1024px) {
  .card_item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .card_item > div {
    box-sizing: border-box;
  }
  .slot_items{
    grid-template-columns: repeat(2, 1fr);
  }
  .started_button {
    width: 100%;
    margin-top: 30px;
  }
  .box_cart_started{
    padding-bottom: 50px;
  }
  .btn_read_review{
    bottom: 20px;
    top: auto;
    left: 50%;
    right: auto; 
  }
  .started_rank {
    display: none;
  }
  .card_item > div:not(:first-child)::before {
    content: none;
  }
  .started_header {
    display: none;
  }
  .started_container > span {
    background-color: var(--bg-secondary);
    border-bottom: 3px solid var(--bg);
    border-radius: var(--border-l);
    color: var(--bg);
    display: block;

    font-weight: 700;
    grid-template-columns: 2.5em 1.5fr repeat(5, 1fr);
    grid-gap: 0.5em 2em;
    padding: 15px;
    place-items: center;
    position: relative;
    text-align: center;
    z-index: 2;
    margin-top: 20px;
  }
  .form_content {
    padding: 40px 20px;
  }
  .form_content h5 {
    font-size: 26px;
  }
  /* .review-table-container {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 30px auto;
  } */
  .started_items{
    grid-template-columns: repeat(2, 1fr);
  }
  h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 920px) {
  .primary thead,
  .primary tbody {
    display: block;
    width: 900px;
  }
}
@media screen and (max-width: 992px) {
  .emphasized-box {
    padding: 15px 50px;
  }
  .expandable-list-container ul {
    grid-template-columns: repeat(3, 1fr);
  }
  .sub_title {
    font-size: 28px;
  }
  .recent-blogs-posts {
    width: 900px;
  }
  .recent-blogs-block {
    overflow-x: auto;
  }
  .gambling_categoty_items{
    grid-template-columns: 1fr;
  }
  .gambling_categoty_item{
    margin: 0;
  }
  .form_box {
    position: relative;
    display: block;
    margin-top: 130px;
    padding-top: 100px;
  }
  .main_screen {
    padding: 4em 0;
  }
  .form_box > img {
    position: absolute;
    top: -100px;
    left: 50%;
    width: 300px;
    transform: translateX(-50%);
  }
  .form_content h5 {
    text-align: center;
  }
  .sub-form__description {
    text-align: center;
  }
  .custom-checkbox-wrapper {
    justify-content: center;
    display: flex;
    margin-top: 10px;
  }
  .slot_img {
    min-width: 100px;
    width: 100px;
    height: 100px;
  }
  .topfive_operators {
    grid-template-columns: 1fr 1fr;
  }
  .grid_section {
    grid-template-columns: 1fr 1fr;
  }
  /* .operatorCard__ss {
    display: none;
  } */
  .main_screen h1 {
    font-size: 40px;
  }
  .operatorCard__ss img{
    width: 100%;
    display: block;
  }
  .flag {
    display: none;
  }
  .header__container{
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .regular > li:nth-child(2n) {
    display: none;
  }
  .expandable-list-container ul {
    grid-template-columns: 1fr 1fr;
  }
  .greenBullet {
    grid-template-columns: 1fr;
  }
  .footer_center {
    display: flex;
    flex-direction: column;
  }
  .footer_logos ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .footer_logos ul img {
    display: block;
    width: 100%;
  }
  .grid_section {
    display: flex;
    flex-direction: column;
  }
  .started_container > span{
    display: none;
  }
  .started_item{
        position: sticky;
    top: 70px;
    background: var(--bg);
  }
  .started_items{
    grid-template-columns: 1fr;
  }
  .topfive_operators {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .operator_details {
    max-width: 400px;
    width: 100%;
  }
  .slotsbox {
    flex-direction: column;
    display: flex;
  }
  .slotsbox_img {
    height: 280px;
  }
  h3 {
    width: 100%;
    padding: 5px 60px 5px 10px;
    display: inline-block;
    font-weight: 500;
    box-sizing: border-box;
  }
  .gambling_categoty_item {
    display: flex;
    flex-direction: column;
  }
  .howtobox__header {
    text-align: center;
    padding-left: 40px;
  }
  .rounded-corners-cta{
    grid-template-columns: repeat(2, 1fr);
  }
  .rounded-corners-cta__wrapper{
    height: auto;
  }
  .howtobox {
    display: flex;
    padding: 0;
    flex-direction: column;
  }
  .gambling_categoty_item > div:not(.slotsbox__image) a {
    margin: 0 auto;
  }
  .gambling_categoty_item > div:not(.slotsbox__image) {
    padding: 20px;
  }
  .author__avatar {
    width: 80px;
    height: 80px;
  }
  .slotsbox_more_info {
    padding: 20px;
  }
  .main_screen h1 {
    font-size: 32px;
  }
  .icon_background img {
    width: 40px;
    display: block;
  }
  .slotsbox_info {
    margin: 20px;
    padding: 0;
  }
  .icon_background {
    width: 60px;
    padding: 10px;
    height: 60px;
    margin-top: 30px;
    left: -30px;
  }
  .testimonials__img {
    width: 60px;
    height: 60px;
    position: static;
    float: left;
    transform: translate(0) !important;
    margin-right: 20px;
  }
  .testimonials__wrapper--answer {
    margin-left: 10px;
  }
  .left_info_box p{
    margin: 0 0 15px;
  }
  .testimonials__wrapper {
    padding: 20px;
  }
  .slot_cart_group {
    box-sizing: border-box;
    padding-left: 30px;
    margin-left: 0;
    width: 100%;
    margin-top: 40px;
    padding-top: 40px;
  }
  h1::after{
    width: 90%;
  }
  .form_box{
    margin-top: 50px;
    padding-top: 0;
  }
  .header__search-mobile{
    display: none;
  }
  .icon_background,
  .testimonials__img {
    left: 50%;
    transform: translateX(-50%);
    top: -50px;
  }
  .testimonials__single,
  .testimonials__wrapper--answer {
    margin-left: 0;
    width: 100%;
  }
  .operatorCard__middleBar span.more-options {
    width: 250px;
  }
  .testimonials__img {
    top: -20px;
  }
  .wp-block-table {
    overflow-x: auto;
  }
  .autor_grid {
    grid-template-columns: 80px auto;
    gap: 20px;
  }
  .sub_title {
    font-size: 25px;
  }
  .started_payout {
    display: none;
  }
  .item_cart_bonus,
  .flag {
    display: none;
  }
  .title_fix_card_group {
    position: relative;
  }
  .title_fix_card_group::before {
    content: "";
    display: block;
    width: 2px;
    height: 80%;
    position: absolute;
    top: 10%;
    left: 50%;
    background: var(--breadcrumbs);
  }
  .info_content {
    display: flex;
    flex-direction: column;
  }
  .nav_right{
    order: 4;
  }
  .review-proscons {
    display: flex;
    flex-direction: column;
  }
  .slot_items {
    grid-template-columns: 1fr;
  }
  .slot_item{
    position: sticky;
    top: 70px;
    height: max-content;
  }
  .ram_action img {
    width: 100px;
  }
  .form_group {
    grid-template-columns: 1fr;
  }
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .slot_cart_group{
    text-align: center;
    position: sticky;
    top: 80px;
    height: max-content;
  }
  .back-to-top-area {
    height: 60px;
    width: 50px;
  }
  .back-to-top-area span {
    display: none;
  }
  .slotsbox__button{
    max-width: 300px;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto 10px;
    justify-content: center;
  }
  .form_box {
    width: 95%;
  }
  .review-table-left th,
  .review-table-right th {
    width: 150px;
  }
  .left_info_box {
    overflow-x: hidden;
    width: 100%;
  }
  .info-box {
    padding: 20px;
  }
  .info-box__icon img {
    width: 50px;
    display: block;
  }
  .star-rating__overlay {
    background-size: 30px;
  }
  .star-rating {
    height: 30px;
    width: 150px;
  }
  .wp-block-table > table {
    width: 750px;
  }
  /* .online_casino__info {
    padding: 20px 0;
  } */
  .online_casino__info {
    align-items: center;
    gap: 16px;
  }
  .black_list_item {
    display: flex;
    flex-direction: column;
  }
  .slotsbox__image {
    width: 100%;
    background: var(--border-line);
  }
  .slotsbox__description {
    border-bottom: 1px solid var(--border-line);
  }
  .slotsbox__additional-info {
    padding: 0 20px 20px;
    margin-right: auto;
  }
  .black_list_slotsbox{
    grid-template-columns: 1fr;
    max-width: 430px;
    margin:  0 auto;
  }
  .top_tip_item {
    padding: 20px;
  }
  .howtobox__header{
    background: var(--bg-secondary);
    color: var(--bg);
  }
  .bottom-author-block {
    position: relative;
    padding-top: 60px;
    margin-top: 40px;
  }
  .autor_grid {
    display: block;
  }
  .gambling_categoty_item{
    position: sticky;
    top: 80px;
    height: max-content;
  }
  .slotsbox__image{
 height: 250px;
 width: 100%;
 max-width: 100%;
  }
  /* .slotsbox__image img {
  display: block; 
  object-fit: cover;
  object-position: top center;
    margin: 0 auto;
  } */
  .author__avatar {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
  }
  .author__title {
    margin: 0;
  }
}
@media screen and (max-width: 575px) {
  .operatorCard__action {
    padding: 0;
  }
  .online_casino__info {
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
  }
  .operatorCard__content{
    padding: 20px;
  }
  .operatorCard__ss{
    width: 100%;
    height: 200px;
  }
  .operatorCard__middleBar {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
  }
  .online_casino__info{
    display: flex;
    flex-direction: column;
  }
  .blog_items {
    display: flex;
    flex-direction: column;
  }
  .list_spin a {
    padding: 10px;
  }
  .list_spin {
    gap: 10px;
  }
  .review-table-bonus {
    padding-bottom: 10px;
  }
  .title_fix_card_group {
    display: grid;
    padding: 10px 0;
    grid-template-columns: repeat(2, 1fr);
  }
  .logo_card img {
    height: auto;
    width: 100%;
  }
  .button_play_now {
    width: 100%;
  }
}
