html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

body {
  margin: 0;
}

main {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
  margin: 0;
}

p {
  margin: 0;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

@font-face {
  font-family: "Muller-Medium";
  src: url("../fonts/muller-medium.eot"); /* IE 9 Compatibility Mode */
  src: url("../fonts/muller-medium.eot?#iefix") format("embedded-opentype"), url("../fonts/muller-medium.woff2") format("woff2"), url("../fonts/muller-medium.woff") format("woff"), url("../fonts/muller-medium.ttf") format("truetype"), url("../fonts/muller-medium.svg#muller-medium") format("svg"); /* Chrome < 4, Legacy iOS */
}
@font-face {
  font-family: "Sochi2014";
  src: url("../fonts/Sochi2014-Bold.eot");
  src: local("Sochi2014 Bold"), local("Sochi2014-Bold"), url("../fonts/Sochi2014-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Sochi2014-Bold.woff") format("woff"), url("../fonts/Sochi2014-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Muller-Medium", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #2A2A2A;
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  color: #2A2A2A;
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: 3%;
}

@media screen and (max-width: 768px) {
  h1, h2, h3, h4, h5, h6 {
    font-size: 20px;
    line-height: 28px;
  }
}
a {
  color: #2A2A2A;
  text-decoration: none;
  transition: all 0.2s;
}
a:hover {
  opacity: 0.7;
}

ul, ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 15px;
}

input, textarea {
  transition: all 0.2s;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

.btn {
  padding: 15px 26px;
  display: flex;
  align-items: center;
  position: relative;
  border: 2px solid rgb(46, 94, 255);
  border-radius: 16px;
}
.btn span {
  position: relative;
  z-index: 15;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: rgb(46, 94, 255);
  transition: all 0.2s;
  white-space: nowrap;
}
.btn img {
  position: relative;
  z-index: 15;
  margin-right: 10px;
  transition: all 0.2s;
}
.btn:hover {
  opacity: 1;
  background: rgb(46, 94, 255);
}
.btn:hover:after {
  opacity: 1;
}
.btn:hover span {
  color: #fff;
}
.btn:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2%) hue-rotate(156deg) brightness(111%) contrast(101%);
}

.btn-blue {
  background: rgb(46, 94, 255);
  color: #fff;
  padding: 15px 26px;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  transition: all 0.2s;
  white-space: nowrap;
  border-radius: 16px;
}
.btn-blue:hover {
  opacity: 0.7;
}

.btn-gray {
  background: #F4F6FC;
  color: rgb(46, 94, 255);
  border: none;
  padding: 15px 26px;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  transition: all 0.2s;
  white-space: nowrap;
  border-radius: 16px;
  text-align: center;
  display: block;
}
.btn-gray:hover {
  opacity: 1;
  background: rgb(46, 94, 255);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: rgb(46, 94, 255);
  border: none;
  padding: 15px 26px;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  transition: all 0.2s;
  white-space: nowrap;
  border-radius: 16px;
  text-align: center;
  display: block;
  border: 2px solid #fff;
}
.btn-white:hover {
  opacity: 1;
  background: none;
  background-color: transparent;
  color: #fff;
}

.mask {
  overflow: hidden;
  -webkit-mask-image: url("../images/mask.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-image: url("../images/mask.svg");
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
  filter: drop-shadow(0 4px 17px rgba(0, 0, 0, 0.25));
}
.mask:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 15;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 20.87%, rgba(0, 0, 0, 0) 91.22%);
}

.mask img, .mask video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

header {
  display: flex;
  justify-content: center;
  width: 100%;
  align-items: center;
  background-color: rgba(37, 37, 54, 0.9490196078);
  box-sizing: border-box;
  height: 50px;
  left: 0;
  position: fixed;
  top: 0;
  z-index: 90;
}
header .beam_block, header .block {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  padding: 0 15px;
  width: 100%;
}

.main_logo img {
  height: 100%;
  width: 200px;
}

.snowplow_link.main_logo {
  text-decoration: none !important;
  display: flex;
  align-items: center;
}

.snowplow_link.main_logo span {
  color: #fff;
  text-decoration: none !important;
  border-bottom: 0;
  white-space: nowrap;
  margin-left: 15px;
  font-weight: 600;
}

header .panel_authorized, header .panel_non_authorized {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  gap: 20px;
}

header .panel_non_authorized a.snowplow_link.text-link {
  align-items: center;
  background-color: rgba(0, 0, 0, 0);
  border-bottom: 1px solid #fff;
  color: inherit;
  cursor: pointer;
  height: 20px;
  font-size: 12px;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
}

.btn, .btn_approve, .btn_approve_large, .btn_approve_small, .btn_bonus, .btn_icon, .btn_primary, .btn_primary_extralarge, .btn_primary_large, .btn_primary_small, .btn_small, .game_menu_non_authorized .button_register, .game_menu_non_authorized .link_enter {
  align-items: center;
  background-color: #4d5a85;
  border: none;
  border-radius: 50px;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 16px;
  font-weight: 800;
  height: 30px;
  justify-content: center;
  letter-spacing: 1px;
  line-height: 22px;
  outline: none;
  overflow: hidden;
  padding: 0 40px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.btn_primary_small {
  background-color: #fe284a;
  font-size: 12px;
  box-shadow: 0 3px 0 0 #871628, 0 4px 4px 0 #000;
}

header .btn_help span {
  position: relative;
}

header .panel_non_authorized .btn_help {
  color: #f5ea1a;
  text-decoration: none !important;
  align-items: center;
  background-color: rgba(0, 0, 0, 0);
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  height: 30px;
}

header .btn_help .img_box {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-right: 10px;
  width: 30px;
}

.btn_help .img_box svg {
  height: 24px;
  width: 24px;
  stroke: #e8ce3a;
}

@media screen and (max-width: 900px) {
  header {
    background-color: #161626;
    height: auto;
    max-height: 120px;
    min-height: 50px;
  }
  header .header_box {
    flex-direction: column;
    flex-wrap: wrap;
  }
  .snowplow_link.main_logo {
    flex-direction: column;
  }
  .main_logo img {
    width: 140px;
    margin-top: 5px;
  }
  .snowplow_link.main_logo span {
    margin-left: 0;
    margin-top: 10px;
    font-size: 14px;
    margin-bottom: 5px;
  }
  header .panel_non_authorized {
    border-top: 1px solid #363648;
    box-sizing: border-box;
    display: flex;
    height: 50px;
    justify-content: center;
    width: 100%;
  }
  header .btn_help span {
    display: none;
  }
}
footer {
  background: url("../images/noise_f.png") repeat, rgba(10, 10, 20, 0.48);
  flex-direction: column;
  width: 100%;
  position: relative;
  z-index: 20;
}

.footer_inner_container, footer {
  align-items: center;
  display: flex;
}

.footer_inner_container {
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 30px;
  padding-top: 30px;
}

.footer_main {
  justify-content: center;
  padding-top: 0;
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
}

.footer_help {
  display: flex;
  margin-top: 30px;
  flex-grow: 1;
  justify-content: center;
  flex-wrap: wrap;
}

.footer_help > li:not(:last-child) {
  margin-right: 10px;
}

.footer_help a {
  align-items: center;
  border-radius: 5px;
  box-sizing: border-box;
  transition: all 0.2s;
  color: #fff;
  display: flex;
  font-size: 16px;
  font-weight: 700;
  height: 36px;
  padding: 0 4px;
  text-decoration: none;
  width: 100%;
}

.footer_main > :not(:first-child) {
  margin-left: 20px;
}

.footer_application {
  align-items: center;
  display: flex;
  justify-content: flex-end;
}

.btn_application {
  align-items: center;
  border-radius: 30px;
  box-sizing: border-box;
  color: #fff;
  display: flex;
  font-size: 11px;
  line-height: 10px;
  min-width: 140px;
  padding: 5px 15px;
  text-decoration: none;
}

.btn_application_ios {
  background-color: #303036;
  box-shadow: 0 4px 0 0 #0e0e11;
}

.btn_application_text {
  display: flex;
  flex-direction: column;
  margin-left: 5px;
}

.btn_application_text_os {
  text-wrap: nowrap;
  font-size: 14px;
  font-weight: 500;
  line-height: 15px;
}

.btn_application_android {
  background-color: #309c4d;
  box-shadow: 0 4px 0 0 #184e26;
}

.footer_application .btn_application:not(:first-child) {
  margin-left: 10px;
}

.footer_social {
  display: flex;
  justify-content: flex-start;
}

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

.navigation_social li {
  margin-right: 10px;
}

.navigation_social a {
  align-items: center;
  border-radius: 50%;
  display: flex;
  height: 35px;
  justify-content: center;
  width: 35px;
}

.navigation_social a img {
  height: 20px;
  width: 20px;
}

.footer_main > * {
  margin-top: 30px;
}

.social_youtube {
  background-color: red;
  box-shadow: 0 3px 0 1px #781712;
}

.social_vkontakte {
  background-color: #3a6aa3;
  box-shadow: 0 3px 0 1px #223f61;
}

.social_telegram {
  background-color: #2ca3df;
  box-shadow: 0 3px 0 1px #1a6b84;
}

.social_instagram {
  background-color: #264484;
  box-shadow: 0 3px 0 1px #16284d;
}

.footer_second {
  border-top: 1px dashed #303036;
  box-sizing: border-box;
}

.footer_second .footer_second_container {
  width: 100%;
}

.footer_inner_container {
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 30px;
  padding-top: 30px;
}

.footer_copyright_lang_container {
  flex-wrap: nowrap;
}

.footer_second .copyright_age_warning {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  max-width: 950px;
}

.footer_second .warning_item {
  align-items: center;
  display: flex;
  margin-right: 35px;
}

.footer_second .warning_item {
  align-items: center;
  display: flex;
  margin-right: 35px;
}

.footer_second .age_18 {
  height: 40px;
  width: 40px;
}

.footer_copyright_lang_container {
  padding-top: 30px;
}

.footer_second .p_copyright {
  word-wrap: normal;
  line-height: 16px;
  min-width: 230px;
  word-break: normal;
}

.footer_second .p_copyright, .footer_second .p_warning {
  color: #646a87;
  font-size: 12px;
  margin-left: 20px;
}

.footer_second .copyright_age_warning_item {
  max-width: 380px;
  align-items: center;
  display: flex;
  margin-right: 35px;
}

.copyright_licence_warning_item {
  margin-right: 35px;
}

.footer_second {
  margin-top: 30px;
}

@media screen and (max-width: 700px) {
  .footer_second .copyright_age_warning {
    flex-direction: column;
  }
  .copyright_licence_warning_item {
    margin-right: 0;
    margin-bottom: 35px;
    text-align: center;
  }
  .footer_second .copyright_age_warning_item {
    margin-right: 0;
    flex-direction: column;
    text-align: center;
  }
  .footer_second .copyright_age_warning_item p {
    margin-top: 15px;
  }
}
body {
  align-items: center;
  background: url("../images/noise.webp") repeat, #101226;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.5019607843);
  box-sizing: border-box;
  position: relative;
  width: 100%;
  overflow-x: hidden;
  min-height: 100vh;
}
body:after {
  content: "";
  position: absolute;
  background: url("../images/back_games_wided_left.svg") repeat-y;
  background-size: 100%;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 0;
}

.section-banner__item {
  height: 380px;
  position: relative;
}
.section-banner__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-banner__item:first-child .section-banner__content {
  background: linear-gradient(270.09deg, rgba(6, 16, 79, 0) 0.07%, rgba(6, 16, 79, 0.9019607843) 25.04%, rgba(6, 16, 79, 0.9019607843) 74.96%, rgba(6, 16, 79, 0) 99.93%);
  height: 56px;
}
.section-banner__item:first-child .section-banner__content span {
  font-family: "Sochi2014";
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  background: linear-gradient(180deg, #fff176, #ffc40f 50%, #f5b401 50.01%, #ffee5b);
  -webkit-background-clip: text;
  filter: drop-shadow(1px 1px rgba(0, 5, 52, 0.5));
  font-size: 26px;
  font-weight: 700;
  line-height: 34px;
  text-transform: uppercase;
}
.section-banner__item:nth-child(2) .section-banner__content {
  background: linear-gradient(269.99deg, rgba(50, 18, 88, 0), rgba(50, 18, 88, 0.9019607843) 25%, rgba(50, 18, 88, 0.9019607843) 75%, rgba(50, 18, 88, 0) 99.99%);
  height: 56px;
}
.section-banner__item:nth-child(2) .section-banner__content span {
  font-family: "Sochi2014";
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  background: linear-gradient(180deg, #ffee5b 23.68%, #ffee5b 46.84%, #ffd303 49.74%, #f4b001 52.63%, #ffd303 55.53%, #ffee5b 58.42%, #ffee5b 81.58%);
  -webkit-background-clip: text;
  font-size: 26px;
  font-weight: 700;
  line-height: 34px;
  text-transform: uppercase;
}
.section-banner__item:nth-child(3) .section-banner__content {
  background: linear-gradient(270.09deg, rgba(28, 62, 138, 0) 0.07%, rgba(28, 62, 138, 0.8117647059) 25.04%, rgba(28, 62, 138, 0.8117647059) 74.96%, rgba(28, 62, 138, 0) 99.93%);
  height: 56px;
}
.section-banner__item:nth-child(3) .section-banner__content span {
  font-family: "Sochi2014";
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  background: linear-gradient(180deg, #fff176, #ffc40f 50%, #f5b401 50.01%, #ffee5b);
  -webkit-background-clip: text;
  filter: drop-shadow(1px 1px rgba(0, 5, 52, 0.5));
  font-size: 26px;
  font-weight: 700;
  line-height: 34px;
  text-transform: uppercase;
}
.section-banner__item:nth-child(4) .section-banner__content {
  background: linear-gradient(270deg, rgba(65, 33, 7, 0) 0.07%, rgba(65, 33, 7, 0.9019607843) 25.04%, rgba(65, 33, 7, 0.8117647059) 74.96%, rgba(65, 33, 7, 0) 99.93%);
  height: 56px;
}
.section-banner__item:nth-child(4) .section-banner__content span {
  font-family: "Sochi2014";
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  background: linear-gradient(180deg, #fff176, #ffc40f 50%, #f5b401 50.01%, #ffee5b);
  -webkit-background-clip: text;
  filter: drop-shadow(1px 1px rgba(0, 5, 52, 0.5));
  font-size: 26px;
  font-weight: 700;
  line-height: 34px;
  text-transform: uppercase;
}
.section-banner__item:nth-child(5) .section-banner__content {
  background: linear-gradient(90deg, rgba(50, 18, 88, 0) 0, rgba(50, 18, 88, 0.9019607843) 25%, rgba(50, 18, 88, 0.9019607843) 75%, rgba(50, 18, 88, 0));
  height: 62px;
}
.section-banner__item:nth-child(5) .section-banner__content span {
  font-family: "Sochi2014";
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  background: linear-gradient(180deg, #ffbc3a 0, #ffbc3a 50%, #e7971e 55%, #ffe47a 65%, #ffe47a 80%, #ffe47a);
  -webkit-background-clip: text;
  color: rgba(50, 18, 88, 0.9019607843);
  font-size: 40px;
  line-height: 48px;
  max-width: 1200px;
  text-align: center;
  white-space: nowrap;
  width: 100%;
}
.section-banner__content {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 20;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.beam-categories {
  position: relative;
  z-index: 20;
  background: rgba(30, 30, 30, 0.8);
  box-shadow: inset 0 5px 25px 0 rgba(0, 0, 0, 0.8);
}

.beam-categories .nav-categories {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 15px;
  width: 100%;
}

.beam-categories .nav-categories_list {
  display: flex;
  flex-wrap: nowrap;
}

.beam-categories .nav-categories_list > * {
  width: 25%;
}

.beam-categories .nav-categories_list > :after, .beam-categories .nav-categories_list > :before {
  background-color: #313047;
  content: "";
  display: block;
  height: 50px;
  position: absolute;
  top: 12.5px;
  width: 1px;
}

.nav-categories_item.x_slots:before {
  display: none;
}

.nav-categories_item.x_slots:after {
  display: none;
}

.beam-categories .nav-categories_link {
  font-size: 16px;
}

.beam-categories .nav-categories_img-wrapper {
  margin-right: 15px;
  width: 50px;
}

.beam-categories .nav-categories_text {
  font-size: 16px;
  line-height: 16px;
}

.beam-categories .nav-categories_content {
  flex-direction: row;
  height: 75px;
  max-height: 75px;
  padding: 0 10px;
  justify-content: center;
  display: flex;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-categories_link {
  cursor: pointer;
  display: block;
  font-family: var(--font-main), sans-serif;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  width: 100%;
}

.beam-categories .nav-categories_item.x_slots .nav-categories_img {
  width: 42px;
}

.text_slots {
  color: #17eada;
}

.nav-categories_item.x_slots .nav-categories_img {
  height: 75px;
  background: url("../images/icon_slots.svg") no-repeat center center;
}

.nav-categories_item.x_live span {
  color: #de593e !important;
}

.nav-categories_item.x_live .nav-categories_img {
  height: 75px;
  width: 39px;
  background: url("../images/icon_live.svg") no-repeat center center;
}

.nav-categories_item.x_sports span {
  color: #9a5cff !important;
}

.nav-categories_item.x_sports .nav-categories_img {
  height: 75px;
  width: 32px;
  background: url("../images/icon_sports.svg") no-repeat center center;
  background-size: contain;
}

.nav-categories_item.x_casino span {
  color: #6ef770;
}

.nav-categories_item.x_casino .nav-categories_img {
  height: 75px;
  width: 32px;
  background: url("../images/icon_casino.svg") no-repeat center center;
  background-size: contain;
}

.nav-categories_item.x_tournament span {
  color: #e8ce3a;
}

.nav-categories_item.x_tournament .nav-categories_img {
  height: 75px;
  width: 32px;
  background: url("../images/icon_tournament.svg") no-repeat center center;
  background-size: contain;
}

.nav-categories_link {
  position: relative;
}
.nav-categories_link:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 90%;
  background: rgba(255, 255, 255, 0.16);
  left: 0;
  top: 5%;
  opacity: 0;
  border-radius: 10px;
  transition: all 0.2s;
}
.nav-categories_link:hover:after {
  opacity: 0.2;
}

section {
  position: relative;
  z-index: 20;
}

.section-games {
  margin: 40px 0;
}
.section-games__head {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-games__head h1 {
  font-size: 38px;
  line-height: 38px;
  margin: 0;
  color: #fff;
}
.section-games .block-bg {
  padding: 60px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px 0 #000;
  box-sizing: border-box;
  background-color: #161626;
  border: 1px solid #393a51;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.section-games .block-bg span {
  display: block;
  margin-top: 25px;
  margin-bottom: 25px;
}

.section-games {
  margin: 40px 0;
}
.section-games__bottom {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 40px;
}
.section-games__bottom .btn_small {
  box-shadow: 0 3px 0 0 #2c3552, 0 4px 4px 0 #000;
  font-size: 12px;
  height: 30px;
  padding: 0 30px;
}
.section-games__wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 15px;
}
.section-games__item {
  border-radius: 10px;
  box-shadow: 0 4px 10px 0 #000;
  box-sizing: border-box;
  color: #fff;
  display: flex;
  height: 222px;
  flex-direction: column;
  position: relative;
  transition: transform 0.15s linear;
  width: 100%;
  will-change: transform;
}
.section-games__item .gamecard_window {
  border: 1px solid #393a51;
  border-bottom: none;
  height: 75%;
  position: relative;
}
.section-games__item .gamecard_img {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.section-games__item .gamecard_img, .section-games__item .gamecard_window {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.section-games__item .gamecard_links {
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 10px 10px 0 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-around;
  opacity: 0;
  padding: 20px 0;
  pointer-events: none;
  position: relative;
  transition: opacity 0.15s linear;
  transition-delay: 20ms;
  width: 100%;
  z-index: 2;
}
.section-games__item .btn_approve_small {
  background-color: #62c23c;
  box-shadow: 0 3px 0 0 #3c7028, 0 4px 4px 0 #000;
}
.section-games__item .gamecard_demo {
  background-color: #313047;
  border-radius: 50px;
  box-sizing: border-box;
  font-size: 11px;
  font-weight: 700;
  height: 23px;
  padding: 0 20px;
  text-transform: uppercase;
}
.section-games__item .gamecard a {
  align-items: center;
  color: inherit;
  justify-content: center;
  text-decoration: none;
}
.section-games__item .gamecard_title {
  word-wrap: break-word;
  background-color: #161626;
  border: 1px solid #393a51;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-top: none;
  box-sizing: border-box;
  display: flex;
  flex: none;
  flex-direction: column;
  font-family: var(--font-second), sans-serif;
  font-size: 14px;
  font-weight: 500;
  height: 25%;
  justify-content: center;
  overflow: hidden;
  overflow-wrap: break-word;
  padding: 0 5px;
  text-align: center;
  text-overflow: ellipsis;
}
.section-games__item:hover .gamecard_links {
  opacity: 1;
  pointer-events: auto;
}
.section-games__item:hover {
  transform: scale(1.1);
  z-index: 4;
}
.section-games__item .gamecard_demo {
  background-color: #313047;
  border-radius: 50px;
  box-sizing: border-box;
  align-items: center;
  display: flex;
  justify-content: center;
  height: 23px;
}
.section-games__item .gamecard_demo span {
  color: #fff;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
}

.section-text {
  margin: 40px 0;
}
.section-text h1, .section-text h2, .section-text h3 {
  font-size: 28px;
  line-height: 30px;
  color: #fff;
  margin-bottom: 15px;
}
.section-text h3 {
  font-size: 16px;
  line-height: 23px;
}
.section-text p {
  margin: 15px 0;
  line-height: 22px;
  font-size: 16px;
  color: #fff;
}
.section-text ul {
  list-style: initial;
  -webkit-appearance: initial;
     -moz-appearance: initial;
          appearance: initial;
  padding-left: 25px;
  margin: 15px 0;
}
.section-text ul li {
  margin-bottom: 10px;
  line-height: 22px;
  color: #fff;
  font-size: 16px;
}

.section-banner {
  overflow: hidden;
}

@media screen and (max-width: 1024px) {
  .beam-categories .nav-categories_content {
    height: 100px;
    justify-content: center;
    max-height: 100px;
    padding: 10px 5px;
    flex-direction: column;
    align-items: center;
  }
  .beam-categories .nav-categories_list > :after, .beam-categories .nav-categories_list > :before {
    height: 80px;
  }
  .beam-categories .nav-categories_img-wrapper {
    height: 38px;
    width: 35px;
    margin-right: 0;
  }
  .nav-categories_item .nav-categories_img {
    height: 100% !important;
  }
}
@media screen and (max-width: 900px) {
  .section-banner__item .section-banner__content span {
    font-size: 14px !important;
    line-height: 16px !important;
  }
  .section-banner__item .section-banner__content {
    height: 25px !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .beam-categories .nav-categories_text {
    font-size: 9px;
    line-height: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 10px;
  }
  .beam-categories .nav-categories_item.x_slots .nav-categories_img {
    height: 100%;
    width: 35px;
  }
  .section-games__wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
  .section-games__wrapper img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (max-width: 700px) {
  .section-games__head {
    flex-direction: column;
    gap: 30px;
  }
  .section-games__head h1 {
    font-size: 28px;
    line-height: 38px;
  }
  .section-games__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-games__wrapper img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  header .panel_non_authorized .btn_help {
      display: none;
  }
}