@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&family=Roboto:wght@100..900&display=swap');

body {
	overflow-x: hidden;
	min-height: 100vh;
	background: #0A626A;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 15px;
	line-height: 165%;
	color: #fff;
	text-align: left;
}

p {
	margin-top: 20px;
	width: 100%;
}

p:first-child {
	margin-top: 0;
}

ul,
ol {
	text-align: left;
	width: 100%;
}

li {
	color: #fff;
	position: relative;
}

ol {
	background: -o-linear-gradient(left, #054146 7.5%, rgba(5, 65, 70, 0.4) 100%),
		-o-linear-gradient(top, rgba(5, 65, 70, 0.5) 0%, #0B4046 100%);
	background: -webkit-gradient(linear, left top, right top, color-stop(7.5%, #054146), to(rgba(5, 65, 70, 0.4))),
		-webkit-gradient(linear, left top, left bottom, from(rgba(5, 65, 70, 0.5)), to(#0B4046));
	background: linear-gradient(90deg, #054146 7.5%, rgba(5, 65, 70, 0.4) 100%),
		linear-gradient(180deg, rgba(5, 65, 70, 0.5) 0%, #0B4046 100%);
	border-radius: 6px;
}

ol li {
	counter-increment: ol;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	min-height: 74px;
	padding: 12px 20px 12px 80px;
}

ol li+li {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

ul li {
	background: -o-linear-gradient(left, #054146 7.5%, rgba(5, 65, 70, 0.4) 100%),
		-o-linear-gradient(top, rgba(5, 65, 70, 0.5) 0%, #0B4046 100%);
	background: -webkit-gradient(linear, left top, right top, color-stop(7.5%, #054146), to(rgba(5, 65, 70, 0.4))),
		-webkit-gradient(linear, left top, left bottom, from(rgba(5, 65, 70, 0.5)), to(#0B4046));
	background: linear-gradient(90deg, #054146 7.5%, rgba(5, 65, 70, 0.4) 100%),
		linear-gradient(180deg, rgba(5, 65, 70, 0.5) 0%, #0B4046 100%);
	border-radius: 6px;
	padding: 20px 20px 20px 38px;
}

ul li+li {
	margin-top: 20px;
}

ul>li:before,
ol>li:before {
	display: inline-block;
	font: inherit;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 20px;
	margin: auto;
}

ul>li:before {
	content: "";
	background-color: #fff;
	border-radius: 50%;
	width: 6px;
	height: 6px;
}

ol>li:before {
	content: counter(ol);
	background-color: #fff;
	border-radius: 3px;
	font-weight: 600;
	font-size: 15px;
	color: #054146;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 40px;
	height: 40px;
}

/* Title */
h1,
h2,
h3,
.title {
	display: block;
	position: relative;
	width: 100%;
	font-weight: 700;
}

.title {
	margin-bottom: 20px;
}

h1,
.title.general {
	font-size: 32px;
	color: #fff;
	line-height: 160%;
	text-transform: uppercase;
	margin-bottom: 0;
}

h2,
.title.high {
	background: -o-linear-gradient(left, #054146 7.5%, rgba(5, 65, 70, 0.4) 100%),
		-o-linear-gradient(top, rgba(5, 65, 70, 0.5) 0%, #0B4046 100%);
	background: -webkit-gradient(linear, left top, right top, color-stop(7.5%, #054146), to(rgba(5, 65, 70, 0.4))),
		-webkit-gradient(linear, left top, left bottom, from(rgba(5, 65, 70, 0.5)), to(#0B4046));
	background: linear-gradient(90deg, #054146 7.5%, rgba(5, 65, 70, 0.4) 100%),
		linear-gradient(180deg, rgba(5, 65, 70, 0.5) 0%, #0B4046 100%);
	border-radius: 6px;
	font-weight: 600;
	font-size: 24px;
	line-height: 120%;
	padding: 12px 20px;
}

h3,
.title.middle {
	font-weight: 600;
	font-size: 20px;
}

h4,
.title.mini {
	font-weight: 500;
	font-size: 16px;
	color: #fff;
	line-height: 150%;
	text-transform: uppercase;
}

/* Article */
article,
.article {
	font-size: 15px;
	font-weight: 400;
	line-height: 165%;
	text-align: left;
}

article>*:first-child,
.article>*:first-child {
	margin-top: 0px;
}

article>*+*,
.article>*+* {
	margin-top: 20px;
}

article>.background+*,
.article>.background+* {
	margin-top: 0;
}

article>img,
.article>img {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

article p a,
.article p a,
article li a,
.article li a {
	color: inherit;
	text-decoration: underline;
}

/* Button */
.button {
	display: inline-block;
	background-color: #FF4949;
	border-radius: 10px;
	font-weight: 600;
	font-size: 16px;
	color: #fff;
	line-height: 1;
	text-align: center;
	text-transform: capitalize;
	white-space: nowrap;
	padding: 16px;
	margin: 20px 0 0;
	height: auto;
	min-width: 273px;
	position: relative;
}

.button:hover {
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}

/* 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;
}

.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;
}

/* Content */
.content,
.cover {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
	margin: 0px auto;
	overflow: hidden;
	position: relative;
}

.content {
	background-color: rgba(255, 255, 255, 0.149);
	border-radius: 6px;
	margin-top: 20px;
	padding: 20px;
}

.cover {
	padding-left: 30px;
	padding-right: 30px;
}

.content>*,
.cover>* {
	display: block;
	position: relative;
}

/* Header */
.header {
	background: #054146;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
	overflow: visible;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	height: auto;
	padding-top: 14px;
	padding-bottom: 14px;
}

.logo {
	display: inline-block;
}

.logo img {
	display: block;
}

.header__logo {
	max-width: 113px;
}

.menu-button,
.header__menu .header__button {
	display: none;
}

.header__menu {
	margin: 0 auto 0 9%;
}

.header__menu ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 30px;
}

.header__menu li {
	padding: 0;
}

.header__menu li+li {
	margin-top: 0;
}

.header__menu ul li:before {
	display: none;
}

.header__menu ul a {
	display: block;
	font-size: 16px;
	color: #BED2E4;
	line-height: 128%;
	text-transform: uppercase;
}

.header__menu ul a:hover {
	color: #fff;
}

.header__button {
	border-radius: 3px;
	font-weight: 400;
	font-size: 14px;
	line-height: 1;
	text-transform: uppercase;
	margin-top: 0;
	padding: 9px;
}

.header__button-signup {
	background-color: #41B15B;
	min-width: 152px;
}

.header__button-login {
	background-color: rgba(255, 255, 255, 0.169);
	min-width: 88px;
}

.header__time {
	font-size: 13px;
	color: #fff;
}

.header__lang {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 14px;
	color: #fff;
	text-transform: uppercase;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 12px;
	z-index: 100;
	padding-right: 5px;
}

.header__lang img {
	display: block;
	border-radius: 50%;
	max-width: 24px;
	max-height: 24px;
}

/* Main */
.main {
	padding-top: 60px;
	padding-bottom: 20px;
}

/* Prime */
.prime {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #fff;
	padding: 109px calc(50% - ((1600px - 290px - 290px)/ 2));
}

.prime__background img {
	-o-object-position: left;
	object-position: left;
}

.prime__wrap {
	text-align: center;
	max-width: 635px;
}

.prime__text {
	margin-top: 17px;
}

.prime__title,
.prime__text {
	text-shadow: 0 0 5px #000;
}

.prime__button {
	text-transform: uppercase;
	margin-top: 15px;
}

/* Content Wrapper */
.content-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 20px;
	margin: 20px auto 0;
	max-width: 1600px;
	width: 100%;
	padding: 0 30px;
}

.general-content {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	max-width: 1020px;
	overflow: hidden;
}

.general-content .content:first-child {
	margin-top: 0;
}

/* Sidebar */
.sidebar {
	position: -webkit-sticky;
	position: sticky;
	top: 80px;
	height: calc(100vh - 80px);
	width: 240px;
	padding-bottom: 20px;
	overflow: auto;
	z-index: 10;
}

.sidebar::-webkit-scrollbar {
	display: none;
}

.sidebar li {
	padding: 0;
}

.sidebar li:before {
	display: none;
}

/* left */
.sidebar__quicklinks {
	background-color: rgba(255, 255, 255, 0.149);
	border-radius: 6px;
	-webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.251);
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.251);
	overflow: hidden;
}

.sidebar-quicklinks__button {
	display: block;
	background: -o-linear-gradient(left, #054146 7.5%, rgba(5, 65, 70, 0.4) 100%),
		-o-linear-gradient(top, rgba(5, 65, 70, 0.5) 0%, #0B4046 100%);
	background: -webkit-gradient(linear, left top, right top, color-stop(7.5%, #054146), to(rgba(5, 65, 70, 0.4))),
		-webkit-gradient(linear, left top, left bottom, from(rgba(5, 65, 70, 0.5)), to(#0B4046));
	background: linear-gradient(90deg, #054146 7.5%, rgba(5, 65, 70, 0.4) 100%),
		linear-gradient(180deg, rgba(5, 65, 70, 0.5) 0%, #0B4046 100%);
	-webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.251);
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.251);
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 1;
	color: #fff;
	text-align: left;
	text-transform: uppercase;
	width: 100%;
	padding: 12px 45px 12px 21px;
	position: relative;
}

.sidebar-quicklinks__button:before {
	content: '';
	background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M7.61128%204.6591L3.16093%209.05921C2.94636%209.27135%202.94636%209.61548%203.16093%209.82761L3.68007%2010.3409C3.89441%2010.5528%204.24157%2010.553%204.45637%2010.3418L7.9999%206.85448L11.5436%2010.3415C11.7585%2010.553%2012.1056%2010.5526%2012.32%2010.3406L12.8391%209.82739C13.0536%209.61525%2013.0536%209.27112%2012.8391%209.05898L8.3885%204.6591C8.17393%204.44697%207.82586%204.44697%207.61128%204.6591Z%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E");
	background-repeat: no-repeat no-repeat;
	background-position: center center;
	background-size: contain;
	width: 16px;
	height: 16px;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 10px;
	margin: auto;
}

.sidebar-quicklinks__button.slide:before {
	-webkit-transform: rotateX(180deg);
	transform: rotateX(180deg);
}

.sidebar-quicklinks__list {
	padding: 14px 20px 16px;
}

.sidebar-quicklinks__list li {
	background: none;
	padding: 0;
}

.sidebar-quicklinks__list li+li {
	margin-top: 18px;
}

.sidebar-quicklinks__list li a {
	font-size: 15px;
	color: #fff;
	line-height: 120%;
	opacity: .5;
	display: block;
	position: relative;
}

.sidebar-quicklinks__list li a:hover {
	opacity: 1;
}

/* right */
.sidebar-games__item {
	border-radius: 3px;
	overflow: hidden;
}

.sidebar-games__item+.sidebar-games__item {
	margin-top: 10px;
}

.sidebar-games__item a {
	display: block;
}

.games-item__img {
	display: block;
}

.games-item__name {
	display: block;
	font-weight: 700;
	font-size: 13px;
	color: #fff;
	line-height: 1.067;
	text-align: center;
	text-transform: uppercase;
	position: absolute;
	bottom: 7px;
	left: 0;
	right: 0;
}

/* About */
.table {
	background: -o-linear-gradient(top, #0C8792 0%, #054146 100%);
	background: -webkit-gradient(linear, left top, left bottom, from(#0C8792), to(#054146));
	background: linear-gradient(180deg, #0C8792 0%, #054146 100%);
	border-radius: 6px;
	color: #fff;
	margin-top: 20px;
	width: 100%;
	overflow: hidden;
}

.table tr {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
}

.table tr>* {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.table thead {
	background: -o-linear-gradient(left, #054146 7.5%, rgba(5, 65, 70, 0.4) 100%),
		-o-linear-gradient(top, rgba(5, 65, 70, 0.5) 0%, #0B4046 100%);
	background: -webkit-gradient(linear, left top, right top, color-stop(7.5%, #054146), to(rgba(5, 65, 70, 0.4))),
		-webkit-gradient(linear, left top, left bottom, from(rgba(5, 65, 70, 0.5)), to(#0B4046));
	background: linear-gradient(90deg, #054146 7.5%, rgba(5, 65, 70, 0.4) 100%),
		linear-gradient(180deg, rgba(5, 65, 70, 0.5) 0%, #0B4046 100%);
}

.table thead tr {
	line-height: 1.267;
	padding: 14px 20px;
}

.table tbody tr {
	background-color: #fff;
	color: #0D4047;
	line-height: 1.467;
	padding: 12px 20px;
}

.table tr+tr {
	border-top: 1px solid rgba(12, 135, 146, 0.2);
	line-height: 1.414;
}

.about__table tbody tr {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.about__table tbody th {
	max-width: 245px;
}

.about__wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
	margin-top: 18px;
	width: 100%;
}

.about-wrap__item {
	background: -o-linear-gradient(left, #054146 7.5%, rgba(5, 65, 70, 0.4) 100%),
		-o-linear-gradient(top, rgba(5, 65, 70, 0.5) 0%, #0B4046 100%);
	background: -webkit-gradient(linear, left top, right top, color-stop(7.5%, #054146), to(rgba(5, 65, 70, 0.4))),
		-webkit-gradient(linear, left top, left bottom, from(rgba(5, 65, 70, 0.5)), to(#0B4046));
	background: linear-gradient(90deg, #054146 7.5%, rgba(5, 65, 70, 0.4) 100%),
		linear-gradient(180deg, rgba(5, 65, 70, 0.5) 0%, #0B4046 100%);
	border-radius: 6px;
	color: #fff;
	width: calc(50% - 10px);
	padding: 20px;
}

.about-item__title {
	font-weight: 700;
	color: #fff;
	line-height: 1;
	text-transform: uppercase;
	margin-bottom: 18px;
	padding: 10px 0 10px 64px;
}

.about-item__title:before {
	content: '';
	background-color: #fff;
	background-repeat: no-repeat no-repeat;
	background-position: center center;
	background-size: 24px;
	border-radius: 3px;
	width: 40px;
	height: 40px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}

.about-wrap__pros .about-item__title:before {
	background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M20%2012C20%2013.104%2019.104%2014%2018%2014H14V18C14%2019.104%2013.104%2020%2012%2020C10.896%2020%209.99999%2019.104%209.99999%2018V14H6.00001C4.89601%2014%204%2013.104%204%2012C4%2010.896%204.89601%2010%206.00001%2010H9.99999V6C9.99999%204.896%2010.896%204%2012%204C13.104%204%2014%204.896%2014%206V10H18C19.104%2010%2020%2010.896%2020%2012Z%22%20fill%3D%22url(%23paint0_linear_6514_13533)%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M20%2012C20%2013.104%2019.104%2014%2018%2014H14V18C14%2019.104%2013.104%2020%2012%2020C10.896%2020%209.99999%2019.104%209.99999%2018V14H6.00001C4.89601%2014%204%2013.104%204%2012C4%2010.896%204.89601%2010%206.00001%2010H9.99999V6C9.99999%204.896%2010.896%204%2012%204C13.104%204%2014%204.896%2014%206V10H18C19.104%2010%2020%2010.896%2020%2012Z%22%20fill%3D%22url(%23paint1_linear_6514_13533)%22%2F%3E%3Cdefs%3E%3ClinearGradient%20id%3D%22paint0_linear_6514_13533%22%20x1%3D%224%22%20y1%3D%2212%22%20x2%3D%2220%22%20y2%3D%2212%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%3Cstop%20offset%3D%220.075%22%20stop-color%3D%22%23054146%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23054146%22%20stop-opacity%3D%220.4%22%2F%3E%3C%2FlinearGradient%3E%3ClinearGradient%20id%3D%22paint1_linear_6514_13533%22%20x1%3D%2212%22%20y1%3D%224%22%20x2%3D%2212%22%20y2%3D%2220%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%3Cstop%20stop-color%3D%22%23054146%22%20stop-opacity%3D%220.5%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22%230B4046%22%2F%3E%3C%2FlinearGradient%3E%3C%2Fdefs%3E%3C%2Fsvg%3E");
}

.about-wrap__cons .about-item__title:before {
	background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M17.125%2010H5.875C4.83953%2010%204%2010.8955%204%2012C4%2013.1045%204.83953%2014%205.875%2014H17.125C18.1605%2014%2019%2013.1045%2019%2012C19%2010.8955%2018.1605%2010%2017.125%2010Z%22%20fill%3D%22url(%23paint0_linear_6514_13559)%22%2F%3E%3Cpath%20d%3D%22M17.125%2010H5.875C4.83953%2010%204%2010.8955%204%2012C4%2013.1045%204.83953%2014%205.875%2014H17.125C18.1605%2014%2019%2013.1045%2019%2012C19%2010.8955%2018.1605%2010%2017.125%2010Z%22%20fill%3D%22url(%23paint1_linear_6514_13559)%22%2F%3E%3Cdefs%3E%3ClinearGradient%20id%3D%22paint0_linear_6514_13559%22%20x1%3D%224%22%20y1%3D%2212%22%20x2%3D%2219%22%20y2%3D%2212%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%3Cstop%20offset%3D%220.075%22%20stop-color%3D%22%23054146%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23054146%22%20stop-opacity%3D%220.4%22%2F%3E%3C%2FlinearGradient%3E%3ClinearGradient%20id%3D%22paint1_linear_6514_13559%22%20x1%3D%2211.5%22%20y1%3D%2210%22%20x2%3D%2211.5%22%20y2%3D%2214%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%3Cstop%20stop-color%3D%22%23054146%22%20stop-opacity%3D%220.5%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22%230B4046%22%2F%3E%3C%2FlinearGradient%3E%3C%2Fdefs%3E%3C%2Fsvg%3E");
}

.about-item__list {
	padding-left: 64px;
}

.about-item__list li {
	background: none;
	padding: 0 0 0 18px;
}

.about-item__list li+li {
	margin-top: 12px;
}

.about-item__list li:before {
	left: 0;
}

/* App Banner */
.app-banner {
	background: -o-linear-gradient(left, #054146 7.5%, rgba(5, 65, 70, 0.4) 100%),
		-o-linear-gradient(top, rgba(5, 65, 70, 0.5) 0%, #0B4046 100%);
	background: -webkit-gradient(linear, left top, right top, color-stop(7.5%, #054146), to(rgba(5, 65, 70, 0.4))),
		-webkit-gradient(linear, left top, left bottom, from(rgba(5, 65, 70, 0.5)), to(#0B4046));
	background: linear-gradient(90deg, #054146 7.5%, rgba(5, 65, 70, 0.4) 100%),
		linear-gradient(180deg, rgba(5, 65, 70, 0.5) 0%, #0B4046 100%);
	border-radius: 6px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 20px;
	padding: 15px;
	width: 100%;
}

.app__button {
	background-color: #41B15B;
	border-radius: 8px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 16px;
	padding: 6px 15px;
	width: 217px;
	height: 62px;
}

.app__button:hover {
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05)
}

.app__button img {
	max-width: 32px;
}

.app__button span {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	font-weight: 500;
	font-size: 15px;
	color: #fff;
	text-align: center;
}

.app-banner__logo {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	max-width: 244px;
}

.app-banner__logo img {
	display: block;
}

/* Offers */
.offers__wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
}

.offers-wrap__item {
	width: calc(50% - 10px);
}

.offers-item__desc {
	background: -o-linear-gradient(left, #054146 7.5%, rgba(5, 65, 70, 0.4) 100%),
		-o-linear-gradient(top, rgba(5, 65, 70, 0.5) 0%, #0B4046 100%);
	background: -webkit-gradient(linear, left top, right top, color-stop(7.5%, #054146), to(rgba(5, 65, 70, 0.4))),
		-webkit-gradient(linear, left top, left bottom, from(rgba(5, 65, 70, 0.5)), to(#0B4046));
	background: linear-gradient(90deg, #054146 7.5%, rgba(5, 65, 70, 0.4) 100%),
		linear-gradient(180deg, rgba(5, 65, 70, 0.5) 0%, #0B4046 100%);
	border-radius: 6px;
	padding: 20px;
}

.offers-desc__title {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding-bottom: 25px;
}

.offers-item__logo {
	max-width: 404px;
	margin: 32px auto 0;
}

.offers-item__logo img {
	display: block;
}

/* VIP */
.vip__table table tr {
	padding-left: 73px;
}

.vip__table table th {
	text-transform: uppercase;
}

.vip__table table tbody tr {
	counter-increment: tr;
	position: relative;
	padding-top: 31px;
	padding-bottom: 31px;
}

.vip__table table tbody tr:before {
	content: counter(tr)'.';
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: absolute;
	left: 20px;
	top: 0;
	bottom: 0;
}

/* Championships */
.championships__table table th {
	text-transform: uppercase;
}

.championships__table table tbody tr {
	padding-top: 22px;
	padding-bottom: 22px;
}

/* Slots */
.slots__table th {
	text-transform: uppercase;
}

.slots__table tbody tr {
	padding-top: 22px;
	padding-bottom: 22px;
}

/* Games */
.games__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 20px;
}

.games-list__item {
	width: calc(50% - 10px);
	padding: 24px;
}

.games-list__item+.games-list__item {
	margin-top: 0;
}

.games-list__item:before {
	display: none;
}

.games-item__title {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	font-size: 24px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 16px;
	margin-bottom: 16px;
	padding-bottom: 16px;
}

.games-item__title img {
	max-width: 40px;
}

/* Payment */
.payment__table thead {
	text-transform: uppercase;
}

/* FAQ */
.faq__list li {
	border-radius: 6px;
	padding: 0;
	-webkit-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
	overflow: hidden;
}

.faq__list li+li {
	margin-top: 20px;
}

.faq__list li:before {
	display: none;
}

.faq-item__title {
	background: -o-linear-gradient(left, #054146 7.5%, rgba(5, 65, 70, 0.4) 100%),
		-o-linear-gradient(top, rgba(5, 65, 70, 0.5) 0%, #0B4046 100%);
	background: -webkit-gradient(linear, left top, right top, color-stop(7.5%, #054146), to(rgba(5, 65, 70, 0.4))),
		-webkit-gradient(linear, left top, left bottom, from(rgba(5, 65, 70, 0.5)), to(#0B4046));
	background: linear-gradient(90deg, #054146 7.5%, rgba(5, 65, 70, 0.4) 100%),
		linear-gradient(180deg, rgba(5, 65, 70, 0.5) 0%, #0B4046 100%);
	cursor: pointer;
	margin: 0;
	position: relative;
	padding: 14px 56px 14px 16px;
}

.faq-item__title:after {
	content: '';
	background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M20%2012C20%2013.104%2019.104%2014%2018%2014H14V18C14%2019.104%2013.104%2020%2012%2020C10.896%2020%209.99999%2019.104%209.99999%2018V14H6.00001C4.89601%2014%204%2013.104%204%2012C4%2010.896%204.89601%2010%206.00001%2010H9.99999V6C9.99999%204.896%2010.896%204%2012%204C13.104%204%2014%204.896%2014%206V10H18C19.104%2010%2020%2010.896%2020%2012Z%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E");
	background-repeat: no-repeat no-repeat;
	background-position: center center;
	background-size: contain;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 16px;
	margin: auto;
	width: 24px;
	height: 24px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

.faq-list__item.active .faq-item__title:after {
	background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M19.5%209H4.5C3.11938%209%202%2010.1194%202%2011.5C2%2012.8806%203.11938%2014%204.5%2014H19.5C20.8806%2014%2022%2012.8806%2022%2011.5C22%2010.1194%2020.8806%209%2019.5%209Z%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E");
}

.faq-item__desc {
	line-height: 150%;
	padding: 16px;
}

/* Reviews */
.reviews__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 20px;
}

.reviews-list__item {
	color: #fff;
	padding: 20px;
	width: calc(50% - 10px);
}

.reviews-list__item+.reviews-list__item {
	margin-top: 0;
}

.reviews-list__item:before {
	display: none;
}

.reviews-item__name {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 20px;
	line-height: 150%;
	margin: 19px 0 13px;
}

.reviews-item__stars {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 5px;
}

.reviews-item__stars img {
	max-width: 22px;
}

.reviews-item__text {
	line-height: 135%;
}

/* Grade */
.grade__table {
	background: -o-linear-gradient(left, #054146 7.5%, rgba(5, 65, 70, 0.4) 100%),
		-o-linear-gradient(top, rgba(5, 65, 70, 0.5) 0%, #0B4046 100%);
	background: -webkit-gradient(linear, left top, right top, color-stop(7.5%, #054146), to(rgba(5, 65, 70, 0.4))),
		-webkit-gradient(linear, left top, left bottom, from(rgba(5, 65, 70, 0.5)), to(#0B4046));
	background: linear-gradient(90deg, #054146 7.5%, rgba(5, 65, 70, 0.4) 100%),
		linear-gradient(180deg, rgba(5, 65, 70, 0.5) 0%, #0B4046 100%);
}

.grade__table tr+tr {
	border-color: rgba(255, 255, 255, 0.2);
}

.grade__table tbody tr {
	background-color: rgba(0, 0, 0, 0);
	color: #fff;
	padding-top: 11px;
	padding-bottom: 11px;
}

/* Summary */
.summary {
	padding: 30px 30px 50px;
}

.summary-desc__title {
	margin-bottom: 40px;
}

/* Footer */
.footer {
	background-color: #102A2E;
	padding: 10px;
}

.footer__menu {
	background-color: #fff;
	border-radius: 3px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 10px;
	padding: 15px 30px;
	width: 100%;
}

.footer-menu__item {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	line-height: 100%;
}

.footer-menu__item p {
	font-weight: 700;
	font-size: 14px;
	color: #373C47;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.footer-menu__item ul li {
	background: none;
	padding: 0;
}

.footer-menu__item ul li+li {
	margin-top: 4px;
}

.footer-menu__item ul li:before {
	display: none;
}

.footer-menu__item ul li a {
	color: #3A3F47;
	font-size: 12px;
}

.footer-menu__item ul li a:hover {
	opacity: .7;
}

.footer-menu__item ul li a img {
	display: inline-block;
	vertical-align: middle;
	margin-right: 3px;
}

.footer__wrap {
	color: #3A3F47;
	font-size: 12px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 10px;
	margin-top: 10px;
	width: 100%;
}

.footer-terms__item,
.footer-bottom__copyright {
	background-color: #fff;
	border-radius: 3px;
	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-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 15px;
}

.footer-terms__text {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.footer-terms__text p {
	line-height: 130%;
}

.footer-terms__text p {
	margin-top: 0;
}

.footer-bottom__copyright {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	line-height: 100%;
	padding-left: 30px;
	padding-right: 25px;
}

.footer-bottom__copyright p+p {
	margin-top: 10px;
}

.footer-bottom__right {
	max-width: 434px;
	width: 100%;
}

.footer-right__age {
	background-color: #fff;
	border-radius: 3px;
	font-size: 20px;
	line-height: 1;
	text-align: center;
	padding: 14px;
}

.footer-right__mobile {
	display: block;
	background-color: #799496;
	border-radius: 3px;
	font-size: 14px;
	color: #fff;
	line-height: 1;
	text-align: center;
	margin-top: 10px;
	padding: 9px;
}

.footer-right__mobile:hover {
	background-color: #41B15B;
}

/* Btn Top */
.to-top {
	background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2242%22%20height%3D%2239%22%20viewBox%3D%220%200%2042%2039%22%20fill%3D%22none%22%3E%3Crect%20x%3D%221%22%20y%3D%221%22%20width%3D%2240%22%20height%3D%2237%22%20rx%3D%225%22%20fill%3D%22%23185A61%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%221%22%20width%3D%2240%22%20height%3D%2237%22%20rx%3D%225%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%2F%3E%3Cpath%20d%3D%22M33.8215%2023.6055L21.752%2011.423C21.6659%2011.3363%2021.5529%2011.2657%2021.4222%2011.2171C21.2915%2011.1684%2021.1468%2011.1431%2021%2011.1431C20.8532%2011.1431%2020.7085%2011.1684%2020.5778%2011.2171C20.4471%2011.2657%2020.3341%2011.3363%2020.248%2011.423L8.17853%2023.6055C8.0767%2023.7072%208.0158%2023.8276%208.00268%2023.9531C7.98956%2024.0787%208.02474%2024.2044%208.10426%2024.3162C8.18268%2024.4265%208.30127%2024.519%208.44702%2024.5835C8.59278%2024.6479%208.76007%2024.6819%208.93055%2024.6816H33.0694C33.2399%2024.6819%2033.4072%2024.6479%2033.553%2024.5835C33.6987%2024.519%2033.8173%2024.4265%2033.8957%2024.3162C33.9753%2024.2044%2034.0104%2024.0787%2033.9973%2023.9531C33.9842%2023.8276%2033.9233%2023.7072%2033.8215%2023.6055Z%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E");
	background-repeat: no-repeat no-repeat;
	background-position: center center;
	background-size: contain;
	width: 42px;
	height: 39px;
	position: fixed;
	right: 20px;
	bottom: 20px;
	display: none;
	z-index: 1000;
	opacity: .7;
}

.to-top:hover {
	opacity: 1;
}

/* PAGES */
/* Prime */
.page__prime {
	padding-top: 89px;
	padding-bottom: 90px;
}

/* Breadcrumbs */
.breadcrumbs {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: 13px;
}

.breadcrumbs>li {
	background: none;
	display: inline-block;
	padding: 0px;
}

.breadcrumbs>li+li {
	margin: 0;
}

.breadcrumbs>li:before {
	display: none;
}

.breadcrumbs>li a {
	display: inline-block;
	font-size: 18px;
	color: rgba(255, 255, 255, .6);
}

.breadcrumbs>li a:not([href]) {
	color: #fff;
}

.breadcrumbs>li:not(:last-child):after {
	content: '';
	background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2217%22%20viewBox%3D%220%200%2016%2017%22%20fill%3D%22none%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M5.5286%204.02827C5.78895%203.76792%206.21106%203.76792%206.47141%204.02827L10.4714%208.02827C10.7318%208.28862%2010.7318%208.71073%2010.4714%208.97108L6.47141%2012.9711C6.21106%2013.2314%205.78895%2013.2314%205.5286%2012.9711C5.26825%2012.7107%205.26825%2012.2886%205.5286%2012.0283L9.05719%208.49967L5.5286%204.97108C5.26825%204.71073%205.26825%204.28862%205.5286%204.02827Z%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E");
	background-repeat: no-repeat no-repeat;
	background-position: center center;
	background-size: contain;
	width: 16px;
	height: 17px;
	display: inline-block;
	vertical-align: middle;
	margin: 0px 10px;
}

.breadcrumbs>li a:not([href]),
.breadcrumbs>li a:not([href]) span {
	cursor: default;
}

/* APP PAGE */
/* Mobile */
.mobile__banner {
	border-radius: 6px;
	overflow: hidden;
	padding: 20px;
	width: 100%;
}

.mobile-banner__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.mobile-banner__list li {
	max-width: 648px;
}

.mobile-banner__list li:nth-child(even) {
	margin-left: auto;
}

/* Download */
.download__subtitle {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 12px;
}

/* Devices */
.devices__table tbody th {
	max-width: 245px;
}

/* Web */
.web__banner {
	border-radius: 6px;
	padding: 20px;
	width: 100%;
	overflow: hidden;
}

.web-banner__background img {
	-o-object-position: right;
	object-position: right;
}

.web-banner__desc {
	max-width: 648px;
}

/* Screen */
.screen {
	padding: 0;
}

/* BONUSES PAGE */
/* Welcome Bonus */
.welcome-bonus__background {
	top: 20px;
	right: 20px;
	bottom: 20px;
	left: 20px;
}

.welcome-bonus__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 20px;
}

.welcome-bonus__list li {
	width: calc(50% - 10px);
}

.welcome-bonus__list li+li {
	margin-top: 0;
}

.welcome-bonus__conditions li {
	padding: 20px;
}

.welcome-bonus__conditions li:before {
	display: none;
}

/* Bonuses */
.bonuses__banner {
	background: -o-linear-gradient(left, #054146 7.5%, rgba(5, 65, 70, 0.4) 100%),
		-o-linear-gradient(top, rgba(5, 65, 70, 0.5) 0%, #0B4046 100%);
	background: -webkit-gradient(linear, left top, right top, color-stop(7.5%, #054146), to(rgba(5, 65, 70, 0.4))),
		-webkit-gradient(linear, left top, left bottom, from(rgba(5, 65, 70, 0.5)), to(#0B4046));
	background: linear-gradient(90deg, #054146 7.5%, rgba(5, 65, 70, 0.4) 100%),
		linear-gradient(180deg, rgba(5, 65, 70, 0.5) 0%, #0B4046 100%);
	border-radius: 6px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
	padding: 20px;
}

.bonuses-banner__desc {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.bonuses-desc__text {
	margin-top: 20px;
}

.bonuses-desc__button {
	text-transform: uppercase;
}

.bonuses-banner__img {
	border-radius: 6px;
	max-width: 488px;
	width: 52%;
}

.bonuses-banner__img img {
	display: block;
}

/* Loyalty */
.loyalty__table thead tr,
.loyalty__table tbody tr {
	padding-left: 49px;
}

.loyalty__table tbody tr {
	counter-increment: tr;
	position: relative;
}

.loyalty__table tbody tr:before {
	content: counter(tr);
	font-weight: 700;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: absolute;
	left: 20px;
	top: 0;
	bottom: 0;
}

/* Time Offers */
.time-offers__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 20px;
}

.time-offers__list li {
	background: #fff;
	color: #0D4047;
	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: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: calc(50% - 10px);
}

.time-offers__list li+li {
	margin-top: 0;
}

.time-offers__list li:before {
	background-color: #0D4047;
}

/* Responsibly */
.responsibly__wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 20px;
	margin-top: 20px;
	width: 100%;
}

.responsibly-wrap__desc {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	max-width: 543px;
}

.responsibly-wrap__img {
	-ms-flex-item-align: end;
	align-self: flex-end;
	margin-bottom: -20px;
	max-width: 366px;
	width: 38%;
}

.responsibly-wrap__img img {
	display: block;
}

/* Join */
.join {
	padding: 30px 30px 50px;
}

.join-desc__title {
	margin-bottom: 40px;
}

/* BETTING PAGE */
/* Betting */
.betting__banner {
	border-radius: 6px;
	padding: 59px 30px;
	overflow: hidden;
	width: 100%;
}

.betting-banner__background img {
	-o-object-position: right;
	object-position: right;
}

.betting-banner__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 21px 30px;
	max-width: 542px;
}

.betting-banner__list li {
	background: #fff;
	color: #0D4047;
	padding: 12px 20px;
}

.betting-banner__list li+li {
	margin-top: 0;
}

.betting-banner__list li:before {
	display: none;
}

.betting-banner__button {
	text-transform: uppercase;
	margin-top: 15px;
}

.betting__table thead th:first-child,
.betting__table tbody th {
	max-width: 245px;
}

.betting__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
}

.betting__list li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 20px;
	width: calc(33.3% - 13.3px);
}

.betting__list li+li {
	margin-top: 0;
}

.betting__list li:before {
	display: none;
}

/* Promotions */
.promotions__table thead th:first-child,
.promotions__table tbody th {
	max-width: 245px;
}

/* Support */
.support {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.support__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 20px;
}

.support__list li {
	font-weight: 600;
	text-align: center;
	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-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: calc(33.3% - 13.3px);
	padding: 20px;
}

.support__list li+li {
	margin-top: 0;
}

.support__list li:before {
	display: none;
}

.support__list li a {
	color: #41AE5A;
	text-decoration: underline;
}

.support__list li a:hover {
	color: #fff;
}