:root {
  --font-family: "Open Sans", sans-serif;
  --content-width: 1500px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --bg-body: #09090B;
  --bg-container: #0C111D;
  --color-blue: #3E548E;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked+.custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus+.custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled+.custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

.page {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
}

.page__body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  font-size: 16px;
  background: var(--bg-body);
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

.site-container {
  overflow: hidden;
}

.is-hidden {
  display: none !important;
  /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

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

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}

.input-reset::-webkit-search-decoration,
.input-reset::-webkit-search-cancel-button,
.input-reset::-webkit-search-results-button,
.input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span {
  margin: 0;
  padding: 0;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 0;
  background-color: var(--bg-body);
  z-index: 100;
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__logo svg {
  width: 80px;
}

.header__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.header__btns a {
  color: #fff;
  border-radius: 15px;
  padding: 10px 15px;
}

.header__login {
  background-color: #172036;
}

.header__reg {
  -webkit-box-shadow: rgba(229, 69, 59, 0.4) 0px 0px 10px 2px;
  box-shadow: rgba(229, 69, 59, 0.4) 0px 0px 10px 2px;
  background-image: linear-gradient(to bottom, #e58f3b, #e28539, #de7c38, #da7237, #d66937);
}

.header__reg:hover {
  background-image: linear-gradient(to bottom, #f0973e, #ef8e3d, #ef863c, #ed7d3c, #ec743d);
}

.main {
  padding-top: 40px;
}

.main__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  position: relative;
}

.main__left {
  width: 84px;
}

.main__right {
  width: calc(100% - 114px);
  margin-left: 114px;
}

.left {
  background: var(--bg-container);
  border-radius: 15px;
  position: fixed;
  top: 80px;
  z-index: 100;
  height: 100%;
}

.left__list {
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
  scrollbar-width: none;
  height: 100%;
}

.left__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.left__link p {
  font-size: 12px;
  color: var(--color-blue);
  text-align: center;
}

.left__link svg {
  color: var(--color-blue);
  width: 24px;
}

.left__item:nth-child(2) .left__link p {
  color: #fff;
}

.left__item:nth-child(2) .left__link svg {
  color: #E5913B;
  -webkit-filter: drop-shadow(rgb(229, 69, 59) 0px 0px 8px);
  filter: drop-shadow(rgb(229, 69, 59) 0px 0px 8px);
}

.slider__swiper-slide {
  padding: 25px 65px;
  background-repeat: no-repeat;
  background-position: top right;
  height: 348px;
  background-size: contain;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 16px;
  background-size: auto 100%;
}

.slider__swiper-slide:nth-child(1) {
  background-image: url(../images/DJFTgq72rd6U.webp);
}

.slider__swiper-slide:nth-child(2) {
  background-image: url(../images/iuiDnVfmUwOa.webp);
}

.slider__swiper-slide:nth-child(3) {
  background-image: url(../images/ncpS5xrD1wt7.webp);
}

.slider__swiper-slide:nth-child(4) {
  background-image: url(../images/ei91772bOKF1.webp);
}

.slider__swiper-slide:nth-child(5) {
  background-image: url(../images/nMbFcbxvEVLX.webp);
}

.slider__swiper-slide:nth-child(6) {
  background-image: url(../images/SEava9TayF50.webp);
}

.slider__swiper-slide:nth-child(7) {
  background-image: url(../images/60lHj4zcPXTY.webp);
}

.slider__title {
  color: #FFA500;
  font-size: 28px;
  margin-bottom: 30px;
}

.slider__descr {
  font-size: 20px;
  color: #fff;
  margin-bottom: 25px;
}

.slider strong {
  color: #FFA500;
}

.slider__btn {
  display: block;
  -webkit-box-shadow: rgba(229, 69, 59, 0.4) 0px 0px 10px 2px;
  box-shadow: rgba(229, 69, 59, 0.4) 0px 0px 10px 2px;
  background-image: linear-gradient(to bottom, #e58f3b, #e28539, #de7c38, #da7237, #d66937);
  color: #fff;
  border-radius: 15px;
  padding: 10px 15px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.slider__btn:hover {
  background-image: linear-gradient(to bottom, #f0973e, #ef8e3d, #ef863c, #ed7d3c, #ec743d);
}

.banner__swiper-slide {
  padding: 25px;
  background-color: #0C111D;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  height: 144px;
  box-sizing: border-box;
  border-radius: 15px;
  margin-top: 15px;
}

.banner__title {
  font-size: 14px;
  color: #fff;
  width: 60%;
  bg
}

.banner__btn {
  color: #38BCE5;
  border-radius: 15px;
  padding: 4px 12px;
  font-size: 12px;
  background-color: #132C3D;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.banner__btn:hover {
  background-color: #193A50;
}

.banner__btn svg {
  width: 12px;
}

.banner__img {
  width: auto;
  height: 144px;
  display: block;
  object-fit: contain;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 100;
  border-bottom-right-radius: 15px;
  border-top-right-radius: 15px;
}

.partner__swiper-slide {
  opacity: 0.4;
}

.partner__swiper {
  width: calc(100% - 60px);
}

.partner {
  border-top: 1px solid #101626;
  border-bottom: 1px solid #101626;
  position: relative;
  margin: 30px 0;
}

.partner .swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 0;
}

.partner .swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 0;
}

.partner__swiper-slide:hover {
  opacity: 1;
}

.partner .swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  font-size: 20px;
}

.partner .swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  font-size: 20px;
}

.footer-wrapper {
  width: calc(100% - 114px);
  margin-left: 114px;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px 0;
}

.footer__bottom_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__bottom_top img {
  max-height: 40px;
  height: 100%;
}

.footer__bottom_left {
  display: flex;
  gap: 15px;
}

.footer__bottom_right {
  display: flex;
  gap: 10px;
}

.footer__logo {
  width: 80px;
  display: block;
}

.footer__descr {
  font-size: 12px;
  color: #5979CC;
}

.footer__telegram {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-size: 14px;
}

.footer__telegram svg {
  width: 16px;
  padding: 10px;
  border-radius: 100%;
  background-color: #172036;
  box-sizing: content-box;
}

.footer__top_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__top_left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 50%;
}

.footer__top_descr {
  font-size: 14px;
  color: #F1F3F9;
}

.footer__top {
  padding: 30px 0;
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.footer__top_list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.footer__top_title {
  color: #E5913B;
  font-size: 16px;
}

.footer__top_link {
  color: #F1F3F9;
  font-size: 16px;
}

.footer__top_right {
  display: flex;
  justify-content: space-between;
  width: 50%;
}

.slot {
  padding: 30px 0;
}

.main__title {
  font-size: 24px;
  color: #fafafa;
}

.slot__swiper {
  margin-top: 20px;
}

.slot__title {
  color: #f1f3f9;
  font-size: 14px;
}

.slot__bottom {
  padding: 10px 15px;
}

.slot__swiper-slide {
  background-color: #0C111D;
  border-radius: 15px;
  height: auto;
  cursor: pointer;
}

.slot__img {
  border-radius: 15px;
}

.slot__descr {
  font-size: 12px;
  color: #3e548e;
}

.swiper__btns {
  display: flex;
  gap: 10px;
}

.slot__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.swiper__btns .swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.swiper__btns .swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  font-size: 16px;
  color: #fff;
}

.swiper__btns .swiper-button-next,
.swiper__btns .swiper-button-prev {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #172036;
  border-radius: 100%;
  margin-top: 0;
  position: static;
}

.call {
  position: fixed;
  z-index: 1000;
  right: 20px;
  bottom: 20px;
  width: 45px;
  height: 45px;
  padding: 10px;
  background-color: #E5833C;
  border-radius: 100%;
}

.call:hover {
  transform: scale(1.1);
}

.menu {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.menu__list {
  width: 60%;
  border-bottom: 2px solid #172036;
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: #0C111D;
}

.menu__link {
  display: flex;
  gap: 5px;
  color: #3e548e;
}

.menu__link svg {
  width: 16px;
}

.menu__providers {
  color: #3e548e;
  width: 20%;
  border-bottom: 2px solid #172036;
  border-radius: 15px;
  display: flex;
  padding: 10px 20px;
  background-color: #0C111D;
  justify-content: space-between;
  align-items: center;
}

.menu__providers:hover {
  background-color: #172036;
}

.menu__search {
  display: flex;
  align-items: center;
  color: #3e548e;
  justify-content: space-between;
  width: 20%;
  border-bottom: 2px solid #172036;
  border-radius: 15px;
  background-color: #0C111D;
  padding: 10px 20px;
}

.menu__search:hover {
  background-color: #172036;
}

.css-3e6q73 {
  width: 16px;
}

.menu__item:nth-child(1) svg {
  color: #E58C3B;
}

.menu__item a:hover {
  color: #43699A;
}

.menu__item:nth-child(1) a {
  color: #fff;
}

.slot__top-play {
  position: relative;
}

.slot__play {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 101;
  width: 20px;
  height: 20px;
  border-radius: 15px;
  padding: 15px;
  color: #fff;
  background-image: linear-gradient(to bottom, #e58f3b, #e28539, #de7c38, #da7237, #d66937);
}

.slot__play:hover {
  background-image: linear-gradient(to bottom, #f0973e, #ef8e3d, #ef863c, #ed7d3c, #ec743d);
}

.slot__swiper-slide:hover .slot__play {
  display: block;
}

.slot__swiper-slide:hover .slot__top-play img {
  opacity: 0.5;
}

@media (max-width:1200px) {
  .left {
    display: none;
  }

  .main__right {
    width: 100%;
    margin-left: 0;
  }

  .footer-wrapper {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width:1100px) {
  .menu {
    flex-wrap: wrap
  }

  .menu__list {
    width: 100%;
  }

  .menu__providers {
    width: calc(50% - 10px);
  }

  .menu__search {
    width: calc(50% - 10px);
  }
}

@media (max-width:750px) {
  .slider__swiper-slide {
    padding: 25px;
  }
}

.slider__bg {
  background: #000;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 15px;
  z-index: 1;
  display: none;
}

@media (max-width:1000px) {
  .footer__top {
    flex-direction: column;
  }

  .footer__top_left {
    width: 100%;
  }

  .footer__top_right {
    width: 100%;
  }
}

@media (max-width:900px) {
  .slider__bg {
    display: block;
  }

  .slider__title,
  .slider__descr,
  .slider__btn {
    position: relative;
    z-index: 10;
  }

  .footer__bottom_top {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width:580px) {
  .footer__top_right {
    flex-direction: column;
    gap: 20px;
  }

  .footer__bottom_left {
    flex-wrap: wrap;
  }
}

@media (max-width:470px) {
  .menu__link {
    font-size: 14px;
  }

  .menu__list {
    flex-wrap: wrap;
    gap: 20px;
  }

  .menu__providers {
    width: 100%;
    font-size: 14px;
  }

  .menu__search {
    width: 100%;
    font-size: 14px;
  }
}

.accordion{
  padding: 20px;
  background-color: #0C111D;
  border-radius: 15px;
}

.accordion__icon {
  display: inline-block;
  width: 25px;
  height: 25px;
  background-image: url("../img/X.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform 0.3s ease-in-out;
}

.accordion__title{
  color: #fff;
  font-size: 22px;
}

.accordion__control {
  width: 100%;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  width: 150px;
  text-align: center;
  margin: 0 auto;
}

.accordion__content {
  display: none;
  padding-top: 15px;
}

.open .accordion__content {
  display: block;
  color: #fff;
}

.open .accordion__icon {
  transform: rotate(45deg);
}

.accordion__control svg{
  color: #fff;
  transition: all 0.4s ease-in-out;
}

.open .accordion__control svg{
  transform: rotate(-180deg);
  transition: all 0.4s ease-in-out;
}