*::-webkit-input-placeholder {
	color: #939aa2;
	opacity: 1;
}
*:-moz-placeholder {
	color: #939aa2;
	opacity: 1;
}
*::-moz-placeholder {
	color: #939aa2;
	opacity: 1;
}
*:-ms-input-placeholder {
	color: #939aa2;
	opacity: 1;
}

html {
  -webkit-text-size-adjust: 100%; 
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
}

input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder { color:transparent; } 
input:focus:-moz-placeholder, textarea:focus:-moz-input-placeholder { color:transparent; } /* FF 4-18 */ 
input:focus::-moz-placeholder, textarea:focus::-moz-input-placeholder { color:transparent; } /* FF 19+ */ 
input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder { color:transparent; } /* IE 10+ */

body {
	margin: 0;
	font-size: 16px;
	font-family: "AvenirNextCyr-Medium";
	background-color: #e9eff0;
}

b, strong, h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  font-family: "AvenirNextCyr-Bold";
}


a, a:hover, a:focus, a:active {
	text-decoration: none;
	outline: none;
}

input {
	-webkit-appearance: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.clearfix {
  position: relative;
}

.clearfix:after {
  content: '';
  display: table;
  clear: both;
}

.main {
	background-image: url(../img/home1.jpg);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	background-size: cover;
	min-height: 100vh;
}

.top-line {
	width: 100%;
	padding: 0 55px 50px 25px;
	position: relative;
  z-index: 2;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.logo {
	float: left;
	padding-top: 82px;
}

.logo img {
	display: block;
}

.top-baziron {
	float: right;
	font-size: 0;
	padding-top: 60px;
	position: relative;
}

.top-baziron img {
	display: inline-block;
	vertical-align: middle;
	margin-right: 30px;
	margin-right: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.top-baziron img:nth-child(2) {
  position: absolute;
  left: 0;
  opacity: 0;
  visibility: hidden;
}

.top-line.active .top-baziron img:nth-child(2) {
  visibility: visible;
  opacity: 1;
}

.top-baziron a {
	display: inline-block;
	vertical-align: middle;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	border-style: solid;
  border-width: 6px;
  border-color: rgba(255, 255, 255,0.18);
  background-color: rgba(255, 255, 255, 0);
  width: 103px;
  height: 103px;
  position: relative;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.top-baziron a:before {
	content: '';
	position: absolute;
	top: 23px;
	left: 42px;
	height: 45px;
	width: 7px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	background-color: #fff;
	-webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.top-baziron a:after {
	content: '';
	position: absolute;
	top: 42px;
	left: 23px;
	width: 45px;
	height: 7px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	background-color: #fff;
	-webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.top-baziron a:hover {
	background-color: #fff;
	background-color: #fff;
}

.top-baziron a:hover:before,
.top-baziron a:hover:after {
	background-color: #9173cf;
}

.main-content {
	padding-left: 200px;
	position: relative;
	padding: 163px;
}

.main-content-center {
	display: table-cell;
  vertical-align: middle;
  height: calc(100vh - 273px);
  padding: 40px 0;
}
    
.main-content-title {
	max-width: 1080px;
	font-size: 150px;
	display: block;
	color: #939aa2;
	line-height: 120px;
	margin: 0;
	margin-bottom: 70px;
	font-family: 'AvenirNext-Bold';
}

.main-content-desc {
	max-width: 1080px;
	color: #939aa2;
	font-size: 36px;
	font-family: 'AvenirNext-Medium';
}

.main-content-link {
	font-size: 0;
	display: inline-block;
	font-family: 'AvenirNext-Demi';
}

.main-content-link div {
	display: inline-block;
	vertical-align: middle;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	width: 110px;
	height: 110px;
	border-style: solid;
	border-width: 6px;
  border-color: rgba(147, 154, 162, 0.18);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}

.main-content-link img {
  position: absolute;
  top: 50%;
  left: 52%;
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  max-width: 74%;
  will-change: opacity, visibility;
}

.main-content-link img:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}

.main-content-link:hover img:nth-child(1) {
  opacity: 0;
  visibility: hidden;
}

.main-content-link:hover img:nth-child(2) {
  opacity: 1;
  visibility: visible;
}

.main-content-link div:before {
	content: '';
	position: absolute;
	width: 6px;
	height: 26px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	background-color: #939aa2;
	top: 29px;
	left: 46px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.main-content-link div:after {
	content: '';
	position: absolute;
	width: 6px;
	height: 26px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	background-color: #939aa2;
	bottom: 29px;
	left: 46px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.main-content-link:hover div:after,
.main-content-link:hover div:before {
	background-color: #fff;
}

.main-content-link-like div:after,
.main-content-link-like div:before {
  display: none;
}

.main-content-link:hover div {
	background-color: #9171cc;
  border-color: transparent;
}

.main-content-link:hover span {
	color: #5b6169;
}

.main-content-link span {
	display: inline-block;
	vertical-align: middle;
	color: #939aa2;
	font-size: 40px;
	margin-left: 30px;
	line-height: 1;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.main-content-links {
	margin: 120px 0 0;
	padding: 0;
}

.main-content-links li {
	display: block;
	margin-bottom: 70px;
}

.main-content-links li:last-child {
	margin-bottom: 0;
}

.bot-line-rules {
	float: left;
	font-size: 0;
	font-family: 'AvenirNext-Medium';
}

.bot-line-rules div {
	display: inline-block;
	vertical-align: middle;
	width: 110px;
	height: 110px;
	background-color: #9171cc;
	border-width: 6px;
	border-style: solid;
  border-color: transparent;
  margin-right: 30px;
  position: relative;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.bot-line-rules div:before {
	content: '';
	position: absolute;
	background-color: #fff;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	height: 7px;
	width: 53px;
	left: 23px;
	top: 39px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.bot-line-rules div:after {
	content: '';
	position: absolute;
	background-color: #fff;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	height: 7px;
	width: 43px;
	left: 23px;
	top: 52px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.bot-line-rules:hover div:before,
.bot-line-rules:hover div:after {
	background-color: #939aa2;
}

.bot-line-rules:hover div {
	background-color: transparent;
	border-color: rgba(147, 154, 162, 0.18);
}

.bot-line-rules span {
	display: inline-block;
	vertical-align: middle;
	color: #939aa2;
	font-size: 32px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.bot-line-rules:hover span {
	color: #5b6169;
}

.bot-line {
	padding: 55px 55px 0px 200px;
	/*position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;*/
}

.bot-line-social {
	float: right;
	font-size: 0;
}

.bot-line-social a {
	display: inline-block;
	vertical-align: middle;
	margin-left: 10px;
}

.bot-line-social a i {
	display: block;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background-color: #fff;
	color: #9171cc;
	font-size: 38px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	width: 110px;
	height: 110px;
	text-align: center;
	line-height: 110px;
}

.bot-line-social a:hover i {
	color: #fff;
	background-color: #9171cc;
}

.warning {
	position: absolute;
	right: 55px;
	top: 193px;
	width: 103px;
}

.warning img {
	display: block;
	margin: 0 auto;
	max-width: 100%;
}

.warning img:nth-child(1) {
	margin-bottom: 40px;
}

.main-content-top {
	font-size: 18px;
	color: #939aa2;
	font-family: 'AvenirNext-Medium';
	margin-bottom: 35px;
}

.main-content-top span {
	color: #939aa2;
	font-size: 30px;
}

.main-content-top-name {
	font-size: 70px;
  font-family: 'AvenirNext-Bold';
  line-height: 63px;
  background: repeating-linear-gradient(90deg, #8174bd 0%,  #af6cea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variant: no-contextual;
  margin: 0 0 15px;
}

.main-help {
	font-size: 0;
	margin-left: 200px;
	color: #fff;
}

.barrier-more span,
.main-help span {
	color: #fff;
	font-size: 28px;
	display: inline-block;
	vertical-align: middle;
	max-width: 680px;
	margin-left: 30px;
	font-family: 'AvenirNext-Medium';
	line-height: 40px;
}

.barrier-more span {
  color: #939aa2;
}

.barrier-more div,
.main-help a {
  display: inline-block;
  vertical-align: middle;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border-style: solid;
  border-width: 6px;
  border-color: rgba(255, 255, 255,0.18);
  background-color: rgba(255, 255, 255, 0);
  width: 103px;
  height: 103px;
  position: relative;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}

.barrier-more div {
  border-color: rgba(147, 154, 162, 0.18);
}

.barrier-more:hover div,
.main-help a:hover {
	background-color: #fff;
}

.barrier-more:hover div:before,
.barrier-more:hover div:after,
.main-help a:hover:before,
.main-help a:hover:after {
	background-color: #9173cf;
}

.barrier-more {
	position: relative;
	display: inline-block;
	margin-top: 80px;
}

.main-help a:before {
  content: '';
  position: absolute;
  top: 23px;
  left: 42px;
  height: 45px;
  width: 7px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.barrier-more div:before {
  content: '';
  position: absolute;
  width: 4px;
  height: 17px;
  left: 26px;
  top: 13px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background-color: #939aa2;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.barrier-more div:after {
  content: '';
  position: absolute;
  width: 4px;
  height: 17px;
  left: 26px;
  bottom: 12px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background-color: #939aa2;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.barrier-more:hover div:after,
.barrier-more:hover div:before {
  background-color: #fff;
}

.barrier-more:hover div {
  background-color: #9171cc;
  border-color: transparent;
}

.barrier-more div {
  width: 60px;
  height: 60px;
  border-width: 4px;
}
  
.main-help a:after {
  content: '';
  position: absolute;
  top: 42px;
  left: 23px;
  width: 45px;
  height: 7px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
/*
.barrier-more div:after {
  height: 4px;
  width: 28px;
  top: 24px;
  left: 12px;
}

.barrier-more div:before {
  width: 4px;
  height: 28px;
  left: 24px;
  top: 12px;
}*/

.step-number strong {
  color: rgba(147, 154, 162, 0);
  font-size: 100px;
  line-height: 0.75;
  color: #E6E8E6;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  -webkit-: 1px;
  -webkit-text-stroke-width: 4px;
  text-stroke-width: 4px;
  -webkit-text-stroke-color: #c7ccd0;
  text-stroke-color: #c7ccd0; 
  font-family: 'AvenirNext-Bold';
  display: block;
  letter-spacing: -10px;
}

.step-number {
	position: relative;
	width: 136px;
	text-align: center;
	clear: both;
	margin-bottom: 30px;
}

.step-number span {
	position: absolute;
	white-space: nowrap;
	top: 50%;
	margin: 0 auto;
	font-size: 20px;
	font-family: 'AvenirNext-Bold';
	background: repeating-linear-gradient(90deg, #7e71be 0%, #a664ed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variant: no-contextual;
  -webkit-transform: translate(5px,-50%);
  -moz-transform: translate(5px,-50%);
  -ms-transform: translate(5px,-50%);
  -o-transform: translate(5px,-50%);
  transform: translate(5px,-50%);
  left: 0;
}

.step-content-desc-name {
	display: block;
	/*font-size: 118px;*/
	font-size: 42px;
	font-family: 'AvenirNext-Bold';
	color: #939aa2;
	line-height: 1;
	margin-bottom: 50px;
}

.step-content-desc-name-desc {
	display: block;
	font-size: 21px;
	font-family: 'AvenirNext-Medium';
	color: #939aa2;
}

.step-content-desc-bot strong {
	display: block;
	font-size: 23px;
	font-family: 'AvenirNext-Demi';
	margin-bottom: 20px;
}

.step-content-desc-bot {
	display: block;
	color: rgb(147, 154, 162);
	font-family: 'AvenirNext-Medium';
	font-size: 17px;
	margin-top: 50px;
}

.step-content {
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	background-size: cover;
  background-color: #fff;
	background-image: url(../img/step-bg1.png);
	margin: 0 auto;
	border: 20px solid #fff;
	-webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
	width: 96%;
	max-width: 1200px;
  padding: 50px 60px 60px;
  position: relative;
}

.step-right .step-content {
	background-image: url(../img/step-bg2.png);
}

.step-content-desc {
	float: left;
	width: 50%;
	max-width: 850px;
}

.step-content-img {
	float: right;
	width: 50%;
	padding: 0 30px;
}

.step-content-img img {
	display: block;
	margin: auto;
	max-width: 100%;
}

.step1 .step-content-desc {
	padding-top: 70px;
}

.step-right .step-content-desc {
	float: right;
}

.step-right .step-content-img {
	float: left;
}

/*.step2 .step-content-img {
	padding-top: 40px;
}*/

.step-content-img img {
  max-height: 400px;
}

.step {
	padding: 40px 0;
	position: relative;
}

.barrier {
	margin: 40px auto;
	background-color: #fff;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	width: 96%;
  max-width: 1200px;
  border: 20px solid #fff;
}

.barrier-content {
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	background-size: cover;
	background-image: url(../img/barrier.jpg);
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	position: relative;
	/*padding-left: 125px;
	padding-top: 100px;
	padding-bottom: 110px;*/
	padding: 60px;
  margin: 0 auto;
  border: 20px solid #fff;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  width: 100%;
  max-width: 1230px;
  padding-left: 15px;
  padding-right: 15px;
}

.barrier-warning {
	position: absolute;
	right: 10px;
	top: 40px;
	max-height: 260px;
}

.barrier-logo {
	display: block;
	margin-bottom: 40px;
}

.barrier-content-desc {
	font-size: 16px;
	font-family: 'AvenirNext-Demi';
	color: #fff;
	margin-top: 35px;
	padding-bottom: 70px;
	max-width: 430px;
}

.barrier-content-desc strong {
	display: block;
  font-size: 23px;
  font-family: 'AvenirNext-Demi';
  margin-bottom: 10px;
}

.barrier-baziron {
	display: block;
}

.barrier-cream {
	position: absolute;
	right: 10px;
	top: 50%;
	max-height: 90%;
	max-width: 200px;
	-webkit-transform: translate(0,-50%);
	-moz-transform: translate(0,-50%);
	-ms-transform: translate(0,-50%);
	-o-transform: translate(0,-50%);
	transform: translate(0,-50%);
}

.advice-name {
	display: block;
  color: #939aa2;
	font-size: 42px;
	font-family: 'AvenirNext-Bold';
	margin-bottom: 25px;
	line-height: 1;
}

.advice-name span {
	color: #939aa2;
	-webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  text-stroke-width: 1px;
  -webkit-text-stroke-color: #939aa2;
  text-stroke-color: #939aa2;
}

.advice .barrier-content {
	font-size: 24px;
}

.barrier-man {
	position: absolute;
	right: 160px;
	bottom: 0;
	max-height: calc(100% + 40px)
}

.advice-baziron {
	position: absolute;
	top: 40px;
	right: 120px;
}

.barrier-man2 {
	right: 240px;
}

.main-cream {
	margin-left: 180px;
	display: block;
	max-width: 320px;
	margin-bottom: 30px;
	margin-top: 30px;
}

.main-img {
	position: absolute;
	top: 65px;
	/*right: 160px;*/
	right: 190px;
	max-width: 800px;
}

.main-img2 {
  position: absolute;
  top: 65px;
  /*right: 160px;*/
  right: 180px;
  max-width: 800px;
}

.social {
	font-size: 0;
	text-align: center;
	max-width: 96%;
	margin: 0 auto 40px;
}

.footer-partners {
	text-align: center;
	max-width: 96%;
	margin: 0 auto 15px;
	color: #939aa2;
	font-size: 17px;
	font-family: 'AvenirNext-Medium';
}

.developer {
	text-align: center;
	max-width: 96%;
	margin: 0 auto;
	color: #939aa2;
	font-size: 17px;
	font-family: 'AvenirNext-Medium';
}

.developer a {
	color: #939aa2;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.developer a:hover {
	color: #8076c0;
}

.social a {
	display: inline-block;
	vertical-align: top;
	margin: 0 5px;
}

.social a i {
	width: 70px;
  height: 70px;
  line-height: 62px;
  text-align: center;
  display: block;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: #fff;
  color: #8076c0;
  font-size: 32px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border: 4px solid rgba(147, 154, 162, 0.18);
}

.social a:hover i {
  color: #fff;
  background-color: #8076c0;
  border: 4px solid rgba(147, 154, 162, 0);
}

footer {
	background-color: #fff;
	padding: 40px 0;
}

.tinder-desc span {
	font-family: 'AvenirNext-Bold';
  background: repeating-linear-gradient(90deg, #7e71be 0%, #a664ed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variant: no-contextual;
  font-size: 70px;
}

.tinder-desc {
	color: #939aa2;
	font-size: 36px;
	font-family: 'AvenirNext-Medium';
	/*margin-bottom: 100px;*/
	margin-bottom: 30px;
}

.tinder {
	margin-bottom: 40px;
	margin-top: 36px;
}
/*
.tinder .barrier-content {
	background-image: url(../img/tinder.jpg);
}*/

.tinder {
  background-image: url(../img/tinder.jpg);
}

.step10 {
	margin-bottom: 36px !important;
	padding-bottom: 0!important;
}

.tinder .barrier-more span {
	color: #939aa2;
}
/*
.tinder .barrier-more:hover div {
	border: 4px solid rgba(147, 154, 162, 0.18);
	background-color: transparent;
}

.tinder .barrier-more:hover div:before,    
.tinder .barrier-more:hover div:after {
	background-color: #939aa2;
}*/

.barrier-video:hover div:before,
.barrier-video:hover div:after {
	opacity: 0;
}

.barrier-video div img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-35%,-50%);
	-moz-transform: translate(-35%,-50%);
	-ms-transform: translate(-35%,-50%);
	-o-transform: translate(-35%,-50%);
	transform: translate(-35%,-50%);
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	will-change: opacity;
}

.barrier-video div img:nth-child(2) {
  opacity: 0;
}

.barrier-video:hover div img:nth-child(2) {
	opacity: 1;
}

.barrier-video:hover div img:nth-child(1) {
  opacity: 0;
}

.barrier-video:hover div {
  background-color: #8076c0;
}

.barrier-video div:before,
.barrier-video div:after {
  display: none;
}

.barrier-vide {
  margin-top: 100px;
}

.body-bg {
  background-image: url(../img/bg.jpg);
  background-repeat: no-repeat;
  -webkit-background-size: 100% auto;
  background-size: 100% auto;
  background-position: center top;
}

header {
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 9;
}

.sandwich-container {
  z-index: 9; 
  cursor: pointer; 
  float: left;
  background-color: #9171cc;
  width: 111px;
  height: 111px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  position: relative;
  margin-right: 35px;
  margin-top: 60px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.sandwich-container:hover {
  background-color: #fff;
}

.sandwich {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%); 
  width: 45px; 
  height: 33px;
  
} 

.sw-topper { 
  position: relative; 
  top: 0; 
  width: 45px; 
  height: 7px; 
  background: #fff; 
  border: none; 
  border-radius: 4px 4px 4px 4px; 
  transition: transform 0.5s, top 0.2s, background 0.3s; 
} 

.sw-bottom { 
  position: relative;  
  top: 5px; 
  width: 45px; 
  height: 7px; 
  background: #fff; 
  border: none; 
  border-radius: 4px 4px 4px 4px;
  transition: transform 0.5s, top 0.2s, background 0.3s; 
  transition-delay: 0.2s, 0s, 0s; 
} 

.sw-footer { 
  position: relative;  
  top: 10px; 
  width: 45px; 
  height: 7px; 
  background: #fff; 
  border: none; 
  border-radius: 4px 4px 4px 4px;
  transition: transform 0.5s, top 0.5s, background 0.3s; 
  transition-delay: 0.1s, 0s, 0s;
}

.sandwich.active .sw-topper { 
  top: 7px; 
  background: #fff;
  -webkit-transform: rotate(140deg); 
  -moz-transform: rotate(140deg); 
  -ms-transform: rotate(140deg); 
  -o-transform: rotate(140deg); 
  transform: rotate(140deg); 
  border-radius: 8px 8px 8px 8px; 
} 

.sandwich.active .sw-bottom { 
  top: 4px;
  background: #fff;
  -webkit-transform: rotate(-140deg); 
  -moz-transform: rotate(-140deg); 
  -ms-transform: rotate(-140deg); 
  -o-transform: rotate(-140deg); 
  transform: rotate(-140deg); 
  border-radius: 8px 8px 8px 8px; 
} 

.sandwich.active .sw-footer { 
  opacity: 0; 
  top: 0; 
  background: #fff;
  -webkit-transform: rotate(180deg); 
  -moz-transform: rotate(180deg); 
  -ms-transform: rotate(180deg); 
  -o-transform: rotate(180deg); 
  transform: rotate(180deg); 
  border-radius: 8px 8px 8px 8px; 
}

.sandwich-container:hover .sandwich.active .sw-topper,
.sandwich-container:hover .sandwich.active .sw-bottom,
.sandwich-container:hover .sandwich.active .sw-footer,
.sandwich-container:hover .sw-topper,
.sandwich-container:hover .sw-bottom,
.sandwich-container:hover .sw-footer {
  background: #9171cc;
}

.step .barrier-content {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  padding: 10px;
  width: 100%;
  margin-top: 50px;
  border: none;
  background-image: none;
  text-align: right;
  font-size: 0;
  padding: 0;
  margin-right: -30px;
  width: calc(100% + 30px);
}

.step .barrier-content-desc {
  margin-top: 0;
  padding-bottom: 35px;
  width: calc(100% - 175px);
  padding-right: 15px;
  padding-bottom: 0;
  display: inline-block;
  vertical-align: middle;
  color: rgb(147, 154, 162);
}

.step .barrier-cream {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  -webkit-transform: translate(0,-7px);
  -moz-transform: translate(0,-7px);
  -ms-transform: translate(0,-7px);
  -o-transform: translate(0,-7px);
  transform: translate(0,-7px);
  top: auto;
  right: auto;
  width: 175px;
}

.line-btns {
  padding: 0 25px;
}

.btn-up {
  float: right;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: #fff;
  position: relative;
  width: 110px;
  height: 110px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  display: block;
}

.btn-up:hover {
  background-color: #9171cc;
}

.btn-up:before {
  content: '';
  position: absolute;
  width: 6px;
  height: 26px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background-color: #9171cc;
  top: 41px;
  right: 45px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.btn-up:after {
  content: '';
  position: absolute;
  width: 6px;
  height: 26px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background-color: #9171cc;
  top: 41px;
  left: 44px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.btn-up:hover:before,
.btn-up:hover:after {
  background-color: #fff;
}

.menu {
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  background-image: url(../img/menu-bg.jpg);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: auto;
  padding-top: 221px;
  padding-bottom: 30px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
}

.nav {
  margin: 0;
  padding-right: 0;
  padding-left: 0;
  padding-bottom: 30px;
  display: table-cell;
  vertical-align: middle;
  height: calc(100vh - 418px);
  width: 100vw;
}

.nav li {
  display: block;
  max-width: 96%;
  margin: 0 auto;
  text-align: center;
  padding: 5px 0;
}

.nav li a {
  display: inline-block;
  font-size: 60px;
  color: #939aa2;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  font-family: 'AvenirNext-Bold';
}

.nav li a:hover {
  color: #7e71be;
  background: repeating-linear-gradient(90deg, #8174bd 0%, #af6cea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variant: no-contextual;
}

.menu .social a i {
  color: #939aa2;
  background-color: transparent;
}

.menu .social a:hover i {
  color: #fff;
  background-color: #8076c0;
}

.top-line.active  {
  background-color: rgba(234, 238, 239, 0.902);
}

.top-line.active .top-baziron a {
  border-color: rgba(147, 154, 162, 0.18);
}

.top-line.active .top-baziron a:before,
.top-line.active .top-baziron a:after {
  background-color: #939aa2;
}

.top-line.active .top-baziron a:hover:before,
.top-line.active .top-baziron a:hover:after {
  background-color: #fff;
}

.top-line.active .top-baziron a:hover {
  background-color: #8076c0;
}

.name-project {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 600px;
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  color: #939aa2;
  font-size: 33px;
  font-family: 'AvenirNext-Bold';
  text-align: center;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

body.active {
  overflow: hidden;
}

header.active .menu {
  z-index: 1;
  visibility: visible;
  opacity: 1;
}

.top-line.active .name-project {
  visibility: visible;
  opacity: 1;
}

.competition {
  min-height: 680px;
  max-width: 1200px;
  width: 96%;  margin: 30px auto;
  background-repeat: no-repeat;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  background-image: url(../img/popup-bg2.jpg);
  padding: 60px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  position: relative;
}

.competition-step-name span {
  font-size: 56px;
  color: #7e71be;
  background: repeating-linear-gradient(90deg, #8174bd 0%, #af6cea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variant: no-contextual;
  font-family: 'AvenirNext-Bold';
  display: block;
  line-height: 0.9;
  margin-bottom: 10px;
}

.competition-step-name {
  color: #939aa2;
  font-size: 28px;
  font-family: 'AvenirNext-Medium';
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.competition-form {
  border: 5px solid #fff;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  padding: 20px 20px 10px;
  max-width: 600px;
  position: relative;
  z-index: 2;
  background-color: #e9eef1;
}

.form-more {
  font-size: 16px;
  font-family: 'AvenirNext-Demi';
  color: #939aa2;
  margin-bottom: 15px;
  display: block;
}

.competition-form textarea {
  background-color: transparent;
  border: none;
  resize: none;
  font-family: 'AvenirNext-Demi';
  height: 150px;
  color: #939aa2;
  display: block;
  width: 100%;
  font-size: 16px;
  margin-bottom: 10px;
}

.comp-btn {
  float: right;
  font-family: 'AvenirNext-Demi';
  padding: 10px 35px 12px;
  color: #fff;
  font-size: 16px;
  background-color: #9171cc;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  border: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}

.comp-btn:hover {
  color: #9171cc;
  background-color: #fff;
}

.competition-step-name {
  margin-bottom: 50px;
}

.competition-numer {
  margin-bottom: 15px;
  color: #939aa2;
  font-size: 20px;
  font-family: 'AvenirNext-Bold';
}

.competition-numer.active {
  color: #9171cc;
}

.competition-form-2 {
  padding: 10px 10px 10px 30px;
  -webkit-border-radius: 42px;
  -moz-border-radius: 42px;
  border-radius: 42px;
}

.competition-form-2 input {
  background-color: transparent;
  border: none;
  font-family: 'AvenirNext-Demi';
  color: #939aa2;
  font-size: 16px;
  height: 42px;
  width: calc(100% - 160px);
}

.step-social {
  float: right;
  font-size: 0;
}

.step-social a {
  display: inline-block;
  vertical-align: top;
  margin-left: 10px;
}

.step-social a i {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border: 3px solid rgba(147, 154, 162, 0.18);
  color: #939aa2;
  line-height: 36px;
  text-align: center;
  font-size: 18px;
}

.step-social a:hover i {
  color: #fff;
  background-color: #8076c0;
  border: 3px solid rgba(147, 154, 162, 0);
}

.competition-form-3 {
  padding: 10px 10px 10px 30px;
  -webkit-border-radius: 42px;
  -moz-border-radius: 42px;
  border-radius: 42px;
}

.competition-form-3 span {
  line-height: 42px;
  width: calc(100% - 209px);
  font-family: 'AvenirNext-Demi';
  color: #939aa2;
  font-size: 16px;
}

.competition-step {
  display: none;
}

.competition-step p {
  color: #939aa2;
  font-size: 20px;
  font-family: 'AvenirNext-Medium';
}

.competition-step p b {
  font-family: 'AvenirNext-Bold';
  font-weight: normal;
}

.competition-step.active {
  display: block;
}

.competition-numer-item.active {
  color: #8076c0;
}

.hidden {
  display: none;
}

.mfp-close-btn-in .mfp-close {
  color: #fff;
  font-size: 40px;
  opacity: 1;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  right: 10px;
  top: 10px;
  border: 3px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  width: 42px;
  height: 42px;
  line-height: 36px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.mfp-close-btn-in .mfp-close:hover {
  background-color: #fff;
  color: #9173cf;
}

.main-help span {
  margin-left: 0 !important;
  display: block;
}

.tinder-contaiter {
  background-color: #fff;
  margin-top: 36px;
  border: 20px solid #fff;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  background-size: cover;
  background-image: url(../img/tinder.jpg);
  position: relative;
}

.tinder {
  margin-top: 0;
  margin-bottom: 0;
}

.tinder-contaiter .barrier-content {
  border: none;
  background-image: none;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  position: relative;
}

.tinder-contaiter:before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  height: 100%;
  width: 100%;
  border: 10px solid #fff;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}

.tinder2 {
  background-image: url(../img/tinder2.jpg);
}

.popup-img {
  position: absolute;
  right: 0;
  top: 0;
  top: 50%;
  right: 70px;
  -webkit-transform: translate(0,-50%);
  -moz-transform: translate(0,-50%);
  -ms-transform: translate(0,-50%);
  -o-transform: translate(0,-50%);
  transform: translate(0,-50%);
  max-width: 450px;
}

.barrier-warning-mob {
  display: none;
}

.button-up {
  position: fixed;
  /*bottom: 100px;*/
  bottom: 50px;
  right: 15px;
  font-size: 18px;
  text-align: center;
  color: #939aa2;
  z-index: 5;
  font-family: 'AvenirNext-Medium';
  text-shadow: 0 0 1px rgba(255,255,255,0.2);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  display: none !important;
}

.button-up i {
  width: 50px;
  height: 50px;
  background-color: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 18px;
  color: #8076c0;
  display: block;
  margin: 0 auto;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  text-shadow: 0 0 1px rgba(255,255,255,0);
  -webkit-box-shadow: 0 0 2px rgba(0,0,0,0.2);
  -moz-box-shadow: 0 0 2px rgba(0,0,0,0.2);
  box-shadow: 0 0 2px rgba(0,0,0,0.2);
}

.button-up:hover i {
  background-color: #8076c0;
  color: #fff;
}

.warning-img { /*добавил*/
  /*position: absolute;*/
  position: fixed;
  top: 30px;
  right: 15px;
  /*height: 97%;*/
  height: 85vh;
  z-index: 100;
}





















