/* Fonts */
@font-face {
	font-family: Museo Sans Cyrl-100;
	src: url('../fonts/MuseoSansCyrl-100.eot');
	src: url('../fonts/MuseoSansCyrl-100.eot?') format('eot'),
		url('../fonts/MuseoSansCyrl-100.woff') format('woff'),
		url('../fonts/MuseoSansCyrl-100.ttf')  format('truetype');
}

@font-face {
	font-family: Museo Sans Cyrl-300;
	src: url('../fonts/MuseoSansCyrl-300.eot');
	src: url('../fonts/MuseoSansCyrl-300.eot?') format('eot'),
		url('../fonts/MuseoSansCyrl-300.woff') format('woff'),
		url('../fonts/MuseoSansCyrl-300.ttf')  format('truetype');
}

@font-face {
	font-family: Museo Sans Cyrl-500;
	src: url('../fonts/MuseoSansCyrl-500.eot');
	src: url('../fonts/MuseoSansCyrl-500.eot?') format('eot'),
		url('../fonts/MuseoSansCyrl-500.woff') format('woff'),
		url('../fonts/MuseoSansCyrl-500.ttf')  format('truetype');
}

@font-face {
	font-family: Museo Sans Cyrl-700;
	src: url('../fonts/MuseoSansCyrl-700.eot');
	src: url('../fonts/MuseoSansCyrl-700.eot?') format('eot'),
		url('../fonts/MuseoSansCyrl-700.woff') format('woff'),
		url('../fonts/MuseoSansCyrl-700.ttf')  format('truetype');
}

@font-face {
	font-family: Museo Sans Cyrl-900;
	src: url('../fonts/MuseoSansCyrl-900.eot');
	src: url('../fonts/MuseoSansCyrl-900.eot?') format('eot'),
		url('../fonts/MuseoSansCyrl-900.woff') format('woff'),
		url('../fonts/MuseoSansCyrl-900.ttf')  format('truetype');
}

/* Main Styles */
html, body {
	background: url('../img/bg1.png');
	font-family: Museo Sans Cyrl-100;
	font-size: 16px;
	padding: 0;
	margin: 0;
	width: 100%;
	height: 100%;
}

/* POPUP */
.popup-background {
	background: rgba(41,43,47, 0.85);
	z-index: 10;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	position: fixed;
	overflow: auto;
	white-space: nowrap;
	text-align: center;
}

.popup-background:before {
	height: 100%;
	display: inline-block;
	vertical-align: middle;
	content: '';
}

.popup-window {
	z-index: 20;
	display: inline-block;
	white-space: normal;
	vertical-align: middle;
	text-align: left;
	margin: 0% 0;
	max-width: 900px;
}

/* Reglog */
.reglog {
	background: #fff;
	1height: 400px;
	width: 350px;
}

@media screen and (max-width: 760px) and (min-width: 315px) {
	.reglog {
		height: 100%;
		width: 100%;
	}
}

.reglog > .title {
	height: 32px;
	width: 100%;
	text-align: right;
	margin: 0;
}

.reglog > .title > .close-btn {
	background: #e15422;
	height: 32px;
	width: 32px;
	display: inline-block;
	vertical-align: top;
	text-align: right;
	cursor: pointer;
	transition: all 0.3s ease;
}

.reglog > .title > .close-btn > .icon-close {
	background: url('../img/icon-close.png');
	background-size: cover;
	height: 16px;
	width: 16px;
	display: inline-block;
	margin: 7.5px 7.5px 0 0;
	transition: all 0.3s ease;
}

@media(hover: hover) and (pointer: fine) {
	.reglog > .title > .close-btn:hover > .icon-close {
		transform: rotate(360deg);
	}
}

.reglog > .form {
	text-align: center;
	margin: 50px 0 90px 0;
}

.reglog > .form > span {
	color: #12151a;
	margin: 0 0 10px 0;
	padding: 0;
	font-size: 16px;
	font-family: Museo Sans Cyrl-700;
	text-decoration: none;
	display: inline-block;
}

.reglog > .form > input {
	background: url('../img/bg-input.jpg');
	outline: none;
	border: 0px;
	width: 220px;
	height: 38px;
	color: #000;
	font-size: 14x;
	font-family: Museo Sans Cyrl-500;
	padding: 0px 15px;
	box-sizing: border-box;
	display: block;
	vertical-align: top;
	margin: 10px auto;
	text-align: left;
}

.reglog > .form > input::-webkit-input-placeholder {
	1color: #bbbbd1;
}

.reglog > .form > input:-moz-placeholder {
	1color: #bbbbd1;
	1opacity: 1;
}

.reglog > .form > input::-moz-placeholder {
	1color: #bbbbd1;
	1opacity: 1;
}

.reglog > .form > input:-ms-input-placeholder {
	1color: #bbbbd1;
}

.reglog > .form > input::-ms-input-placeholder {
	1color: #bbbbd1;
}

.reglog > .form > input::placeholder {
	1color: #bbbbd1;
}

.reglog > .form > .icon-eye-close {
	background: url('../img/icon-eye-close.png');
	background-size: cover;
	height: 20px;
	width: 20px;
	display: inline-block;
	position: absolute;
	margin: -38px 0 0 80px;
	cursor: pointer;
}

.reglog > .form > .icon-eye-open {
	background: url('../img/icon-eye-open.png');
	background-size: cover;
	height: 20px;
	width: 20px;
	display: inline-block;
	position: absolute;
	margin: -38px 0 0 80px;
	cursor: pointer;
}

.reglog > .form > .button {
	background: url('../img/bg-green.jpg');
	height: 38px;
	width: 220px;
	margin: 0 auto 10px auto;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	user-select: none;
}

@media(hover: hover) and (pointer: fine) {
	.reglog > .form > .button:hover {
		1background: url('../img/bg-green-light.jpg');
	}
}

.reglog > .form > .button > span {
	color: #fff;
	font-size: 14px;
	font-family: Museo Sans Cyrl-700;
	margin: 11px 0;
	display: inline-block;
}

.reglog > .form > .button > .icon-loader {
	background: url('../img/loader.png');
	background-size: cover;
	height: 20px;
	width: 20px;
	margin: 9px auto;
	display: inline-block;
	animation: loader 0.5s infinite linear;
}

@keyframes loader {
	from {transform: rotate(0deg);}
	50% {transform: rotate(180deg);}
	to {transform: rotate(360deg);}
}

.reglog > .form > b {
	color: #12151a;
	margin: 15px 0 0 0;
	padding: 0;
	font-size: 14px;
	font-family: Museo Sans Cyrl-700;
	font-weight: normal;
	display: inline-block;
	cursor: pointer;
	transition: all 0.3s ease;
	user-select: none;
}

@media(hover: hover) and (pointer: fine) {
	.reglog > .form > b:hover {
		text-decoration: underline;
	}
}

.reglog > .form > u {
	color: #12151a;
	margin: 15px 0 0 0;
	padding: 0;
	font-size: 14px;
	font-family: Museo Sans Cyrl-500;
	text-decoration: none;
	display: inline-block;
}

.reglog > .form > a {
	color: #4c4c4c;
	margin: 0 30px 10px 30px;
	font-size: 14px;
	font-family: Museo Sans Cyrl-500;
	text-decoration: none;
	cursor: default;
	display: inline-block;
}

.reglog > .form > a > b {
	font-weight: normal;
	font-family: Museo Sans Cyrl-700;
}

.reglog > .form > .icon-keys {
	background: url('../img/logo-keys.png');
	background-size: cover;
	height: 150px;
	width: 150px;
	display: inline-block;
}

.reglog > .form > .icon-mail {
	background: url('../img/logo-mail.png');
	background-size: cover;
	height: 150px;
	width: 150px;
	display: inline-block;
}

.reglog > .form > .text-result {
	color: #4c4c4c;
	width: 100%;
	margin: 10px 0 20px 0;
	padding: 0;
	font-size: 16px;
	font-family: Museo Sans Cyrl-700;
	text-decoration: none;
	display: inline-block;
}

.reglog > .form > .text-result > b {
	font-weight: normal;
	font-size: 32px;
	display: block;
}

.reglog > .tab-1 {
	display: block;
}

.reglog > .tab-2 {
	display: none;
}

.reglog > .tab-3 {
	display: none;
}


.mob-menu > .title {
	height: 50px;
	width: 100%;
	text-align: right;
	margin: 0 0 40px 0;
}

.mob-menu > .title > .close-btn {
	1background: #e15422;
	height: 50px;
	width: 50px;
	display: inline-block;
	vertical-align: top;
	text-align: right;
	cursor: pointer;
	transition: all 0.3s ease;
}

.mob-menu > .title > .close-btn > .icon-close {
	background: url('../img/icon-close.png');
	background-size: cover;
	height: 22px;
	width: 22px;
	display: inline-block;
	margin: 20px 20px 0 0;
	transition: all 0.3s ease;
}

@media(hover: hover) and (pointer: fine) {
	.mob-menu > .title > .close-btn:hover > .icon-close {
		transform: rotate(360deg);
	}
}

.mob-menu {
	background: url('../img/bg1.png');
	height: 100%;
	width: 100%;
}

.mob-menu > .button {
	background: url('../img/bg.png');
	border-radius: 5px;
	width: 80%;
	margin: 10px auto;
	text-align: center;
	display: block;
}

.mob-menu > .button-auth {
	background: #fff;
	width: 80%;
	margin-top: 30px;
}

.mob-menu > .button > span {
	color: #fff;
	font-family: Museo Sans Cyrl-700;
	font-size: 14px;
	margin: 15px 20px;
	display: inline-block;
}

.mob-menu > .button-auth > span {
	color: #333;
}

.mob-menu > .button-auth > span > .icon-login {
	background: url('../img/icon-login-black.png');
	background-size: cover;
	height: 10px;
	width: 10px;
	display: inline-block;
	margin-right: 4px;
}


/* Content */
.content {
	width: 1000px;
	margin: 0 auto;
}

@media screen and (max-width: 1025px) {
	.content {
		width: 100%;
		margin: 0 auto;
	}
}

/* Header */
.header {
	background: url('../img/bg.png');
	height: 59px;
	width: 100%;
	z-index: 5;
}

.header > .box {
	height: 58px;
	width: 100%;
}

.header > .box > .content > .logo {
	width: 25%;
	display: inline-block;
	vertical-align: top;
}

.header > .box > .content > .logo > a {
	background: url('../img/logo-white2.png');
	background-size: cover;
	height: 30px;
	width: 106px;
	display: inline-block;
	margin-top: 12.5px;
}

.header > .box > .content > .menu {
	width: 50%;
	display: inline-block;
	vertical-align: top;
}

.header > .box > .content > .menu > .margin {
	margin-top: 17px;
	text-align: center;
}

.header > .box > .content > .menu > .margin > a {
	color: #fff;
	font-family: Museo Sans Cyrl-700;
	font-size: 14px;
	margin: 0 20px 0 20px;
	display: inline-block;
	cursor: pointer;
	text-decoration: none;
}

.header > .box > .content > .auth {
	width: 25%;
	display: inline-block;
	vertical-align: top;
	text-align: right;
}

.header > .box > .content > .auth > .button {
	background: #fff;
	border-radius: 5px;
	height: 30px;
	display: inline-block;
	cursor: pointer;
	margin-top: 12.5px;
	text-align: center;
}

.header > .box > .content > .auth > .button > span {
	color: #333;
	font-family: Museo Sans Cyrl-700;
	font-size: 14px;
	margin-top: 7px;
	margin-left: 23px;
	margin-right: 23px;
	display: inline-block;
}

.header > .box > .content > .auth > .button > span > .icon-login {
	background: url('../img/icon-login-black.png');
	background-size: cover;
	height: 10px;
	width: 10px;
	display: inline-block;
	margin-right: 4px;
}

.header > .box > .content > .auth > .button > span > .icon-user {
	background: url('../img/icon-user.png');
	background-size: cover;
	height: 10px;
	width: 10px;
	display: inline-block;
	margin-right: 4px;
}

.header > .line {
	background: #293145;
	height: 1px;
	width: 100%;
}

.header > .box > .content > .mobile-menu {
	display: none;
}

@media screen and (max-width: 1025px) {
	.header {
		position: fixed;
		top: 0;
	}
	
	.header > .box > .content {
		width: 90%;
	}
	
	.header > .box > .content > .logo {
		width: 50%;
	}
	
	.header > .box > .content > .logo > a {
		background: url('../img/logo-mobile-white2.png');
		background-size: cover;
		height: 27px;
		width: 95px;
		margin-top: 16px;
	}
	
	.header > .box > .content > .menu {
		display: none;
	}
	
	.header > .box > .content > .auth {
		display: none;
	}
	
	.header > .box > .content > .mobile-menu {
		width: 50%;
		display: inline-block;
		vertical-align: top;
		text-align: right;
	}
	
	.header > .box > .content > .mobile-menu > .icon-menu {
		background: url('../img/icon-menu-white.png');
		background-size: cover;
		height: 25px;
		width: 25px;
		display: inline-block;
		margin-top: 16.5px;
	}
}

/* Block-1 */
.block-1 {
	background: url('../img/bg-block-123.jpg');
	background-position: top center;
	height: 580px;
	width: 100%;
	text-align: center;
}

.block-1 > .content > span {
	color: #fff;
	font-family: Museo Sans Cyrl-500;
	font-size: 24px;
	margin-top: 80px;
	margin-bottom: 8px;
	display: inline-block;
	width: 800px;
}

.block-1 > .content > span > b {
	font-size: 30px;
	font-weight: normal;
	font-family: Museo Sans Cyrl-900;
}

.block-1 > .content > .column {
	width: 20%;
	display: inline-block;
	vertical-align: top;
	margin-top: 30px;
}

.block-1 > .content > .column-center {
	margin-left: 20%;
	margin-right: 20%;
}

.block-1 > .content > .column > .image {
	width: 100%;
	display: inline-block;
	vertical-align: top;
}

.block-1 > .content > .column > .image > .icon-speed {
	background: url('../img/icon-speed.png');
	background-size: cover;
	height: 45px;
	width: 45px;
	display: inline-block;
	margin-top: 0px;
}

.block-1 > .content > .column > .image > .icon-anonim {
	background: url('../img/icon-anonim.png');
	background-size: cover;
	height: 45px;
	width: 45px;
	display: inline-block;
	margin-top: 0px;
}

.block-1 > .content > .column > .image > .icon-earth {
	background: url('../img/icon-earth.png');
	background-size: cover;
	height: 45px;
	width: 45px;
	display: inline-block;
	margin-top: 0px;
}

.block-1 > .content > .column > .image > .icon-settings {
	background: url('../img/icon-settings.png');
	background-size: cover;
	height: 45px;
	width: 45px;
	display: inline-block;
	margin-top: 0px;
}

.block-1 > .content > .column > .image > .icon-wallet {
	background: url('../img/icon-wallet.png');
	background-size: cover;
	height: 45px;
	width: 45px;
	display: inline-block;
	margin-top: 0px;
}

.block-1 > .content > .column > .image > .icon-device {
	background: url('../img/icon-device.png');
	background-size: cover;
	height: 45px;
	width: 45px;
	display: inline-block;
	margin-top: 0px;
}

.block-1 > .content > .column > .text {
	width: 100%;
	display: inline-block;
	vertical-align: top;
}

.block-1 > .content > .column > .text > span {
	color: #fff;
	font-family: Museo Sans Cyrl-500;
	font-size: 14px;
	display: inline-block;
}

.block-1 > .content > .button {
	background: #fff;
	border-radius: 5px;
	height: 40px;
	width: 195px;
	display: inline-block;
	margin-top: 50px;
	margin-left: 0;
	margin-right: 0;
	cursor: pointer;
	text-align: center;
}

.block-1 > .content > .button > span {
	color: #333;
	font-size: 16px;
	font-family: Museo Sans Cyrl-700;
	display: inline-block;
	margin-top: 10px;
}

@media screen and (max-width: 1025px) {
	.block-1 {
		background: url('../img/bg-block-123-mobile.jpg');
		background-size: contain;
	}
	
	.block-1 {
		text-align: left;
		margin-top: 59px;
	}
	
	.block-1 > .content {
		width: 90%;
	}
	
	.block-1 > .content > span {
		width: 95%;
		font-size: 18px;
		margin-top: 40px;
	}
	
	.block-1 > .content > span > b {
		width: 95%;
		font-size: 20px;
		margin-top: 50px;
	}
	
	.block-1 > .content > .column {
		width: 100%;
		text-align: left;
		margin-top: 20px;
	}

	.block-1 > .content > .column-center {
		margin-left: 0;
		margin-right: 0;
	}
	
	.block-1 > .content > .column > .image {
		width: 50px;
	}
	
	.block-1 > .content > .column > .image > .icon-speed,
	.block-1 > .content > .column > .image > .icon-anonim,
	.block-1 > .content > .column > .image > .icon-earth,
	.block-1 > .content > .column > .image > .icon-settings,
	.block-1 > .content > .column > .image > .icon-wallet,
	.block-1 > .content > .column > .image > .icon-device {
		height: 30px;
		width: 30px;
	}
	
	.block-1 > .content > .column > .text {
		width: 85%;
	}
	
	.block-1 > .content > .column > .text > span {
		font-size: 14px;
		margin-left: 0%;
	}
	
	.block-1 > .content > .button {
		display: block;
		margin-top: 30px;
		margin-left: auto;
		margin-right: auto;
	}
}

@media screen and (max-width: 390px) {
	
	.block-1 > .content > .column > .image {
		width: 45px;
	}
	
	.block-1 > .content > .column > .text {
		width: 85%;
	}
}

/* Block-2 */
.block-2 {
	width: 100%;
}

.block-2 > .content > span {
	color: #fff;
	font-family: Museo Sans Cyrl-900;
	font-size: 30px;
	display: block;
	margin-top: 54px;
}

.block-2 > .content > span > b {
	font-weight: normal;
	font-family: Museo Sans Cyrl-500;
	font-size: 24px;
	display: inline-block;
}

.block-2 > .content > .tariff {
	background: url('../img/bg.png');
	height: 325px;
	width: 300px;
	display: inline-block;
	vertical-align: top;
	border-radius: 10px;
	margin-top: 68px;
	margin-bottom: 66px;
	text-align: center;
}

.block-2 > .content > .tariff-center {
	background: url('../img/bg-green-tariff.jpg');
	margin-left: 50px;
	margin-right: 50px;
}

.block-2 > .content > .tariff > .price {
	text-align: center;
	margin-top: 25px;
}

.block-2 > .content > .tariff > .price > span {
	color: #fff;
	font-size: 24px;
	font-family: Museo Sans Cyrl-700;
	display: block;
}

.block-2 > .content > .tariff > .price > span > i {
	font-size: 16px;
}

.block-2 > .content > .tariff > .price > b {
	color: #fff;
	font-size: 12px;
	font-family: Museo Sans Cyrl-500;
	display: block;
	font-weight: normal;
}

.block-2 > .content > .tariff > .listing {
	text-align: left;
	margin-top: 22px;
}

.block-2 > .content > .tariff > .listing > span {
	color: #fff;
	font-size: 14px;
	font-family: Museo Sans Cyrl-500;
	display: block;
	margin-left: 30px;
	margin-right: 20px;
	margin-top: 0px;
}

.block-2 > .content > .tariff > b {
	color: #fff;
	font-size: 12px;
	font-family: Museo Sans Cyrl-700;
	display: block;
	font-weight: normal;
	margin-left: 20px;
	margin-right: 20px;
	margin-top: 45px;
	z-index: 1;
}

.block-2 > .content > .tariff > b > u {
	font-family: Museo Sans Cyrl-900;
	text-decoration: none;
}

.block-2 > .content > .tariff > b > i {
	font-style: normal;
	text-decoration: line-through;
	text-align: right;
	position: absolute;
	margin-top: -14px;
	margin-left: -60px;
}

.block-2 > .content > .tariff > .button {
	background: url('../img/bg-green.jpg');
	border-radius: 5px;
	height: 40px;
	width: 210px;
	display: block;
	margin-top: 18px;
	margin-left: auto;
	margin-right: auto;
	cursor: pointer;
}

.block-2 > .content > .tariff > .button-center {
	background: #fff;
}

.block-2 > .content > .tariff > .button > span {
	color: #fff;
	font-size: 16px;
	font-family: Museo Sans Cyrl-500;
	display: inline-block;
	margin-top: 10px;
}

.block-2 > .content > .tariff > .button-center > span {
	color: #333;
	font-family: Museo Sans Cyrl-700;
}

.block-2 > .content > .test {
	text-align: right;
	padding-bottom: 64px;
}

.block-2 > .content > .test > span {
	color: #fff;
	font-family: Museo Sans Cyrl-500;
	font-size: 14px;
	display: inline-block;
	margin-right: 20px;
}

.block-2 > .content > .test > span > b {
	font-weight: normal;
	font-family: Museo Sans Cyrl-900;
	font-size: 16px;
	margin-left: 5px;
}

.block-2 > .content > .test > .button {
	background: #fff;
	border-radius: 5px;
	height: 40px;
	width: 195px;
	display: inline-block;
	margin-top: 0px;
	margin-left: 0;
	margin-right: 0;
	cursor: pointer;
	text-align: center;
}

.block-2 > .content > .test > .button > span {
	color: #333;
	font-size: 16px;
	font-family: Museo Sans Cyrl-700;
	display: inline-block;
	margin-top: 10px;
}

@media screen and (max-width: 1025px) {
	.block-2 > .content > span {
		font-size: 24px;
		margin-top: 60px;
		text-align: center;
	}

	.block-2 > .content > span > b {
		font-size: 20px;
	}
	
	.block-2 > .content > .tariff {
		width: 90%;
		margin-top: 40px;
		margin-bottom: 40px;
		margin-left: auto;
		margin-right: auto;
		display: block;
	}

	.block-2 > .content > .tariff-center {
		margin-left: auto;
		margin-right: auto;
	}
	
	.block-2 > .content > .tariff > .price {
		margin-top: 0px;
		padding-top: 25px;
	}
	
	.block-2 > .content > .test {
		text-align: center;
	}
	
	.block-2 > .content > .test > span {
		margin-right: 0px;
	}
	
	.block-2 > .content > .test > span > b {
		display: block;
		margin-left: 0px;
	}
	
	.block-2 > .content > .test > .button {
		margin-top: 10px;
		margin-left: auto;
		margin-right: auto;
		display: block;
	}
}

@media screen and (max-width: 390px) {
	.block-2 > .content > span {
		font-size: 21px;
	}

	.block-2 > .content > span > b {
		font-size: 18px;
	}
	
	.block-2 > .content > .test {
		text-align: center;
		width: 80%;
		margin: 0 auto;
	}
	
	.block-2 > .content > .test > span {
		margin-right: 0px;
		display: inline-block;
	}
	
	.block-2 > .content > .test > span > b {
		display: inline-block;
		margin-left: 0px;
	}
}

/* Block-3 */
.block-3 {
	background: url('../img/bg-green.jpg');
	height: 190px;
	width: 100%;
}

.block-3 > .content > .column {
	width: 50%;
	display: inline-block;
	vertical-align: top;
	margin-top: 70px;
}

.block-3 > .content > .column > .img {
	width: 13%;
	display: inline-block;
	vertical-align: top;
}

.block-3 > .content > .column > .img > .icon-comment {
	background: url('../img/icon-comment.png');
	background-size: cover;
	height: 48px;
	width: 48px;
	display: inline-block;
	margin-top: 0px;
}

.block-3 > .content > .column > .img > .icon-layers {
	background: url('../img/icon-layers.png');
	background-size: cover;
	height: 48px;
	width: 48px;
	display: inline-block;
	margin-top: 0px;
}

.block-3 > .content > .column > .text {
	width: 87%;
	display: inline-block;
	vertical-align: top;
}

.block-3 > .content > .column > .text > span {
	color: #fff;
	font-size: 14px;
	font-family: Museo Sans Cyrl-500;
	display: inline-block;
	margin-top: 0px;
}

.block-3 > .content > .column > .text > span > b {
	font-weight: normal;
	font-family: Museo Sans Cyrl-700;
	border-bottom: 2px solid #fff;
	cursor: pointer;
}

.block-3 > .content > .column > .text > span > a {
	color: #fff;
	font-weight: normal;
	font-family: Museo Sans Cyrl-700;
	border-bottom: 2px solid #fff;
	cursor: pointer;
	text-decoration: none;
}

@media screen and (max-width: 1025px) {
	.block-3 {
		height: auto;
		padding-top: 70px;
	}
	
	.block-3 > .content > .column {
		width: 90%;
		padding-bottom: 70px;
		margin-top: 0px;
		margin-left: auto;
		margin-right: auto;
		display: block;
	}
	
	.block-3 > .content > .column > .img {
		width: 70px;
	}
	
	.block-3 > .content > .column > .text {
		width: 80%;
	}
}

@media screen and (max-width: 390px) {
	.block-3 > .content > .column > .img {
		width: 55px;
	}
	
	.block-3 > .content > .column > .img > .icon-comment,
	.block-3 > .content > .column > .img > .icon-layers {
		height: 35px;
		width: 35px;
		margin-top: 25px;
	}
}


.block-4 {
	width: 90%;
	margin: 30px auto 50px auto;
}

.block-4 > .content > .title {
	margin: 10px 0 20px 0;
}

.block-4 > .content > .title > span {
	color: #fff;
	font-family: Museo Sans Cyrl-900;
	font-size: 24px;
	display: block;
	margin-top: 40px;
}

.block-4 > .content > span {
	color: #fff;
	font-family: Museo Sans Cyrl-500;
	font-size: 14px;
	display: block;
	margin-top: 10px;
}

.block-4 > .content > b {
	color: #fff;
	font-family: Museo Sans Cyrl-700;
	font-size: 18px;
	display: block;
	margin: 30px 0 15px 0;
	font-weight: normal;
}

@media screen and (max-width: 1025px) {
	.block-4 {
		margin-top: 90px;
	}
}


/* Footer */
.footer {
	background: url('../img/bg1.png');
	height: 80px;
	width: 100%;
}

.footer > .content > .column-left {
	width: 20%;
	display: inline-block;
	vertical-align: top;
	margin-top: 0px;
}

.footer > .content > .column-center {
	width: 70%;
	display: inline-block;
	vertical-align: top;
	margin-top: 0px;
}

.footer > .content > .column-center > a {
	color: #565c6a;
	display: inline-block;
	font-size: 14px;
	font-family: Museo Sans Cyrl-500;
	text-decoration: none;
	margin: 30px 0 0 50px;
}

.footer > .content > .column-center > a:hover {
	border-bottom: 1px solid #565c6a;
}

.footer > .content > .column-right {
	text-align: right;
	width: 10%;
	display: inline-block;
	vertical-align: top;
	margin-top: 0px;
}

.footer > .content > .column-left > .logo-footer {
	background: url('../img/logo-footer2.png');
	background-size: cover;
	background-position: center;
	height: 30px;
	width: 183px;
	display: inline-block;
	margin-top: 25px;
}

.footer > .content > .column-right > .telegram {
	background: url('../img/bg.png');
	height: 35px;
	width: 35px;
	display: inline-block;
	margin-top: 22.5px;
	border-radius: 90px;
	cursor: pointer;
}

.footer > .content > .column-right > .telegram > .icon-telegram {
	background: url('../img/icon-telegram.png');
	background-size: cover;
	background-position: center;
	height: 18px;
	width: 18px;
	display: inline-block;
	margin-top: 8.5px;
	margin-right: 9px;
}

@media screen and (max-width: 1025px) {
	.footer > .content {
		width: 90%;
	}
	
	.footer > .content > .column-left {
		width: 50%;
	}
	
	.footer > .content > .column-center {
		width: 0%;
		display: none;
	}
	
	.footer > .content > .column-right {
		width: 50%;
	}
	
	.footer > .content > .column-left > .logo-footer {
		background: url('../img/logo-footer-mobile2.png');
		background-size: cover;
		background-position: center;
		height: 27px;
		width: 165px;
	}
}