:root {
  /* color */
  --color-text-black: #333;
  --color-text-white: #fff;
  --color-red: #c40606;
  --color-black: #000;
  --color-bardo: #a70a0a;
  --color-gray: #eee;

  /* background */
  --background-font: #f7f7f7;

  /* size */

  /* shadow */
  --box-shadow1: 0 4px 10px rgb(0, 0, 0, 0.1);
  --box-shadow2: 0 4px 10px rgb(0, 0, 0, 0.2);
  --box-shadow3: 0 4px 10px rgb(0, 0, 0, 0.3);
  --box-shadow4: 0 4px 10px rgb(0, 0, 0, 0.4);
  --box-shadow5: 0 4px 10px rgb(0, 0, 0, 0.5);
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

body {
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  font-family: "PT Sans", sans-serif;
  color: var(--color-text-black);
  background-color: var(--background-font);
  margin: 0;
  padding: 0;
}

body.no-scroll {
  overflow: hidden;
}

.show-modals {
  display: block !important;
}

h1 {
  font-size: 36px;
  font-weight: 700;
}

h2 {
  font-size: 30px;
  font-weight: 700;
}

h3 {
  font-size: 24px;
  font-weight: 700;
}

a {
  color: var(--color-black);
  text-decoration: none;
  transition: all 0.2s linear;
}

a:focus,
a:hover {
  color: var(--color-red);
}

img {
  display: block;
  width: 100%;
  height: auto;
}

/* .title__h1 {
	text-align: center;
} */

.margin-top50 {
  margin-top: 50px;
}

.margin-top100 {
  margin-top: 100px;
}

.margin-bottom50 {
  margin-bottom: 50px;
}

.margin-bottom100 {
  margin-bottom: 100px;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mt70 {
  margin-top: 70px;
}

.mt80 {
  margin-top: 80px;
}

.mt90 {
  margin-top: 90px;
}

.mt100 {
  margin-top: 100px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb100 {
  margin-bottom: 100px;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
}

.img__custom200 {
  height: 200px !important;
  object-fit: contain;
}

.img__custom300 {
  height: 300px !important;
  object-fit: contain;
}

.img__custom400 {
  height: 400px !important;
  object-fit: contain;
}

.img__custom500 {
  height: 500px !important;
  object-fit: contain;
}

.wrapper {
  width: 100%;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}

.site-main {
  flex-grow: 1;
}

footer {
  flex-shrink: 0;
}

.container {
  width: 100%;
  max-width: 1300px;
  height: auto;
  padding: 0 20px;
  margin: 0 auto;
}

.btn__red {
  outline: none;
  background-color: var(--color-bardo);
  padding: 10px 20px;
  color: var(--color-text-white);
  border: none;
  border-radius: 4px;
  box-shadow: var(--box-shadow2);
  cursor: pointer;
  transition: all 0.2s linear;
}

.btn__red:focus,
.btn__red:hover {
  background-color: var(--color-red);
  color: var(--color-text-white);
  box-shadow: var(--box-shadow4);
}

/* header */

.header.fixed {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 99999;
}

.header__content {
  position: relative;
}

.header__one {
  background: #333;
  color: var(--color-text-white);
  padding: 10px 0;
  width: 100%;
  box-shadow: var(--box-shadow4);
}

.header__one-menu {
  position: relative;
  z-index: 99999;
}

.header__one-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.header__one-group__btn {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.header__one-btn {
  color: var(--color-text-white);
}

.header__one-logo img {
  max-width: 200px;
  height: 55px;
  object-fit: contain;
}

.header__one-mobile-menu {
  display: none;
}

.header__two {
  background: #333;
  color: var(--color-text-white);
  padding: 10px 0;
  width: 100%;
  box-shadow: var(--box-shadow4);
}

.header__two-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.header__two-group__btn {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.header__two-btn {
  color: var(--color-text-white);
}

.header__two-logo img {
  max-width: 200px;
}

.header__two-mobile-menu {
  display: none;
}

.header__three {
  background: #333;
  color: var(--color-text-white);
  padding: 10px 0;
  width: 100%;
  box-shadow: var(--box-shadow4);
}

.header__three-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.header__three-group__btn {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.header__three-btn {
  color: var(--color-text-white);
}

.header__three-logo img {
  max-width: 200px;
}

.header__three-mobile-menu {
  display: none;
}

.header__four {
  background: #333;
  color: var(--color-text-white);
  padding: 10px 0;
  width: 100%;
  box-shadow: var(--box-shadow4);
}

.header__four-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.header__four-group__btn {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.header__four-btn {
  color: var(--color-text-white);
}

.header__four-logo img {
  max-width: 200px;
}

.header__four-mobile-menu {
  display: none;
}

/* ./header */

/* mobile menu */

.mobile__menu-container {
  position: relative;
}

.mobile__menu-btn {
  display: block;
  width: 40px;
  height: 40px;
  background: #ff0000;
  border-radius: 4px;
  overflow: hidden;
  max-width: 100%;
  outline: none;
  border: none;
  transition: all 0.2s linear;
  position: relative;
  z-index: 9999;
  font-size: 0;
}

.mobile__menu-btn.active {
  position: fixed;
  top: 20px;
  right: 20px;
}

.mobile__menu-btn.active .mobile__menu-line {
  height: 0;
}

.mobile__menu-btn.active .mobile__menu-line::before {
  transform: translateY(10px) rotate(-45deg);
}

.mobile__menu-btn.active .mobile__menu-line::after {
  transform: translateY(-10px) rotate(45deg);
}

.mobile__menu-line {
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.mobile__menu-line::after,
.mobile__menu-line::before {
  content: "";
  position: absolute;
  border-radius: 4px;
  left: 0;
  height: 3px;
  width: 100%;
  background-color: #fff;
  transform: translateY(0) rotate(0);
}

.mobile__menu-line::before {
  bottom: 10px;
}

.mobile__menu-line::after {
  bottom: -10px;
}

.mobile__menu-menu {
  /* display: none; */
  position: fixed;
  top: 0;
  left: -100%;
  z-index: 999;
  background-color: #000;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

.mobile__menu-menu.active {
  display: block;
  transform: translateX(100%);
}

.mobile__menu-menu #menu-top > ul {
  flex-direction: column;
  gap: 10px;
  margin-top: 40px;
  padding: 0 20px;
}

.mobile__menu-menu #menu-top a {
  padding: 0;
  color: #fff;
  transition: all 0.2s linear;
}

.mobile__menu-menu #menu-top a:focus,
.mobile__menu-menu #menu-top a:hover {
  color: #ff0000;
}

.mobile__menu-logo {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
  padding: 0 20px;
}

.mobile__menu-logo.left {
  align-items: flex-start;
}

.mobile__menu-logo.right {
  align-items: flex-end;
}

.mobile__menu-img {
  max-width: 250px;
  object-fit: contain;
}

.mobile__menu-text {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
}

.mobile__menu-container .header__one-group__btn {
  padding: 0 20px;
  margin-top: 40px;
  justify-content: center;
}

.header__two-mobile-menu .mobile__menu-btn.active {
  right: inherit;
  left: 20px;
}

.header__three-mobile-menu .mobile__menu-btn.active {
  right: inherit;
  left: 20px;
}

.header__four-mobile-menu .mobile__menu-line {
  display: none;
}

.header__four-mobile-menu .mobile__menu-btn {
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  width: 100%;
  border-radius: 0;
}

.mobile__menu-container .header__one-group__btn.left {
  justify-content: flex-start;
}

.mobile__menu-container .header__one-group__btn.right {
  justify-content: flex-end;
}

.mobile__menu-menu.active .botton__btn-fixed {
  position: fixed;
  bottom: 20px;
  left: 0;
  width: 100%;
}

.mobile__menu-menu.active .botton__btn-fixed .header__one-btn {
  width: 50%;
  text-align: center;
}

/* ./ mobile menu */

/* menu */

#menu-top * {
  margin: 0;
  padding: 0;
}

#menu-top ul,
#menu-top ol {
  list-style: none;
}

#menu-top > ul {
  display: flex;
  justify-content: space-evenly;
  gap: 40px;
}

#menu-top > ul li {
  position: relative;
  /* border-right: 1px solid #c7c8ca; */
}

#menu-top > ul li:first-child {
  /* border-left: 1px solid #b2b3b5; */
}

#menu-top > ul li:last-child {
  /* border-right: 1px solid #babbbd; */
}

#menu-top > ul li > a i.fa {
  position: absolute;
  top: 15px;
  left: 12px;
  font-size: 18px;
}

#menu-top > ul li a {
  display: block;
  /* background: rgb(201, 201, 201);
    background: -moz-linear-gradient(top, rgba(201, 201, 201, 1) 0%, rgba(246, 246, 246, 1) 2%, rgba(196, 197, 199, 1) 98%, rgba(117, 117, 119, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(201, 201, 201, 1) 0%, rgba(246, 246, 246, 1) 2%, rgba(196, 197, 199, 1) 98%, rgba(117, 117, 119, 1) 100%);
    background: linear-gradient(to bottom, rgba(201, 201, 201, 1) 0%, rgba(246, 246, 246, 1) 2%, rgba(196, 197, 199, 1) 98%, rgba(117, 117, 119, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c9c9c9', endColorstr='#757577', GradientType=0); */

  padding: 10px;
  font-size: 14px;
  color: var(--color-black);
  text-decoration: none;
  text-transform: math-auto;
  transition: all 0.3s ease;
}

#menu-top li a:hover {
  /* background: rgb(224, 225, 229);
    background: -moz-linear-gradient(top, rgba(224, 225, 229, 1) 0%, rgba(69, 69, 71, 1) 2%, rgba(69, 69, 71, 1) 98%, rgba(224, 225, 229, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(224, 225, 229, 1) 0%, rgba(69, 69, 71, 1) 2%, rgba(69, 69, 71, 1) 98%, rgba(224, 225, 229, 1) 100%);
    background: linear-gradient(to bottom, rgba(224, 225, 229, 1) 0%, rgba(69, 69, 71, 1) 2%, rgba(69, 69, 71, 1) 98%, rgba(224, 225, 229, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e0e1e5', endColorstr='#e0e1e5', GradientType=0); */

  color: var(--color-red);
  /* box-shadow: 1px 5px 10px -5px black; */
  transition: all 0.3s ease;
}

/*sub menu*/
#menu-top li ul {
  position: absolute;
  min-width: 270px;
  display: none;
}

@media (min-width: 992px) {
  #menu-top li ul {
    background: #eeeeee;
    border-radius: 4px;
  }

  #menu-top li > ul li {
    border: 1px solid #c7c8ca;
  }
}

#menu-top li > ul li a {
  padding: 10px;
  text-transform: none;
  background: #000;
}

#menu-top li > ul li ul {
  position: absolute;
  right: -150px;
  left: 100%;
  top: 0;
  z-index: 1;
}

#menu-top li:hover > ul {
  display: block;
}

#menu-top > ul > li > a::after,
#menu-top > ul > noindex > li > a::after {
  right: -10px !important;
}

#menu-top ul li:has(ul) > a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  transition: all 0.2s linear;
  background: url("/wp-content/themes/gmb/assets/images/arrow-down.png");
  background-size: cover;
  width: 10px;
  height: 10px;
  filter: invert(1);
}

#menu-top > ul > li:has(ul) > a:focus::after,
#menu-top > ul > li:has(ul) > a:hover::after {
  transform: translateY(-50%) rotate(180deg);
}

#menu-top > ul > li > a::after {
  content: none;
}

#menu-top > ul > li > ul > li:has(ul) > a::after {
  z-index: 2;
  right: 8px;
  transition: all 0.2s linear;
}

#menu-top > ul > li > ul > li:has(ul):hover > a::after,
#menu-top > ul > li:has(ul):hover > a::after,
#menu-top > ul > li:has(ul):hover > a:hover::after,
#menu-top > ul > li:has(ul):hover ul li a:hover + a::after {
  transform: translateY(-50%) rotate(180deg);
}

#menu-top > ul > li > ul > li:has(ul):hover > a,
#menu-top > ul > li:hover > a {
  color: var(--color-red);
  /* Используйте нужный вам цвет */
}

#menu-top > ul > li > ul > li > ul > li > a::after {
  right: 12px;
}

/* ./menu */

.content__page {
  padding: 60px 0;
}

/* e-rating */

.e-rating-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2px;
}

.e-rating-wrapper svg {
  width: 15px;
  height: 15px;
}

.e-icon {
  position: relative;
}

.e-icon-marked > svg {
  fill: #f0ad4e;
}

.e-icon-marked:last-child {
  --e-rating-icon-marked-width: 50%;
}

.e-icon-unmarked {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.e-icon-unmarked > svg {
  fill: #ccd6df;
}

/* ./e-rating */

/* info */

.info {
  margin-top: 30px;
}

.info-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  background-color: var(--color-text-white);
  padding: 20px;
  border: 1px solid;
}

.info-logo {
  max-width: 190px;
  object-fit: contain;
}

.info-img {
  max-width: 100px;
}

.info-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  gap: 10px;
  align-items: center;
}

.info__title {
  font-size: 18px;
  font-weight: 600;
  color: #999;
}

.info__text {
  font-size: 17px;
  font-weight: 700;
}

/* ./info */

/* banner__casino */

.banner__casino {
  margin-top: 40px;
}

.banner__casino-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  background: #fff;
  padding: 20px;
  border: 1px solid;
}

.banner__casino-item:nth-child(1) {
  width: 60%;
}

.banner__casino-item:nth-child(2) {
  width: 40%;
}

.banner__casino-item__text {
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
}

.banner__casino-img {
  border-radius: 10px;
}

.banner__casino-single-item {
  display: flex;
  justify-content: center;
}

.banner__casino-link {
  background: #f7f7f7;
  overflow: hidden;
  border-radius: 10px;
  padding-bottom: 20px;
  box-shadow: var(--box-shadow2);
  transition: all 0.2s linear;
  cursor: pointer;
}

.banner__casino-link:focus,
.banner__casino-link:hover {
  box-shadow: var(--box-shadow4);
}

.banner__casino-single-img {
  max-width: 300px !important;
  height: auto !important;
  object-fit: cover;
}

.banner__casino-single-content {
  margin-top: 15px;
  padding: 0 20px;
}

.banner__casino-single-title {
  font-size: 17px;
  font-weight: 700;
  text-align: center;
}

.banner__casino-single-subtitle {
  padding: 0 20px;
  font-size: 16px;
  text-align: center;
  margin-top: 15px;
  font-weight: 700;
  color: #999;
}

/* ./banner__casino */

/* tables */

.tables {
  max-width: 800px;
  margin: 60px auto 0;
}

.tables-inner {
  display: block;
  border: 1px solid;
  border-bottom: 0;
  border-left: 0;
  border-right: 0;
}

.tables-item {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
}

.tables-pole {
  border-top: 0;
  border: 1px solid #999;
  padding: 10px 20px;
}

.tables-pole:nth-child(2) {
  font-weight: 600;
}

/* ./tables */

/* block_co */

.block_co {
  margin-top: 60px;
}

.block_co-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.block_co-item {
  display: flex;
  width: 14%;
}

.block_co-link {
  background: #fff;
  overflow: hidden;
  border-radius: 10px;
  padding-bottom: 20px;
  box-shadow: var(--box-shadow2);
  transition: all 0.2s linear;
  cursor: pointer;
  width: 100%;
}

.block_co-link:focus,
.block_co-link:hover {
  box-shadow: var(--box-shadow4);
}

.block_co-img {
  max-width: 100% !important;
  height: 130px !important;
  object-fit: cover;
}

.block_co-content {
  margin-top: 15px;
  padding: 0 20px;
}

.block_co-title {
  font-size: 17px;
  font-weight: 700;
  text-align: center;
}

/* ./block_co */

/* block_co */

.block_rand {
  margin-top: 30px;
}

.block_rand-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.block_rand-item {
  display: flex;
  width: 15%;
}

.block_rand-link {
  background: #fff;
  overflow: hidden;
  border-radius: 10px;
  padding-bottom: 20px;
  box-shadow: var(--box-shadow2);
  transition: all 0.2s linear;
  cursor: pointer;
  width: 100%;
}

.block_rand-link:focus,
.block_rand-link:hover {
  box-shadow: var(--box-shadow4);
}

.block_rand-img {
  max-width: 100% !important;
  height: 130px !important;
  object-fit: cover;
}

.block_rand-content {
  margin-top: 15px;
  padding: 0 20px;
}

.block_rand-title {
  font-size: 17px;
  font-weight: 700;
  text-align: center;
}

/* ./block_co */

/* providers */

.providers {
  margin-top: 40px;
}

.providers-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 30px;
}

.providers-item {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: var(--box-shadow2);
  cursor: pointer;
  transition: all 0.2s linear;
}

.providers-item:focus,
.providers-item:hover {
  box-shadow: var(--box-shadow4);
}

.providers-link {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.providers-img {
  display: block;
  max-width: 100% !important;
  height: 150px !important;
  object-fit: contain;
}

.providers-title {
  font-size: 16px;
  font-weight: 600;
  margin-top: 10px;
  transition: all 0.2s linear;
}

.providers-item:focus .providers-title,
.providers-item:hover .providers-title {
  color: var(--color-bardo);
}

.slider-partners__inner {
  padding-bottom: 40px;
}

/* footer */

.footer {
  background-color: var(--color-text-black);
  color: #fff;
  padding: 0 0 30px;
  margin-top: 50px;
}

.footer-content {
}

.footer-redactor {
  margin-top: 30px;
}

.footer-gallery {
  margin-top: 30px;
  display: flex;
}

.footer-gallery.center {
  justify-content: center;
}

.footer-gallery.left {
  justify-content: flex-start;
}

.footer-gallery.right {
  justify-content: flex-end;
}

.footer-gallery__inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-gallery__item {
}

.footer-gallery__item img {
  max-width: 100px !important;
  height: auto !important;
  object-fit: contain;
}

.copyright {
  margin-top: 30px;
}

/* ./footer */

/* btn-game */

.btn-game__container {
  display: flex;
  margin-top: 60px;
}

.btn-game__container.left {
  justify-content: flex-start;
}

.btn-game__container.right {
  justify-content: flex-end;
}

.btn-game__container.center {
  justify-content: center;
}

.btn-game {
  padding: 10px 30px;
}

/* ./btn-game */

/*  Modal */

.modals {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 10999999;
  overflow: auto;
  margin: 0 !important;
}

.modals__content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 500px;
  background-color: #fff;
  padding: 20px;
  opacity: 0;
  box-shadow: var(--box-shadow4);
  -webkit-transform: translate(-50%, -100%);
  transform: translate(-50%, -100%);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.modals__close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1010;
  background: none;
  outline: none;
  border: 0;
  cursor: pointer;
  padding: 7px 12px;
  font-size: 18px;
  background-color: #333 !important;
  color: #fff;
  border-radius: 0;
  transition: all 0.2s ease-in-out;
}

.modals__close:focus,
.modals__close:hover {
  color: var(--color-bardo);
}

/* ./ Modal */

/* modals__game */

.modals__game-title {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-top: 30px;
}

.modals__game-text {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.5;
}

.modals__game-btn {
  margin-top: 30px;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

/* ./modals__game */

.counter {
  font-size: 18px;
  font-weight: 700;
}

.redactor {
  margin: 50px 0 0;
  font-size: 16px;
}

/* footer-menu */

.footer-menu {
  margin: 30px 0;
}

.footer-menu.left #menu-footer-menu {
  justify-content: flex-start !important;
}

.footer-menu.right #menu-footer-menu {
  justify-content: flex-end !important;
}

.footer-menu.center #menu-footer-menu {
  justify-content: center !important;
}

/* ./footer-menu */

.limit.top {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.limit.bottom {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.limit.right {
  position: fixed;
  bottom: 30px;
  right: 30px;
  height: auto;
  z-index: 100;
}

.limit.left {
  position: fixed;
  bottom: 30px;
  left: 30px;
  height: auto;
  z-index: 100;
}

.limit__content {
  padding: 10px;
  text-align: center;
}

/* game iframe */

.game__iframe {
  margin: 60px 0 30px;
}

.game__iframe__icon {
  height: 40px;
  padding: 5px;
  display: none;
}

.game__iframe__icon__inner {
}

.game__iframe__icon__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
}

.game__iframe__icon__col {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.game__iframe__icon__col:nth-child(1) {
  justify-content: flex-start;
}

.game__iframe__icon__col:nth-child(2) {
  justify-content: flex-end;
}

.game__iframe__icon__col:nth-child(2) .game__iframe__icon__item:nth-child(1) {
  min-width: 200px;
  position: relative;
}

.game__iframe__icon__item {
  position: relative;
}

.game__iframe__ico {
  position: absolute;
  top: -34px;
  z-index: 2;
  width: 123px !important;
  max-width: 123px;
  height: 80px !important;
}

.game__iframe__refresh {
  background: transparent;
  border: transparent;
  padding: 0;
  margin: 0 10px;
}

.game__iframe__refresh:focus,
.game__iframe__refresh:hover {
  background: transparent;
  border: transparent;
  filter: brightness(0.5);
}

.game__iframe__text {
  color: #fff;
  font-weight: 500;
}

.game__iframe__ico__text {
  position: absolute;
  top: -15px;
  left: 21px;
  z-index: 3;
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
}

.game__iframe__img {
  max-width: 250px;
  border-radius: 20px;
  margin: 0 auto;
}

.game__iframe__container {
  position: relative;
  height: 677px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.game__iframe__group {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
}

.game__iframe__fon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #111;
  z-index: 1;
  filter: blur(4px);
}

.game__iframe__group__btn {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-top: 40px;
  gap: 20px;
}

.game__iframe__info__icon {
  width: 60px !important;
  height: 60px !important;
  filter: brightness(0.5);
}

.game__iframe__info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-top: 100px;
}

.game__iframe__info__text {
  font-size: 14px;
  font-weight: 500;
  color: #b4b4b4;
}

.game__iframe__link {
  border: 1px solid #fff;
  border-radius: 20px;
  padding: 8px 20px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background: transparent;
  transition: all 0.2s linear;
}

.game__iframe__link:focus,
.game__iframe__link:hover {
  text-decoration: none;
  background: linear-gradient(
    to bottom,
    #ffd700,
    #ffc700,
    #ffb700,
    #ffa700,
    #ff9600
  );
  color: #000;
  border-color: #ffd700;
}

.game__iframe__btn {
  border: 1px solid #ffd700;
  border-radius: 20px;
  padding: 8px 20px;
  color: #fff;
  text-align: center;
  text-decoration: none;

  background: linear-gradient(
    to bottom,
    #ffd700,
    #ffc700,
    #ffb700,
    #ffa700,
    #ff9600
  );
  transition: all 0.2s linear;
}

.game__iframe__btn:focus,
.game__iframe__btn:hover {
  text-decoration: none;
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.game__iframe__container_i {
  display: none;
  width: 100%;
}

.game__iframe__container_i iframe {
  width: 100% !important;
  height: 677px !important;
}

.game__iframe__logo__text {
  display: none;
}

/* game iframe */

.slider-partners .swiper-button-prev,
.slider-partners .swiper-button-next {
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  box-shadow: 0 4px 10px rgb(0, 0, 0, 0.2);
  background: #fff;
  width: 40px;
  height: 40px;
  transition: all 0.2s linear;
}

.slider-partners .swiper-button-prev:focus,
.slider-partners .swiper-button-next:hover {
  box-shadow: 0 4px 10px rgb(0, 0, 0, 0.4);
}

.slider-partners .swiper-button-next:after,
.slider-partners .swiper-button-prev:after {
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* block__styling */

.block__styling {
  margin: 70px 0;
}

.block__styling__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  grid-gap: 40px;
}

.block__styling__title {
  font-size: 36px;
}

.block__styling__text {
  margin-top: 20px;
  font-size: 16px;
}

.block__styling__btn__cont {
  margin-top: 25px;
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}

.block__styling__link {
  border: 1px solid #ff0000;
  padding: 10px 30px;
  text-align: center;
  min-width: 160px;
  box-shadow: 0 4px 10px rgb(0, 0, 0, 0.1);
  transition: all 0.2s linear;
}

/* ./block__styling */

/* advantages */

.advantages {
  margin: 70px 0;
}

.advantages__inner {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 30px;
}

.advantages__group {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}

.advantages__icon img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
}

.advantages__title {
  font-size: 20px;
  font-weight: 700;
}

.advantages__text {
  font-size: 15px;
  margin-top: 5px;
}

/* ./advantages */

/* text__advantages */

.text__advantages {
  margin: 70px 0;
}

.text__advantages__g__title {
  font-size: 30px;
  font-weight: 700;
}

.text__advantages__g__title.center {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
}

.text__advantages__g__title.left {
  text-align: left;
}

.text__advantages__g__title.right {
  text-align: right;
}

.text__advantages__g__subtitle {
  font-size: 17px;
  font-weight: 600;
  margin-top: 10px;
}

.text__advantages__g__subtitle.left {
  text-align: left;
}

.text__advantages__g__subtitle.right {
  text-align: right;
}

.text__advantages__g__subtitle.center {
  text-align: center;
}

.text__advantages__inner {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 30px;
}

.text__advantages__item {
  padding: 20px;
}

.text__advantages__num {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
}

.text__advantages__title {
  margin-top: 10px;
  font-weight: 700;
  font-size: 18px;
}

.text__advantages__title span {
  font-weight: 400;
  font-size: 15px;
}

/* ./text__advantages */

/* block__text */

.block__text {
  margin: 70px 0;
}

.block__text__title {
  font-size: 30px;
  font-weight: 700;
}

.block__text__title.left {
  text-align: left;
}

.block__text__title.right {
  text-align: right;
}

.block__text__title.center {
  text-align: center;
}

.block__text__subtitle {
  font-size: 17px;
  font-weight: 600;
  margin-top: 10px;
}

.block__text__subtitle.center {
  text-align: center;
}

.block__text__subtitle.left {
  text-align: left;
}

.block__text__subtitle.right {
  text-align: right;
}

.block__text__inner {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 30px;
}

.block__text__inner2 {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  grid-gap: 30px;
}

.block__text__item--af {
  padding-left: 30px;
  position: relative;
}

.block__text__item--af::after {
  content: "\2713";
  font-size: 16px;
  color: #000;
  position: absolute;
  top: 0;
  left: 0;
}

.block__text__item__title {
  font-size: 18px;
  font-weight: 700;
}

.block__text__item__text {
  font-size: 15px;
  font-weight: 400;
  margin-top: 10px;
}

/* ./block__text */

/* footer__custom__btn */

.footer__custom__btn {
  margin-top: 30px;
}

.footer__custom__btn__item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__custom__btn__item.center {
  justify-content: center;
}

.footer__custom__btn__item.left {
  justify-content: flex-start;
}

.footer__custom__btn__item.right {
  justify-content: flex-end;
}

.footer__custom__btn__link {
  padding: 10px 20px;
  box-shadow: 0 4px 10px rgb(0, 0, 0, 0.1);
  transition: all 0.2s linear;
}

.footer__custom__btn__link:focus,
.footer__custom__btn__link:hover {
  box-shadow: 0 4px 10px rgb(0, 0, 0, 0.4);
}

/* ./footer__custom__btn */

.new__format__inner {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-gap: 30px;
}

.new__format__img {
  height: 170px;
  object-fit: cover;
}

.new__format__content {
  padding: 20px;
}

.new__format__btn {
  width: 100%;
  text-align: center;
  padding: 15px 20px;
  border: none;
  transition: all 0.2s linear;
  cursor: pointer;
}

/* conclution__img */

.conclution__img {
  margin-top: 30px;
}

.conclution__img__inner {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 30px;
}

.conclution__img__inner-two {
  grid-template-columns: 1fr 1fr;
}

.conclution__img__inner-tree {
  grid-template-columns: 1fr 1fr 1fr;
}

.conclution__img__item img {
  height: 100%;
  max-width: 100%;
}

/* ./conclution__img */

.contents__block__title {
  color: #000;
  font-size: 30px;
  font-weight: 700;
  position: relative;
  cursor: pointer;
  /* Добавляем курсор, чтобы указать, что это интерактивный элемент */
}

.contents__block__title::after {
  content: "▶";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s;
  font-size: 20px;
}

.contents__block.active .contents__block__title::after {
  transform: translateY(-50%) rotate(90deg);
}

.contents__block__content {
  display: none;
}

.contents__block.active .contents__block__content {
  display: block;
}

/* Стили для тултипа */
.tooltip {
  position: absolute;
  background-color: black;
  color: #fff;
  padding: 5px;
  border-radius: 3px;
  font-size: 12px;
  display: none;
  white-space: nowrap;
  z-index: 1000;
}

.sub-menu-toggle {
  display: none;
}

.back__to__top {
  position: fixed;
  bottom: 40px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.back__to__top.visible {
  opacity: 1;
}

.back__to__top.left {
  left: 40px;
}

.back__to__top.right {
  right: 40px;
}

.back__to__top__link {
  display: block;
}

.back__to__top__link:focus,
.back__to__top__link:hover {
  box-shadow: 0 4px 10px rgb(0, 0, 0, 0.2);
}

.back__to__top__img {
  max-width: 80px;
}
