@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");

html * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
}
::-webkit-scrollbar {
  display: none;
}
a {
  text-decoration: none;
  color: #fff;
}
body {
  background-color: #0c111c;
  height: 100%;
}
.header {
  width: 100%;
  background-color: #121a29;
  backdrop-filter: blur(13px);
  z-index: 100;
  top: 0;
  position: sticky;
}
.header_wrapper {
  grid-gap: 10px;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  height: 70px;
  padding: 0 10px;
  margin: 0 auto;
  max-width: 1440px;
}

.header_logo img {
  max-width: 150px;
}
.anAuth {
  display: flex;
  justify-content: end;
  gap: 10px;
}
.button_header {
  color: #fff;
  font-size: 15px;
  height: 47px;
  width: 100%;
  font-weight: 300;
  border-radius: 50px;
  background-clip: padding-box, border-box;
  background-origin: border-box;
  display: flex;
  align-items: center;
  box-shadow: 0 5px 6px 0 #11141b1f;
  border: 3px solid #0000;
  transition: border 0.3s ease;
  justify-content: center;
  background-image: linear-gradient(180deg, #192232, #192232),
    linear-gradient(180deg, #212f44 20%, #192232 47%);
}
.button_header.blue {
  margin-left: 0;
  background-image: linear-gradient(180deg, #41c6ff, #1a64fc),
    linear-gradient(180deg, #79cdfd, #1a64fc);
  box-shadow: 0 5px 6px 0 #11141b1f, 0 0 36.54px 0 #3a7cffab;
  display: none;
}
.button_header:hover {
  border-color: #212f44;
}
.button_header:hover.blue {
  background-image: linear-gradient(180deg, #41c6ff, #1a64fc),
    linear-gradient(180deg, #79cdfd, #1a64fc);
  border-color: #0000;
}
.mainBtn {
  background-clip: padding-box, border-box;
  background-origin: border-box;
  border-radius: 50px;
  align-items: center;
  display: flex;
  height: 47px;
  width: 47px;
  justify-content: center;
  box-shadow: 0 5px 6px 0 #11141b1f;
  border: 3px solid #0000;
  transition: border 0.3s ease;
  background-image: linear-gradient(180deg, #192232, #192232),
    linear-gradient(180deg, #212f44 20%, #192232 47%);
}
.mainBtn.blue {
  background-image: linear-gradient(180deg, #41c6ff, #1a64fc),
    linear-gradient(180deg, #79cdfd, #1a64fc);
  box-shadow: 0 5px 6px 0 #11141b1f, 0 0 36.54px 0 #3a7cffab;
}
.mainBtn:hover {
  border-color: #212f44;
}
.header_burger svg {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  color: #2b90fe;
  cursor: pointer;
  transition: transform 0.4s;
  -webkit-user-select: none;
  user-select: none;
  width: 41px;
  height: 41px;
}

.header_burger svg .top {
  stroke-dasharray: 40 160;
}
.header_burger svg .middle {
  stroke-dasharray: 40 142;
  transform-origin: 50%;
  transition: transform 0.4s;
}
.header_burger svg .bottom {
  stroke-dasharray: 40 85;
  transform-origin: 50%;
  transition: transform 0.4s, stroke-dashoffset 0.4s;
}
.header_burger svg .line {
  fill: none;
  stroke: #2b90fe;
  stroke-width: 5.5;
  stroke-linecap: round;
  transition: stroke-dasharray 0.4s, stroke-dashoffset 0.4s;
}

.search_button {
  display: none;
  margin-right: 15px;
}
.search_button svg {
  width: 18px;
  transition: transform 0.3s ease;
}

.search_button:hover svg {
  transform: scale(1.2);
}
.main {
  padding: 0 0 40px;
  max-width: 1440px;
  overflow-x: hidden;
  margin: 0 auto;
}

.banner {
  margin-top: 40px;
  width: 100%;
  background: #0000;
  position: relative;
}

.banner_back {
  background: #192232;
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.banner_back img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  width: 100%;
}

.banner_infoblock {
  padding: 3%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}
.banner_infoblock h1 {
  text-shadow: 0 6.189px 8.252px #172e504d;
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 700;
  padding-bottom: 10px;
}
.banner_infoblock h2 {
  text-shadow: 0 6.189px 8.252px #172e504d;
  text-transform: uppercase;
  font-size: 3.5rem;
  font-weight: 700;
  opacity: 0.9;
  display: none;
}
.banner_info {
  grid-gap: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 65%;
}
.banner_info .iblock {
  align-items: center;
  background-color: rgba(18, 26, 41, 0.302);
  border-radius: 15px;
  display: flex;
  padding: 5px 10px;
  margin: 0;
}
.iblock.col {
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.iblock.col p {
  text-wrap: nowrap;
  font-size: 0.5rem;
  max-width: 100%;
  padding-top: 2px;
  text-align: center;
  width: 100%;
  font-weight: 400;
}
.iblock:first-child {
  grid-area: 1 / 1 / 1 / 3;
}

.iblock:first-child img {
  margin-right: 5px;
  width: 30px;
}
.banner_info .iblock h3 {
  font-size: 1rem;
  font-weight: 700;
}
.banner_info .iblock h3 span {
  color: #2b90fe;
}

.banner_img {
  position: absolute;
  bottom: auto;
  height: 150px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.categories_block {
  display: grid;
  min-height: 86px;
  grid-gap: 0;
  grid-template-columns: 100%;
  padding: 0 10px;
}
.categories_wrapper {
  display: grid;
  overflow: hidden;
  grid-template-columns: 23px calc(100% - 46px) 23px;
}
.categories_wrapper .arrow {
  align-items: center;
  background-color: #192232;
  border-radius: 50%;
  box-shadow: 0 0 13px 3px #0c111c;
  cursor: pointer;
  display: flex;
  height: 46px;
  justify-content: center;
  margin: 20px 0;
  position: relative;
  width: 46px;
  z-index: 3;
}
.categories_wrapper .arrow svg {
  color: #475774;
  height: 16px;
  transition: color 0.3s ease;
  width: 16px;
}
.categories_wrapper .arrow.left svg {
  transform: rotate(180deg);
}
.categories_wrapper .arrow.right {
  justify-self: flex-end;
}
.categories {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  box-sizing: content-box;
  align-items: center;
  padding: 0 35px;
}
.category {
  display: block;
  height: 46px;
  position: relative;
}
.inner {
  align-items: center;
  border-radius: 100px;
  color: #677a9d;
  cursor: pointer;
  display: flex;
  font-size: 1.1rem;
  font-weight: 500;
  height: 46px;
  justify-content: center;
  padding: 5px 17px 5px 10px;
  position: relative;
  transition: color 0.3s ease;
  white-space: nowrap;
  z-index: 2;
}
.category .inner:hover {
  color: #2b90fe;
}
.category.active .inner {
  background-image: linear-gradient(180deg, #41c6ff, #1a64fc),
    linear-gradient(180deg, #79cdfd, #1a64fc);
  box-shadow: 0 0 20px 0 #3a7cffab;
  color: #fff;
  transition: box-shadow 0.3s ease;
}
.category .inner svg {
  height: 18px;
  margin-left: 5px;
  margin-right: 8px;
  width: 18px;
}
.category.active .inner svg * {
  fill: #fff;
}
.categories span.count {
  border: 2px solid #465063;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 700;
  margin-left: 10px;
  padding: 3px 10px;
  transition: border-color 0.3s ease;
}
.category.active .inner span.count {
  border-color: #fff;
}
.providers {
  color: #fff;
  display: block;
  font-family: Inter, sans-serif;
  font-size: 1rem;
  height: 46px;
  position: relative;
  z-index: 3;
  margin: 15px 0 10px;
}
.providers.mainBtn {
  width: 100%;
}
.defaultSelect {
  background-color: #0000;
  box-shadow: none;
  cursor: pointer;
  outline: 0;
  -webkit-box-align: center;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
  min-height: 38px;
  position: relative;
  transition: all 100ms ease 0s;
  border-radius: 4px;
  box-sizing: border-box;
}
.css-hlgwow {
  -webkit-box-align: center;
  align-items: center;
  display: grid;
  flex: 1 1 0%;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  padding: 2px 8px;
  box-sizing: border-box;
}
.css-1wy0on6 {
  -webkit-box-align: center;
  align-items: center;
  align-self: stretch;
  display: flex;
  flex-shrink: 0;
  box-sizing: border-box;
}
.defaultSelect__single-value {
  align-items: center;
  display: flex;
  font-size: 1rem;
  white-space: nowrap;
  font-weight: 500;
  transition: color 0.3s ease;
  color: #677a9d;
  margin-left: 2px;
  margin-right: 2px;
  box-sizing: border-box;
  grid-area: 1 / 1 / 2 / 3;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.defaultSelect__single-value img {
  height: 24px;
  margin-right: 10px;
  width: 24px;
}
.defaultSelect__dropdown-indicator {
  transition: transform 0.3s ease, color 0.3s ease;
  display: flex;
  padding: 8px;
  box-sizing: border-box;
  color: #475774;
}
.css-8mmkcg {
  display: inline-block;
  fill: currentcolor;
  line-height: 1;
  stroke: currentcolor;
  stroke-width: 0;
}
.gamelist {
  margin-top: 20px;
  position: relative;
  padding: 0 10px;
  overflow: hidden;
  padding-bottom: 15px;
}
.gamelist .top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.title {
  align-items: center;
  background-color: #19223280;
  border: 2px solid rgba(70, 80, 99, 0.149);
  border-radius: 100px;
  display: flex;
  font-weight: 400;
  font-size: 0.9rem;
  height: 45px;
  padding: 0 15px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
  z-index: 1;
}
.top .title:hover {
  background-color: #192232b3;
  border-color: #2b90fecc;
}
.top .arrows .item:hover {
  background-color: #192232b3;
  border-color: #2b90fecc;
}

.title img {
  margin-right: 10px;
  width: 23px;
}
.top .arrows {
  align-items: center;
  display: flex;
  z-index: 1;
}
.arrows .item {
  align-items: center;
  background-color: #19223280;
  border: 2px solid rgba(70, 80, 99, 0.149);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  filter: drop-shadow(0 4.692px 5.631px rgba(17, 20, 27, 0.12));
  height: 45px;
  justify-content: center;
  transform-origin: center;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  width: 45px;
}
.arrows .item.left {
  margin-right: 10px;
}
.arrows .item svg {
  color: #677a9d;
  height: 15px;
  transition: color 0.3s ease-in-out, transform 0.3s ease;
  width: 15px;
}
.item.left svg {
  transform: rotate(180deg);
}
.gemerow {
  left: -10px;
  max-width: calc(100% + 20px);
  padding: 5px 10px;
  width: calc(100% + 20px);
  box-sizing: initial;
  display: flex;
  height: 100%;
  position: relative;
  transition-property: transform;
}
.slot {
  width: 100px;
  margin-right: 10px;
  padding: 0;
  flex-shrink: 0;
  height: 135px;
  position: relative;
  border-radius: 15px;
  overflow: visible;
  box-shadow: 0 5px 6px 0 #11141b40;
  position: relative;
  transition: transform 0.3s ease;
}
.slot:hover {
  transform: scale(1.08);
}
.slot .play {
  align-items: center;
  background-color: #10131fbf;
  border-radius: 25px;
  content: "";
  display: flex;
  flex-direction: column;
  height: 110%;
  justify-content: space-around;
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  width: 110%;
  will-change: transform;
  z-index: 2;
  padding: 7%;
}
.slot .play:hover {
  opacity: 100;
}
.slot .back {
  height: 100%;
  object-fit: cover;
  position: absolute;
  transition: transform 0.3s ease;
  width: 100%;
  border-radius: 15px;
}
.play .mainBtn.blue {
  border-radius: 50%;
  height: 55px;
  width: 55px;
}
.play .mainBtn {
  display: flex;
  font-size: 16px;
  font-weight: 300;
}
.play .down {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 0 5px;
  width: 100%;
}
.play h1 {
  font-weight: 700;
  overflow: hidden;
  padding: 0 15px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  font-size: 0.7rem;
}
.play p {
  color: #677a9d;
  font-size: 0.6rem;
  font-weight: 400;
  overflow: hidden;
  padding: 5px 15px 0;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}
.mainBtn:hover.blue {
  background-image: linear-gradient(180deg, #41c6ff, #1a64fc),
    linear-gradient(180deg, #79cdfd, #1a64fc);
  border-color: #0000;
}
.play .down .like {
  align-items: center;
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
  background-color: #192232cc;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  opacity: 0;
  transition: background-color 0.3s ease;
  height: 30px;
  width: 30px;
}
.play .down .like:hover {
  background-color: #192232;
}
.play .down .like svg {
  height: 18px;
  transition: transform 0.3s ease;
  width: 18px;
}
.play .down .like svg path {
  fill: #475774;
  stroke: #475774;
  transition: fill 0.3s ease, stroke 0.3s ease;
}
.slot:hover .play .like {
  animation: likeAppear 0.3s ease 0.3s both;
}
.play .down .like:hover {
  background-color: #192232;
}
@keyframes likeAppear {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.seo-textblock {
  margin: 30px 0 50px;
  min-height: 500px;
  padding: 0 10px;
}
.seo-textblock .seo-par {
  background-color: #19223280;
  background-image: none;
  border: 2px solid rgba(70, 80, 99, 0.149);
  padding-bottom: 25px !important;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 25px;
  box-shadow: 0 5px 6px 0 #11141b1f;
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.seo-tittle {
  align-items: center;
  background-color: #192232;
  display: grid;
  grid-template-columns: 1fr 20px;
  padding: 25px 5%;
  position: relative;
  z-index: 1;
}
.seo-tittle h2 {
  color: #fff;
  font-size: 20px !important;
  font-weight: 700;
  text-transform: uppercase;
}
.seo-text {
  color: #7a85a5;
  line-height: 150%;
  font-size: 14px;
  padding: 15px 15px 15px 4%;
}
.seo-text h3 {
  color: #fff;
  font-weight: 700;
  margin-right: 5px;
  display: inline !important;
}
.seo-text p {
  display: inline !important;
}

.footer {
  background-color: #121a29;
  max-width: 100vw;
  overflow: hidden;
}
.footer .wrap {
  margin: 0 auto;
  max-width: 1280px;
}
.footer .wrap .row {
  grid-gap: 30px;
  grid-template-columns: 1fr;
  padding-bottom: 30px;
  position: relative;
  width: 100%;
  display: grid;
}
.footer .row .col {
  display: flex;
  flex-direction: column;
  padding-left: 7%;
}
.footer .row .col .logo {
  margin-bottom: 20px;
  width: 180px;
}
.footer .row .col a,
.footer .row .col p {
  color: #677a9d;
  font-size: 12px;
  font-weight: 300;
  line-height: 18px;
  transition: 0.15s ease;
}
.footer .row .col h2 {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 8px;
}
.footer .row .col.list .subLink,
.footer .row .col.list a {
  display: inline-block;
}
.footer .row .col.list a,
.footer .row .col.list p {
  font-size: 14px;
  padding: 4px 0;
}
.footer .row .col.list .subLink:hover,
.footer .row .col.list a:hover {
  color: #fff;
}
.footer .row a:hover {
  opacity: 0.7;
}
.footer .row:after {
  background-color: #273140;
  bottom: 0;
  content: "";
  height: 1px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: calc(100% - 30px);
}
.footer .last {
  align-items: center;
  display: grid;
  padding: 30px 10px 0;
}
.footer .last .inLine {
  grid-gap: 10px;
  align-items: center;
  display: flex;
  width: 100%;
  justify-content: center;
}
.footer .last .inLine svg {
  height: 50px;
  margin-right: 15px;
  width: 50px;
}
.footer .last .inLine p {
  color: #677a9d;
  font-size: 13px;
  font-weight: 300;
}

.baseBlock {
  background-clip: padding-box, border-box;
  background-image: linear-gradient(180deg, #192232, #192232),
    linear-gradient(180deg, #212f44 20%, #192232 47%);
  background-origin: border-box;
  border: 3px solid #0000;
  border-radius: 25px;
  box-shadow: 0 5px 6px 0 #11141b1f;
}
.footer .last .inLine .rate {
  align-items: center;
  border-radius: 20px;
  color: #677a9d;
  display: flex;
  font-size: 12px;
  justify-content: center;
  padding: 10px 15px;
}
.footer .last .inLine a {
  transition: opacity 0.3s ease;
}
.footer .last .inLine svg {
  height: 50px;
  margin-right: 15px;
  width: 50px;
}
.footer .last .inLine p {
  color: #677a9d;
  font-size: 13px;
  font-weight: 300;
}
.footer .last .inLine a .ter {
  height: 32px;
  width: 40px;
}
.footer .row .col.list .subLink {
  cursor: pointer;
  text-decoration: underline;
}
.bottomMenuMobile {
  grid-gap: 10px;
  align-items: center;
  background-color: #121a29;
  border-top: 5px solid #1d2430;
  bottom: 0;
  display: none;
  grid-template-columns: calc(25% - 25px) calc(25% - 25px) 80px calc(25% - 25px) calc(
      25% - 25px
    );
  justify-content: center;
  left: 0;
  padding: 0 10px;
  position: fixed;
  width: 100vw;
  z-index: 4;
}
.bottomMenuMobile a {
  align-items: center;
  color: #475774;
  display: flex;
  flex-direction: column;
  font-size: 0.6rem;
  justify-content: center;
  text-transform: uppercase;
}
.bottomMenuMobile a.active {
  color: #2b90fe;
}
.bottomMenuMobile a .icon {
  display: none;
  margin-bottom: 5px;
  width: 28px;
}
.bottomMenuMobile a.active .icon {
  display: block;
}
.bottomMenuMobile a .iconDark {
  display: block;
  margin-bottom: 5px;
  width: 28px;
}
.bottomMenuMobile a.active .iconDark {
  display: none;
}
.bottomMenuMobile .mainBtn {
  height: 70px;
  position: relative;
  top: -10px;
  width: 70px;
}
.mainBtn span {
  z-index: 3;
}
.bottomMenuMobile .mainBtn img {
  height: 30px;
  width: 30px;
}
.mainBtn.blue:after {
  background-image: linear-gradient(180deg, #3ec2fa, #195fee);
  border-radius: 50px;
  bottom: 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0.1s ease-out;
  width: 100%;
}
.footer .last .inLine a:hover {
  opacity: 0.7;
}
@media screen and (min-width: 600px) {
  .footer .last {
    grid-gap: 15px;
    grid-template-columns: 1fr 1fr;
  }
  .footer .row .col {
    display: flex;
    flex-direction: column;
    padding-left: 0;
  }
  .footer .wrap .row {
    grid-gap: 20px;
  }
  .banner {
    border-radius: 25px;
  }
  .banner_back {
    border-radius: 25px;
  }
  .main {
    padding: 0 20px 50px;
  }
  .banner_info .iblock {
    padding: 10px 15px;
    margin-right: 15px;
  }
  .iblock.col p {
    font-size: 0.9rem;
  }
  .iblock:first-child img {
    margin-right: 10px;
  }
  .banner_infoblock h1 {
    font-size: 2.5rem;
  }
  .banner_infoblock {
    gap: 20px;
  }
  .banner_infoblock {
    padding: 5%;
  }
  .banner_img {
    bottom: 0;
    height: 250px;
    top: auto;
    transform: none;
  }
  .banner_info .iblock h3 {
    font-size: 1.3rem;
  }
  .categories_block {
    padding: 0;
  }
  .top .title {
    font-size: 1.2rem;
    height: 55px;
    padding: 8px 25px;
  }
  .top .arrows .item.left {
    margin-right: 10px;
  }
  .top .arrows .item {
    height: 55px;
    width: 55px;
  }
  .gamelist .top {
    margin-bottom: 25px;
  }
  .slot {
    width: 125px;
    height: 170px;
  }
  .gamelist {
    padding: 0;
    padding-bottom: 25px;
  }
  .play .mainBtn.blue {
    border-radius: 50%;
    height: 60px;
    width: 60px;
  }
  .play h1 {
    font-size: 0.8rem;
  }
  .play p {
    font-size: 0.7rem;
  }
  .footer {
    padding: 50px 20px;
  }
}
@media screen and (min-width: 900px) {
  .footer .wrap .row {
    grid-gap: 30px;
    grid-template-columns: 2fr 1fr 1fr 2fr;
  }
  .iblock:first-child img {
    margin-right: 10px;
  }
  .banner_infoblock h1 {
    font-size: 3rem;
  }
  .banner_info .iblock h3 {
    font-size: 2rem;
  }
  .iblock:first-child img {
    margin-right: 15px;
    width: 60px;
  }
  .banner_img {
    height: 400px;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
  }
  .banner_infoblock {
    gap: 50px;
  }
  .header_wrapper {
    grid-template-columns: auto 1fr;
    padding: 0 20px;
    height: 80px;
  }
  .header {
    background-color: #0000;
  }
  .button_header {
    margin-left: 15px;
    padding: 0 50px;
  }
  .header_burger {
    margin-left: 15px;
  }
  .anAuth {
    gap: 0;
  }
  .button_header {
    width: fit-content;
  }
  .button_header.blue {
    display: flex;
  }
  .header_logo img {
    max-width: 180px;
  }
  .search_button {
    display: flex;
  }
  body {
    padding-top: 20px;
  }
  .categories_block {
    grid-gap: 10px;
    grid-template-columns: calc(100% - 330px) 320px;
  }
  .providers {
    margin: 20px 0;
  }
  .slot {
    width: 150px;
    height: 200px;
    margin-right: 20px;
  }
  .play h1 {
    font-size: 17px;
  }
  .play p {
    font-size: 14px;
  }
  .seo-tittle {
    padding: 30px 2.5%;
  }
  .seo-tittle h2 {
    font-size: 24px !important;
  }
  .seo-text {
    color: #7a85a5;
    line-height: 150%;
    font-size: 14px;
    padding: 15px 15px 15px 4%;
  }
  .seo-textblock {
    padding: 35px;
  }
  .footer .last .inLine:last-child {
    justify-content: flex-end;
  }
  .play .down {
    padding: 0 20px;
  }
  .play .down .like {
    height: 40px;
    width: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .banner_infoblock h1 {
    font-size: 4.7rem;
  }
  .banner_infoblock h2 {
    display: block;
  }
  .banner_info {
    display: flex;
    gap: 0;
    max-width: 100%;
  }
  .play .mainBtn.blue {
    height: 90px;
    width: 90px;
  }
  .slot {
    width: 190px;
    height: 250px;
  }
}
@media screen and (max-height: 450px), (max-width: 700px) {
  .footer .wrap .last .inLine.top {
    grid-area: 1;
  }
  .bottomMenuMobile {
    display: grid;
  }
  .footer {
    padding: 50px 10px 100px;
  }
  .footer .wrap .last {
    grid-gap: 25px;
    grid-template-columns: 1fr;
  }
}
