@charset "utf-8";

@font-face {
	font-display: swap;
	font-family: Zona Pro;
	font-style: normal;
	font-weight: 900;
	src: url(../fonts/ZonaPro-Black.woff2) format("woff2");
}
@font-face {
	font-display: swap;
	font-family: Zona Pro;
	font-style: normal;
	font-weight: 800;
	src: url(../fonts/ZonaPro-ExtraBold.woff2) format("woff2");
}

@font-face {
	font-display: swap;
	font-family: Zona Pro;
	font-style: normal;
	font-weight: 700;
	src: url(../fonts/ZonaPro-Bold.woff2) format("woff2");
}

@font-face {
	font-display: swap;
	font-family: Zona Pro;
	font-style: normal;
	font-weight: 600;
	src: url(../fonts/ZonaPro-SemiBold.woff2) format("woff2");
}

@font-face {
	font-display: swap;
	font-family: Zona Pro;
	font-style: normal;
	font-weight: 400;
	src: url(../fonts/ZonaPro-Regular.woff2) format("woff2");
}

@font-face {
	font-display: swap;
	font-family: Zona Pro;
	font-style: normal;
	font-weight: 300;
	src: url(../fonts/ZonaPro-Light.woff2) format("woff2");
}
body {
	overflow-x: hidden;
	font-family: 'Zona Pro', 'Arial', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	text-align: left;
}



p {
  margin-top: 16px;
}

ul, ol {
  text-align: left;
}

ul > li,
ol > li {
  display: block;
  position: relative;
	list-style: none;
  padding: 8px 0px 0px 32px;
}

ol > li {
  counter-increment: ol;
}

ul > li:before,
ol > li:before {
	display: inline-block;
  position: absolute;
  top: 0px;
  left: 0px;
	width: 24px;
	font: inherit;
	text-align: center;
	padding: 8px 8px 0px 0px;
	padding-top: inherit;
}

ul > li:before {
  content: "-";
}

ol > li:before {
  content: counter(ol);
}

a:hover {
  text-decoration: underline;
}



/* Title */
h1, h2, h3, h4, .title {
	display: block;
	position: relative;
  width: 100%;
	font-family: 'Zona Pro', 'Arial', sans-serif;
  font-weight: 700;
	text-transform: uppercase;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

h1, .title.general {
	font-size: 72px;
	line-height: 120%;
}


h2, .title.high {
  margin-bottom: 32px;
  font-size: 48px;
  line-height: 120%;
}
h2, .title.middle {
  margin-bottom: 32px;
  font-size: 40px;
  line-height: 120%;
}
h3, .title.middle {
	font-size: 40px;
	line-height: 120%;
	margin: 20px 0px 16px 0px;
}

h4, .title.mini {
	font-size: 40px;
	line-height: 120%;
	margin: 20px 0px 16px 0px;
}



/* Article */
article {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	text-align: left;
}

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

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

article > * + h2{
	margin-top: 48px;
}
article > * + h3{
	margin-top: 32px;
}
article > * + h4{
	margin-top: 24px;
}

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

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

article li:first-child{
	padding-top: 0px;
}

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

article a{
	color: rgba(10,100,105,1.00);
	font-weight: 400;
	font-style: italic;
}



/* Button */
.button {
	display: inline-block;
	position: relative;
	width: auto;
  min-width: 100px;
	height: auto;
	-webkit-border-radius: 8px;
	        border-radius: 8px;	
	font-size: 14px;
	font-weight: 700;
	font-style: normal !important;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
  cursor: pointer;
  padding: 15px 38px;
  margin: 16px auto 0px auto;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

.button span, .button img {
	display: inline-block;
	vertical-align: middle;
}
.button img {
	margin-left: 8px;
}

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


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

.more-button {
	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;
	background: rgba(16, 23, 29, 0.5);
	-webkit-border-radius: 8px;
	        border-radius: 8px;
	padding: 6px 12px;
	font-weight: 600;
	font-size: 12px;
	line-height: 20px;
	letter-spacing: 0.02em;
	color: #94AEB4;
	text-decoration: none;
	-webkit-transition: all .3;
	-o-transition: all .3;
	transition: all .3;
	margin-top: 8px;
}
.more-button img {
	margin-left: 8px;
}
.more-button:hover {
	-webkit-transform: scale(1.03);
	    -ms-transform: scale(1.03);
	        transform: scale(1.03);
	text-decoration: none;
	
}


.section {
  padding: 32px 20px;
  margin-bottom: 20px;
	background: rgba(16, 23, 29, 0.5);
	-webkit-border-radius: 16px;
	        border-radius: 16px;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

/* Special */
.image img,
.background img {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
}
.image {
	z-index: -1;
}
.background img {
  margin: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.background {
	display: block;
	position: absolute !important;
	top: 0px;
	bottom: 0px;
	right: 0px;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.background img {
	display: block;
	width: 100%;
	height: 100%;
}

.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: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
	position: relative;
	-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-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	    flex-direction: column;
	height: 100%;
	width: 100%;
	padding: 32px 30px 0px 30px;
}
.cover {
  height: auto;
}

.content-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
	width: 100%;
	padding: 20px 32px 0px 32px;
  overflow: hidden;
}

.bonus-page .content-wrapper, .app-page .content-wrapper {
	max-width: 1224px;
	padding: 20px 32px 0px 32px;
	margin: 0px auto;
}
.content-body {
  width: -webkit-calc(100% - 245px);
  width: calc(100% - 245px);
}

.content-body.content-body--cover {
	width: 100%;
}


.content > *,
.cover > * {
	display: block;
	position: relative;
	-webkit-box-flex: 1;
	-webkit-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	    flex: 1 1 auto;
}



/* HEADER */
.header {
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	    justify-content: space-between;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	    flex-direction: row;
	top: 0px;
	left: 0px;
	right: 0px;
	height: auto;
	overflow: unset;
	padding-top: 16px;
	padding-bottom: 16px;
	z-index: 1000;
}

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

.header__logo {
	max-width: 100px;
	margin-right: 30px;
}
.header__language-dropdown {
	z-index: 5;
	max-width: 75px;
  margin: 0px 0px 0px 16px;
  cursor: pointer;
	padding: 10px;
}


.header__language-button {
	position: relative;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}


.header__language {
  white-space: nowrap;
	padding: 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;
	min-width: auto;
	overflow: hidden;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 12px;
	line-height: 16px;
}

.header__language:hover {
  text-decoration: none;
}

.header__language img {
  margin-right: 10px;
  display: block;
	-webkit-border-radius: 100%;
	        border-radius: 100%;
  width: 20px;
  height: 20px;
}
.header__language-dropdown > ul {
	margin-bottom: 0;
	position: absolute;
	width: 100%;
	padding: 16px 0px;
	background: #10171D;
	-webkit-box-shadow: 0px 4px 100px rgba(43, 198, 157, 0.5);
	        box-shadow: 0px 4px 100px rgba(43, 198, 157, 0.5);
	-webkit-border-radius: 8px;
	        border-radius: 8px;
	top: 59px;
	left: 0;
	z-index: 10;
	list-style: none;
	display: none;
}
.header__language-dropdown > ul .header__language img {
	width: 18px;
	height: 18px;
	margin-right: 8px;
}
.header__language-dropdown > ul .header__language {
	color: #94AEB4;
}
.header__language-dropdown > ul .header__language span {
	display: inline-block;
	vertical-align: middle;
	padding-top: 2px;
}
.header__language-dropdown ul > li::before{
  display: none;
}

.header__language-dropdown > ul li:hover .header__language {
	color: #fff;
}


.header__language-dropdown > ul li {
	display: block;
  padding: 13px 16px;
}

.header__language-dropdown > ul li:hover {
	background: rgba(53, 68, 78, 0.2);
}
.header__language-dropdown > ul li + li {
	margin-top: 3px;
}


.header__language-button.active::before {
	-webkit-transform: rotate(180deg);
	    -ms-transform: rotate(180deg);
	        transform: rotate(180deg);
}




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


.header__button-menu {
	display: none;
}
.header__button {
	text-transform: capitalize;
	padding: 15px 24px;
}
/* logo */
.logo > img {
  display: block;
  position: relative;
  max-width: 100%;
  max-height: 48px;
}

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

/* Menu */
.menu ul {
	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;
	margin: 0px;
	width: auto;
}

.menu li {
	display: block;
  position: relative;
	-webkit-box-flex: 1;
	-webkit-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	    flex: 1 1 auto;
	padding: 0px;
}
.menu li:before { display: none; }

.menu li > a {
  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;
	font-size: 14px;
	line-height: 20px;
  font-weight: 700;
	white-space: nowrap;

}

.menu li + li {
  margin-left: 40px;
}

.menu li > a img {
	margin-right: 10px;
}

.header__button {
	-webkit-box-flex: 0;
	-webkit-flex: 0 1 auto;
	-ms-flex: 0 1 auto;
	    flex: 0 1 auto;
  margin: 0px 0px 0px 16px;
}

/* hover */
.menu li:hover > a {
  text-decoration: none;
}

.header .sidebar__menu {
	display: none;	
}

/* var */

.header__menu .header__button-signup,
.header__menu .header__button-signin {
	display: none;
}



/* MAIN */
.main {
	display: block;
	position: relative;
	overflow-x: hidden;
	padding-top: 80px;
}

.main > * {
	position: relative;
}

/* sidebar */
.sidebar {
  width: 245px;
	margin-right: 30px;
}

.sidebar__caption {
	font-weight: 400;
	font-size: 12px;
	line-height: 20px;
	margin-bottom: 10px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	opacity: 0.5;
}

.sidebar__inner + .sidebar__inner {
	margin-top: 32px;
}

.sidebar__menu-list li:before{
	display: none;
}

.sidebar__menu-list li {
	padding: 0;
}
.sidebar__menu-list li svg {
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

.sidebar__menu-list li a {
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	text-decoration: none;
	padding: 10px 0px 10px 28px;
	position: relative;
	display: block;
}

.sidebar__menu-list--first li:hover a {
	text-shadow: 0px 0px 16px;
}
.sidebar__menu-list--first li:hover svg{
	-webkit-filter: drop-shadow(0px 0px 16px);
	        filter: drop-shadow(0px 0px 16px);
}

/* Prime */
.breadcrumbs {
	margin: 0px 0px 8px 0px;
}

.prime {
	position: relative;
	background: rgba(16, 23, 29, 0.5);
		border-radius: 16px;
	padding: 0;
	z-index: 0;
	margin-bottom: 20px;
	overflow: auto;
}



.prime__image {
	position: absolute;
	left: 0;
	bottom: 0;
	width: auto;
	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;
}
.prime__image img {
	width: auto;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}

.prime__wrap {
	padding: 35px 64px 53px 64px;
	text-align: right;
	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: end;
	-webkit-align-items: flex-end;
	    -ms-flex-align: end;
	        align-items: flex-end;

}

.home .prime__wrap {
	padding: 75px 64px 70px 64px;
}
.prime__desc {
	font-size: 6px;
	line-height: 150%;
	margin-top: 10px;
	text-align: center;
	color: #fff;
}
.prime__button {
	z-index: 1;
	padding: 15px 22px;
	margin: 0px 0px 0px 16px;
}

.prime__background img {
	-o-object-position: left;
	object-position: left;
}

.prime__title {
	font-weight: 900;
	font-size: 72px;
	line-height: 80px;
	text-align: right;
	text-transform: capitalize;
	color: #FFFFFF;
	margin-bottom: 16px;
}

.prime__title span {
	font-size: 56px;
	display: block;
	font-weight: 700;
}

.prime__text {
	font-weight: 700;
	font-size: 24px;
	line-height: 40px;
	color: rgba(255, 255, 255, 0.5);
	margin: 0%;
}
.prime .btn-box {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin-top: 33px;
}


/*navigation*/
.navigation {
	padding: 0;
	background: transparent;
	-webkit-border-radius: 0;
	        border-radius: 0;
}
.navigation__list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	padding-bottom: 32px;
}

.navigation__list li:before {
	display: none;
}

.navigation__list li {
	padding: 0;
}
.navigation__list li + li {
	margin-left: 19px;
}
.navigation__list a {
	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;
	width: 106px;
	height: 106px;
	-webkit-border-radius: 8px;
	        border-radius: 8px;
	padding: 16px;
	text-decoration: none;
	position: relative;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}


.navigation__list a {
	text-decoration: none;
}

.navigation__list a div {
	width: 48px;
	height: 48px;
	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;
}

.navigation__list a svg {
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}


.navigation__list span{
	font-weight: 600;
	font-size: 10px;
	line-height: 12px;
	text-align: center;
	display: block;
	margin-top: 16px;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

.navigation__list a:hover span{
	text-decoration: underline;
}

.simplebar-track.simplebar-vertical {
	display: none;
}

.simplebar-track.simplebar-horizontal {
	bottom: 10px;
	cursor: pointer;
	background: rgba(16, 23, 29, 0.5);
	-webkit-border-radius: 8px;
	        border-radius: 8px;
}
.simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
	background: #22C99D;
	cursor: pointer!important;
}



/*app banner*/
.app-banner {
	position: relative;
	padding: 22px;

}
.app-banner__wrapper {
	-webkit-border-radius: 8px;
	        border-radius: 8px;
	overflow: hidden;
	background: #192329;
	z-index: 0;
	padding: 60px 52px;
	position: relative;
	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;
}
.app-banner__inner {
	text-align: center;
}
.app-banner__inner a {
	display: block;
  margin: 6px;
	
}
.app-banner__inner a:hover {
	-webkit-transform: scale(1.02);
	    -ms-transform: scale(1.02);
	        transform: scale(1.02);
}
.app-banner__button {
	margin: 0;
	min-width: 267px;
	max-height: none;
	padding: 22px 15px;
}


.app-banner__logo {
	margin-bottom: 24px;
}

.app-banner__image {
	position: absolute;
	left: 10px;
	top: 0;
	height: 100%;
}
.app-banner__image img{
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}

/* Welcome Bonus */
.welcome__section {
  padding: 42px 20px 20px 20px;
}

.welcome__image {
	position: absolute;
	right: 0px;
	bottom: 0;
	height: 100%;
}

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


.welcome__bonus {
	font-weight: 800;
	font-size: 32px;
	line-height: 40px;
	margin-bottom: 8px;
	color: #FFFFFF;
	text-transform: inherit;
}

.welcome__text {
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: #FFFFFF;
	margin: 0px 0px 24px 0px;
	max-width: 465px;
}

.welcome__button {
	margin: 0;
}


.welcome__wrap {
	text-align: left;
}

/* Up To */
.upto {
	padding: 32px 20px 16px 20px;
}
.title.upto__title {
	margin-bottom: 10px;
}
.upto__list {
	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;
}

.upto__list li {
	min-height: 112px;
	background: #072443;
	-webkit-border-radius: 6px;
	        border-radius: 6px;
	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-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	padding: 12px 5px;
	width: 100%;
}
.upto__list li + li {
	margin-left: 35px;
}

.upto__list p {
	margin: 16px 0px 0px 0px;
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	text-transform: uppercase;
	color: #FFFFFF;
	text-align: center;
}

/* about */
.about {
	padding: 0 0 35px 0;
}


.about__title.title {
	margin-bottom: 16px;
	padding: 24px 24px 16px 24px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 24px;
	text-transform: inherit;
}

.about__image {
	position: absolute;
	right: 0;
	top: 0;
}



.about__info {
	padding: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	        -moz-box-orient: vertical;
	        -moz-box-direction: normal;
	        flex-direction: column;
}

.about__info li::before{
	display: none;
}
.about__info li, .about__info tr {
	padding: 8px 16px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: flex;
}

.about__info p img, .about__info tr td:first-child span:first-child {
	margin-right: 32px;
	-webkit-box-flex: 0;
	-webkit-flex: 0 1 32px;
	-moz-box-flex: 0;
	flex: 0 1 32px;
}
.about__info p, .about__info td {
	font-size: 16px;
	line-height: 150%;
	color: #fff;
	margin: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	        -moz-box-align: center;
	        align-items: center;
}
.about__info p:first-child, .about__info tr td:first-child {
	font-weight: 600;
	width: 100%;
	max-width: 300px;
	padding-right: 20px;
}

.about__info tr td:first-child span:nth-child(2) {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-moz-box-flex: 1;
	flex: 1;
}

.about__info li:nth-child(odd), .about__info tbody tr:nth-child(odd) {
	background: rgba(53, 68, 78, 0.2);
}

.about__info img {
	display: block;
}

@media screen and (max-width: 800px) {
	.about__info tr td:first-child span:first-child {
		margin-right: 12px;
	}
	.about__info tr td:first-child {
		max-width: 200px;
	}
}

@media screen and (max-width: 700px) {
	.about__info tr {
		margin: 0;
	}

	.about__info tr + tr {
		margin-top: 15px;
	}
}

@media screen and (max-width: 600px) {
	.about__info tr {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-moz-box-orient: vertical;
		-moz-box-direction: normal;
		flex-direction: column;
	}

	.about__info td {
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-moz-box-pack: center;
		justify-content: center;
		text-align: center;
	}

	.about__info tr td:first-child {
		width: 100%;
		-webkit-box-flex: 0;
		-webkit-flex: 0 1 100%;
		-moz-box-flex: 0;
		flex: 0 1 100%;
		max-width: 100%;
		margin-bottom: 6px;
	}

	.about__info tr td:last-child {
		width: 100%;
		-webkit-box-flex: 0;
		-webkit-flex: 0 1 100%;
		-moz-box-flex: 0;
		flex: 0 1 100%;
	}

	.about__info tr td:first-child span:nth-child(2) {
		-webkit-box-flex: 0;
		-webkit-flex: none;
		-moz-box-flex: 0;
		flex: none;
	}
}


/* Benefits */
.benefits {
	padding: 20px 20px 26px 20px;
}
.benefits__list {
	max-width: 435px;
}

.benefits__list li {
	position: relative;
  font-weight: 600;
	font-size: 16px;
	line-height: 128%;
	text-transform: uppercase;
	color: #fff;
	padding: 21px 14px 21px 84px;
	background: #EC622B;
	-webkit-border-radius: 16px;
	        border-radius: 16px;
	min-height: 62px;
}

.benefits__list li span {
	font-weight: 700;
	font-size: 52px;
	line-height: 150%;
	color: #fff;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	left: 20px;
	width: 45px;
	text-align: center;
}

.benefits__list li + li {
	margin-top: 16px;
}


.benefits__list li:before {
	display: none;
}
.benefits__image {
	position: absolute;
	right: 0px;
	top: 0;
	bottom: 0;
	height: 100%;
}
.benefits__image img {
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}


/* Review */

.review__desc {
	max-width: 100%;
}

.review__desc h2{
  	margin: 24px 0px 24px 0px;
}
.review__desc h3{
	margin: 24px 0px 24px 0px;
}

.review__desc h4 {
	margin: 24px 0px 24px 0px;
}

.review__desc ol, .review__desc ul {
	margin-top: 16px;
}

/*********safety*********/
.safety ul {
	margin-top: 16px;
}
.safety ul p {
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	margin: 0;
}
.safety ul p:first-child {
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 16px;
}
.safety ul li  {
	padding: 0;
}
.safety ul li + li {
	margin-top: 16px;
}
.safety ul li::before {
	display: none;
}

.safety__image {
	position: absolute;
	right: 0px;
	bottom: 0;
}

/* tiles */

.tiles {
	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: 0;
	background: none;
	margin-bottom: 20px;
}
.tile {
	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: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	min-height: 322px;
	-webkit-border-radius: 8px;
	        border-radius: 8px;
	width: -webkit-calc(25% - 36px);
	width: calc(25% - 36px);
	position: relative;
	padding: 16px;
	overflow: hidden;
}

.tile .button {
	padding: 10px 16px;
}

.tile__name {
	font-weight: 800;
	font-size: 24px;
	line-height: 32px;
	color: #FFFFFF;
	margin-bottom: 4px;
}
.tile__text{
	font-size: 14px;
	line-height: 20px;
	margin: 0;
	color: #94AEB4;
}
/* F.A.Q. */

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

.faq__item {
  color: #fff;
	padding: 0;
}

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


.faq-item__title {
	text-align: left;
	font-weight: 700;
	font-size: 20px;
	line-height: 120%;
	text-transform: uppercase;
	cursor: pointer;
	margin: 0;
	color: inherit;
	padding: 16px 15px 16px 36px;
	border-bottom: 1px solid #2BC69D;
	-webkit-border-radius: 0;
	        border-radius: 0;
}

.faq__item-icon{
	width: 24px;
	height: 24px;
	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;
	position: absolute;
	left: 0px;
	top: 16px;
}

.faq-item__title svg {
	fill: #fff;
	-webkit-transform: rotate(180deg);
	    -ms-transform: rotate(180deg);
	        transform: rotate(180deg);
}

.faq__item.active .faq-item__title svg {
	-webkit-transform: rotate(0deg);
	    -ms-transform: rotate(0deg);
	        transform: rotate(0deg);
}



.faq-item__desc p {
	margin: 0px;
}
.faq-item__desc .wrap {
	padding: 20px 0 0 0;
}

/* FOOTER */
.footer.footer--notCover .footer__content {
	max-width: 1224px;
	padding: 0px 32px 0px 32px;
	margin: 0px auto;
}
.footer ul li::before {
	display: none;
}


.footer__content > div {
	background: rgba(16, 23, 29, 0.5);
	-webkit-border-radius: 16px;
	        border-radius: 16px;
	padding: 20px;
	width: 100%;
	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;
}
.footer .content {
  padding: 0px 32px 0px 300px;

}

.footer__logo {
	-webkit-box-flex: 1;
	-webkit-flex: 1 0 132px;
	    -ms-flex: 1 0 132px;
	        flex: 1 0 132px;
	display: inline-block;
}

.footer__text {
	font-weight: 400;
	font-size: 12px;
	line-height: 18px;
	margin: 0 26px;
}

.footer__list {
	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-flex: 1;
	-webkit-flex: 1 0 205px;
	    -ms-flex: 1 0 205px;
	        flex: 1 0 205px;
}

.footer__list li + li {
	margin-left: 9px;
}
.footer__list li {
	padding: 0;

}

.footer__list li::before {
	display: none;
}

/*** payments ******/
.payments {
	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;
}
.payments__wrapper {
	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;
	padding: 8px 12px;
	background: rgba(53, 68, 78, 0.2);
	-webkit-border-radius: 8px;
	        border-radius: 8px;
}

.payments__caption {
	max-width: 135px;
	margin: 0 24px 0 0;
	width: 100%;
	font-size: 12px;
	line-height: 18px;
	color: #FFFFFF;
}
.payments__list {
	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;
}

.payments__list + .payments__list  {
	margin-top: 16px;
}

.payments li {
	padding: 0;
}
.payments li img {
	display: block;
}
.payments li + li {
	margin-left: 24px;
}

.payments li::before {
	display: none;
}

.payments__image {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	right: 0;
}
/* Breadcrumbs */
.breadcrumbs {
	z-index: 1;
	text-align: right;
}
.breadcrumbs > li {
	display: inline-block;
	padding: 0px;
}

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

.breadcrumbs > li a {
	display: inline-block;
	color: #fff;
  opacity: 0.84;
	font-size: 16px;
}

.breadcrumbs > li a:not([href]) {
	color: #fff;
	opacity: 1;
}

.breadcrumbs > li:not(:last-child):after {
	content: url(../images/icons/arrow-right-white.html);
	display: inline-block;
	vertical-align: middle;
	position: relative;
	font: inherit;
	color: #fff;
	margin: 0px 8px 2px 8px;
	width: 9px;
	height: 16px;
}
.welcome__type {
	padding: 0;
	padding: 24px;
	background: rgba(16, 23, 29, 0.5);
	-webkit-border-radius: 16px;
	        border-radius: 16px;
}
.welcome__type-list {
	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: stretch;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: auto;
	padding: 0px;
	margin: -14px;
}
.welcome__type-list li::before {
	display: none;
}

.welcome__type-list > li {
	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: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	text-align: center;
	-webkit-box-flex: 0;
	-webkit-flex: 0 1 -webkit-calc(33% - 20px);
	    -ms-flex: 0 1 calc(33% - 20px);
	        flex: 0 1 calc(33% - 20px);
	background: -o-linear-gradient(246.77deg, #352670 12.27%, #721474 79.16%);
	background: linear-gradient(203.23deg, #352670 12.27%, #721474 79.16%);
	padding: 20px;
	-webkit-border-radius: 8px;
	        border-radius: 8px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	width: 100%;
	margin: 10px;
	overflow: hidden;
	min-height: 317px;
}

.welcome-item__button {
	margin-top: 32px;
	width: 80%;
}

.welcome-item__image {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
	height: 100%;
	z-index: -2;
}
.welcome-item__image img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	display: block;
}

.welcome-item__title {
	font-size: 32px;
	line-height: 120%;
	padding: 0;
	color: #fff;
	margin: 0px;
	text-transform: inherit;
}

.welcome-item__desc p {
	margin: 0px;
	color: #fff;
}
.welcome-item__desc {
	margin-bottom: auto;
}


/* hover */

.welcome__type-list > li:hover .welcome-item__image {
	-webkit-transform: scale(1.05);
	    -ms-transform: scale(1.05);
	        transform: scale(1.05);
}