/************************************/
/************************************/
/************************************/
.blue-btn {
	color: #fff;
	background: #6a68ff;
	outline: none;
	padding: 15px;
	border: 1px solid transparent;
	transition: all .5s linear;
	border-radius: 3px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
/*common*/
* {
	box-sizing: border-box;
}
html,
body {
  /*height: 100%;*/
}
.wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #212429;
}
.container {
	padding: 0 15px;
	margin: 0 auto;
	max-width: 1170px;
	width: 100%;
}
header {
	flex: 1 0 auto;
}
main {
  flex: 1 0 auto;
}
footer {
  flex: 0 0 auto;
}

.df {
	display: flex;
}
a {
	text-decoration: none;
	text-align: center;
}
.breadcrumb {
	padding: 50px 0;
}
.breadcrumb a {
	display: flex;
	align-items: center;
}
.breadcrumb span {
	font-family: 'HelveticaNeueCyr-Roman', sans-serif;
	font-size: 14px;
	color: #666;
	display: flex;
	align-items: center;
}
.breadcrumb .breadcrumb-link:not(.current):after {
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	border-radius: 100%;
	background: #666;
	margin: 0 5px;
}
.breadcrumb .current span {
	color: #6968ff;
}
/************************************/
/************************************/
/************************************/
/*header*/
.header {
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid rgba(255,255,255, .1);
}
.logo {
	font-family: 'GamerBold', sans-serif;
	color: #fff;
	font-size: 30px;
}
.main-menu {
}
.main-menu-link {
	font-family: 'HelveticaNeueCyr-Roman', sans-serif;
	font-size: 14px;
	color: #fff;
	position: relative;
	display: block;
	padding: 30px 0;
	margin: 0 30px;
}
.main-menu-link:after,
.main-menu-link:before {
	transition: all .5s;
}
.main-menu-link:after {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  margin: auto;
  width: 0%;
  content: '.';
  color: transparent;
  background: #6968ff;
  height: 2px;
}
.main-menu-link:hover:after,
.main-menu-link.current:after {
  width: 100%;
}
.auth-btn {

}
.login-link {
	justify-content: space-between;
	align-items: center;
	margin: 0 30px 0 0;
}
.login-link-txt {
	font-family: 'HelveticaNeueCyr-Medium', sans-serif;
	font-size: 14px;
	color: #fff;
	padding: 0 5px;
}
.register-link {
	font-family: 'HelveticaNeueCyr-Bold', sans-serif;
	font-size: 14px;
	width: 178px;
}
/*mobile*/
.header-mobile {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  height: 50px;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  overflow: hidden;
  transition: all 0.5s ease-out, background 1s ease-out;
  transition-delay: 0.2s;
  z-index: 1000;
}
.logo-mobile {
	font-family: 'GamerBold', sans-serif;
	color: #fff;
}
.header-mobile-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 15px;
}
.header-mobile .burger-container {
  position: relative;
  display: block;
  height: 50px;
  width: 50px;
  cursor: pointer;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-tap-highlight-color: transparent;
  z-index: 999;
}
.header-mobile .burger-container #burger {
  width: 18px;
  height: 8px;
  position: relative;
  display: block;
  margin: -4px auto 0;
  top: 50%;
}
.header-mobile .burger-container #burger .bar {
  width: 100%;
  height: 1px;
  display: block;
  position: relative;
  background: #FFF;
  transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition-delay: 0s;
}
.header-mobile .burger-container #burger .bar.topBar {
  -webkit-transform: translateY(0px) rotate(0deg);
          transform: translateY(0px) rotate(0deg);
}
.header-mobile .burger-container #burger .bar.btmBar {
  -webkit-transform: translateY(6px) rotate(0deg);
          transform: translateY(6px) rotate(0deg);
}
.header-mobile .icon {
  display: inline-block;
  position: absolute;
  height: 100%;
  line-height: 50px;
  width: 50px;
  height: 50px;
  text-align: center;
  color: #FFF;
  font-size: 22px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.header-mobile .icon.icon-bag {
  right: 0;
  top: 0;
  left: auto;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  transition: -webkit-transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99), -webkit-transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition-delay: 0.65s;
}
.header-mobile .main-menu-mobile {
  position: relative;
  display: block;
  padding: 0px 48px 0;
  list-style: none;
  width: 100%;
}
.header-mobile .main-menu-mobile-li.center a {
	margin: 10px auto;
}
.header-mobile .main-menu-mobile-li {
	padding: 20px 0;
  -webkit-transform: scale(1.15) translateY(-30px);
          transform: scale(1.15) translateY(-30px);
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99), -webkit-transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99), opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99), opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99), -webkit-transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
}
.header-mobile .main-menu-mobile-li:nth-child(1) {
  transition-delay: 0.49s;
}
.header-mobile .main-menu-mobile-li:nth-child(2) {
  transition-delay: 0.42s;
}
.header-mobile .main-menu-mobile-li:nth-child(3) {
  transition-delay: 0.35s;
}
.header-mobile .main-menu-mobile-li:nth-child(4) {
  transition-delay: 0.28s;
}
.header-mobile .main-menu-mobile-li:nth-child(5) {
  transition-delay: 0.21s;
}
.header-mobile .main-menu-mobile-li:nth-child(6) {
  transition-delay: 0.14s;
}
.header-mobile .main-menu-mobile-li:nth-child(7) {
  transition-delay: 0.07s;
}
.header-mobile .main-menu-mobile-link {
	border-bottom: 1px solid #333;
	font-family: 'HelveticaNeueCyr-Roman', sans-serif;
	font-size: 15px;
	color: #fff;
	position: relative;
	padding: 20px 0;
	text-align: left;
}
.header-mobile.menu-opened {
  height: 100%;
  background-color: #000;
  transition: all 0.3s ease-in, background 0.5s ease-in;
  transition-delay: 0.25s;
}
.header-mobile.menu-opened .burger-container {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.header-mobile.menu-opened .burger-container #burger .bar {
  transition: all 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition-delay: 0.2s;
}
.header-mobile.menu-opened .burger-container #burger .bar.topBar {
  -webkit-transform: translateY(4px) rotate(45deg);
          transform: translateY(4px) rotate(45deg);
}
.header-mobile.menu-opened .burger-container #burger .bar.btmBar {
  -webkit-transform: translateY(3px) rotate(-45deg);
          transform: translateY(3px) rotate(-45deg);
}
.header-mobile.menu-opened .main-menu-mobile-li {
  -webkit-transform: scale(1) translateY(0px);
          transform: scale(1) translateY(0px);
  opacity: 1;
}
.header-mobile.menu-opened .main-menu-mobile-li:nth-child(1) {
  transition-delay: 0.27s;
}
.header-mobile.menu-opened .main-menu-mobile-li:nth-child(2) {
  transition-delay: 0.34s;
}
.header-mobile.menu-opened .main-menu-mobile-li:nth-child(3) {
  transition-delay: 0.41s;
}
.header-mobile.menu-opened .main-menu-mobile-li:nth-child(4) {
  transition-delay: 0.48s;
}
.header-mobile.menu-opened .main-menu-mobile-li:nth-child(5) {
  transition-delay: 0.55s;
}
.header-mobile.menu-opened .main-menu-mobile-li:nth-child(6) {
  transition-delay: 0.62s;
}
.header-mobile.menu-opened .main-menu-mobile-li:nth-child(7) {
  transition-delay: 0.69s;
}
.header-mobile.menu-opened .icon.icon-bag {
  -webkit-transform: translateX(75px);
          transform: translateX(75px);
  transition-delay: 0.3s;
}

/************************************/
/************************************/
/************************************/
/*main*/
.page-h1 {
	color: #6968ff;
	font-family: 'HelveticaNeueCyr-Black', sans-serif;
	font-size: 52px;
}
/********************/
/****************************/
.intro{
	display: flex;
	justify-content: space-between;
	position: relative;
	align-items: center;
}
.intro-info{
	width: 50%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.intro-title{
	color: #fff;
	font-size: 52px;
	font-family: 'HelveticaNeueCyr-Black', sans-serif;
	line-height: 57px;
	width: 100%;
	margin: 0 auto 50px;
}
.intro-title span{
	color: #6968ff;
}
.intro-video{
	width: 50%;
}
.intro-video-btn {
	background: transparent;
	border: none;
	outline: none;
	padding: 0;
	margin: 0;
}
.intro-video img{
	width: 100%
}
.intro-result{
	display: flex;
	flex-direction: column;
	width: 100%;
}
.intro-result-row{
	display: flex;
	justify-content: space-between;
	margin: 0 0 40px 0;
}
.intro-result-row-item{
	display: flex;
	align-items: center;
	width: 50%;
}
.intro-result-txt{
	color: #fff;
	font-size: 18px;
	font-family: 'HelveticaNeueCyr-Light', sans-serif;
}
.intro-result-count{
	color: #fff;
	font-size: 30px;
	font-family: 'HelveticaNeueCyr-Light', sans-serif;
	padding: 0 0 10px 0;
}
.intro-result-desc{
	margin: 0 0 0 15px;
	display: flex;
	flex-direction: column;
}
.intro-result-line{
	background-color: #6968ff;
	width: 20px;
	height: 2px;
}
.soc-wrap{
	position: absolute;
	left: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	max-width: 200px;
	width: 100%;
}
.soc-link {
	border: 1px solid rgba(255,255,255, .1);
	border-radius: 100%;
	height: 36px;
	width: 36px;
	align-items: center;
	justify-content: center;
	margin: 20px;
	display: flex;
}
.soc-link.twitter img {
    width: 22px;
    height: 18px;
}
.soc-link.fb img {
    width: 11px;
    height: 21px;
}
/***************************8*/
/*secure battle*/
.secure-battle {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: 50px 0 0 0;
	-ms-flex-align: center;
	align-items: center;
}
.secure-battle-phones {
	width: 53%;
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
}
.secure-battle-circle {
	width: 100%;
}
.secure-battle-txt {
	margin: 0 0 0 15px;
	width: 45%;
}
.secure-battle-title {
	color: #fff;
	font-size: 36px;
	font-family: 'HelveticaNeueCyr-Black', sans-serif;
	line-height: 42px;
	margin: 0 0 40px 0;
}
.secure-battle-subtitle {
	color: rgba(255,255,255, .6);
	font-size: 16px;
	font-family: 'HelveticaNeueCyr-Roman', sans-serif;
	line-height: 28px;
	margin: 0 0 50px 0;
}
.secure-battle-title span {
	color: #6968ff;
	display: block;
}
.secure-battle-btn {
    max-width: 175px;
    width: 100%;
    font-size: 14px;
    font-family: 'HelveticaNeueCyr-Bold', sans-serif;
}

/****************************/
/*play*/
.mini-tutorial {
	margin: 100px 0 0 0;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: distribute;
	justify-content: space-around;
}

.mini-tutorial-item {
	max-width: 200px;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
}
.mini-tutorial-number {
	color: rgba(255,255,255, .1);
	font-size: 16px;
	font-family: 'HelveticaNeueCyr-Light', sans-serif;
}
.mini-tutorial-img-wrap {
	display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 0 25px 0;    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 0 25px 0;
}
.mini-tutorial-txt {
	color: #fff;
	font-size: 18px;
	font-family: 'HelveticaNeueCyr-Bold', sans-serif;
	line-height: 26px;
	text-align: center;
}
/***************************/
/*prof support*/
.support {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
	margin: 200px 0 0;
}
.support-text {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-pack: center;
	justify-content: center;
	max-width: 475px;
	width: 100%;
}
.support-title {
	color: #fff;
	font-size: 36px;
	font-family: 'HelveticaNeueCyr-Black', sans-serif;
	margin: 0 0 25px 0;
}
.support-title span {
	color: #6968ff
}
.support-desc {
	color: rgba(255,255,255, .6);
	line-height: 28px;
	font-size: 16px;
	font-family: 'HelveticaNeueCyr-Roman', sans-serif;
}

.photo-wrap {
	position: relative;
    max-width: 612px;
    z-index: 1;
    width: 100%;
}
.photo-wrap::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    right: -100px;
    top: -150px;
    background-color: #282b30;
    border-radius: 100%;
    z-index: -1;
}
.step-phto {
	max-width: 100%;
    height: auto;
}
.step-phto-absolute {
	position: absolute;
    left: -220px;
    bottom: -30px;
}
/**************************/
.battle-traders {
	background: linear-gradient(to right, #fff 50%,#212429 50%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  width: 100%;
  margin: 250px 0 0;
}
.battle-traders-left {
  width: 50%;
	flex-basis: 50%;
}
.battle-traders-title {
	font-family: 'HelveticaNeueCyr-Black', sans-serif;
	font-size: 52px;
	color: #6968ff;
	margin: 0 auto 30px;
}
.battle-traders-left p {
	font-family: 'HelveticaNeueCyr-Roman', sans-serif;
	font-size: 16px;
	line-height: 28px;
	margin: 0 auto 40px;
	color: #212429;
	padding: 0 60px 0 0;
}
.battle-traders-left img {
	max-width: 100%;
	margin: 40px auto;
}
.battle-traders-right {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 50%;
	flex-basis: 50%;
	padding: 0 0 0 50px;
}
.battle-traders-row {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.battle-traders-item {
	width: 30%;
	margin: 40px 0;
	display: -ms-flexbox;
	display: flex;
	align-items: flex-end;
	flex-wrap: wrap;
	justify-content: center;
}
.battle-traders-item-txt {
	color: #fff;
    font-size: 16px;
    font-family: 'HelveticaNeueCyr-Bold', sans-serif;
    font-weight: bold;
    padding: 15px 0 0 0;
    width: 100%;
    text-align: center;
}
.btn-wrap {
	width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
}
.btn--battle {
	font-size: 16px;
	font-family: 'HelveticaNeueCyr-Bold', sans-serif;
	max-width: 230px;
	width: 100%;
}

/*best traders*/
.best-traders {
	background: #6968ff;
	padding: 50px 0;
}
.best-traders-title {
	color: #fff;
	font-size: 36px;
	font-family: 'HelveticaNeueCyr-Black', sans-serif;
	padding: 0 0 40px;
	text-align: center;
}
.top-traders {
	display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
}
.trader {
	display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 50px;
}
.trader.padding {
	padding: 20px 0 0 0;
}
.trader .trader-ava-wrap {
	border: 1px solid #fff;
    padding: 10px;
    border-radius: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}
.trader-ava-wrap.sc::before {
    position: absolute;
    right: 10px;
    bottom: 5px;
    content: '2';
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background-color: #6968ff;
    text-align: center;
    color: #ffd500;
    font-size: 18px;
    font-family: 'HelveticaNeueCyr-Black', sans-serif;
}
.trader-name {
	color: #fff;
    font-size: 16px;
    text-align: center;
    margin: 10px 0;
    font-family: 'HelveticaNeueCyr-Bold', sans-serif;
    font-weight: bold;
}
.trader-country {
	font-size: 14px;
    color: #fff;
    font-family: 'HelveticaNeueCyr-Roman', sans-serif;
    text-align: center;
}
.trader-ava-wrap.ft::before {
    position: absolute;
    right: 10px;
    bottom: 5px;
    content: '1';
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background-color: #6968ff;
    text-align: center;
    color: #ffd500;
    font-size: 18px;
    font-family: 'HelveticaNeueCyr-Black', sans-serif;
}
.trader-ava-wrap.th::before {
    position: absolute;
    right: 10px;
    bottom: 5px;
    content: '3';
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background-color: #6968ff;
    text-align: center;
    color: #ffd500;
    font-size: 18px;
    font-family: 'HelveticaNeueCyr-Black', sans-serif;
}
/****************************/
.news {
	margin: 0 0 150px 0;
	width: 100%;
}
.news-title {
	color: #fff;
    font-size: 36px;
    font-family: 'HelveticaNeueCyr-Black', sans-serif;
    font-weight: 900;
    padding: 100px 0 50px 0;
}
/*********************************/
/**/















/*contact*/
.contact-content {
	justify-content: space-between;
	padding: 0 0 100px;
}
.social-block-title {
	color: #fff;
	font-size: 24px;
	font-family: 'HelveticaNeueCyr-Bold', sans-serif;
	padding: 40px 0 15px 0;
}
.contact-form {
	max-width: 475px;
	width: 100%;
	padding: 35px;
	border: 1px solid #454694;
	border-radius: 3px;
}
.text {
	color: #666;
	font-family: 'HelveticaNeueCyr-Roman', sans-serif;
	margin: 0 0 15px;
}
.input {
	width: 100%;
	display: block;
	margin: 0 0 15px;
	height: 50px;
	font-size: 23px;
	padding: 0 15px;
	color: #fff;
	border: none;
	background-color: #292b2e;
}
.input:focus {
	outline-color: #454694;
}
.input-error {
	display: none;
}
.btn-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 30px 0 0 0;
}
.btn--contacts {
	text-align: center;
	max-width: 180px;
	width: 100%;
}





/*rules*/
.rules-content {
	padding: 40px 0 170px;
}
.rule-block {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0 0 340px;
}
.rule-block:last-child {
	margin: 0 0 170px;
}
.rule-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 475px;
	width: 100%;
}
.rule-step {
	color: #fff;
	padding: 0 0 0 25px;
	font-size: 16px;
	font-family: 'HelveticaNeueCyr-Roman', sans-serif;
	position: relative;
	z-index: 1;
	margin: 0 0 30px 0;
}
.rule-step:before {
	content: '';
	position: absolute;
	width: 40px;
	height: 40px;
	border-radius: 100%;
	background-color: #56585c;
	left: 0;
	top: -10px;
	z-index: -1;
}
.rule-title {
	color: #fff;
	font-size: 36px;
	font-family: 'HelveticaNeueCyr-Black', sans-serif;
	font-weight: 900;
	margin: 0 0 25px 0;
}
.rule-desc {
	color: #56595c;
	font-size: 16px;
	font-family: 'HelveticaNeueCyr-Roman', sans-serif;
	line-height: 24px;
}
.rule-desc p {
	margin: 0 auto 18px;
}
.rule-img-wrap {
    position: relative;
    max-width: 612px;
    z-index: 1;
    width: 100%;
}
.rule-img-wrap:before {
    content: '';
    position: absolute;
    width: 680px;
    height: 680px;
    left: 0;
    top: -150px;
    background-color: #282b30;
    border-radius: 100%;
    z-index: -1;
}
.rule-img-wrap:nth-child(odd):before {
	left: -100px;
}
.rule-step-img {
	width: 100%;
}




/*single news*/
.single-content {
	padding: 40px 0 170px;
	font-family: 'HelveticaNeueCyr-Light', sans-serif;
	font-size: 16px;
	color: #fff;
}
.single-content img {
	width: 100%;
	max-width: 500px;
	margin: 0 20px 20px 0;
	float: left;
}
.single-content p {
	margin: 0 auto 18px;
}







/*news*/
.news-content {
	padding: 40px 0 170px;
	justify-content: space-between;
	flex-wrap: wrap;
}
.top-news {
	width: 100%;
	justify-content: space-between;
}
.top-news .news-video {
	width: 60%;
	margin: 0 0 0 1%;
}
.top-news .news-item {
	width: 38%;
	margin: 0 1% 0 0;
}
.news-video,
.news-item {
	position: relative;
	height: 285px;
}
.news-list {
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 2% auto 0;
	width:100%;
}
.news-item {
	display: flex;
	align-items: flex-end;
	width: 32%;
	margin: 0 0 2% 0;
}

.news-item-bg {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 1;
}
.news-item-inner {
	position: relative;
	z-index: 2;
	padding: 30px 40px;
}
.news-item-date {
	font-family: 'HelveticaNeueCyr-Bold', sans-serif;
	font-size: 16px;
	color: #fff;
	position: relative;
}
.news-item-date:after {
	/*position: absolute;*/
	display: block;
	content: '';
	margin: 15px 0;
	bottom: 0;
	left: 0;
	width: 43px;
	height: 3px;
	background: #6968ff;
}
.news-item-desc a {
	font-family: 'HelveticaNeueCyr-Light', sans-serif;
	font-size: 22px;	
	color: #fff;
	text-decoration: underline;
}
.news-item-desc a:hover {
	text-decoration: none;
}
.news-video .video-item-play {
	margin: 50px auto;
}




/*video*/
.video-content {
	padding: 40px 0 170px;
	flex-wrap: wrap;
	justify-content: space-between;
}
.video-item {
	width: 49%;
	position: relative;
}
.video-item:nth-child(odd) {
	margin: 0 1% 2% 0;
}
.video-item:nth-child(even) {
	margin: 0 0 2% 1%;
}
.video-item-bg {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 1;
}
.video-item-inner {
	position: relative;
	z-index: 2;
	padding: 30px 40px;
}
.video-item-time {
	font-family: 'HelveticaNeueCyr-Medium', sans-serif;
	font-size: 16px;
	color: #fff;
	text-align: right;
}
.video-item-play {
	background: #6968ff;
	border-radius: 100%;
	margin: 0 auto;
	border: none;
	cursor: pointer;
	margin: 110px auto 50px;
	width: 76px;
	height: 76px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
		transition: transform .5s;
}
.video-item-play:after {
	content: '';
	display: block;
	border-style: solid;
	border-color: transparent transparent transparent #fff;
	border-width: 8px 0 8px 15px;
}
.video-item-play:hover {
	transform: scale(1.1);
}
.video-item-date {
	font-family: 'HelveticaNeueCyr-Bold', sans-serif;
	font-size: 16px;
	color: #fff;
	margin: 0 0 15px;
}
.video-item-desc {
	font-family: 'HelveticaNeueCyr-Light', sans-serif;
	font-size: 22px;	
	color: #fff;
}




/*faq*/
.faq-content {
	padding: 100px 0;
}
.faq-menu {
	max-width: 295px;
	width: 100%;
}
.faq-menu-title {
	color: #fff;
	font-size: 24px;
	font-family: 'HelveticaNeueCyr-Bold', sans-serif;
	margin: 0 0 40px 0;
}
.faq-category {
	width: 100%;
	display: flex;
	align-items: center;
	border: none;
	background-color: transparent;
	outline: none;
	padding: 0;
	margin: 0 0 30px 0;
	cursor: pointer;
}
.faq-decor-line {
	height: 2px;
	display: block;
	width: 15px;
	background-color: #6a68ff;
	opacity: 0;
}
.faq-category-text {
	font-size: 14px;
	font-family: 'HelveticaNeueCyr-Medium', sans-serif;
	color: #fff;
	padding: 0 0 0 10px;
	height: 100%;
	text-align: left;
}
.faq-category:hover .faq-category-text,
.faq-category.current .faq-category-text {
    color: #6a68ff;
}
.faq-category:hover .faq-decor-line,
.faq-category.current .faq-decor-line {
    opacity: 1;
}
.switched {
	margin: 0 0 0 100px;
	width: 100%;
}
.faq-com {
    width: 100%;
    display: none;
}
.faq-com.current {
	display: block;
}
.faq-wrap {
    margin: 0 0 25px 0;
}
.faq-item {
	padding: 25px 35px;
	border-color: #272a2f transparent #272a2f transparent;
	border-width: 1px;
	border-style: solid;
}
.faq-item:hover {
	background: rgba(255,255,255, .1);
}
.faq-item.current {
	border-color: #272a2f transparent transparent transparent;
}
.faq-item .faq-answer {
	display: none;
}
.faq-item.current .faq-answer {
	display: block;
}
.faq-question {
	color: #fff;
	font-size: 16px;
	font-family: 'HelveticaNeueCyr-Bold', sans-serif;
	cursor: pointer;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.faq-question:after {
	content: '+';
	font-family: 'HelveticaNeueCyr-Bold', sans-serif;
	font-size: 26px;
	color: #6968ff;
}
.faq-item.current .faq-question:after {
	content: '-';
}
.faq-answer {
	line-height: 1.7;
	color: rgba(255,255,255, .6);
	font-size: 16px;
	font-family: 'HelveticaNeueCyr-Roman', sans-serif;
	padding: 20px 0 0;
}
/************************************/
/************************************/
/************************************/
/*footer*/
.footer {
	border-top: 1px solid rgba(255,255,255, .1);
	padding: 50px 0 20px;
	justify-content: space-between;
}
.footer-menu{
	max-width: 450px;
	width: 100%;
	flex-wrap: wrap;
}
.footer-menu-li {
	margin: 0 0 30px 0;
	text-align: left;
	width: 33.333%;
}
.footer-menu-link {
	font-family: 'HelveticaNeueCyr-Roman', sans-serif;
	font-size: 16px;
	color: #fff;
	padding: 15px 15px 15px 0;
}
.footer-menu-link:hover {
	text-decoration: underline;
}
.copyright {
	font-family: 'HelveticaNeueCyr-Roman', sans-serif;
	color: #fff;
	display: block;
	margin: 50px 0 0;
}

.footer-right {
	flex-direction: column;
	justify-content: space-between;
}
.language {
	justify-content: space-between;
	align-items: center;
}
.language-txt {
	font-family: 'HelveticaNeueCyr-Roman', sans-serif;
	font-size: 14px;
	color: #666;
}
.language-link {
	font-family: 'HelveticaNeueCyr-Roman', sans-serif;
	font-size: 14px;
	color: #fff;
	display: block;
	margin: 0 5px;
}
.language-link:hover {
	text-decoration: underline;
}
.social {
	align-items: center;
	justify-content: center;
}
.social-btn {
	border: 1px solid rgba(255,255,255, .1);
	border-radius: 100%;
	height: 36px;
	width: 36px;
	align-items: center;
	justify-content: center;
	margin: 20px;
}
.social-btn.twitter img {
	width:22px;
	height:18px;
}
.social-btn.fb img {
	width:11px;
	height:21px;
}
.creator-mobile {
	display: none;
}
.creator {
	align-items: center;
}
.creator-txt {
	font-family: 'HelveticaNeueCyr-Roman', sans-serif;
	color: #fff;
}
.creator img,
.creator-mobile img {
	height: 30px;
}

/*****************************************************************************************************/
/*****************************************************************************************************/
/*****************************************************************************************************/
/*media*/
@media all and (max-width: 1366px){
	.page-h1 {
		font-size: 45px;
	}
	/*home page*/
	.photo-wrap::before {
		width: 600px;
		height: 600px;
		right: -50px;
		top: -100px;
	}
	/*rule*/
	.rule-title {
		font-size: 30px;
	}
}
@media all and (max-width: 1280px){
	.rule-img-wrap:before {
		width: 530px;
		height: 530px;
	}
	.rule-step-img {
		max-width: 470px;
	}
	/*home apge*/
	.photo-wrap {
		max-width: 600px;
	}
	.photo-wrap::before {
		width: 550px;
		height: 550px;
		top: -85px;
		right: -30px;
	}
	/*news*/
	.news-item-desc,
	.video-item-desc {
		font-size: 16px;
	}
}
@media all and (max-width: 1200px){
		/*home apge*/
	.photo-wrap {
		max-width: 500px;
	}
	.photo-wrap::before {
		width: 500px;
		height: 500px;
		top: -85px;
		right: -15px;
	}
	.step-phto-absolute {
		left: -330px;
	}
}
@media all and (max-width: 1024px){
	.wrapper {
		padding: 50px 0 0;
	}
	.header {
		display: none;
	}
	.header-mobile {
		display: block;
	}
	/*home page*/
	.intro-info {
		padding: 50px 0 0;
		width: 100%;
	}
	.intro-video {
		display: none;
	}
	.intro-title {
		text-align: center;
	}
	.soc-wrap {
		display: none;
	}
	.step-phto-absolute {
		left: -60%;
		bottom: -50px;
	}
	.support-text {
		max-width: 50%;
		width: 50%;
	}
	/*rule page*/
	.rule-block {
		flex-wrap: wrap;
		margin: 0 auto 100px;
	}
	.rule-block:last-child {
		margin: 0 auto;
	}
	.rule-text{
		align-items: center;
		flex-direction: row;
		flex-wrap: wrap;
		max-width: 100%;
		order: 1;
	}
	.rule-step {
		margin: 0 10px 20px 0;
	}
	.rule-title {
		margin: 0 0 20px;
	}
	.rule-desc {
		width: 100%;
		text-align: center;
	}
	.rule-img-wrap {
		max-width: 100%;
		text-align: center;
		padding: 100px;
		order: 2;
	}
	.rule-img-wrap:before,
	.rule-img-wrap:nth-child(odd):before {
		top: 0;
    transform: translateX(-50%);
    left: 50%;
	}
	/*contact*/
	.contact-form {
		max-width: 400px;
	}
	/*news*/
	.news-list {
		flex-wrap: wrap;
	}
	.news-item,
	.top-news .news-video,
	.top-news .news-item {
		width: 49%;
	}
	/*single-news*/
	.single-content p {
		font-size: 15px;
		line-height: normal;
	}
	/*faq*/
	.switched {
		margin: 0 0 0 10px;
	}
}
@media all and (max-width: 860px){
	.step-phto-absolute {
		display: none;
	}
	.secure-battle {
		flex-wrap: wrap;
		justify-content: center;
	}
	.secure-battle-txt {
		width: 100%;
		margin: 20px auto 0;
	}
	.secure-battle-phones {
		width: 100%;
		max-width: 500px;
	}
	.secure-battle-btn {
		margin: 0 auto;
	}
	.support {
		flex-wrap: wrap;
		margin: 50px 0 0;
	}
	.photo-wrap {
		margin: 20px auto 0;
	}
	.photo-wrap::before {
		display: none;
	}
	.support-text {
		width: 100%;
		max-width: 100%;
	}
	.battle-traders {
		background: transparent;
		margin: 100px 0 0;
	}
	.battle-traders .container {
		padding: 0;
	}
	.bot {
		flex-wrap: wrap;
	}
	.battle-traders-left {
		background: #fff;
	}
	.battle-traders-left,
	.battle-traders-right {
		width: 100%;
		flex-basis: 100%;
		text-align: center;
		padding: 0 15px;
	}
	.battle-traders-row {
		padding: 0 0 50px;
	}
	.battle-traders-left p {
		padding: 0;
	}
}
@media all and (max-width: 680px){
	/*home page*/
	.trader {
		margin: 0 20px;
	}
	/*rules*/
	.rule-img-wrap {
		padding: 50px;
	}
	.rule-img-wrap:before,
	.rule-img-wrap:nth-child(odd):before {
    width: 400px;
    height: 400px;
  }
  /*contact*/
  .contact-content {
		flex-wrap: wrap;
	}
	.contact-form {
		max-width: 100%;
	}
	.social-block {
		width: 100%;
	}
	/*news*/
	.news-content {
		padding: 40px 0;
	}
	.top-news {
		flex-wrap: wrap;
	}
	.top-news .news-video,
	.top-news .news-item {
		margin: 0 auto 2%;
	}
	.news-item,
	.top-news .news-video,
	.top-news .news-item {
		width: 100%;
	}
	/*video*/
	.video-item-desc {
		font-size: 16px;
	}
	/*faq*/
	.faq-content {
		flex-wrap: wrap;
	}
	.switched {
		margin: 0 auto;
		width: 100%;
	}
	.faq-menu {
		width: 100%;
	}
	/*single-page*/
	.single-content img {
		width: 100%;
		max-width: 100%;
		margin: 0 0 20px;
		float: none;
	}
}
@media all and (max-width: 576px){
	/*home*/
	.intro-title {
		font-size: 42px;
		line-height: 45px;
	}
	.intro-result-count {
		font-size: 22px;
	}
	.secure-battle-title,
	.support-title,
	.best-traders-title {
		font-size: 30px;
		line-height: 35px;
	}
	.battle-traders-title {
		font-size: 42px;
	}
	.trader {
		margin: 0 12px;
	}
	.mini-tutorial-txt {
		font-size: 14px;
		line-height: 20px;
	}
	/*rule*/
	.rule-img-wrap {
		padding: 0;
	}
	.rule-img-wrap:before, 
	.rule-img-wrap:nth-child(odd):before {
    display: none;
  }
  /*video*/
  .video-content {
  	flex-wrap: wrap;
  	padding: 40px 0;
  }
  .video-item,
  .video-item:nth-child(odd),
  .video-item:nth-child(even) {
  	width: 100%;
  	margin: 0 auto 2%;
  }
	.video-item-desc {
		font-size: 16px;
	}
	/*news*/
	.news-content {
		padding: 40px 0;
	}
	/*single-news*/
	.single-content {
		padding: 40px 0;
	}
	/*footer*/
	.footer-menu {
		max-width: 100%;
		margin: 20px auto;
	}
	.footer-menu-li {
		width: 100%;
		text-align: center;
		margin: 0 auto 10px;
	}
	.footer-menu-link {
		padding: 15px 0;
		font-size: 14px;
	}
	.footer {
		flex-wrap: wrap;
	}
	.footer-left,
	.footer-right {
		width: 100%;
		display: flex;
		justify-content: center;
	}
	.footer-right {
		order: 1;
	}
	.footer-left {
		order: 2;
		flex-wrap: wrap;
	}
	.language,
	.social {
		justify-content: center;
	}
	.copyright {
		width: 100%;
		text-align: center;
		margin: 20px auto;
	}
	.creator {
		display: none;
	}
	.creator-mobile {
		display: flex;
		align-items: center;
	}
}
@media all and (max-width: 576px){
	.trader {
		width: 30%;
	}
	.trader img {
		width: 100%;
	}
	.news {
		margin: 0 0 40px;
	}
}