@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

html {
	scroll-behavior: smooth;
}

body {
	overflow-x: hidden;
	background: #e5e8ed;
	font-family: 'Roboto', sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 150%;
	color: #282b30;
	text-align: left;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%;
}


p {
	margin-top: 16px;
}

ul {
	list-style: none;
}

ul,
ol {
	text-align: left;
}


a:hover {
	text-decoration: underline;
}



/* Title */
h1,
h2,
h3,
h4 {
	display: block;
	position: relative;
	font-weight: 700;
	text-align: left;
	text-transform: none;
	color: #282b30;
	margin-bottom: 20px;
	line-height: 120%;
}

h1 {
	font-size: 32px;
	color: #06e5a0;
  font-weight: 900;
}

h2 {
	font-size: 26px;
}

h3,
h4,
h5 {
	font-size: 20px;
}



/* Button */
.button {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	width: auto;
	min-width: 155px;
	height: auto;
	background: #06e5a0;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-border-radius: 100px;
	border-radius: 100px;
	font-size: 13px;
	font-weight: 700;
	font-style: normal !important;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	color: #000;
	cursor: pointer;
	padding: 14.5px 24px;
	margin: 16px 0 0 0;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	text-decoration: none;
}

.button:hover {
	-webkit-transform: scale(1.03);
	    -ms-transform: scale(1.03);
	        transform: scale(1.03);
	text-decoration: none;
}

.button.inverse {
	background: #9e01ff;
  color: #fff;
}

.button-box {
	text-align: center;
	margin: 0;
}


/* var */
.button>img,
.button>span {
	display: inline-block;
	position: relative;
	font: inherit;
	line-height: 1;
	vertical-align: middle;
}




/* Special */
.image img,
.background img {
	display: block;
	position: relative;
}

.background {
	display: block !important;
	position: absolute !important;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	margin: 0 !important;
	z-index: -1;
}

.background img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
  margin: 0 !important;
}

.js-expand-content {
	display: none;
	overflow: hidden;
}

.js-expand-content.expanded {
	height: 100%;
}

svg {
	display: inline-block;
	position: relative;
	vertical-align: inherit;
	fill: rgba(255, 255, 255, 1);
	line-height: 1;
}

use {
	fill: rgba(255, 255, 255, 1);
	fill-rule: evenodd;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

.path {
	fill: inherit;
	stroke: inherit;
	stroke-width: inherit;
}



/* Article */
.article ul {
  padding: 12px 20px;
}

.article ul>li {
	display: block;
	position: relative;
	list-style: none;
	padding: 0px 0px 0px 20px;
}

.article ul>li {
  line-height: 150%;
}
.article ul>li + li {
  margin-top: 6px;
}
.article ul>li:before {
  content: '';
	display: inline-block;
	position: absolute;
	top: 7px;
	left: 0px;
	width: 8px;
  height: 8px;
	-webkit-border-radius: 100%;
	        border-radius: 100%;
  background-color: #06e5a0;
}

.article ol {
  counter-reset: step;
  list-style: none;
  padding: 0;
}
.article ol > li {
  position: relative;
  counter-increment: step;
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
  text-transform: uppercase;
  color: #282b30;
  padding: 6px 20px 6px 70px;
  border: 1px solid #9e01ff;
  -webkit-border-radius: 12px;
          border-radius: 12px;
  overflow: hidden;
  background-color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  min-height: 50px;
}
.article ol > li + li {
  margin-top: 10px;
}
.article ol > li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 100%;
  background: #9e01ff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 800;
  font-size: 36px;
  line-height: 56%;
  text-align: center;
  color: #fff;
}





.article li a {
  text-decoration: underline;
  color: #282b30;
}
.article__button {
	margin: 16px auto 0 0;
}

article>*:first-child,
.article>*:first-child {
	margin-top: 0px;
}

article>*+*,
.article>*+* {
	margin-top: 16px;
}

article>*+h2,
.article>*+h2 {
	margin-top: 16px;
}

article>*+h3,
.article>*+h3 {
	margin-top: 16px;
}

article>*+h4,
.article>*+h4 {
	margin-top: 16px;
}

article>h2+*,
.article>h2+* {
	margin-top: 0px;
}

article>h3+*,
.article>h3+*,
article>h4+*,
.article>h4+* {
	margin-top: 0;
}


article p:first-child,
.article p:first-child {
	margin-top: 0px;
}

.section-list ul {
  padding: 0;
}
.section-list ul > li {
  padding: 6px 20px 6px 70px;
  border: 1px solid #9e01ff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  min-height: 50px;
  background-color: #fff;
  -webkit-border-radius: 12px;
          border-radius: 12px;
  overflow: hidden;
  font-weight: 500;
  font-size: 15px;
  line-height: 120%;
  text-transform: uppercase;
  color: #282b30;
}
.section-list ul > li + li {
  margin-top: 10px;
}
.section-list ul > li::before {
  content: '';
  display: block;
  width: 50px;
  left: 0;
  top: 0;
  height: 100%;
  position: absolute;
  -webkit-border-radius: 0;
          border-radius: 0;
  background-color: #9E01FF;
  background-image: url(../images/icons/list-icon.svg);
  background-position: center;
  background-size: 24px 24px;
  background-repeat: no-repeat;
}

.section-list ul > li ul, .section-list ol > li ul {
  margin-top: 10px;
}

.section-list ul > li ul > li, .section-list ol > li ul > li {
	display: block;
	position: relative;
	list-style: none;
	padding: 0px 0px 0px 20px;
  border: none;
  min-height: auto;
  font-weight: 400;
}
.section-list ul > li ul li + li, .section-list ol > li ul li + li {
  margin-top: 6px;
}
.section-list ul > li > ul li:before, .section-list ol > li > ul li:before {
  content: '';
	display: inline-block;
	position: absolute;
	top: 5px;
	left: 0px;
	width: 8px;
  height: 8px;
	-webkit-border-radius: 100%;
	        border-radius: 100%;
  background-image: none;
  background-color: #06e5a0;
}


/* Content */

.cover {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	position: relative;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	-webkit-flex-direction: column;
	flex-direction: column;
	height: 100%;
	width: 100%;
	z-index: 0;
	overflow: hidden;
}

.cover {
	max-width: 100%;
	overflow: hidden;
	padding-left: -webkit-calc(50% - ((1600px - 60px) / 2));
	padding-left: calc(50% - ((1600px - 60px) / 2));
	padding-right: -webkit-calc(50% - ((1600px - 60px) / 2));
	padding-right: calc(50% - ((1600px - 60px) / 2));
}

.section {
	margin-bottom: 20px;
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.12);
  background: #fff;
	padding: 20px;
	-webkit-border-radius: 12px;
	border-radius: 12px;
	position: relative;
	z-index: 0;
	overflow: hidden;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

.section>*,
.cover>* {
	position: relative;
}



/* HEADER */
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	-webkit-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	height: auto;
	overflow: unset;
	background: #000;
	color: rgba(255, 255, 255, 1);
	padding-top: 13px;
	padding-bottom: 13px;
	z-index: 1000;
	-webkit-border-radius: 0;
	border-radius: 0;
}


.header>* {
	display: block;
	position: relative;
	width: auto;
}

.header__button-menu {
	display: none;
}


/* Menu */
.header__menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.header__menu a {
	cursor: pointer;
}

.header__menu>ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	margin: 0px;
  width: auto;
}



.header__menu>ul>li {
	display: block;
	position: relative;
	padding: 0px;
}

.header__menu>ul>li:before {
	display: none;
}

.header__menu>ul>li>a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	font-size: 16px;
	line-height: 128%;
	font-weight: 600;
	text-align: center;
	color: #fff;
	border-color: transparent;
	text-transform: uppercase;
  padding-left: 22px;
  position: relative;
}
.header__menu>ul>li>a img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}
.header__menu>ul>li>a:hover {
	color: #06E5A0;
}
.header__menu>ul>li>a img:last-child {
  opacity: 0;
}
.header__menu>ul>li>a:hover img:last-child {
  opacity: 1;
}
.header__menu>ul>li>a:hover img:first-child{
  opacity: 0;
}
.header__menu>ul>li+li {
	margin-left: 24px;
}

.header__buttons{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__button {
	min-width: 100px;
  padding: 12px 20px;
  margin: 0 0 0 12px;
  min-height: 44px;
}

.header__button img {
  max-width: 16px;
  margin-right: 8px;
}
/* hover */
.header__menu>ul>li:hover>a {
	text-decoration: none;
}


.header__menu .header__button {
	display: none;
}

.header__language {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	font-weight: 600;
	font-size: 16px;
	line-height: 147%;
	text-transform: uppercase;
	text-decoration: none !important;
	color: #fff;
	margin: 0 12px 0 22px;
}

.header__language img {
	width: 24px;
	margin-right: 8px;
	height: 24px;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-border-radius: 100%;
	border-radius: 100%;
}


/* logo */
.header__logo {
	max-width: 134px;
	margin-right: 126px;
}

.header__logo>img {
	display: block;
	position: relative;
	max-width: 100%;
}

.header__logo[href]:hover {
	opacity: 0.50;
}



.page>* {
	position: relative;
}


.page__sidebar {
	position: -webkit-sticky;
	position: sticky;
	height: auto;
	max-height: -webkit-calc(100vh - 76px);
	max-height: calc(100vh - 76px);
	overflow-y: auto;
	top: 20px;
	padding-bottom: 20px;
	width: 240px;
	margin-right: 20px;
}

.page__content {
	width: -webkit-calc(100% - 260px);
	width: calc(100% - 260px);
	padding-right: 260px;
}

.page {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	-webkit-align-items: stretch;
	align-items: stretch;
	max-width: 1600px;
	width: 100%;
	margin: 0 auto;
	padding: 90px 0 0 0;
}

.main {
	width: -webkit-calc(100% - 580px);
	width: calc(100% - 580px);
	height: 100%;
}

/* Prime */


.prime {
  margin-bottom: 20px;
	min-height: 360px;
	background: #000;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
  padding: 56px;
}


.prime__wrap {
	width: 100%;
	max-width: 485px;
	z-index: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.prime__button {
	margin: 0;
}


.prime__image {
	position: absolute;
	bottom: 0;
	height: 100%;
	right: 56px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}


.prime__rating {
	margin-bottom: 6px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	font-weight: 400;
	font-size: 15px;
	text-transform: uppercase;
	color: #fff;
}

.prime__rating span {
	font-weight: 700;
}

.prime__rating p {
	margin: 0 6px 0 0;
  opacity: 0.8;
}


/* F.A.Q. */

.faq__item {
	padding: 0px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
  border: 1px solid #9e01ff;
  -webkit-border-radius: 12px;
          border-radius: 12px;
  overflow: hidden;
}

.faq__item + .faq__item {
	margin-top: 8px;
}

.faq__list>li:before {
	display: none;
}


.faq-item__title {
	cursor: pointer;
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  color: #fff;
	margin: 0;
	text-align: left;
	padding: 16px 56px 16px 20px;
	-webkit-transition: none;
	-o-transition: none;
	transition: none;
	background: #9e01ff;
}

.faq-item__title:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 20px;
	width: 16px;
	height: 16px;
	background: url('../images/icons/faq-arrow.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

/* var */
.faq__item.active .faq-item__title:before {
	-webkit-transform: scale(-1);
	-ms-transform: scale(-1);
	transform: scale(-1);
}

.faq-item__title:hover {
	opacity: 0.8;
}

.faq-item__desc .wrap {
	padding: 16px 20px;
}


.faq-item__desc p {
	margin: 0;
	color: #282b30;
  line-height: 150%;
}

.faq-item__desc p+p {
	margin-top: 16px;
}

/* FOOTER */
.footer {
	padding-left: -webkit-calc(50% - ((1040px - 20px) / 2));
	padding-left: calc(50% - ((1040px - 20px) / 2));
	padding-right: -webkit-calc(50% - ((1040px - 20px) / 2));
	padding-right: calc(50% - ((1040px - 20px) / 2));
	background-color: #fff;
	padding-top: 32px;
	padding-bottom: 32px;
  gap: 32px;
}

.footer__langs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer__langs a {
  -webkit-border-radius: 6px;
          border-radius: 6px;
  padding: 12px;
  background: #eef1f2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: #282b30;
  text-decoration: none!important;
}
.footer__langs a:hover {
  opacity: 0.8;
}
.footer__langs a img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-border-radius: 100%;
          border-radius: 100%;
}
.footer__menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 30px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer__menu p {
  font-weight: 700;
  font-size: 12px;
  line-height: 125%;
  text-transform: uppercase;
  color: #000;
  margin: 0 0 16px 0;
}

.footer__menu li + li {
  margin-top: 3px;
}
.footer__menu a {
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  color: #868c96;
  text-decoration: none!important;
  display: inline-block;
}
.footer__menu a:hover {
  color: #000;
}

.footer__payments {
  padding: 20px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 20px;
}

.footer__aditional {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px;
}
.footer__aditional p {
  margin: 0;
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  color: #868c96;
}

.footer__aditional img {
  max-width: 40px;
}




/* Breadcrumbs */
.breadcrumbs {
	margin-bottom: 10px;
}

.breadcrumbs>li {
	display: inline-block;
	padding: 0px;
}

.breadcrumbs>li:before {
	display: none;
}

.breadcrumbs>li a {
	display: inline-block;
	color: #fff;
	text-decoration: none;
  text-transform: uppercase;
}

.breadcrumbs>li a:hover {
	text-decoration: underline;
	color: #fff;
}

.breadcrumbs>li a:not([href]):hover {
	text-decoration: none;
	color: #fff;

}
.breadcrumbs>li a:not([href]){
  color: rgba(255, 255, 255, 0.8);
}
.breadcrumbs>li:not(:last-child):after {
	content: '|';
	display: inline-block;
	position: relative;
	font: inherit;
	color: rgba(255, 255, 255, 1);
	margin: 0px 8px;
}

.events {
	position: -webkit-sticky;
	position: sticky;
	top: 90px;
	height: auto;
	max-height: -webkit-calc(100vh - 90px);
	max-height: calc(100vh - 90px);
	overflow-y: auto;
	width: 290px;
  padding: 0 20px 20px 30px;
}

.events::-webkit-scrollbar {
	display: none;
}

.events__wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	-webkit-flex-direction: column;
	flex-direction: column;
}


.events__block {
	margin: 0px 0px 20px 0;
  -webkit-border-radius: 12px;
          border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.12);
}

.events__head {
	padding: 9px 40px 9px 12px;
  font-weight: 700;
  font-size: 12px;
  line-height: 125%;
  text-transform: uppercase;
  color: #3e4049;
	background: #eef1f2;
  position: relative;
  cursor: pointer;
}
.events__head::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  right: 12px;
  top: 0;
  margin: auto;
  bottom: 0;
  background-image: url(../images/icons/arrow.svg);
  background-position: center;
  background-size: contain;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  background-repeat: no-repeat;
}

.events__menu {
	padding: 0px;
	background-color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	-webkit-flex-direction: column;
	flex-direction: column;
}

.events__menu li+li {
  border-top: 1px solid #e2e8ee;
}

.events__item a {
	display: block;
	text-decoration: none;
	cursor: pointer;
	padding: 6px 20px 6px 40px;
	font-weight: 400;
	font-size: 14px;
	color: #3e4049;
	position: relative;
}

.events__item a img {
	position: absolute;
	left: 12px;
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
	top: 0;
	bottom: 0;
	margin: auto;
}

.events__item a:hover {
	-webkit-box-shadow: 2px 2px 27px -7px rgba(197,203,209,1) inset;
	        box-shadow: 2px 2px 27px -7px rgba(197,203,209,1) inset;
}
.events__link {
  background: #eef1f2;
  padding: 9px 12px;
  font-weight: 700;
  font-size: 12px;
  line-height: 125%;
  text-transform: uppercase;
  color: #3e4049;
  display: block;
  text-decoration: none!important;
}
.section.navigation {
	display: none;
}
.navigation {
  -webkit-border-radius: 12px;
          border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.12);
}
.navigation__button {
	cursor: pointer;
	text-align: left;
	padding: 9px 40px 9px 12px;
	color: #3e4049;
  line-height: 130%;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	overflow: hidden;
	position: relative;
	background: #eef1f2;
}

.navigation__button::before {
	content: '';
	display: block;
	width: 12px;
	height: 12px;
	background-image: url(../images/icons/arrow.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	right: 12px;
	top: 0;
	bottom: 0;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
	margin: auto;
}



.navigation ul {
	padding: 0;
	background: #fff;
	-webkit-border-radius: 0 0 12px 12px;
	border-radius: 0 0 12px 12px;
	overflow: hidden;
}

.navigation li:not(:last-child){
  border-bottom: 1px solid #e2e8ee;;
}
.navigation a {
  padding: 8px 12px;
  display: block;
  text-decoration: none!important;
  font-weight: 400;
  font-size: 14px;
  line-height: 129%;
  color: #3e4049;
}

.navigation a:hover {
	color: #06e5a0;
  font-weight: 700;
}

.accordion--js.active::before {
	-webkit-transform: scale(-1);
	    -ms-transform: scale(-1);
	        transform: scale(-1);
}


.sidebar {
	position: -webkit-sticky;
	position: sticky;
	top: 90px;
	height: calc(100vh - 90px);
	overflow-y: auto;
	width: 290px;
  padding: 0px 30px 90px 20px;
}

.sidebar::-webkit-scrollbar {
	display: none;
}

.sidebar__scroll {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	-webkit-flex-direction: column;
	flex-direction: column;
}

.bets__item {
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.12);
  background: #000;
  border: 1px solid #000;
  padding: 11px 16px;
  -webkit-border-radius: 12px;
          border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  line-height: 125%;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none!important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;

}
.bets__item:hover{
  border-color: #fff;
}
.bets__item img {
	max-width: 18px;
  margin-right: 10px;
}

.sidebar__ticket {
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.12);
  background: #000;
  -webkit-border-radius: 12px;
          border-radius: 12px;
  overflow: hidden;
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  text-decoration: none!important;
}

.sidebar__ticket-head {
  text-decoration: none!important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0px 16px 0px 16px;
}
.sidebar__ticket-head span {
  font-weight: 700;
  font-size: 14px;
  line-height: 125%;
  text-transform: uppercase;
  color: #fff;
  border-top: 5px solid #0ce5a0;
  display: block;
  padding: 14px 0 9px 0;
}
.sidebar__ticket-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.sidebar__ticket-links .links-item {
  font-weight: 700;
  font-size: 14px;
  line-height: 125%;
  text-transform: uppercase;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  padding: 9px 5px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: block;
  text-decoration: none!important;
}
.sidebar__ticket-links .links-item:first-child {
  border-bottom: 2px solid #0ce5a0;
  color: #fff;
}
.sidebar__ticket-info {
  padding: 32px 16px 20px 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.sidebar__ticket-info p {
  margin: 0 0 24px 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: #818e95;
}
.sidebar__ticket-info a {
  border: 1px solid #6f7b8d;
  -webkit-border-radius: 100px;
          border-radius: 100px;
  padding: 12px 20px;
  display: block;
  text-align: center;
  text-decoration: none!important;
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #818e95;
}
.sidebar__ticket-info img {
  max-width: 82px;
  margin-bottom: 26px;
}
.sidebar__ticket-info span {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #818e95;
  border: 1px solid #6f7b8d;
  border-radius: 100px;
  padding: 12px 20px;
  background: transparent;
  outline: none;
  box-shadow: none;
}
.sidebar__ticket-info input::placeholder {
  color: #818e95;
  opacity: 1;
}
.sidebar__ticket-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 8px 12px;
  background: #181818;
  gap: 6px;
}
.sidebar__ticket-footer span {
  border: 1px solid #6f7b8d;
  -webkit-border-radius: 100px;
          border-radius: 100px;
  display: block;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: none;
  outline: none;
  padding: 9px 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: #6f7b8d;
  width: -webkit-calc(50% - 3px);
  width: calc(50% - 3px);
}
.sidebar__ticket-footer .button {
  width: -webkit-calc(50% - 3px);
  width: calc(50% - 3px);
  min-width: auto;
  font-size: 11px;
  padding: 14px 5px;
  min-height: auto;
  margin: 0;
}
/**/
.sidebar__slots{
  -webkit-border-radius: 12px;
          border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.12);
}
.sidebar__slots-title{
  padding: 0px 16px;
  background-color: #000;
}
.sidebar__slots-title span {
  padding: 13px 16px 8px 16px;
  font-weight: 700;
  font-size: 14px;
  line-height: 125%;
  text-transform: uppercase;
  color: #fff;
  border-top: 5px solid #06e5a0;
  display: inline-block;
}
.sidebar__slots ul{
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 8px;
  background-color: #fff;
  padding: 8px;
}

.sidebar__slots li {
	width: -webkit-calc(50% - 4px);
	width: calc(50% - 4px);
}
.sidebar__slot {
	display: block;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	overflow: hidden;
	text-decoration: none !important;
}

.sidebar__slot img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

.sidebar__slot:hover>img {
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}

.sidebar__slot span {
	width: 100%;
	background: #2daf55;
	text-align: center;
	display: block;
	padding: 7px;
	color: #FFF;
	line-height: 16px;
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	z-index: 1;
}


.app-button {
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 900;
  line-height: 115%;
  text-align: center;
  min-width: 240px;
  margin-right: auto;
}
.app-button img {
  margin-right: 20px;
  max-width: 32px;
}
.app-block {
  position: relative;
  padding: 12px;
  -webkit-border-radius: 12px;
          border-radius: 12px;
  overflow: hidden;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 16px;
}
.app-block h2, .app-block h3 {
  color: #fff;
  width: 100%;
  margin: 0;
}
.app-block ol li {
  border: none;
}
.app-block ol {
  width: auto;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.app-block .app-button {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  margin: 0;
}

.app {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  padding: 0 5%;
  gap: 20px;
}
.app__image {
  max-width: 244px;
}
.app .app-button {
  margin: 0;
}
.back-top {
	position: absolute;
	right: -60px;
	bottom: 20px;
	height: 80%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	-webkit-align-items: flex-end;
	align-items: flex-end;
}

.back-top__button {
	z-index: 100;
	width: 40px;
	height: 40px;
	cursor: pointer;
	position: -webkit-sticky;
	position: sticky;
	bottom: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
}

.back-top__button:hover {
	opacity: 0.6;
}





/**table**/
.table {
  border: 1px solid #9e01ff;
  -webkit-border-radius: 12px;
          border-radius: 12px;
  display: block;
  width: 100%;
  overflow: hidden;
}
.table thead {
  background: #9e01ff;
  display: block;
}
.table tr {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.table tr:not(:last-child) {
  border-bottom: 1px solid #e2e8ee;
}
.table td:not(:last-child) {
  border-right: 1px solid #e2e8ee;
}
.table th:not(:last-child) {
  border-right: 1px solid #e2e8ee;
}
.table th {
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: #fff;
}
.table th, .table td {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 8px 20px;
}
.table td {
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #282b30;
}
.table_about th:first-child, .table_about td:first-child {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 245px;
      -ms-flex: 0 1 245px;
          flex: 0 1 245px;
}
.table tbody {
  display: block;
  width: 100%;
}
.blocks {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 20px
}
.blocks .block {
  width: -webkit-calc(50% - 10px);
  width: calc(50% - 10px)
}
.block {
  border: 1px solid #9e01ff;
  -webkit-border-radius: 12px;
          border-radius: 12px;
  overflow: hidden;
  background-color: #fff;
}
.block__head {
  background: #9e01ff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: #fff;
  min-height: 46px;
  padding: 8px 20px;
}
.block__head img {
  max-width: 30px;
  margin-right: 20px;

}
.block p {
  padding: 12px 20px;
  margin: 0;
}
.block a {
  color: inherit;
}
.block p + p {
  padding-top: 0

}
.blocks.blocks_advantages ul{
  padding-left: 70px;
}


.upto {
  padding: 85px 65px;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.upto_start {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.upto__wrap {
  max-width: 500px;
  width: 100%;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.upto__title {
  margin: 0 0 4px 0;
  font-weight: 900;
  font-size: 28px;
  line-height: 120%;
  color: #06e5a0;
  text-align: center;
}
.upto__text {
  font-weight: 700;
  font-size: 20px;
  line-height: 160%;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  margin: 0;
}



.bonus {
  padding: 20px;
  -webkit-border-radius: 12px;
          border-radius: 12px;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  background: -webkit-gradient(linear, left top, right top, from(#07585c), to(#041b33));
  background: -o-linear-gradient(left, #07585c 0%, #041b33 100%);
  background: linear-gradient(90deg, #07585c 0%, #041b33 100%);
}
.bonus > p {
  color: #fff;
  margin-bottom: 16px;
  margin-top: 0;
}
.bonus__title {
  margin: 0 0 20px 0;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: #fff;
}
.bonus__block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.bonus__image {
  border: 1px solid #06E5A0;
  -webkit-border-radius: 12px;
          border-radius: 12px;
  overflow: hidden;
  position: relative;
  width: 330px;
}
.bonus__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bonus__button {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  margin: auto;
  bottom: 30px;
  max-width: 90%;
}
.bonus__button:hover {
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #fff;
}
.bonus ul {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: auto;
}
.bonus ul li {
  border: none;
}

.bonus-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.bonus-block .bonus {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.bonus-block .bonus__button {
  position: static;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  margin: 16px auto 0 0;
}


.tile {
  -webkit-border-radius: 12px;
          border-radius: 12px;
  overflow: hidden;
  position: relative;
  padding: 20px 24px 20px 211px;
}
.tile h3 {
  color: #fff;
}
.tile__image {
  position: absolute;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 0;
  height: 100%;
}
.tile ul li {
  border: none;
}


.reviews .block__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.block__stars {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.block__stars img {
  max-width: 28px;
  margin: 0;
}

.rating {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 16px;
}
.rating__item {
  width: -webkit-calc(33.33333% - 10.666666px );
  width: calc(33.33333% - 10.666666px );
  border: 1px solid #9e01ff;
  -webkit-border-radius: 12px;
          border-radius: 12px;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.rating__item p {
  padding: 8px 20px;
  background: #9e01ff;
  margin: 0;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: #fff;
  width: 100%;
  text-align: center;
}

.rating__item > div {
  padding: 12px;
}
.rating__item > div span {
  background: #06e5a0;
  -webkit-border-radius: 100%;
          border-radius: 100%;
  width: 40px;
  height: 40px;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  margin-right: 6px;
  font-weight: 600;
  font-size: 15px;
  line-height: 40px;
  color: #282b30;

}
.rating__item > div img {
  display: inline-block;
  margin-left: 2px;
  vertical-align: middle;
}


.conclusion {
  padding: 20px;
  background: none;
}
.conclusion__block {
  width: 70%;
  -webkit-border-radius: 12px;
          border-radius: 12px;
  padding: 24px 20px;
  background-color: #fff;
}


.details {
  border: 1px solid #8f30f4;
  -webkit-border-radius: 12px;
          border-radius: 12px;
  padding: 20px;
}

.loyality h3, .loyality p, .loyality h2 {
  color: #fff;
}
.loyality .block p {
  color: #000;
}
.loyality > h2 {
  margin-top: 0;
}

.banner {
  padding: 20px;
  background-color: #000;
}
.banner__block {
  background-color: #fff;
  -webkit-border-radius: 12px;
          border-radius: 12px;
  padding: 24px 20px;
  width: 53%;
  margin: 0;
}
.banner__image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.banner__button {
  margin: 0;
}




.classic h3, .classic p, .classic h2 {
  color: #fff;
}
.classic .block p {
  color: #000;
}
.classic > h2 {
  margin-top: 0;
}
.classic .blocks {
  gap: 16px;
}
.classic .block {
  background: rgba(255, 255, 255, 0.92);
  border: none;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}


.esport {
  padding: 20px;
  -webkit-border-radius: 6px;
          border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.esport h3 {
  color: #fff;
}
.esport__wrap {
  max-width: 455px;
  margin: auto;
  width: 100%;
}
.esport__image {
  position: absolute;
  top: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  z-index: -1;
  height: 100%;
}
.esport__image_left {
  left: 0;
}
.esport__image_right {
  right: 0;
}
