* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
}

html, body {
	overflow-x: hidden;
}

.flex {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.container {
	width: 1100px;
	margin: 0 auto;
	position: relative;
}

/* Header */

.block-one {
	background: url(../img/block-one-bg.png) center bottom no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}

header {
	padding-top: 65px;
	position: relative;
	z-index: 100;
}

.header__sidebar.flex {
	width: 800px;
}

.navbar-tog {
	display: none;
}

.logo {
	display: block;
	text-decoration: none;
	color: #AFADAD;
	font-weight: 300;
	font-size: 16px;
	position: relative;
	padding-left: 50px;
}

.logo span {
	font-weight: 600;
	color: #3c3a65;
}

.logo:before {
	position: absolute;
	display: block;
	content: "";
	width: 50px;
	height: 40px;
	background: url(../img/logo.png) center center no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
	bottom: 0;
	left: 0;
}

.menu a {
	display: block;
	margin-left: 30px;
	margin-right: 30px;
	text-decoration: none;
	position: relative;
	color: #AFADAD;
	font-size: 15px;
	transition: all ease 0.3s;
}

.menu a:after {
	position: absolute;
	display: block;
	content: "";
	background: #2342E6;
	width: 8px;
	height: 8px;
	border-radius: 8px;
	bottom: -12px;
	left: 50%;
	margin-left: -4px;
	opacity: 0;
	transition: all ease 0.3s;
}

.menu a:hover {
	color: #2342E6;
}

.menu a:hover:after {
	opacity: 1;
}

.settings__login {
	color: #3C3A65;
	font-weight: 300;
	margin-right: 25px;
	transition: all ease 0.3s;
	display: block;
	text-decoration: none;
}

.settings__login:hover {
	color: #2342E6;
}

.settings__button {
	display: block;
	text-decoration: none;
	background: #2342E6;
	border: 1px solid #2342E6;
	line-height: 20px;
	border-radius: 20px;
	color: #fff;
	padding: 5px 22px;
	text-align: center;
	font-size: 15px;
	font-weight: 500;
	transition: all ease 0.3s;
}

.settings__button:hover {
	background: transparent;
	color: #2342E6;
}

.language {
	position: relative;
	margin-left: 26px;
}

.language__button {
	display: block;
	border: 4px solid transparent;
	border-radius: 32px;
	width: 32px;
	height: 32px;
	cursor: pointer;
	overflow: hidden;
}

.language__button img {
	display: block;
	width: 28px;
	height: 28px;
}

.language__block {
	position: absolute;
	width: 54px;
	left: 50%;
	margin-left: -27px;
	background: #fff;
	padding: 14px;
	border-radius: 10px;
	top: calc(100% + 13px);
	display: none;
}

.language__block a {
	display: block;
	text-decoration: none;
	margin-bottom: 12px;
	transition: all ease 0.3s;
}

.language__block a:last-child {
	margin-bottom: 0;
}

.language__block a:hover {
	-moz-transform: scale(1.2);
	-webkit-transform: scale(1.2);
	-o-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
}

.language__block a img {
	display: block;
	width: 25px;
	height: 25px;
	border-radius: 50%;
}

.language__block:before {
	position: absolute;
	display: block;
	content: "";
	width: 8px;
	height: 5px;
	top: -5px;
	left: 50%;
	margin-left: -4px;
	box-sizing: border-box;
	border-bottom: 5px solid #fff;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
}

/* ÐŸÐµÑ€Ñ‹Ð²Ð¹ ÑÐºÑ€Ð°Ð½ */

.main {
	padding-top: 160px;
	padding-bottom: 150px;
}

.main__block {
	width: 50%;
	margin-left: 50%;
	position: relative;
}

.main__block_img {
	position: absolute;
	width: 479px;
	height: 326px;
	left: -550px;
	top: 50%;
	margin-top: -163px;
	background: url(../img/main-img.png) center center no-repeat;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
}

.main h1 {
	font-size: 51px;
	font-weight: 500;
	color: #3C3A65;
	margin-bottom: 10px;
}

.main__title-signature {
	color: #3C3A65;
	font: 18px;
	margin-bottom: 35px;
}

.main__buttons.flex {
	justify-content: flex-start;
	margin-bottom: 50px;
}

.btn {
	background: #999DF4;
	padding: 15px 45px;
	border-radius: 40px;
	font-size: 15px;
	line-height: 22px;
	color: #fff;
	text-decoration: none;
	transition: all ease 0.3s;
	text-shadow: 0px 0px 1px #8E93F2;
}

.main__buttons a  {
	display: block;
	min-width: 180px;
	text-align: center;
	padding: 15px;
	border-radius: 40px;
	font-size: 15px;
	line-height: 22px;
	color: #fff;
	text-decoration: none;
	transition: all ease 0.3s;
	text-shadow: 0px 0px 1px #8E93F2;
	margin-bottom: 10px;
}

.main__buttons_start {
	background: #999DF4;
	margin-right: 30px;
}

.main__buttons_start:hover,
.btn:hover {
	background: #2342E6;
}

.main__buttons_about {
	background: #2342E6;
	animation-delay: 0.2s;
}

.main__buttons_about:hover {
	background: #999DF4;
}

.main__down-link {
	position: relative;
	display: block;
	text-decoration: none;
	width: 32px;
	height: 32px;
	border-radius: 32px;
	background: #fff;
	-webkit-box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.05);
	-moz-box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.05);
	box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.05);
}

.main__down-link svg {
	position: absolute;
	left: 10px;
	top: -16px;
	-webkit-animation: down-arrow 1s infinite;
  	animation: down-arrow 1s infinite;
}

@-webkit-keyframes down-arrow {
  0%   { top: -16px; }
  50%   { top: -10px; }
  100% { top: -16px; }
}
@keyframes down-arrow {
  0%   { top: -16px; }
  50%   { top: -10px; }
  100% { top: -16px; }
}

/* ÐŸÐ¾ÐºÐ°Ð·Ð°Ñ‚ÐµÐ»Ð¸ */

.data {
	padding-top: 100px;
	padding-bottom: 200px;
}

.data__block.flex {
	position: relative;
	width: 660px;
	margin-left: auto;
	margin-right: auto;
	align-items: flex-start;
}

.data__img {
	position: absolute;
	width: 460px;
	height: 341px;
	background: url(../img/data-img.png) center center no-repeat;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
	left: 50%;
	margin-left: -250px;
	bottom: -250px;
	z-index: 1;
}

.data__item {
	width: 50%;
	position: relative;
	z-index: 2;
}

.data__item-one.flex,
.data__item-two.flex {
	justify-content: center;
	margin-bottom: 25px;
}

.data__item-four.flex {
	justify-content: flex-end;
}

.data__item_title {
	font-weight: 300;
	font-size: 17px;
	line-height: 25px;
	color: rgba(255, 255, 255, 0.56);
}

.data__item_value {
	color: #fff;
	font-weight: 600;
	font-size: 37px;
	line-height: 55px;
}

/* About Smart Mining */

.about {
	padding-top: 130px;
	padding-bottom: 25px;
	position: relative;
	z-index: 2;
}

.about__title {
	width: 480px;
	margin-bottom: 30px;
}

h2 {
	font-weight: 500;
	font-size: 41px;
	line-height: 61px;
	color: #3C3A65;
}

.section__title-signature {
	font-size: 18px;
	line-height: 27px;
	color: #3C3A65;
}

.about__block.flex {
	align-items: flex-start;
}

.about .section__title-signature {
	margin-bottom: 43px;
}

.about__currencies.flex {
	justify-content: flex-start;
}

.about__currencies span {
	display: block;
	text-decoration: none;
	border-radius: 42px;
	background-color: #F2F2F2;
	width: 42px;
	height: 42px;
	margin-right: 30px;
	margin-bottom: 18px;
	position: relative;
}

.about__currencies span:nth-child(2) {
	animation-delay: 0.2s;
}
.about__currencies span:nth-child(3) {
	animation-delay: 0.4s;
}
.about__currencies span:nth-child(4) {
	animation-delay: 0.6s;
}
.about__currencies span:nth-child(5) {
	animation-delay: 0.8s;
}
.about__currencies span:nth-child(6) {
	animation-delay: 1s;
}
.about__currencies span:nth-child(7) {
	animation-delay: 1.2s;
}
.about__currencies span:nth-child(8) {
	animation-delay: 1.4s;
}
.about__currencies span:nth-child(9) {
	animation-delay: 1.6s;
}

.about__currencies span:before {
	position: absolute;
	display: block;
	content: "";
	width: 20px;
	height: 20px;
	top: 50%;
	left: 50%;
	margin-top: -10px;
	margin-left: -10px;
	background-image: url(../img/currencies.png);
	-webkit-background-size: 60px auto;
	background-size: 60px auto;
	background-repeat: no-repeat;
}

.about__currencies-one:before {
	background-position: left top;
}
.about__currencies-two:before {
	background-position: left -20px;
}
.about__currencies-three:before {
	background-position: left -40px;
}
.about__currencies-four:before {
	background-position: left -60px;
}
.about__currencies-five:before {
	background-position: left -80px;
}
.about__currencies-six:before {
	background-position: left -100px;
}
.about__currencies-seven:before {
	background-position: left -120px;
}
.about__currencies-eith:before {
	background-position: left -140px;
}
.about__currencies-nine:before {
	background-position: left -160px;
}

.about__text {
	width: 590px;
	position: relative;
	margin-bottom: 30px;
}

.about__text p {
	font-size: 16px;
	line-height: 24px;
	color: #A99F9F;
	margin-bottom: 20px;
}

.about__text-one:after {
	position: absolute;
	display: block;
	content: "";
	width: 240px;
	height: 195px;
	background: url(../img/about-img.png) center center no-repeat;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
	left: 50%;
	margin-left: -120px;
	bottom: -210px;
}

.about__button.flex {
	justify-content: center;
	width: 100%;
}

/* Calculation */

.calc {
	margin-top: -80px;
	position: relative;
	z-index: 1;
	padding-top: 180px;
	background: url(../img/calc-bg.jpg) #fafafa center top no-repeat;
	-webkit-background-size: 1800px auto;
	background-size: 1800px auto;
	padding-bottom: 440px;
}

@media screen and (min-width: 1800px) {
	.calc {
		-webkit-background-size: 100% auto;
		background-size: 100% auto;
	}
}

.calc__top.flex {
	margin-bottom: 140px;
}

.calc__title {
	width: 400px;
}

.calc__top_text {
	width: 580px;
	font-size: 16px;
	line-height: 24px;
	color: #A99F9F;
}

.calc__progress_line {
	background: rgba(153, 157, 244, 0.37);
	width: 100%;
	border-radius: 4px;
	margin-bottom: 20px;
}

.calc__progress_line-value {
	display: block;
	height: 8px;
	border-radius: 4px;
	background: #999DF4;
}

.calc__progress_values.flex {
	align-items: flex-start;
	padding-left: 20px;
	margin-bottom: 110px;
}

.calc__progress_values p {
	color: #999DF4;
	font-weight: 500;
	font-size: 10px;
}

.calc__progress_values p span {
	display: inline-block;
	position: relative;
	font-size: 19px;
}

.calc__progress_values p span:before {
	position: absolute;
	display: block;
	content: "";
	width: 1px;
	left: 50%;
	height: 9px;
	background: #C4C4C4;
	top: -10px;
	opacity: 0.37;
}

.calc__block {
	background: #FFFFFF;
	-webkit-box-shadow: 0px 10px 22px rgba(0, 0, 0, 0.03);
	-moz-box-shadow: 0px 10px 22px rgba(0, 0, 0, 0.03);
	box-shadow: 0px 10px 22px rgba(0, 0, 0, 0.03);
	border-radius: 25px;
	padding-bottom: 45px;
	position: relative;
}

.calc__block:after {
	position: absolute;
	display: block;
	content: "";
	background: url(../img/calc-img.png) center center no-repeat;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
	top: -36px;
	width: 170px;
	height: 131px;
	right: -85px;

}

.calc__currencies.flex {
	justify-content: flex-start;
	padding-left: 30px;
}

.calc__currencies a {
	display: block;
	width: 72px;
	height: 72px;
	background: #F2F2F2;
	border-radius: 15px;
	margin-top: -36px;
	margin-right: 35px;
	position: relative;
}

.calc__currencies a.active {
	background: #999DF4;
}

.calc__currencies a:before,
.calc__currencies a:after {
	position: absolute;
	display: block;
	content: "";
	width: 40px;
	height: 40px;
	top: 50%;
	left: 50%;
	margin-top: -20px;
	margin-left: -20px;
	background-image: url(../img/currencies.png);
	background-repeat: no-repeat;
	-webkit-background-size: 120px auto;
	background-size: 120px auto;
}

.calc__currencies a.active:before {
	opacity: 0;
}

.calc__currencies-usd:before {
	background-position: center top;
}
.calc__currencies-etc:before {
	background-position: center -40px;
}
.calc__currencies-eth:before {
	background-position: center -40px;
}
.calc__currencies-doge:before {
	background-position: center -80px;
}
.calc__currencies-dash:before {
	background-position: center -120px;
}
.calc__currencies-btc:before {
	background-position: center -160px;
}
.calc__currencies-ltc:before {
	background-position: center -200px;
}
.calc__currencies-dgb:before {
	background-position: center -240px;
}
.calc__currencies-xrp:before {
	background-position: center -280px;
}
.calc__currencies-nine:before {
	background-position: center -320px;
}

.calc__currencies a:after {
	opacity: 0;
}

.calc__currencies a.active:after {
	opacity: 1;
}

.calc__currencies-usd:after {
	background-position: -80px top;
}
.calc__currencies-etc:after {
	background-position: -80px -40px;
}
.calc__currencies-eth:after {
	background-position: -80px -40px;
}
.calc__currencies-doge:after {
	background-position: -80px -80px;
}
.calc__currencies-dash:after {
	background-position: -80px -120px;
}
.calc__currencies-btc:after {
	background-position: -80px -160px;
}
.calc__currencies-ltc:after {
	background-position: -80px -200px;
}
.calc__currencies-dgb:after {
	background-position: -80px -240px;
}
.calc__currencies-xrp:after {
	background-position: -80px -280px;
}
.calc__currencies-nine:after {
	background-position: -80px -320px;
}


.calc__field.flex {
	padding-left: 30px;
	padding-right: 30px;
	padding-top: 40px;
	align-items: flex-end;
}

.calc__field_title {
	padding-right: 10px;
	width: 180px;
}

.calc__field_title div {
	color: #3C3A65;
	font-size: 27px;
	font-weight: 500;
}

.calc__field_title p {
	color: #3C3A65;
	font-size: 12px;
	line-height: 18px;
}

.calc__field_input {
	width: 600px;
}

.calc__field_input input {
	display: block;
	width: 100%;
	background: rgba(242, 242, 242, 0.61);
	border: 1px solid #E6E6E6;
	border-radius: 5px;
	color: #3C3A65;
	font-size: 16px;
	padding-left: 25px;
	padding-right: 25px;
	height: 43px;
	outline: none;
}

.calc__course {
	width: 190px;
	color: #3C3A65;
	font-size: 12px;
	line-height: 18px;
}

/* Ð¢Ð°Ñ€Ð¸Ñ„Ñ‹ */

.price {
	padding-top: 250px;
	padding-bottom: 190px;
	position: relative;
	z-index: 2;
	margin-top: -325px;
	background: url(../img/price-bg.png) center center no-repeat;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
}

.price__items.flex {
	align-items: stretch;
	margin-top: -100px;
	margin-bottom: 120px;
}

.price__item {
	width: 250px;
	background: #FFFFFF;
	-webkit-box-shadow: 0px 10px 22px rgba(0, 0, 0, 0.03);
	-moz-box-shadow: 0px 10px 22px rgba(0, 0, 0, 0.03);
	box-shadow: 0px 10px 22px rgba(0, 0, 0, 0.03);
	border-radius: 25px;
	padding-bottom: 30px;
	overflow: hidden;
}

.price__item-two {
	animation-delay: 0.3s;
}
.price__item-three {
	animation-delay: 0.6s;
}
.price__item-four {
	animation-delay: 0.9s;
}

.price__item.price__item-four {
	background: #0099FF;
	-webkit-box-shadow: 0px 15px 22px rgba(0, 0, 0, 0.11);
	-moz-box-shadow: 0px 15px 22px rgba(0, 0, 0, 0.11);
	box-shadow: 0px 15px 22px rgba(0, 0, 0, 0.11);
}

.price__item_top {
	-webkit-background-size: 400% 100%;
	background-size: 400% 100%;
	background-image: url(../img/price-items.png);
	background-repeat: no-repeat;
	padding: 25px 20px 35px 20px;
	text-align: center;
}

.price__item-one .price__item_top {
	background-position: left center;
}
.price__item-two .price__item_top {
	background-position: 34% center;
}
.price__item-three .price__item_top {
	background-position: 66% center;
}
.price__item-four .price__item_top {
	background-position: right center;
}

.price__item_speed {
	color: #A99F9F;
	font-size: 12px;
	line-height: 18px;
}

.price__item-four .price__item_speed {
	color: rgba(255, 255, 255, 0.46);
}

.price__item_value {
	color: #3C3A65;
	font-size: 43px;
	font-weight: 600;
}

.price__item-four .price__item_value {
	color: #fff;
}

.price__item_value span {
	font-weight: 300;
	font-size: 19px;
}

.price__item_term {
	color: #3C3A65;
	font-size: 15px;
	line-height: 22px;
}

.price__item-four .price__item_term {
	color: #fff;
}

.price__item_info {
	padding-left: 25px;
	padding-right: 25px;
	margin-bottom: 20px;
	margin-top: 10px;
}

.price__item_info table {
	width: 100%;
}

.price__item_info table tr td {
	color: rgba(60, 58, 101, 0.5);
	font-size: 15px;
	line-height: 22px;
	padding-right: 10px;
}

.price__item-four .price__item_info table tr td {
	color: rgba(255, 255, 255, 0.5);
}

.price__item_info table tr td:nth-child(2) {
	color: #3C3A65;
	font-weight: 500;
	padding-right: 0;
}

.price__item-four .price__item_info table tr td:nth-child(2) {
	color: #fff;
}

.price__item_button.flex {
	justify-content: center;
}

.price__item_button .btn {
	border: 1px solid rgba(255, 255, 255, 0.42);
}

.price__info.flex {
	align-items: flex-start;
}

.price__title {
	width: 450px;
	position: relative;
}

.price h2 {
	color: #fff;
}

.price .section__title-signature {
	color: rgba(248, 248, 255, 0.65);
}

.price__text {
	width: 590px;
}

.price__text p {
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 20px;
	color: #fff;
}

.price__img-one {
	position: absolute;
	background: url(../img/circle.png) center center no-repeat;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
	width: 117px;
	height: 117px;
	left: -180px;
	top: 50px;
}

.price__img-two {
	position: absolute;
	background: url(../img/price-img-two.png) center center no-repeat;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
	width: 110px;
	height: 82px;
	left: -150px;
	top: 350px;
}

.price__img-three {
	position: absolute;
	background: url(../img/price-img-three.png) center center no-repeat;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
	right: -150px;
	top: 250px;
	width: 82px;
	height: 79px;
}

.price__img-four {
	position: absolute;
	width: 253px;
	height: 281px;
	background: url(../img/price-img-four.png) center center no-repeat;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
	bottom: -400px;
	right: 0;
}

/* The Best & Easiest Cloud Mining Experience Ever */

.advantages {
	padding-top: 140px;
}

.advantages h2 {
	text-align: center;
	margin-bottom: 70px;
}

.advantages__block.flex {
	align-items: flex-start
}

.advantages__col {
	width: 340px;
}

.advantages__col.advantages__col-two {
	width: 270px;
}

.advantage {
	width: 270px;
	padding-bottom: 20px;
	position: relative;
}
.advantage-one {
	margin-left: 70px;
	margin-top: 50px;
	min-height: 230px;
}
.advantage-two {
	min-height: 230px;
}
.advantage-three {
	margin-left: 70px;
}
.advantage-four {
	padding-bottom: 480px;
}
.advantage-six {
	min-height: 230px;
	margin-top: 50px;
}
.advantage-seven {
	margin-left: 70px;
	min-height: 230px;
}

.advantage-four:after {
	position: absolute;
	display: block;
	content: "";
	width: 437px;
	height: 361px;
	background: url(../img/advantages-img.png) center center no-repeat;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
	left: 50%;
	margin-left: -250px;
	bottom: 70px;
	z-index: -1;
}

.advantage__title {
	margin-bottom: 20px;
	color: #3C3A65;
	font-weight: 500;
	font-size: 18px;
	line-height: 27px;
	position: relative;
}

.advantage__title:before {
	position: absolute;
	display: block;
	content: "";
	width: 29px;
	height: 29px;
	border-radius: 29px;
	background: #999DF4;
	top: -1px;
	left: -46px;
	-webkit-animation-name:advantages-pulse;
	animation-name:advantages-pulse;
	animation-iteration-count: infinite;
	animation-duration: 4s;
}

.advantage-six .advantage__title:before {
	animation-delay: 0.5s;
}
.advantage-seven .advantage__title:before {
	animation-delay: 1s;
}
.advantage-eith .advantage__title:before {
	animation-delay: 1.5s;
}
.advantage-five .advantage__title:before {
	animation-delay: 2s;
}
.advantage-three .advantage__title:before {
	animation-delay: 2.5s;
}
.advantage-two .advantage__title:before {
	animation-delay: 3s;
}
.advantage-one .advantage__title:before {
	animation-delay: 3.5s;
}

@-webkit-keyframes advantages-pulse {
	0% {
		-webkit-transform:scaleX(1);
		transform:scaleX(1)
	}
	12% {
		-webkit-transform:scale3d(1.5,1.5,1.5);
		transform:scale3d(1.5,1.5,1.5)
	}
	24% {
		-webkit-transform:scaleX(1);
		transform:scaleX(1)
	}
	to {
		-webkit-transform:scaleX(1);
		transform:scaleX(1)
	}
}

@keyframes advantages-pulse {
	0% {
		-webkit-transform:scaleX(1);
		transform:scaleX(1)
	}
	12% {
		-webkit-transform:scale3d(1.5,1.5,1.5);
		transform:scale3d(1.5,1.5,1.5)
	}
	24% {
		-webkit-transform:scaleX(1);
		transform:scaleX(1)
	}
	to {
		-webkit-transform:scaleX(1);
		transform:scaleX(1)
	}
}

.advantage p {
	font-size: 16px;
	line-height: 24px;
	color: #A99F9F;
}

/* Affiliate program */

.ref {
	margin-top: -140px;
	padding-top: 240px;
	padding-bottom: 70px;
}

.ref .container:before {
	position: absolute;
	display: block;
	content: "";
	width: 110px;
	height: 82px;
	background: url(../img/price-img-two.png) center center no-repeat;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
	top: 150px;
	left: -170px;
}

.ref .section__title-signature {
	width: 100%;
	max-width: 625px;
	margin-bottom: 75px;
}

.ref__items.flex {
	align-items: flex-start
}

.ref__item {
	width: 310px;
	padding-top: 110px;
	background-repeat: no-repeat;
	background-position: 50px top;
}

.ref__item-one {
	background-image: url(../img/ref-one.png);
}
.ref__item-two {
	background-image: url(../img/ref-two.png);
}
.ref__item-three {
	background-image: url(../img/ref-three.png);
}

.ref__item_title {
	position: relative;
	color: #3C3A65;
	font-weight: 500;
	font-size: 18px;
	line-height: 27px;
	margin-bottom: 20px;
	padding-left: 50px;
	border-left: 1px solid rgba(196, 196, 196, 0.75);;
}

.ref__item p {
	font-size: 16px;
	line-height: 24px;
	color: #A99F9F;
	padding-left: 50px;
}

/* FAQ */

.faq {
	padding-top: 70px;
	padding-bottom: 70px;
}

.faq .container:before {
	position: absolute;
	display: block;
	content: "";
	width: 160px;
	height: 145px;
	background: url(../img/calc-img.png) center center no-repeat;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
	bottom: 0;
	left: 0;
	z-index: 5;
}

.faq .container:after {
	position: absolute;
	display: block;
	content: "";
	width: 110px;
	height: 82px;
	background: url(../img/calc-img.png) center center no-repeat;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
	top: 50%;
	right: -115px;
}

.faq__block.flex {
	align-items: flex-start
}

.faq__title {
	width: 300px;
}

.faq__items {
	width: 760px;
	position: relative;
	z-index: 3;
}

.faq__item {
	padding-left: 60px;
	margin-bottom: 40px;
}

.question {
	color: #3C3A65;
	margin-bottom: 23px;
	font-weight: 500;
	font-size: 18px;
	line-height: 27px;
	position: relative;
}

.question:before {
	position: absolute;
	display: block;
	content: "";
	background: #999DF4;
	width: 29px;
	height: 29px;
	left: -60px;
	top: -1px;
	border-radius: 29px;
}

.answer {
	font-size: 16px;
	line-height: 24px;
	color: #A99F9F;
}

.faq h2 {
	position: relative;
	z-index: 2;
}

.faq .section__title-signature {
	position: relative;
	z-index: 2;
}

.faq__sign {
	text-align: center;
	font-size: 700px;
	line-height: 515px;
	font-weight: 600;
	color: #fff;
	position: relative;
	z-index: 1;
	left: -70px;
}

.block-two {
	background: url(../img/block-two-bg.png) center center no-repeat;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
}

/* Statistics */

.stat {
	padding-top: 70px;
	padding-bottom: 40px;
}

.stat .section__title-signature {
	margin-bottom: 40px;
}

.stat__block.flex {
	align-items: flex-start
}

.table-wrapper {
	border-radius: 30px;
	overflow: hidden;
}

.stat .table-wrapper {
	width: 500px;
}

.table-wrapper__title {
	text-align: center;
	background: #999DF4;
	border-radius: 30px 30px 0px 0px;
	padding: 15px;
	color: #fff;
	font-size: 20px;
	line-height: 30px;
}

.table {
	overflow-x: auto;
}

.table table {
	min-width: 100%;
	background: #F2F2F2;
}

.table table tr td {
	text-align: center;
	padding: 10px;
	font-size: 15px;
	line-height: 22px;
	color: #A99F9F;
}

.table table tr:last-child td {
	padding-bottom: 20px;
}

.table table tr td:nth-child(odd) {
	background: rgba(255, 255, 255, 0.6);
}

.table table tr.table__title td {
	color: #717070;
	background: #F2F2F2;
}

.table table tr:nth-child(even) {
	background: rgba(255, 255, 255, 0.6);
}

.table__currency {
	display: block;
	background-image: url(../img/currencies.png);
	-webkit-background-size: 75px auto;
	background-size: 75px auto;
	width: 25px;
	height: 25px;
	margin-left: auto;
	margin-right: auto;
}

.table__currency.one {
	background-position: left top;
}
.table__currency.eth {
	background-position: left -25px;
}
.table__currency.etc {
	background-position: left -25px;
}
.table__currency.doge {
	background-position: left -50px;
}
.table__currency.dash {
	background-position: left -75px;
}
.table__currency.btc {
	background-position: left -100px;
}
.table__currency.ltc {
	background-position: left -125px;
}
.table__currency.dgb {
	background-position: left -150px;
}
.table__currency.xrp {
	background-position: left -175px;
}
.table__currency.pm {
	background-position: left -225px;
}

.table__currency.pr {
	background-position: left -250px;
}

/* Footer */

.block-three {
	background: url(../img/block-three-bg.png) center bottom no-repeat;
	-webkit-background-size: 1800px auto;
	background-size: 1800px auto;
}

@media screen and (min-width: 1800px) {
	.block-three {
		-webkit-background-size: 100% 620px;
		background-size: 100% 620px;
	}
}

footer {
	padding-top: 30px;
	padding-bottom: 30px;
}

footer .logo,
.page-header .logo {
	color: #fff;
}

footer .logo span,
.page-header .logo span {
	color: #fff;
}

footer .logo:before,
.page-header .logo:before {
	background-image: url(../img/footer-logo.png);
}

footer .menu a,
.page-header .menu a {
	color: #D8D8D8;
}

footer .menu a:hover,
.page-header .menu a:hover {
	color: #fff;
}

footer .menu a:after,
.page-header .menu a:after {
	background: #fff;
}

footer .settings__login,
footer .settings__login:hover {
	color: #fff;
}

.footer__block.flex {
	margin-bottom: 55px;
}

.footer__signature {
	text-align: center;
	color: #CFCFCF;
	font-size: 15px;
	line-height: 22px;
	font-weight: 300;
}

/* ÐœÐ¾Ð´Ð°Ð»ÑŒÐ½Ñ‹Ðµ Ð¾ÐºÐ½Ð° */

/* ÐžÐºÐ½Ð¾ Ñ€ÐµÐ³Ð¸ÑÑ‚Ñ€Ð°Ñ†Ð¸Ð¸ Ð² Ð¾Ð´Ð¸Ð½ ÐºÐ»Ð¸Ðº */

.modal-wrapper {
	z-index: 500;
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100vh;
	display: none;
}

.modal__block.flex {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-content: center;
}

.modal__blackout {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
	background: rgba(0, 0, 0, 0.77);
}

.modal {
	position: relative;
	z-index: 2;
	background: #fff;
	max-height: 95vh;
	overflow-y: auto;
	width: 620px;
	border-radius: 30px;
	padding: 22px 80px 80px 80px;
}

.modal__close {
	text-align: right;
	margin-bottom: 55px;
}

.modal__close a {
	display: inline-block;
	outline: none;
	text-decoration: none;
	border-bottom: 1px dashed rgba(153, 157, 244, 0.3);
	color: #999DF4;
	font-size: 14px;
	line-height: 21px;
	font-weight: 600;
	transition: all ease 0.3s;
	margin-right: -50px;
}

.modal__close a:hover {
	border-color: #999DF4;
}

.modal__title {
	text-align: center;
	margin-bottom: 50px;
}

.modal__title h3 {
	color: #3C3A65;
	font-weight: 600;
	font-size: 20px;
	line-height: 30px;
}

.modal__title-signature {
	margin-top: 12px;
	color: #A99F9F;
	font-size: 15px;
	line-height: 22px;
	width: 100%;
	max-width: 400px;
	margin-left: auto;
	margin-right: auto;
}

.modal-click__choice.flex {
	align-items: stretch;
	width: 390px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 50px;
}

.modal-click__choice a {
	display: block;
	text-decoration: none;
	outline: none;
	text-align: center;
	padding: 30px;
	color: #A99F9F;
	font-size: 15px;
	line-height: 22px;
	border: 1px solid #EDECEC;
	background: #FAFAFA;
	width: 50%;
	border-radius: 25px 0px 0px 25px;
}

.modal-click__choice div {
	text-align: center;
	padding: 30px;
	color: #fff;
	font-size: 15px;
	line-height: 22px;
	background: #FAFAFA;
	width: 50%;
	background: #999DF4;
	border-radius: 0px 25px 25px 0px;
	cursor: default;
}

.modal__button.flex {
	justify-content: center;
}

.modal__button a,
.modal__button button {
	display: block;
	cursor: pointer;
	border: none;
	text-decoration: none;
	transition: all ease 0.3s;
	outline: none;
	color: #fff;
	font-size: 15px;
	line-height: 22px;
	background: #2342E6;
	border-radius: 40px;
	padding: 15px 55px;
}

.modal__button a:hover,
.modal__button button:hover {
	opacity: 0.7;
}

/* ÐžÐºÐ½Ð¾ Ñ€ÐµÐ³Ð¸ÑÑ‚Ñ€Ð°Ñ†Ð¸Ð¸ Ð¿Ð¾ email */

.input {
	display: block;
	width: 100%;
	border: 1px solid #E6E6E6;
	border-radius: 5px;
	outline: none;
	height: 43px;
	margin-bottom: 25px;
	padding-left: 25px;
	padding-right: 25px;
	font-size: 16px;
	color: #2342E6;
}

textarea.input {
	padding-top: 15px;
	padding-bottom: 15px;
	height: 280px;
	resize: none;
	padding-left: 50px;
}

.input::-webkit-input-placeholder {color: #999DF4;}
.input::-moz-placeholder {color:#999DF4;}
.input:-moz-placeholder {color:#999DF4;}
.input:-ms-input-placeholder {color:#999DF4;}

/* ÐžÐºÐ½Ð¾ Ð²Ñ…Ð¾Ð´Ð° */

.modal__form_settings {
	margin-bottom: 25px;
}

.modal__save {
	margin-bottom: 7px;
	position: relative;
	padding-right: 10px;
}

.modal__save input {
	position: absolute;
	top: 50%;
	left: -100000px;
}

.modal__save label {
	display: block;
	cursor: pointer;
	font-size: 16px;
	line-height: 24px;
	color: #999DF4;
	padding-left: 31px;
}

.modal__save label:before {
	position: absolute;
	display: block;
	content: "";
	width: 20px;
	height: 20px;
	top: 0px;
	left: 1px;
	box-sizing: border-box;
	border: 1px solid #E6E6E6;
	border-radius: 5px;
}

.modal__save label:after {
	position: absolute;
	display: block;
	content: "";
	box-sizing: border-box;
	height: 12px;
	width: 7px;
	border-bottom: 2px solid #999DF4;
	border-right: 2px solid #999DF4;
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 2px;
	left: 7px;
	opacity: 0;
}

.modal__save input:checked + label:after {
	opacity: 1;
}

.modal__restore {
	margin-bottom: 7px;
}

.modal__restore a {
	display: block;
	text-decoration: none;
	color: #999DF4;
	font-size: 16px;
	line-height: 24px;
	transition: all ease 0.3s;
	border-bottom: 1px dashed rgba(153, 157, 244, 0.3);
}

.modal__restore a:hover {
	border-color: #999DF4;
}

.modal-login__socials.flex {
	justify-content: flex-start;
	margin-bottom: 30px;
}

.modal-login__socials p {
	margin-right: 20px;
	font-weight: 600;
	font-size: 20px;
	line-height: 30px;
	color: #3C3A65;
}

.modal-login__socials a {
	display: block;
	width: 30px;
	height: 30px;
	cursor: pointer;
	outline: none;
	background-image: url(../img/social-icons.png);
	background-repeat: no-repeat;
	opacity: 0.3;
	transition: all ease 0.3s;
	margin-right: 20px;
}

.instagram {
	background-position: center top;
}
.facebook {
	background-position: center -30px;
}
.telegram {
	background-position: center -60px;
}
.youtube {
	background-position: center -90px;
}

.modal-login__socials a:hover {
	opacity: 1;
}

/* ÐžÐºÐ½Ð¾ Ð±Ð»Ð°Ð³Ð¾Ð´Ð°Ñ€Ð½Ð¾ÑÑ‚Ð¸ */

.modal-thanks__info {
	border: 1px solid #E6E6E6;
	border-radius: 5px;
	padding: 20px;
	margin-bottom: 25px;
}

.modal-thanks__info table {
	width: 100%;
}

.modal-thanks__info table tr td {
	padding: 7px;
	color: #999DF4;
	font-size: 16px;
}

.modal-thanks__info table tr td:nth-child(2) {
	color: #A99F9F;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.modal-thanks__info table tr td a {
	text-decoration: none;
	display: inline-block;
	display: inline-block;
	margin-right: 10px;
	position: relative;
	top: 3px;
}

.modal-thanks .modal__form {
	margin-top: 20px;
}

.modal__signature {
	margin-top: 20px;
	text-align: center;
	color: rgba(60, 58, 101, 0.35);
	font-size: 18px;
	line-height: 27px;
}

.modal-thanks .modal {
	padding-bottom: 30px;
}

.modal-thanks .modal__title {
	margin-bottom: 20px;
}

/* Ð¡Ñ‚Ñ€Ð°Ð½Ð¸Ñ†Ð° Dashboard */

body.page-body {
	background: #0099ff;
}

.content {
	background: #fff;
	border-radius: 50px;
	width: 1300px;
	margin-left: auto;
	margin-right: auto;
	padding: 45px 100px 125px 100px;
	position: relative;
}

.content:before {
	position: absolute;
	display: block;
	content: "";
	width: 170px;
	height: 131px;
	background: url(../img/calc-img.png) center center no-repeat;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
	top: 85px;
	right: -120px;
	-moz-transform: scale(-1,1);
	-webkit-transform: scale(-1,1);
	-o-transform: scale(-1,1);
	-ms-transform: scale(-1,1);
	transform: scale(-1,1);
}

.content:after {
	position: absolute;
	display: block;
	content: "";
	width: 170px;
	height: 131px;
	background: url(../img/calc-img.png) center center no-repeat;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
	left: -120px;
	bottom: 85px;
	-moz-transform: rotate(225deg);
	-webkit-transform: rotate(225deg);
	-o-transform: rotate(225deg);
	-ms-transform: rotate(225deg);
	transform: rotate(225deg);
}

.content__top.flex {
	margin-bottom: 30px;
}

.content__title {
	margin-bottom: 15px;
	padding-right: 20px;
}

.content__title h1 {
	color: #3C3A65;
	font-weight: 500;
	font-size: 41px;
	line-height: 61px;
}

.content__title-signature {
	color: #3C3A65;
	font-size: 18px;
	line-height: 27px;
}

.content__top_links.flex {
	align-items: stretch;
	border-radius: 30px;
	overflow: hidden;
	margin-bottom: 15px;
}

.content__top_links div {
	font-size: 15px;
	line-height: 22px;
	color: #fff;
	background: #0099FF;
	padding: 5px 20px;
	text-align: center;
	cursor: default;
}

.content__top_links a {
	text-decoration: none;
	outline: none;
	padding: 5px 20px;
	text-align: center;
	color: #A99F9F;
	font-weight: 300;
	font-size: 15px;
	line-height: 22px;
	background: #F2F2F2;
}

.info.flex {
	align-items: stretch;
	justify-content: center;
	margin-bottom: 50px;
}

.info__item.flex {
	justify-content: center;
	align-content: center;
	padding: 30px;
	width: 366px;
	background: #FAFAFA;
	border: 1px solid #EDECEC;
	min-height: 150px;
}

.info__link.flex {
	justify-content: center;
	align-content: center;
	padding: 30px;
	width: 366px;
	border: 1px solid #EDECEC;
	min-height: 150px;
	text-decoration: none;
	color: #fff;
}

.info__item-one {
	border-radius: 25px 0px 0px 0px;
}

.info__item-three {
	border-radius: 0px 25px 0px 0px;
}

.info__link-one {
	border-radius: 0px 0px 0px 25px;
	background: url(../img/info-link-one.png) #9ea2f5 center center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}

.info__link-two {
	border-radius: 0px 0px 25px 0px;
	background: url(../img/info-link-two.png) #9ea2f5 center center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}

.info__item_title {
	color: #3C3A65;
	font-size: 15px;
	line-height: 22px;
	font-weight: 600;
	position: relative;
	margin-bottom: 3px;
}

.info__item_title svg {
	position: absolute;
	top: 2px;
	left: -25px;
}

.info__item p {
	color: rgba(60, 58, 101, 0.36);
	font-size: 15px;
	line-height: 22px;
	font-weight: 500;
}

.info__item-five p {
	text-align: center;
}

.info__link span {
	display: block;
	width: 100%;
	text-align: center;
	font-size: 15px;
	line-height: 22px;
	position: relative;
	padding-left: 10px;
	padding-right: 10px;
}

.info__link span:after {
	position: absolute;
	display: block;
	content: "";
	box-sizing: border-box;
	width: 6px;
	height: 6px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	top: 7px;
	right: 2px;
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.info__item_level {
	color: #3C3A65;
	font-size: 15px;
	line-height: 22px;
	margin-bottom: 3px;
	font-weight: 600;
}

.info__item_level span {
	color: #fff;
	font-weight: 600;
	background: #999DF4;
	border-radius: 5px;
	padding-left: 5px;
	padding-right: 5px;
}

.info__item_profit {
	margin-top: 20px;
	color: #999DF4;
	font-weight: 500;
	font-size: 14px;
	line-height: 21px;
}

.content .calc__progress_values.flex {
	margin-bottom: 70px;
}

.cards.flex {
	align-items: stretch;
}

.card {
	width: 534px;
	margin-bottom: 25px;
	background: #FAFAFA;
	border: 1px solid #EDECEC;
	border-radius: 25px;
	padding: 33px 27px;
}

.card.active {
	background: #fff;
}

.card__top.flex {
	margin-bottom: 25px;
	align-items: flex-start;
}

.card__icon {
	background: #F2F2F2;
	width: 52px;
	height: 52px;
	border-radius: 52px;
	position: relative;
	margin-right: 25px;
}

.card.active .card__icon {
	background: #999DF4;
}

.card__icon:before {
	position: absolute;
	display: block;
	content: "";
	width: 30px;
	height: 30px;
	top: 50%;
	left: 50%;
	margin-left: -15px;
	margin-top: -15px;
	background-repeat: no-repeat;
	background-image: url(../img/currencies.png);
	-webkit-background-size: 90px auto;
	background-size: 90px auto;
}


.card__icon.usd:before {
	background-position: center top;
}
.card__icon.etc:before {
	background-position: -60px -240px;
}
.card__icon.eth:before {
	background-position: -60px -240px;
}
.card__icon.doge:before {
	background-position: -60px -60px;
}
.card__icon.dash:before {
	background-position: -60px -90px;
}
.card__icon.btc:before {
	background-position: -60px -120px;
}
.card__icon.ltc:before {
	background-position: -60px -150px;
}
.card__icon.dgb:before {
	background-position: -60px -180px;
}
.card__icon.xrp:before {
	background-position: -60px -210px;
}
.calc__currencies-nine:before {
	background-position: center -320px;
}

.card__currency {
	font-weight: 500;
	font-size: 10px;
	line-height: 15px;
	letter-spacing: 0.455em;
	color: rgba(60, 58, 101, 0.36);
}

.card__amount {
	font-weight: 600;
	font-size: 15px;
	line-height: 22px;
	color: #3C3A65;
}

.card__calc {
	font-weight: 500;
	font-size: 10px;
	line-height: 15px;
	letter-spacing: 0.455em;
	color: rgba(60, 58, 101, 0.36);
}

.card__price {
	font-weight: 500;
	font-size: 10px;
	line-height: 15px;
	color: rgba(60, 58, 101, 0.36);
	padding-left: 20px;
}

.card__range {
	margin-bottom: 30px;
}

.card__range_input {
	margin-bottom: 5px;
	position: relative;
	z-index: 5;
}

.card__range_values.flex {
	align-items: flex-start;
}

.card__range_values p {
	font-weight: 500;
	font-size: 10px;
	line-height: 15px;
	color: rgba(60, 58, 101, 0.36);
	position: relative;
	padding-top: 7px;
}

.card__range_values p:before {
	position: absolute;
	display: block;
	content: "";
	background: #C4C4C4;
	width: 1px;
	height: 7px;
	left: 50%;
	top: 0px;
}

.card__range_values span {
	display: block;
	width: 1px;
	height: 4px;
	background: #C4C4C4;
	opacity: 0.53;
}

.card__res_icon {
	width: 52px;
	height: 52px;
	border-radius: 52px;
	background: #fff;
	position: relative;
}

.card.active .card__res_icon {
	background: #F2F2F2;
}

.card__res_icon:before {
	position: absolute;
	display: block;
	content: "";
	width: 20px;
	height: 24px;
	top: 50%;
	left: 50%;
	margin-top: -12px;
	margin-left: -10px;
	background: url(../img/coins.png) left center no-repeat;
}

.card.active .card__res_icon:before {
	background-position: right center;
}

.card__res table {
	width: 180px;
}

.card__res table tr td {
	padding: 5px;
	font-weight: 500;
	font-size: 10px;
	line-height: 15px;
	color: rgba(60, 58, 101, 0.36);
}

.card .card__res table tr td:nth-child(2) {
	color: #A99F9F;
}

.card.active .card__res table tr td:nth-child(2) {
	color: #999DF4;
}

.page-body footer {
	padding-top: 75px;
}

.page-header {
	padding-bottom: 65px;
}

.page-header .header__sidebar.flex {
	justify-content: flex-end;
}

.page-header .menu a {
	margin-left: 20px;
	margin-right: 20px;
}

.menu a svg {
	display: inline-block;
	position: relative;
	top: 2px;
}

/* Ð¡Ñ‚Ñ€Ð°Ð½Ð¸Ñ†Ð° ÐºÐ¾Ð½Ñ‚Ñ€Ð°ÐºÑ‚Ð¾Ð² */

.contracts__links.flex {
	justify-content: flex-start;
	border: 1px solid #EDECEC;
	border-radius: 35px;
	margin-bottom: 25px;
	padding: 25px 40px;
}

.contracts__links a {
	display: block;
	font-weight: 600;
	font-size: 15px;
	line-height: 22px;
	padding: 4px 30px;
	position: relative;
	text-decoration: none;
	color: #A99F9F;
	transition: all ease 0.3s;
	margin-right: 30px;
	border-right: 1px solid rgba(169, 159, 159, 0.35);;
}

.contracts__links a:hover {
	opacity: 0.7;
}

.contracts__links a:last-child {
	border: none;
	margin-right: 0;
}

.contracts__links a.active {
	color: #0099FF;
}

.content .table table tr.table__title td {
	padding-top: 25px;
	padding-bottom: 25px;
}

.contracts__links a:before {
	position: absolute;
	display: block;
	content: "";
	background: #A99F9F;
	border-radius: 15px;
	width: 15px;
	height: 15px;
	top: 7px;
	left: 0;
}

.contracts__links a.active:before {
	background: #0099FF;
}

.table__status span {
	background: #999DF4;
	border-radius: 10px;
	padding-left: 7px;
	padding-right: 7px;
	color: #fff;
	white-space: nowrap;
}

/* Ð¡Ñ‚Ñ€Ð°Ð½Ð¸Ñ†Ð° Affiliate program */

.partners__stat.flex {
	margin-bottom: 25px;
	align-items: stretch;
	border: 1px solid #EDECEC;
	border-radius: 25px 25px 0px 0px;
	overflow: hidden;
	background: #FAFAFA;
}

.partners__stat_item {
	width: 20%;
	border-right: 1px solid #EDECEC;
	text-align: center;
	padding: 50px 10px;
	position: relative;
}

.partners__stat_item:last-child {
	border: none;
}

.partners__stat_title {
	font-weight: 600;
	color: rgba(60, 58, 101, 0.36);
	font-size: 15px;
	line-height: 22px;
	text-transform: uppercase;
}

.partners__stat_item p {
	font-weight: 500;
	font-size: 15px;
	line-height: 22px;
	color: #3C3A65;
	text-transform: uppercase;
}

.partners__stat_info {
	display: block;
	width: 20px;
	height: 20px;
	background: #0099FF;
	border-radius: 20px;
	text-align: center;
	line-height: 20px;
	color: #fff;
	font-weight: 500;
	font-size: 13px;
	position: absolute;
	top: 15px;
	right: 20px;
	text-decoration: none;
	transition: all ease 0.3s;
}

.partners__stat_info:hover {
	-moz-transform: scale(1.2);
	-webkit-transform: scale(1.2);
	-o-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
}

.card__title,
.partners__link_title,
.partners__profit_title {
	margin-bottom: 30px;
	color: #3C3A65;
	font-size: 15px;
	line-height: 22px;
	font-weight: 600;
	width: 100%;
}

.card__range_top.flex {
	margin-bottom: 12px;
}

.card__range_top p {
	font-weight: 500;
	font-size: 11px;
	line-height: 15px;
	color: rgba(60, 58, 101, 0.36);
}

.card__signature {
	font-weight: 500;
	font-size: 12px;
	line-height: 17px;
	color: rgba(60, 58, 101, 0.36);
}

.card__link.flex {
	padding-bottom: 21px;
}

.card__link .input {
	padding-left: 50px;
	width: 300px;
	background: url(../img/link-icon.png) 15px center no-repeat;
}

.card__link button,
.partners__link_block a,
.give__button a,
.calc__right a,
.btn-two {
	display: block;
	/*width: 165px;*/
	margin-bottom: 25px;
	/*height: 43px;*/
	transition: all ease 0.3s;
	cursor: pointer;
	border: none;
	background: #999DF4;
	border: 1px solid #999DF4;
	font-size: 15px;
	line-height: 21px;
	padding: 10px;
	text-decoration: none;
	text-align: center;
	color: #fff;
	border-radius: 5px;
}

.card__link button:hover,
.partners__link_block a:hover,
.give__button a:hover,
.calc__right a:hover,
.btn-two:hover {
	background: transparent;
	color: #999DF4;
}

.partners__link {
	width: 100%;
	max-width: 870px;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 25px;
}

.partners__link_title {
	margin-bottom: 20px;
}

.partners__link .input {
	width: 545px;
}

.partners__link_block a {
	width: 305px;
}

.partners__profit {
	margin-bottom: 40px;
	border: 1px solid #EDECEC;
	border-radius: 25px;
	padding: 25px 25px 13px 25px;
}

.partners__profit.flex {
	justify-content: flex-start;
}

.partners__profit_item {
	width: 20%;
	padding-right: 20px;
	color: #A99F9F;
	padding-top: 12px;
	padding-bottom: 12px;
	font-weight: 600;
	font-size: 15px;
	line-height: 22px;
	padding-left: 44px;
	position: relative;
}

.partners__profit_item.active {
	color: #0099FF;
}

.partners__profit_item:before {
	position: absolute;
	display: block;
	content: "";
	width: 34px;
	height: 34px;
	border-radius: 24px;
	top: 5px;
	left: 0px;
	background: #F2F2F2;
	z-index: 1;
}

.partners__profit_item.active:before {
	background: #0099FF;
}

.partners__profit_item:after {
	position: absolute;
	display: block;
	content: "";
	width: 20px;
	height: 20px;
	left: 7px;
	top: 12px;
	background-image: url(../img/currencies.png);
	background-repeat: no-repeat;
	-webkit-background-size: 60px auto;
	background-size: 60px auto;
	z-index: 2;
}

.partners__profit_item.one:after {
	background-position: center top;
}
.partners__profit_item.active.usd:after {
	background-position: -40px top;
}
.partners__profit_item.dash:after {
	background-position: -40px -60px;
}
.partners__profit_item.active.dgb:after {
	background-position: -40px -120px;
}
.partners__profit_item.three:after {
	background-position: center -40px;
}
.partners__profit_item.active.xrp:after {
	background-position: -40px -140px;
}
.partners__profit_item.four:after {
	background-position: center -60px;
}
.partners__profit_item.active.etc:after {
	background-position: -40px -160px;
}
.partners__profit_item.active.eth:after {
	background-position: -40px -160px;
}
.partners__profit_item.five:after {
	background-position: center -80px;
}
.partners__profit_item.active.btc:after {
	background-position: -40px -220px;
}
.partners__profit_item.six:after {
	background-position: center -100px;
}
.partners__profit_item.active.ltc:after {
	background-position: -40px -100px;
}
.partners__profit_item.seven:after {
	background-position: center -120px;
}
.partners__profit_item.active.doge:after {
	background-position: -40px -40px;
}
.partners__profit_item.eith:after {
	background-position: center -140px;
}
.partners__profit_item.active.eith:after {
	background-position: -40px -140px;
}
.partners__profit_item.nine:after {
	background-position: center -160px;
}
.partners__profit_item.active.nine:after {
	background-position: -40px -160px;
}

.table table tr td.table__amount,
.table table tr td.table__email {
	color: #0099ff;
}

/* Ð¡Ñ‚Ñ€Ð°Ð½Ð¸Ñ†Ð° Ð Ð¾Ð·Ñ‹Ð³Ñ€Ñ‹Ñˆ */

.give {
	text-align: center;
	position: relative;
	padding-top: 80px;
	padding-bottom: 90px;
	width: 100%;
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
}

.give__img-one {
	position: absolute;
	background: url(../img/give-one.png) center center no-repeat;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
	width: 270px;
	height: 538px;
	left: -270px;
	top: 50%;
	margin-top: -269px;
}

.give__img-two {
	position: absolute;
	background: url(../img/give-two.png) center center no-repeat;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
	width: 264px;
	height: 476px;
	right: -270px;
	top: 50%;
	margin-top: -238px;
}

.give__title {
	margin-bottom: 17px;
	color: #3C3A65;
	font-size: 60px;
	line-height: 90px;
	font-weight: 700;
}

.give__signature {
	margin-bottom: 50px;
	text-transform: uppercase;
	color: #999DF4;
	font-size: 21px;
	line-height: 31px;
	font-weight: 700;
}

.give__description {
	color: #A99F9F;
	margin-bottom: 30px;
	font-size: 19px;
	line-height: 28px;
}

.give__button.flex {
	justify-content: center;
}

.give__button a {
	width: auto;
	padding: 20px 60px;
	height: auto;
	margin-bottom: 0;
}

.prizes {
	text-align: center;
	padding-bottom: 25px;
}

.prizes__title {
	margin-bottom: 30px;
	font-size: 35px;
	color: #3C3A65;
	font-weight: 700;
}

.prizes__block.flex {
	align-items: flex-start;
}

.prize {
	width: 252px;
	margin-bottom: 25px;
}

.prize__img.flex {
	margin-bottom: 20px;
	justify-content: center;
	align-content: flex-end;
	height: 185px;
}

.prize__img img {
	display: block;
	max-width: 100%;
	max-height: 185px;
}

.prize__name {
	color: #3C3A65;
	font-size: 18px;
	line-height: 27px;
	font-weight: 700;
}

.prize__description {
	color: #A99F9F;
	font-weight: 300;
	font-size: 18px;
	line-height: 27px;
}

.prize__quantity {
	font-size: 15px;
	line-height: 22px;
	font-weight: 700;
	color: #999DF4;
}

.winners__title {
	text-align: center;
	color: #3C3A65;
	margin-bottom: 30px;
	font-size: 35px;
	font-weight: 700;
}

.winners {
	position: relative;
	width: 100%;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.winners__img {
	position: absolute;
	background: url(../img/cup.png) center center no-repeat;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
	width: 214px;
	height: 218px;
	top: 40px;
	left: -210px;
}

.table table tr.table__top td.table__email {
	color: rgba(0, 0, 0, 0.6);
}

.table table tr td.table__prize {
	color: #A99F9F;
	font-weight: 700;
}

.table table tr.table__top td.table__prize {
	color: rgba(0, 0, 0, 0.6);
}

.table table tr.table__top {
	background: rgba(162, 244, 71, 0.5);
}

.table table tr.table__top:nth-child(odd) {
	background: rgba(162, 244, 71, 0.9);
}

/* Ð¡Ñ‚Ñ€Ð°Ð½Ð¸Ñ†Ð° Buy power */

.note {
	margin-bottom: 50px;
	position: relative;
	background: #999DF4;
	border-radius: 20px;
	padding: 20px 35px;
}

.note__close {
	display: block;
	position: absolute;
	font-size: 30px;
	top: 15px;
	right: 15px;
	cursor: pointer;
	color: #fff;
	line-height: 15px;
	z-index: 2;
}

.note p {
	color: #fff;
	font-weight: 500;
	font-size: 15px;
	line-height: 22px;
}

.content .price__items {
	margin-top: 45px;
	margin-bottom: 0;
}

/* Ð¡Ñ‚Ñ€Ð°Ð½Ð¸Ñ†Ð° Deposit */

.calc__block-wrapper{
	padding-top: 36px;
}

.content .calc__block {
	background: #FAFAFA;
}

.calc__field_title table {
	margin-top: 10px;
}

.calc__field_title table tr td {
	color: #3C3A65;
	font-size: 12px;
	line-height: 18px;
}

.calc__field_title table tr td:nth-child(1) {
	padding-right: 7px;
}

.calc__field_input-title {
	font-weight: 500;
	font-size: 18px;
	line-height: 27px;
	color: #3C3A65;
	margin-bottom: 10px;
}

.calc__field_input input.wallet {
	background: url(../img/wallet-icon.png) #fff 15px center no-repeat;
	padding-left: 50px;
}

.calc__field_input input.amount {
	background: url(../img/amount-icon.png) #fff 15px center no-repeat;
	padding-left: 50px;
	margin-bottom: 20px;
}

.calc__right {
	width: 190px;
}

.calc__right a {
	width: 100%;
	margin-bottom: 0;
	margin-top: 10px;
}

.withdraw .table-wrapper {
	margin-top: 35px;
}

.table table tr td.table__wallet {
	text-decoration: underline;
	color: #0099ff;
}

/* Ð¡Ñ‚Ñ€Ð°Ð½Ð¸Ñ†Ð° Support */

.support-form.flex {
	justify-content: flex-start;
}

.support-form input.input {
	width: 330px;
	margin-right: 30px;
	margin-bottom: 40px;
}

.support-form input.input.support-form__email {
	padding-left: 50px;
	background: url(../img/email-icon.png) #fff 15px center no-repeat;
}

.support-form input.input.support-form__subject {
	padding-left: 50px;
	background: url(../img/subject-icon.png) #fff 15px center no-repeat;
}

.support-form__button .btn-two {
	padding: 15px 45px;
	border-radius: 50px;
}

/* Ð¡Ñ‚Ñ€Ð°Ð½Ð¸Ñ†Ð° Deposit */

.dep__block.flex {
	align-items: flex-start;
}

.dep__form {
	width: 685px;
	padding-right: 30px;
	border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.dep__currency.flex {
	margin-left: -7px;
	margin-right: -7px;
	justify-content: flex-start;
}

.dep__currency_item {
	width: calc(33.3% - 14px);
	margin-left: 7px;
	margin-right: 7px;
	position: relative;
	margin-bottom: 14px;
}

.dep__currency_item input {
	position: absolute;
	top: 50%;
	left: -100000px;
}

.dep__currency_item label.flex {
	cursor: pointer;
	width: 100%;
	height: 102px;
	background: #F2F2F2;
	border: 2px solid #F2F2F2;
	border-radius: 15px;
	justify-content: center;
	align-content: center;
	padding-left: 15px;
	padding-right: 15px;
	transition: all ease 0.3s;
}

.dep__currency_item input:checked + label.flex {
	border-color: #0099FF;
	background: #fff;
}

.dep__currency_item label img {
	display: block;
	max-width: 100%;
	max-height: 50px;
}

.dep__amount.flex {
	padding-top: 25px;
	justify-content: flex-start;
}

.dep__amount_title {
	margin-bottom: 10px;
	font-size: 16px;
	line-height: 24px;
	color: #A99F9F;
	width: 100%;
}

.dep__amount_item {
	position: relative;
	margin-right: 32px;
	margin-bottom: 16px;
}

.dep__amount_item:last-child {
	margin-right: 0;
}

.dep__amount_item input[type="radio"] {
	position: absolute;
	top: 50%;
	left: -100000px;
}

.dep__amount_item label {
	display: block;
	padding-left: 28px;
	position: relative;
	cursor: pointer;
	font-size: 16px;
	line-height: 24px;
	color: #3C3A65;
}

.dep__amount_item label:before {
	position: absolute;
	display: block;
	content: "";
	width: 18px;
	height: 18px;
	box-sizing: border-box;
	top: 50%;
	margin-top: -9px;
	left: 0;
	border-radius: 18px;
	border: 5px solid #E1E1E1;
	background: #F5F5F5;
	transition: all ease 0.3s;
}

.dep__amount_item input:checked + label:before {
	background: #fff;
	border-color: #999DF4;
}

.dep__amount_item label input {
	display: block;
	width: 200px;
	padding-left: 25px;
	padding-right: 25px;
	outline: none;
	background: rgba(242, 242, 242, 0.61);
	border: 1px solid #E6E6E6;
	border-radius: 5px;
	height: 43px;
	color: #3C3A65;
	font-size: 16px;
	pointer-events: none;
	cursor: default;
	color: rgba(0, 0, 0, 0.3);
}

.dep__amount_item input:checked + label input {
	pointer-events: auto;
	cursor: text;
	color: #3C3A65;
}

.dep__course {
	padding-top: 40px;
}

.dep__course p {
	margin-bottom: 15px;
	font-size: 16px;
	line-height: 24px;
	color: #757070;
	font-weight: 700;
}

.dep__course_value.flex {
	justify-content: flex-start;
}

.dep__course_amount {
	margin-bottom: 15px;
	margin-right: 22px;
	color: #fff;
	padding: 8px 14px;
	background: #2342E6;
	border-radius: 10px;
	font-size: 16px;
	line-height: 22px;
}

.dep__course_relevance {
	font-size: 16px;
	line-height: 22px;
	padding: 8px 19px;
	border-radius: 10px;
	color: #666666;
	background: #E4E3E3;
	margin-bottom: 15px;
}

.dep__course_relevance span {
	white-space: nowrap;
}

.dep__code.flex {
	padding-top: 20px;
	justify-content: center;
	margin-bottom: 32px;
}

.dep__code img {
	display: block;
	max-width: 100%;
}

.dep__wallet.flex {
	justify-content: center;
	margin-bottom: 32px;
}

.dep__wallet_block.flex,
.modal__email_block.flex {
	border: 1px solid #E6E6E6;
	border-radius: 5px;
	padding: 10px 14px 10px 48px;
	background: url(../img/wallet-icon.png) 15px center no-repeat;
	background-size: 20px 20px;
	flex-wrap: nowrap;
	max-width: 100%;
}

.modal__email_block.flex {
	background: url(../img/email-icon.svg) 15px center no-repeat;
	background-size: 25px 25px;
}

.dep__wallet_value,
.dep__tag_value,
.modal__email_link {
	font-size: 16px;
	line-height: 24px;
	color: #3C3A65;
	text-decoration: none;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.dep__wallet_copy,
.dep__tag_copy,
.modal__email_copy {
	color: #A99F9F;
	font-size: 16px;
	line-height: 24px;
	text-decoration: none;
	transition: all ease 0.3s;
	padding-left: 60px;
}

.dep__wallet_copy:hover,
.dep__tag_copy:hover,
.modal__email_copy:hover {
	color: #000;
}

.dep__tag.flex {
	margin-bottom: 45px;
	justify-content: center;
}

.dep__tag_title {
	margin-right: 25px;
	color: #999DF4;
	font-size: 16px;
	line-height: 24px;
}

.dep__tag_block.flex {
	border: 1px solid #E6E6E6;
	border-radius: 5px;
	padding: 10px 20px;
	background-size: 20px 20px;
	flex-wrap: nowrap;
}

.dep__signature {
	font-size: 16px;
	line-height: 24px;
	color: #757070;
	font-weight: 700;
}

.dep__info {
	width: 370px;
}

.dep__how.flex {
	align-items: flex-start;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	padding-bottom: 30px;
	margin-bottom: 30px;
	width: 100%;
}

.dep__how_open {
	display: block;
	text-decoration: none;
	text-align: center;
	width: 43px;
	line-height: 43px;
	font-weight: 700;
	background: #F2F2F2;
	border-radius: 43px;
	color: #A9A9AB;
	font-size: 21px;
}

.dep__how_info {
	width: calc(100% - 67px);
	font-weight: 500;
	font-size: 18px;
	line-height: 27px;
	color: #757070;
}

.dep__how_info a {
	font-size: 18px;
	line-height: 27px;
	color: #004E8C;
	font-weight: 700;
	text-decoration: underline;
}

.dep__how_info a:hover {
	text-decoration: none;
}

.dep__how_cards.flex {
	justify-content: center;
	padding-top: 18px;
	width: 100%;
}

.dep__how_cards img {
	display: block;
	max-width: 100%;
}

.dep__text {
	margin-bottom: 30px;
	width: 100%;
}

.dep__text p {
	margin-bottom: 15px;
	font-size: 16px;
	line-height: 24px;
	color: #A99F9F;
}

.dep__text p:last-child {
	margin-bottom: 0;
}

.dep__text p span {
	font-weight: 700;
}

.dep__bonus {
	margin-bottom: 50px;
	color: #fff;
	padding: 15px 26px;
	font-weight: 500;
	font-size: 18px;
	line-height: 27px;
	background: #0099FF;
	border-radius: 10px;
	width: 100%;
}

.dep__bonus span {
	font-weight: 700;
}

.dep__res {
	border-top: 1px solid rgba(0, 0, 0, 0.2);
	padding-top: 32px;
	margin-bottom: 40px;
	width: 100%;
}

.dep__res table {
	width: 100%;
}

.dep__res table tr td {
	padding-top: 8px;
	padding-bottom: 8px;
	font-size: 20px;
	line-height: 24px;
	color: #757070;
	font-weight: 700;
}

.dep__res table tr:nth-child(1) td {
	opacity: 0.46;
	font-size: 19px;
}

.dep__res table tr td:nth-child(2) {
	text-align: right;
	padding-left: 10px;
}

.dep__advantages.flex {
	align-items: flex-start;
	width: 100%;
}

.dep__advantage {
	background-position: left top;
	background-repeat: no-repeat;
	width: 150px;
	margin-bottom: 32px;
	padding-top: 44px;
	font-size: 14px;
	line-height: 21px;
	font-weight: 500;
	color: #A99F9F;
}

.dep__advantage-1 {
	background-image: url(../img/dep-advantage-1.svg);
}

.dep__advantage-2 {
	background-image: url(../img/dep-advantage-2.svg);
}

.modal.modal-wide {
	width: 720px;
}

.modal-wide .modal__title {
	margin-bottom: 35px;
}

.modal .dep__how_cards.flex {
	margin-bottom: 20px;
	padding-top: 0;
}

.modal__text p {
	margin-bottom: 15px;
	color: #757070;
	font-size: 16px;
	line-height: 24px;
}

.modal__text p:last-child {
	margin-bottom: 0;
}

.modal__list li {
	display: block;
	list-style: none;
	font-size: 16px;
	line-height: 24px;
	color: #525252;
	margin-bottom: 30px;
	padding-left: 37px;
	position: relative;
}

.modal__list li:before {
	position: absolute;
	display: block;
	content: "";
	width: 17px;
	height: 17px;
	border-radius: 17px;
	top: 3px;
	left: 0;
	background: #999DF4;
}

.modal__email.flex {
	justify-content: center;
	padding-top: 15px;
}

.modal__email_title {
	text-align: center;
	margin-bottom: 15px;
	color: #484242;
	font-size: 16px;
	line-height: 24px;
	font-weight: 600;
	width: 100%;
}

.cur__item label {
	display: block;
}

.cur__item label:hover {
	background: #000;
}

.cur__item label img {
	display: block;
	filter: hue-rotate(50deg);
}

.calc__currencies.flex {
	justify-content: flex-start;
	padding-left: 30px;
	position: relative;
	z-index: 5;
	padding-top: 12px;
}

.calc__currencies a {
	margin-top: 0px;
	margin-right: 7px;
	margin-bottom: 7px;
}

.calc__currencies a.active {
	background: #999DF4;
}

.calc__currencies-one:before {
	background-position: center top;
}
.calc__currencies-two:before {
	background-position: center -40px;
}
.calc__currencies-three:before {
	background-position: center -80px;
}
.calc__currencies-four:before {
	background-position: center -120px;
}
.calc__currencies-five:before {
	background-position: center -160px;
}
.calc__currencies-six:before {
	background-position: center -200px;
}
.calc__currencies-seven:before {
	background-position: center -240px;
}
.calc__currencies-eith:before {
	background-position: center -280px;
}
.calc__currencies-nine:before {
	background-position: center -320px;
}
.calc__currencies-ten:before {
	background-position: center -360px;
}
.calc__currencies-eleven:before {
	background-position: center -400px;
}
.calc__currencies-twelve:before {
	background-position: center -440px;
}
.calc__currencies-thirteen:before {
	background-position: center -480px;
}
.calc__currencies-fourteen:before {
	background-position: center -520px;
}
.calc__currencies-fifteen:before {
	background-position: center -560px;
}

.calc__currencies-one:after {
	background-position: right top;
}
.calc__currencies-two:after {
	background-position: right -40px;
}
.calc__currencies-three:after {
	background-position: right -80px;
}
.calc__currencies-four:after {
	background-position: right -120px;
}
.calc__currencies-five:after {
	background-position: right -160px;
}
.calc__currencies-six:after {
	background-position: right -200px;
}
.calc__currencies-seven:after {
	background-position: right -240px;
}
.calc__currencies-eith:after {
	background-position: right -280px;
}
.calc__currencies-nine:after {
	background-position: right -320px;
}
.calc__currencies-ten:after {
	background-position: right -360px;
}
.calc__currencies-eleven:after {
	background-position: right -400px;
}
.calc__currencies-twelve:after {
	background-position: right -440px;
}
.calc__currencies-thirteen:after {
	background-position: right -480px;
}
.calc__currencies-fourteen:after {
	background-position: right -520px;
}
.calc__currencies-fifteen:after {
	background-position: right -560px;
}

@media screen and (max-width: 1350px) {
	.dep__info {
		width: 300px;
	}

	.dep__form {
		width: 570px;
	}

	.dep__currency_item label.flex {
		height: 78px;
	}

	.dep__course {
		padding-top: 15px;
	}

	.dep__amount.flex {
		padding-top: 15px;
	}
}

@media screen and (max-width: 1150px) {
	.modal-wide .modal__title {
		margin-bottom: 20px;
	}
}

@media screen and (max-width: 992px) {
	.dep__info {
		width: 250px;
	}

	.dep__form {
		width: 410px;
		padding-right: 20px;
	}

	.dep__currency_item label.flex {
		height: 64px;
		padding-left: 10px;
		padding-right: 10px;
	}

	.dep__currency_item {
		width: calc(33.3% - 10px);
		margin-left: 5px;
		margin-right: 5px;
		margin-bottom: 10px;
	}

	.dep__wallet_copy, .dep__tag_copy, .modal__email_copy {
		padding-left: 20px;
	}

	.dep__tag.flex {
		margin-bottom: 30px;
	}

	.dep__how_info {
		width: calc(100% - 57px);
	}

	.dep__how_info {
		font-size: 15px;
		line-height: 22px;
	}

	.dep__how_info a {
		font-size: 16px;
		line-height: 22px;
	}

	.dep__how.flex {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.dep__bonus {
		margin-bottom: 20px;
		font-size: 16px;
    	line-height: 24px;
    	border-radius: 5px;
	}

	.dep__res {
		padding-top: 20px;
		margin-bottom: 20px;
	}

	.dep__res table tr td {
		font-size: 16px;
		line-height: 22px;
		padding-top: 5px;
		padding-bottom: 5px;
	}

	.dep__res table tr:nth-child(1) td {
		font-size: 15px;
	}

	.dep__advantage {
		width: 100%;
		margin-bottom: 20px;
		padding-top: 40px;
	}
}

@media screen and (max-width: 768px) {
	.dep__form {
		border: none;
		width: 100%;
		padding-right: 0;
	}

	.dep__info {
		width: 100%;
		padding-top: 20px;
	}

	.dep__res {
		order: 1;
	}

	.dep__text {
		order: 2;
	}

	.dep__bonus {
		order: 3;
	}

	.dep__how.flex {
		order: 4;
	}

	.dep__advantages {
		order: 5;
	}

	.dep__text {
		margin-bottom: 10px;
	}

	.dep__text p {
		margin-bottom: 10px;
	}

	.dep__advantage {
		width: 45%;
	}

	.dep__how {
		padding-top: 20px;
		border-top: 1px solid rgba(0, 0, 0, 0.2);
	}

	.modal.modal-wide {
		width: 500px;
	}

	.modal__list li {
		margin-bottom: 18px;
	}


}

@media screen and (max-width: 576px) {
	.dep__code.flex {
		padding-top: 0;
		margin-bottom: 20px;
	}

	.dep__wallet.flex {
		margin-bottom: 15px;
	}

	.dep__tag.flex {
		margin-bottom: 15px;
	}

	.dep__tag_title {
		width: 100%;
		margin-right: auto;
		text-align: center;
		margin-bottom: 2px;
	}

	.modal.modal-wide {
		width: calc(100% - 30px);
	}

	.modal .dep__how_cards.flex {
		margin-bottom: 5px;
	}

	.modal-wide .modal__title {
		margin-bottom: 10px;
	}

	.modal__list li {
		margin-bottom: 10px;
		padding-left: 20px;
		font-size: 15px;
		line-height: 20px;
	}

	.modal__email_title {
		margin-bottom: 5px;
	}

	.modal__list li:before {
		width: 10px;
		height: 10px;
		top: 5px;
	}


}

@media screen and (max-width: 430px) {
	.dep__currency_item {
		width: calc(50% - 10px);
	}
}
*{
   font-family: 'Poppins', sans-serif;
}
.testimonial_subtitle{
    color: #3e99f7;
    font-size: 12px;
}
  .testimonial_btn{
    background-color: #373d4b !important;
    color: #fff !important;
 }
 .seprator {
    height: 2px;
    width: 56px;
    background-color: #3e99f7;
    margin: 7px 0 10px 0;
}

.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;height:auto;max-width:100%;line-height:1}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6);opacity:.5;filter:alpha(opacity=50)}.carousel-control.left{background-image:-webkit-gradient(linear,0 top,100% top,from(rgba(0,0,0,0.5)),to(rgba(0,0,0,0.0001)));background-image:-webkit-linear-gradient(left,color-stop(rgba(0,0,0,0.5) 0),color-stop(rgba(0,0,0,0.0001) 100%));background-image:-moz-linear-gradient(left,rgba(0,0,0,0.5) 0,rgba(0,0,0,0.0001) 100%);background-image:linear-gradient(to right,rgba(0,0,0,0.5) 0,rgba(0,0,0,0.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000',endColorstr='#00000000',GradientType=1)}.carousel-control.right{right:0;left:auto;background-image:-webkit-gradient(linear,0 top,100% top,from(rgba(0,0,0,0.0001)),to(rgba(0,0,0,0.5)));background-image:-webkit-linear-gradient(left,color-stop(rgba(0,0,0,0.0001) 0),color-stop(rgba(0,0,0,0.5) 100%));background-image:-moz-linear-gradient(left,rgba(0,0,0,0.0001) 0,rgba(0,0,0,0.5) 100%);background-image:linear-gradient(to right,rgba(0,0,0,0.0001) 0,rgba(0,0,0,0.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000',endColorstr='#80000000',GradientType=1)}.carousel-control:hover,.carousel-control:focus{color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;left:50%;z-index:5;display:inline-block}.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;margin-top:-10px;margin-left:-10px;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .icon-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-15px;margin-left:-15px;font-size:30px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:before,.clearfix:after{display:table;content:" "}.clearfix:after{clear:both} .pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0}blockquote.pull-right p,blockquote.pull-right small{text-align:right}blockquote.pull-right small:before{content:''}blockquote.pull-right small:after{content:'\00A0 \2014'}
