
@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: #0A626A;
	font-family: 'Roboto', sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 150%;
  color: #003135;
	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;
}

.article ul, .article ol {
  text-align: left;
  background: #003135;
  -webkit-border-radius: 6px;
          border-radius: 6px;
  overflow: hidden;
  list-style: none;
}
.article ul > li, .article ol > li {
  padding: 19px 20px 19px 64px;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  line-height: 137%;
  position: relative;
}
.article ul > li:not(:last-child), .article ol > li:not(:last-child){
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}
.article li > ul, .article li > ol {
  margin-top: 20px;
}
.article ol {
  counter-reset: step;
  list-style: none;
}
.article ol > li{
  counter-increment: step;
}
.article ol > li::before {
  content: counter(step);
  -webkit-border-radius: 100%;
          border-radius: 100%;
  width: 24px;
  height: 24px;
  background: #2db155;
  font-weight: 800;
  font-size: 18px;
  line-height: 122%;
  color: #fff;
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  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;
}
.article ul > li {
  padding-left: 48px;
}
.article ul > li::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: #2db155;
  -webkit-border-radius: 100%;
          border-radius: 100%;
  position: absolute;
  left: 20px;
  top: 24px;
}
.article ul > li > p, .article ul > li > p:first-child {
  font-weight: 400;
  margin: 20px 0 0 0;
}
a:hover {
  text-decoration: underline;
}

strong {
  display: inline-block;
}

/* Title */
h1, h2, h3, h4 {
	display: block;
	position: relative;
  font-weight: 600;
	text-align: left;
	text-transform: uppercase;
  color: #fff;
	margin-bottom: 16px;
  line-height: 120%;
}

h1{
	font-size: 32px;
	margin-bottom: 16px;
  font-weight: 700;
}

h2 {
  font-size: 30px;
  color: #fff;
  background: -o-linear-gradient(top, #41af5a 0%, #1a5528 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#41af5a), to(#1a5528));
  background: linear-gradient(180deg, #41af5a 0%, #1a5528 100%);
  -webkit-border-radius: 6px;
          border-radius: 6px;
  padding: 10px 20px;
  text-transform: none;

}


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: 220px;
	height: auto;
  -webkit-box-shadow: 0 4px 18px 0 rgba(14, 24, 17, 0.25);
          box-shadow: 0 4px 18px 0 rgba(14, 24, 17, 0.25);
  background: #ff4949;
	-webkit-border-radius: 60px;
	        border-radius: 60px;
	font-size: 14px;
	font-weight: 600;
	font-style: normal !important;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	color: rgba(255,255,255,1.00);
	cursor: pointer;
	padding: 17px 24px;
	margin: 16px auto 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.04);
	    -ms-transform: scale(1.04);
	        transform: scale(1.04);
	text-decoration: none;
}


/* Button Inverse */
.button.inverse {
	-webkit-box-shadow: 0 4px 18px 0 rgba(14, 24, 17, 0.25);
	        box-shadow: 0 4px 18px 0 rgba(14, 24, 17, 0.25);
	background: #2e9344;
}
.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;
}
.button > img + span {
	margin-left: 10px;
}



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

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

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

.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__button {
	margin: 16px auto 0 0;
}
article > *:first-child,
.article > *:first-child {
	margin-top: 0px;
}

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

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;
}
.article p strong {
  font-weight: 600;
  font-size: 20px;
}

.article ul li::marker {
  font-size: 0.85em;
}
.article__image {
	-webkit-border-radius: 6px;
	        border-radius: 6px;
	overflow: hidden;
}
.article__image img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}

.article-bg {
  color: #0a626a;
}

/* Content */
.section,
.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%;
	margin: 0px auto;
	padding: 20px;
	z-index: 0;
	overflow: hidden;
	-webkit-border-radius: 6px;
	        border-radius: 6px;
}

.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 {
	background: #fff;
	margin-top: 20px;
}
.section > *,
.cover > * {
	display: block;
	position: relative;
}

.section__image {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.section_bg {
  background: none;
}
.section_bg > * {
  color: #fff;
}
.section__image {
  position: absolute;
  top: 172px;
  right: 0;
  max-width: 360px;
  margin: 0;
  z-index: 1;
}
/* 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: #003135;
	color: rgba(255, 255, 255, 1);
	padding-top: 16px;
	padding-bottom: 16px;
	z-index: 1000;
	-webkit-border-radius: 0;
	        border-radius: 0;
}


.header > * {
	display: block;
	position: relative;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	        -webkit-flex: 1 1 auto;
	        flex: 1 1 auto;
	width: auto;
}

.header__button-menu {
	display: none;
}


/* Menu */

.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;
	padding: 0px 16px;
	background: #124b4f;
	-webkit-border-radius: 60px;
	        border-radius: 60px;
}



.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: 400;
  text-align: center;
	color: #fff;
  border-color: transparent;
  text-transform: uppercase;
	padding: 10px 12px;
}

.header__menu > ul > li > a:hover {
	color: #2daf55;
}
.header__menu > ul > li + li {
  margin-left: 8px;
}

.header__menu > ul > li > a img {
	margin-right: 10px;
}
.header__buttons {
	-webkit-box-flex: 0;
	    -ms-flex: none;
	        -webkit-flex: none;
	        flex: none;
}
.header__button {
	padding: 14px 32px;
	min-width: auto;
  margin: 0px 0px 0px 8px;
}
.header__button:nth-child(1) {
	background: #185a61;
}
/* hover */
.header__menu > ul > li:hover > a {
  text-decoration: none;
}

.header__menu {
	margin-right: auto;
	-webkit-box-flex: 0;
	    -ms-flex: none;
	        -webkit-flex: none;
	        flex: none;
}

.header__menu .header__button-login,
.header__menu .header__button-signup {
	display: none;
}
.header__language {
	margin: 0 0 0 16px;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
}
.header__language img {
	width: 24px;
	height: 24px;
	-o-object-fit: cover;
	   object-fit: cover;
	-webkit-border-radius: 100%;
	        border-radius: 100%;
}


/* logo */
.header__logo {
	max-width: 129px;
	margin-right: 131px;
}
.header__logo > img {
  display: block;
  position: relative;
  max-width: 100%;
}

.header__.logo[href]:hover {
  opacity: 0.50;
}

.header__time {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: -webkit-inline-flex;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        -webkit-align-items: center;
	        align-items: center;
	color: #FFF;
	font-size: 13px;
	font-weight: 400;
	line-height: 22px;
	position: relative;
	-webkit-box-flex: 0;
	    -ms-flex: none;
	        -webkit-flex: none;
	        flex: none;
	margin-left: 16px;
}


.header__time img {
	margin-right: 6px;
	max-width: 15px;
}


.page {
  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;
  max-width: 1600px;
  margin: 0 auto;
  padding: 94px 30px 20px 30px;
}

.main {
  position: relative;
}
.main > * {
	position: relative;
}

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


/* Prime */

.prime {
	min-height: 380px;
	padding: 30px;
	margin-top: 0;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
	background-color: #000;
	-webkit-border-radius: 6px;
	        border-radius: 6px;
}


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

.prime__button {
	margin: 0;
}

.prime__wrap p {
	color: #FFF;
	margin: 0 0 16px 0;
	font-size: 15px;
}
.prime__image {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  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;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: 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;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.prime__rating p {
  margin: 0 8px 0 0;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.prime__rating span {
  font-weight: 700;
  font-size: 15px;
  line-height: 120%;
  text-transform: uppercase;
  color: #fff;
}


.upto {
	position: relative;
	padding: 32px 60px;
	min-height: 360px;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	    -ms-flex-align: start;
	        align-items: flex-start;
  -webkit-border-radius: 12px;
          border-radius: 12px;
  background-color: transparent;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.upto__wrap {
  max-width: 500px;
  width: 100%;
  text-align: center;
	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-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;

}


.upto__title {
	font-weight: 700;
	font-size: 32px;
	line-height: 120%;
	text-transform: uppercase;
	color: #fff;
	padding: 0;
	border: none;
	margin: 0 0 8px 0;
	background: none;
	text-align: center;
	-webkit-border-radius: 0;
	        border-radius: 0;
}
.upto__text {
	margin: 0 0 30px 0;
	font-weight: 700;
	font-size: 18px;
	line-height: 120%;
	text-transform: uppercase;
	color: #fff;
	padding: 0;
	border: none;
	text-align: center;
	background: none;
	-webkit-border-radius: 0;
	        border-radius: 0;
}
.upto__button {
	margin: 0;
}
.upto__image {
  position: absolute;
  bottom: 0;
  z-index: -1;
  right: 0;
  height: 100%;
  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;
}

.upto_center {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
/* F.A.Q. */

.faq__item {
	overflow: hidden;
	padding: 0px;
  background: #003135;
  -webkit-border-radius: 6px;
          border-radius: 6px;
}
.faq__list > li + li {
	margin-top: 20px;
}
.faq__list > li:before { display: none; }


.faq-item__title {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  text-transform: uppercase;
  padding: 16px 52px 16px 20px;
  position: relative;
  cursor: pointer;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  color: #fff;
  margin: 0;
}

.faq-item__title:before {
	content: '';
	display: block;
	position: absolute;
	top: 16px;
	right: 16px;
	width: 24px;
	height: 24px;
	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__desc .wrap {
	border-top: 1px solid rgba(255, 255, 255, 1);
	padding: 16px;
}

.faq-item__desc p {
	margin: 0;
  color: #fff;
}

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

/* FOOTER */
.footer {
  -webkit-border-radius: 0;
          border-radius: 0;
  margin-top: 0;
  padding-top: 30px;
  padding-bottom: 30px;
	background: #002f33;
}

.footer__wrap {
  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;
}
.footer__logo {
  width: 275px;
}
.footer__menu {
  -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-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}
.footer__menu ul {
  width: auto;
  list-style: none;
}
.footer__menu ul li > strong {
  font-weight: 700;
  font-size: 16px;
  line-height: 125%;
  text-transform: capitalize;
  color: #fff;
}

.footer__menu ul li + li {
  margin-top: 12px;
}
.footer__menu ul li a {
  font-weight: 400;
  font-size: 14px;
  line-height: 165%;
  color: #b9cdcf;
  display: inline-block;
  text-decoration: none!important;
}
.footer__menu ul li a:hover {
  color: #fff;
}
.footer__menu ul li .footer__menu-app {
  background: #00b35c;
  padding: 6px 22px 6px 52px;
  position: relative;
  -webkit-border-radius: 20px;
          border-radius: 20px;
  font-weight: 400;
  font-size: 12px;
  line-height: 108%;
  color: #fff;
}
.footer__menu-app img {
  position: absolute;
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  left: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.footer__menu-app span {
  font-weight: 700;
  font-size: 14px;
  line-height: 114%;
  color: #fff;
  display: block;
}
.footer__menu ul li .footer__menu-app:hover {
  background: #185b63;
}
.footer__desc {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  margin-top: 32px;
}
.footer__desc p {
  background: #185b63;
  -webkit-border-radius: 15px;
          border-radius: 15px;
  padding: 16px;
  margin: 0;
  font-weight: 400;
  font-size: 12px;
  line-height: 165%;
  color: #b9cdcf;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.footer__desc-logo {
  background: #185b63;
  width: 130px;
  -webkit-border-radius: 15px;
          border-radius: 15px;
  padding: 14px 12px;
  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;
}
.footer__text {
  position: relative;
  padding-right: 50px;
  margin-top: 32px;
}
.footer__text p {
  font-weight: 400;
  font-size: 12px;
  line-height: 165%;
  color: #b9cdcf;
  margin: 0;
}
.footer__text a {
  color: #00b35c;
}
.footer__text span {
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  color: #fff;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}




/* Breadcrumbs */
.breadcrumbs {
	margin-bottom: 6px;
}
.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:not(:last-child):after {
	content: '/';
	display: inline-block;
	position: relative;
	font: inherit;
	color: rgba(255, 255, 255, 1);
	margin: 0px 2px 0px 4px;
}

.main__navigation{
	display: none;
}
.navigation {
	margin-top: 10px;
}
.navigation__head {
	cursor: pointer;
	text-align: left;
	padding: 8px 36px 8px 11px;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	overflow: hidden;
	-webkit-border-radius: 6px 6px 0px 0px;
	        border-radius: 6px 6px 0px 0px;
	position: relative;
	background: #003135;
}

.navigation__head::before{
	content: '';
	display: block;
	width: 13px;
	height: 13px;
	background-image: url(../images/icons/events-link.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	right: 10px;
	top: 0;
	bottom: 0;
	margin: auto;
	-webkit-transform: scale(-1);
	    -ms-transform: scale(-1);
	        transform: scale(-1);
}
.navigation__head.active {
	-webkit-border-radius: 6px;
	        border-radius: 6px;
}
.navigation ul {
	padding:0;
	background: #fff;
	-webkit-border-radius: 0 0 6px 6px;
	        border-radius: 0 0 6px 6px;
	overflow: hidden;
}

.navigation a {
  font-weight: 400;
  font-size: 15px;
  line-height: 120%;
  color: #0a626a;
  opacity: 0.5;
	display: block;
	text-decoration: none;
	padding: 8px 10px;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

.navigation a:hover {
  opacity: 1;
  color: #003135;
}

.accordion--js.active::before  {
	-webkit-transform: none;
	    -ms-transform: none;
	        transform: none;
}

.sidebar {
	position: -webkit-sticky;
	position: sticky;
	top: 94px;
	height: -webkit-calc(100vh - 114px);
	height: calc(100vh - 114px);
	overflow-y: auto;
	width: 240px;
  margin-right: 20px;
}
.sidebar::-webkit-scrollbar {
	display: none;
}

.sidebar__game {
  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;
  margin-bottom: 10px;
  -webkit-border-radius: 12px;
          border-radius: 12px;
  padding: 12px;
  background: #003135;
  text-decoration: none!important;
}
.sidebar__game-image {
  -webkit-border-radius: 6px;
          border-radius: 6px;
  overflow: hidden;
  margin-bottom: 10px;
}
.sidebar__game-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sidebar__game-title {
  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;
}
.sidebar__game-title p {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #fff;
  margin: 0 0 4px 0;
}
.sidebar__game-title span {
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
  color: rgba(255, 255, 255, 0.5);
}


.slots {
	padding: 0;
	background: transparent;
	overflow: initial;
}
.slots li::before {
	display: none;
}
.slots__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-wrap: wrap;
	        -webkit-flex-wrap: wrap;
	        flex-wrap: wrap;
	margin: -10px;
	width: auto;
}
.slots-item {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 calc(33.3333% - 20px);
	        -webkit-flex: 0 1 -webkit-calc(33.3333% - 20px);
	        flex: 0 1 calc(33.3333% - 20px);
	margin: 10px;
	-webkit-border-radius: 12px;
	        border-radius: 12px;
	overflow: hidden;
	position: relative;
	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;
}
.slots-item__image img {
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.slots-item:hover .slots-item__image img{
	-webkit-transform: scale(1.04);
	    -ms-transform: scale(1.04);
	        transform: scale(1.04);
}


.slots-item__title {
	font-weight: 700;
	font-size: 18px;
	line-height: 120%;
	text-transform: uppercase;
	text-align: center;
	color: #0e6b73;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	margin: 0;
	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;
	background-color: #fff;
	padding: 12px;
	text-decoration: none!important;
}



.table {
  -webkit-border-radius: 6px;
          border-radius: 6px;
  overflow: hidden;
  display: block;
}
.table thead {
  display: block;

}

.table_thead thead tr{
  background: -o-linear-gradient(top, #41af5a 0%, #1a5528 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#41af5a), to(#1a5528));
  background: linear-gradient(180deg, #41af5a 0%, #1a5528 100%);
}
.table th {
  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: 15px;
  line-height: 147%;
  text-transform: uppercase;
  color: #fff;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.table tbody {
  display: block;
}
.table td {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 400;
  font-size: 15px;
  line-height: 147%;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.table tr {
  background: #003135;
  padding: 12px 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.table tbody tr:not(:last-child){
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.table_advantages tr{
  padding: 12px;
}
.table_advantages th img {
  margin-right: 10px;
  max-width: 24px;
}


.table_grade td:last-child, .table_grade th:last-child {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  text-align: right;
}

.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 {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 -webkit-calc(50% - 10px);
      -ms-flex: 1 0 calc(50% - 10px);
          flex: 1 0 calc(50% - 10px);
}
.blocks_images .block__image {
  width: -webkit-calc(100% + 40px);
  width: calc(100% + 40px);
  height: -webkit-calc(100% + 40px);
  height: calc(100% + 40px);
  margin: -20px;
  position: static;
}
.block {
  background: #003135;
  padding: 20px;
  -webkit-border-radius: 6px;
          border-radius: 6px;
  z-index: 0;
  position: relative;
}
.block_lower h3 {
  text-transform: none;
}

.block > * {
  color: #fff;
}
.block > * + * {
  margin-top: 20px;
}
.block .background img {
  -webkit-border-radius: 6px;
          border-radius: 6px;
}
.block__image {
  position: absolute;
  right: 0;
  bottom: 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;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  z-index: -1;
  height: 100%;
  margin: 0;
}
.block__image_side {
  height: auto;
  max-width: 386px;
  bottom: -20px;
}


.block__inner {
  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;
}
.block__inner ol {
  width: 60%;
}
.block__logo {
  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;
  width: 40%;
}

.block__logo img {
  max-width: 306px;
}

.block_list-bg ul{
  background-image: url(../images/list-bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.app-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;
  padding: 6px 32px;
  font-weight: 500;
  font-size: 15px;
  line-height: 155%;
  text-align: center;
  color: #fff;
  background: #41b15b;
  text-decoration: none!important;
  -webkit-border-radius: 8px;
          border-radius: 8px;
  overflow: hidden;
  min-width: 240px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}
.app-button img {
  max-width: 32px;
  margin-right: 16px;
}
.app-button:hover {
  -webkit-transform: scale(1.03);
      -ms-transform: scale(1.03);
          transform: scale(1.03);
}

.app {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 78px 50px;
  gap: 20px;
  -webkit-border-radius: 6px;
          border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.app__logo {
  max-width: 116px;
}



.reviews {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 20px 16px;
}
.reviews__item {
  padding: 20px;
  width: -webkit-calc(50% - 10px );
  width: calc(50% - 10px );
  -webkit-backdrop-filter: blur(84px);
          backdrop-filter: blur(84px);
  -webkit-box-shadow: 0 0 8px 0 #fec07e;
          box-shadow: 0 0 8px 0 #fec07e;
  background: #003135;
  -webkit-border-radius: 6px;
          border-radius: 6px;
  padding: 20px;
  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: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.reviews__item-head {
  position: relative;
  padding-left: 100px;
  min-height: 80px;
  margin-bottom: 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-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.reviews__item-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: #fff;
  margin: 0 0 16px 0;
}

.reviews__item-image {
  width: 80px;
  height: 80px;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-border-radius: 12px;
          border-radius: 12px;
  overflow: hidden;
}
.reviews__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.reviews__item-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: 5px;
}
.reviews__item-stars img {
  max-width: 22px;
}
.reviews__item p {
  font-weight: 400;
  font-size: 15px;
  line-height: 160%;
  color: #fff;
  margin: 0;
}

.locals {
  background: none;
  padding: 0;
  -webkit-border-radius: 0;
          border-radius: 0;
}
.locals ul {
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.locals ul a {
  -webkit-border-radius: 12px;
          border-radius: 12px;
  background-color: #fff;
  padding: 11px;
  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;
  text-decoration: none!important;
  border: 1px solid rgba(254, 192, 126, 0.2);
  font-weight: 400;
  font-size: 15px;
  text-transform: uppercase;
  color: #0a626a;
}
.locals ul a:hover {
  background-color: #41af5a;
  color: #fff;
}
.locals ul a img {
  width: 24px;
  height: 24px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 8px;
}
.locals ul li {
  padding: 0;
}
.block__mobile {
  position: relative;
  background: #003135;
  -webkit-border-radius: 6px;
          border-radius: 6px;
  overflow: hidden;
}
.block__mobile-image {
  width: 40%;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 0;
}
.block__mobile-wrap {
  width: 60%;
  padding: 20px;
}
.block__mobile-wrap > * + *{
  margin-top: 20px;
}
.block__mobile-wrap ol {
  margin-left: -20px;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  -webkit-border-radius: 0;
          border-radius: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.bonus {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.bonus__desc {
  -webkit-border-radius: 6px;
          border-radius: 6px;
  padding: 20px;
  background: #003135;
  color: #fff;
  width: -webkit-calc(100% - 380px);
  width: calc(100% - 380px);
}
.bonus__image {
  -webkit-border-radius: 6px;
          border-radius: 6px;
  padding: 0;
  position: relative;
  padding: 20px;
  overflow: hidden;
  width: 360px
}
.bonus__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.bonus__button {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.bonus__button:hover {
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #41af5a;
}


.tile {
  background: #003135;
  -webkit-border-radius: 6px;
          border-radius: 6px;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-right: 41%;
  z-index: 0;
}
.tile__image {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  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;
  z-index: -1;
}

.tile ul {
  background: none;
  list-style: none;
}

.system {
  position: relative;
}
.system > ul{
  width: 59.5%;
}
.system ul + ul {
  margin-top: 20px;
}
.system__image {
  width: 39%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  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;
}
.system > ul > li {
  padding: 0;
}
.system > ul > li::before {
  display: none;
}
.system > ul > li > p {
  padding: 20px 20px 20px 48px;
  position: relative;
}
.system > ul > li > p::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background-color: #2DB155;
  -webkit-border-radius: 100%;
          border-radius: 100%;
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.system > ul > li > ul {
  margin: 0;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  -webkit-border-radius: 0;
          border-radius: 0;
}
.system > ul > li > ul > li{
  padding-left: 73px;
}
.system > ul > li > ul > li::before {
  border: 2px solid #2db155;
  background: none;
  width: 4px;
  height: 4px;
  left: 45px;
}



.back-top {
	position: absolute;
	right: -50px;
	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: 30px;
	height: 30px;
	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 {
	-webkit-transform: scale(1.04);
	    -ms-transform: scale(1.04);
	        transform: scale(1.04);
}

@media screen and (max-width: 1670px) {
	.back-top {
    background-color: #0a626a;
    padding: 5px;
    -webkit-border-radius: 6px;
            border-radius: 6px;
		position: fixed;
		bottom: 20px;
		right: 30px;
		height: auto;
		z-index: 10;

	}
  .back-top__button {
    width: 25px;
    height: 25px;
  }
}

@media screen and (max-width: 900px) {
	.back-top {
		right: 20px;
	}
}


