@charset "UTF-8";

/*
	1. core

	2. header

	3. sections
		3.1 block title
		3.2 block text
		3.3 block button

		3.4 section center

	4. templates page

	5. site management page

	6. footer
		6.1 social buttons

	7. main page

	8. ushop

	9. windows

	10. media
*/

/* 1. core */
* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
}

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	font-size: 16px;
	color: #313945;
}

.intro {
	width: 1200px;
	margin: 0 auto;
}

.user-select {
	-webkit-user-select: auto;
	-moz-user-select: auto;
	-ms-user-select: auto;
	user-select: auto;
}

code {
	background: #f7f7f7;
	display: inline-block;
	vertical-align: middle;
	color: #292929;
	padding: 8px 20px;
	font-family: 'Roboto', monospace, sans-serif;
	font-size: 16px;
	line-height: 20px;
	border-radius: 4px;
}

code.code-block {
	display: block;
	margin: 10px auto 20px;
}

/* 2. header */
header {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.logo {
	display: inline-block;
	vertical-align: middle;
	background: url('../images/logo.svg') no-repeat center left;
	height: 34px;
	background-size: contain;
	width: 34px;
	padding: 0;
	position: relative;
	margin: 0;
}

.main-menu .logo {
	transition: transform .25s ease;
	-webkit-transition: transform .25s ease;
}

.main-menu .logo:hover {
	transform: scale(1.12);
	-webkit-transform: scale(1.12);
}

.main-menu > .intro {
	clear: both;
	overflow: hidden;
}

.main-menu {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	position: fixed;
	z-index: 9;
	width: 100%;
	top: 0;
	left: 0;
	height: 56px;
	background: #F3F3F3;
	box-shadow: 0px 3px 18px 0px rgba(49, 57, 69, 0.15);
	overflow: hidden;
	transition: background .4s ease;
	-webkit-transition: background .4s ease;
}

.main-menu .menu-item {
	font-size: 13px;
	line-height: 16px;
	font-weight: 500;
	width: 140px;
	text-align: center;
	margin: 0;
	display: block;
	float: left;
	cursor: pointer;
	position: relative;
	height: 56px;
	padding: 12px 0 0;
	background: #F3F3F3;
	color: #313945;
	text-decoration: none;
	transition: background .5s ease;
	-webkit-transition: background .5s ease;
}

.main-menu .menu-item.menu-item--logo {
	padding: 10px 0 0 4px;
	width: 70px;
	text-align: left;
	cursor: default;
}

.main-menu .menu-item:hover {
	background: #e8e8e8;
	transition: background .5s ease;
	-webkit-transition: background .5s ease;
}

.main-menu .menu-item.menu-item--logo:hover {
	background: #F3F3F3;
}

.main-menu .menu-item.menu-item--orange {
	color: #F5A623;
	padding: 18px 0 0;
}

.main-menu .menu-item.menu-item--orange:after {
	content: '';
	width: 100%;
	height: 6px;
	position: absolute;
	bottom: 0;
	left: 0;
	background: #F5A623;
	transition: background .5s ease;
	-webkit-transition: background .5s ease;
}

.main-menu .menu-item.menu-item--orange.menu-item--active:after {
	background: #498BFA;
}

.main-menu .menu-item.menu-item--active {
	background: #498BFA;
	color: #ffffff;
}

.main-menu .menu-item.menu-item--active.menu-item--orange {
	background: #498BFA;
	color: #ffffff;
}

/* 3. sections */
.content {
	margin-top: 56px;
}

section {
	padding: 60px 0;
	position: relative;
	/*text-align: right;*/
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

section:nth-child(2n) {
	background: #FAFAFC;
}

section.peach {
	background: #FFEECE;
}

section.white {
	background: #ffffff;
}

section.blue {
	background: #488bfa;
	color: #ffffff;
}

section.blue .button {
	border: 2px solid #ffffff;
	color: #ffffff;
	background: transparent;
}

section.blue .button:hover {
	border: 2px solid #ffffff;
	color: #488bfa;
	background: #ffffff;
	box-shadow: 0px 5px 20px 0px rgba(255, 255, 255, 0.5);
}

section.blue .button:active {
	border: 2px solid #ffffff;
	color: #488bfa;
	background: #ffffff;
	box-shadow: 0px 5px 20px 0px rgba(255, 255, 255, 0.7);
}

.main-title {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 36px;
	line-height: 42px;
	letter-spacing: 0.5px;
	margin: 0 auto 50px;
	text-align: center;
	-webkit-user-select: auto;
	-moz-user-select: auto;
	-ms-user-select: auto;
	user-select: auto;
}

.block-content {
	display: inline-block;
	vertical-align: middle;
	text-align: left;
	width: 48%;
}

.block-image {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	width: 46%;
}

.block-image:after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.block-image img {
	display: inline-block;
	vertical-align: middle;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 500px;
}


.cp-new .block-image img {
	box-shadow: -2px 17px 40px rgba(7, 7, 7, 0.3);
}

section > .intro > div:first-child {
	margin-right: 4%;
}

.trangle {
	overflow: hidden;
	width: 100%;
	height: 200px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}

.trangle:before {
	content: '';
	width: 104%;
	height: 250px;
	background: #ffffff;
	display: block;
	transform: rotate(-4deg) translate(-50%, -100%);
	-webkit-transform: rotate(-4deg) translate(-50%, -100%);
	position: absolute;
	top: 0;
	left: 50%;
}

.trangle.inverse:before {
	transform: rotate(4deg) translate(50%, -100%);
	-webkit-transform: rotate(4deg) translate(50%, -100%);
	left: auto;
	right: 50%;
}

.trangle + .intro {
	position: relative;
	z-index: 1;
	padding-top: 50px;
}

/* 3.1 block title */
.block-title {
	display: block;
	width: 100%;
	letter-spacing: 0.5px;
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	font-size: 28px;
	line-height: 34px;
	margin: 0 auto 20px;
	-webkit-user-select: auto;
	-moz-user-select: auto;
	-ms-user-select: auto;
	user-select: auto;
}

.block-title:after {
	content: '';
	display: block;
	margin: 18px 0 24px;
	width: 60px;
	height: 3px;
	background: rgba(73, 139, 250, 0.5);
}

/* 3.2 block text */
.block-text {
	font-size: 16px;
	line-height: 28px;
	text-align: left;
	color: #85939d;
	-webkit-user-select: auto;
	-moz-user-select: auto;
	-ms-user-select: auto;
	user-select: auto;
}

/* 3.3. block button */
.block-button {
	margin: 40px 0 0;
}

.button {
	background: #488BFA;
	color: #ffffff;
	border: 2px solid;
	border-color: #488bfa;
	text-transform: uppercase;
	text-decoration: none;
	line-height: 16px;
	padding: 18px 40px;
	display: inline-block;
	border-radius: 10px;
	outline: none;
	font-size: 16px;
	font-family: 'Open Sans', sans-serif;
	font-weight: 600;
	letter-spacing: 0.5px;
	transition: background .2s ease, color .2s ease, border .2s ease, box-shadow .3s ease;
	-webkit-transition: background .2s ease, color .2s ease, border .2s ease, box-shadow .3s ease;
}

.button:hover {
	background: #69A1FF;
	border-color: #69A1FF;
	box-shadow: 0px 5px 20px 0px rgba(73, 139, 250, 0.5);
}

.button:active {
	background: #3979E3;
	border-color: #3979E3;
	box-shadow: 0px 5px 20px 0px rgba(73, 139, 250, 0.7);
}

.button.button--rounded {
	border-radius: 30px;
}

.button.button--transparent {
	background: transparent;
	border-color: #ffffff;
}

.button.button--transparent:hover {
	background: #ffffff;
	color: #488bfa;
	box-shadow: 0px 5px 20px 0px rgba(255, 255, 255, 0.3);
}

.button.button--transparent:active {
	background: #ffffff;
	color: #488bfa;
	box-shadow: 0px 5px 20px 0px rgba(255, 255, 255, 0.7);
}

/* 3.4. section center */
section.center {
	text-align: center;
}

section.center .block-content {
	width: 100%;
	text-align: center;
}

section.center > .intro > div:first-child {
	margin: 0;
}

section.center .block-title:after {
	content: none;
}

section.center .block-image {
	margin: 30px auto;
	width: auto;
	max-width: 70%;
}

.next-section {
	background: #E4EEFE;
	text-align: center;
	transition: background .25s ease;
	-webkit-transition: background .25s ease;
}

.next-section:hover {
	background: rgba(72, 139, 250, 0.3);
}

.next-section a {
	text-decoration: none;
	color: #313945;
	display: block;
	padding: 40px 0;
}

.whats-next {
	font-size: 18px;
	margin: 0 auto 8px;
}

.next-section-name {
	position: relative;
	display: inline-block;
}

.next-section-name span {
	font-size: 22px;
	text-decoration: none;
	font-weight: 600;
	display: inline-block;
	vertical-align: middle;
}

.next-section-name:after {
	content: '';
	background: url('../images/arrow_round.svg') no-repeat center;
	background-size: contain;
	width: 32px;
	height: 32px;
	display: inline-block;
	vertical-align: middle;
	margin: 4px 0 0 10px;
}

/* 4. templates page */
.templates-block {
	padding-bottom: 0;
}

section.templates-block > .intro > div:first-child {
	margin: 0;
}

.templates-blue {
	background: #D4F1FF;
	padding-bottom: 60px;
	margin-top: 150px;
	position: relative;
}

.templates-blue > .intro {
	padding-top: 0;
}

.templates-block-image {
	width: 80%;
	margin: 0 auto;
}

.templates-block-image img {
	margin: -100px auto 0;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	display: inline-block;
}

.categories {
	text-align: center;
	margin: 20px auto 0;
}

.categories-title {
	display: block;
	width: 100%;
	letter-spacing: 0.5px;
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	font-size: 28px;
	line-height: 34px;
	margin: 0 auto 30px;
	-webkit-user-select: auto;
	-moz-user-select: auto;
	-ms-user-select: auto;
	user-select: auto;
}

.category {
	display: inline-block;
	position: relative;
	padding: 0 0 0 26px;
	width: 22%;
	text-align: left;
	margin: 0 auto 18px;
	-webkit-user-select: auto;
	-moz-user-select: auto;
	-ms-user-select: auto;
	user-select: auto;
}

.category:before {
	content: '';
	background: url('../images/check.svg') no-repeat center;
	width: 16px;
	background-size: contain;
	height: 12px;
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

.templates-block .block-button {
	text-align: center;
}

/* 5. site management page */
.modules-slider {
	display: block;
	width: 900px;
	margin: 40px auto 0;
	text-align: left;
	border-radius: 10px;
	overflow: hidden;
}

.modules-names {
	color: #ffffff;
	float: left;
}

.module-item {
	display: block;
	margin: 0;
	padding: 0;
	cursor: pointer;
	position: relative;
}

.module-item:first-child {
	border-top-left-radius: 10px;
}

.module-item:last-child {
	border-bottom-left-radius: 10px;
}

.module-item span {
	display: block;
	margin: 0;
	padding: 12px 20px;
	background: #313945;
	position: relative;
	z-index: 1;
	transition: padding .2s ease, background .2s ease;
	-webkit-transition: padding .2s ease, background .2s ease;
}

.module-item:first-child span {
	border-top-left-radius: 10px;
}

.module-item:last-child span {
	border-bottom-left-radius: 10px;
}

.module-item:after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	border: 23px solid transparent;
	border-left: 17px solid;
	border-left-color: #313945;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transition: opacity .2s ease, visibility .2s ease, right .2s ease, border .1s ease;
}

.module-item:hover {
	background: #353e4a;
}

.module-item.active span {
	background: #488bfa;
	padding: 12px 10px 12px 30px;
}

.module-item.active:after {
	border-left-color: #488bfa;
	right: -40px;
	opacity: 1;
	visibility: visible;
}

.modules-features-intro {
	display: table;
	width: 100%;
	height: 100%;
	background: #ffffff;
}

.modules-features-list {
	display: table-cell;
	vertical-align: middle;
	width: 100%;
	padding: 10px 20px 10px 40px;
}

.modules-features-content {
	display: none;
}

.modules-features-content.active {
	display: block;
}

.module-feature {
	display: block;
	height: 40px;
	margin: 0 auto 16px;
	-webkit-user-select: auto;
	-moz-user-select: auto;
	-ms-user-select: auto;
	user-select: auto;
}

.module-feature:last-child {
	margin: 0 auto;
}

.module-feature span {
	display: inline-block;
	vertical-align: middle;
}

.module-feature *[class^="icon-"], *[class*=" icon-"] {
	display: inline-block;
	vertical-align: middle;
	font-size: 40px;
	color: #488bfa;
	margin: 0 10px 0 0;
	min-width: 42px;
	text-align: center;
}

/* 6. footer */
footer {
	/*border-top: 2px solid #e0e2e6;*/
	padding: 80px 0 60px;
	text-align: center;
	transition: opacity .3s ease-out;
	-webkit-transition: opacity .3s ease-out;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.logo-and-copyright {
	display: inline-block;
	vertical-align: top;
	margin: 0 30px 0 0;
}

.logo.logo--footer {
	background: url("https://www.ucoz.ru/ucoz/v3/images/logo-ukit.png") no-repeat 0 0;
	background-size: contain;
	width: 172px;
	height: 51px;
	display: block;
	margin-bottom: 20px;
}

.copyright, .copy-subtitle {
	display: block;
	text-align: left;
	color: #96999e;
	font-size: 13px;
	-webkit-user-select: auto;
	-moz-user-select: auto;
	-ms-user-select: auto;
	user-select: auto;
}

.copy-subtitle p {
	font-size: 13px !important;
}

.footer-menu {
	display: inline-block;
	vertical-align: top;
	text-align: left;
}

.footer-column {
	display: inline-block;
	vertical-align: top;
	padding: 0 44px;
}

.footer-column .footer-column__name {
	color: #222222;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1px;
	margin: 0 0 10px;
	-webkit-user-select: auto;
	-moz-user-select: auto;
	-ms-user-select: auto;
	user-select: auto;
}

.footer-column .footer-column__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-column .footer-column__list li {
	font-size: 14px;
	margin: 0 0 8px;
}

.footer-column .footer-column__list li:last-child {
	margin: 0;
}

.footer-column .footer-column__list li a {
	color: #444444;
	text-decoration: none;
	transition: color .2s ease;
	-webkit-transition: color .2s ease;
	-webkit-user-select: auto;
	-moz-user-select: auto;
	-ms-user-select: auto;
	user-select: auto;
}

.footer-column .footer-column__list li a:hover,
.footer-column .footer-column__list li a:focus {
	color: #488bfa;
}

/* 6.1 social buttons */
.social-buttons {
	display: block;
	overflow: hidden;
	margin: 20px 0 0;
}

.social-buttons .social-buttons__button {
	display: block;
	float: left;
	width: 34px;
	height: 34px;
	background: #444444;
	color: #ffffff;
	text-align: center;
	font-size: 20px;
	line-height: 1px;
	margin: 0;
	text-decoration: none;
	transition: background .25s ease;
	-webkit-transition: background .25s ease;
}

.social-buttons .social-buttons__button > i {
	line-height: 34px;
}

.social-buttons .social-buttons__button:first-child {
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
}

.social-buttons .social-buttons__button:last-child {
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
}

.social-buttons .social-buttons__button.social-buttons__button--vk {
	background: #4D75A3;
}

.social-buttons .social-buttons__button.social-buttons__button--vk:hover,
.social-buttons .social-buttons__button.social-buttons__button--vk:focus {
	background: #6a8fb9;
}

.social-buttons .social-buttons__button.social-buttons__button--fb {
	background: #3B5998;
}

.social-buttons .social-buttons__button.social-buttons__button--fb:hover,
.social-buttons .social-buttons__button.social-buttons__button--fb:focus {
	background: #4c70ba;
}

.social-buttons .social-buttons__button.social-buttons__button--tw {
	background: #55ACEE;
}

.social-buttons .social-buttons__button.social-buttons__button--tw:hover,
.social-buttons .social-buttons__button.social-buttons__button--tw:focus {
	background: #83c3f3;
}

.social-buttons .social-buttons__button.social-buttons__button--gp {
	background: #DC4E41;
}

.social-buttons .social-buttons__button.social-buttons__button--gp:hover,
.social-buttons .social-buttons__button.social-buttons__button--gp:focus {
	background: #e4766c;
}

.social-buttons .social-buttons__button.social-buttons__button--ok {
	background: #E67E17;
}

.social-buttons .social-buttons__button.social-buttons__button--ok:hover,
.social-buttons .social-buttons__button.social-buttons__button--ok:focus {
	background: #ec9844;
}

/* 7. main page */
.main-page {
	height: 100%;
	background: #263757;
}

.main-page .content {
	color: #ffffff;
	position: relative;
	z-index: 2;
	margin: 0;
	padding: 40px 0 0;

	height: 100%;
	display: flex;
	width: 100%;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}

.main-page .pattern {
	width: 100%;
	height: 100%;
	position: fixed;
	background: #000;
	opacity: 0.3;
	top: 0;
	left: 0;
	z-index: 1;
	transition: opacity 1s ease;
	-webkit-transition: opacity 1s ease;
}

.main-page .bg {
	background-image: url('../images/bg.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 0;
}

.main-page header {
	text-align: center;
	padding: 0;
}

.main-page-title {
	width: 80%;
	font-size: 36px;
	line-height: 42px;
	font-weight: 400;
	letter-spacing: 0.5px;
	text-align: center;
	margin: 40px auto;
	transition: background .2s ease;
	-webkit-transition: background .2s ease;
}

.main-page-descr {
	font-size: 18px;
	text-align: center;
	font-weight: 400;
	line-height: 22px;
	margin: 0 auto 50px;
}

.main-page .logo {
	font-size: 24px;
	white-space: nowrap;
	width: auto;
	background: url('../images/logo_blue.svg') no-repeat center left;
	background-size: contain;
	height: 60px;
	padding: 0 0 0 70px;
	line-height: 60px;
	cursor: default;
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	letter-spacing: 1.5px;
}

.main-page-nav-new {
	text-align: center;
	margin: 20px auto;
	width: 860px;
}

.main-page-nav-new > .intro {
	width: 100%;
}

.nav-item-new {
	display: inline-block;
	vertical-align: top;
	position: relative;
	width: 180px;
	height: 180px;
	text-align: center;
	margin: 0 40px 40px 0;
	padding: 20px;
	background: #ffffff;
	border-radius: 4px;
	color: #313945;
	text-decoration: none;
	transition: transform .2s ease;
	-webkit-transition: transform .2s ease;
}

.nav-item-new:nth-child(n+5) {
	margin: 0 40px 0 0;
}

.nav-item-new:nth-child(4) {
	margin: 0 0 40px 0;
}

.nav-item-new:last-child {
	margin: 0;
}

.nav-item-new:hover {
	transform: scale(1.075);
	-webkit-transform: scale(1.075);
}

.nav-item-icon {
	transition: color .3s ease;
	-webkit-transition: color .3s ease;
}

.nav-item-name {
	transition: color .3s ease;
	-webkit-transition: color .3s ease;
}

.nav-item-new:hover .nav-item-icon {
	color: #488bfa;
}

.nav-item-new:hover .nav-item-name {
	color: #488bfa;
	font-weight: 500;
}

.nav-item-new-intro {
	display: table;
	width: 100%;
	height: 100%;
}

.mav-item-new-content {
	display: table-cell;
	vertical-align: middle;
}

.main-page-before-nav {
	margin: 10px auto 30px;
	text-align: center;
}

.nav-item-icon {
	font-size: 60px;
	color: #9B9B9B;
	transition: color .2s ease;
	-webkit-transition: color .2s ease;
}

.nav-item.nav-item--orange .nav-item-icon {
	color: #F5A623;
}

.nav-item-name {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	display: table;
	width: 100%;
	font-size: 14px;
	min-height: 40px;
	transition: font-weight .2s ease;
	-webkit-transition: font-weight .2s ease;
}

.nav-item-name span {
	display: table-cell;
	vertical-align: middle;
}

.nav-item:hover {
	background: #ffffff;
	padding: 24px 14px;
	margin: 0 0;
	border-radius: 8px;
	box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.2);
	z-index: 2;
}

.nav-item:hover:before {
	opacity: 0;
}

.nav-item:hover + .nav-item:before {
	opacity: 0;
}

.nav-item:hover:after {
	height: 8px;
}

.nav-item.nav-item--orange:after,
.nav-item.nav-item--orange:hover:after {
	background: #F5A623;
}

.nav-item:hover .nav-item-icon {
	color: #488bfa;
}

.nav-item.nav-item--orange:hover .nav-item-icon {
	color: #F5A623;
}

.nav-item:hover .nav-item-name {
	font-weight: 500;
}

.main-page-counts {
	width: 100%;
	background: rgba(34, 195, 128, 0.21);
	margin: 60px auto 50px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center 0%;
	text-align: center;
	position: relative;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.main-page-counts-title {
	display: none;
	margin: 40px auto 0;
	font-size: 24px;
}

.main-page-counts > .intro {
	position: relative;
	z-index: 1;
}

.main-page-counts .count-item {
	display: inline-block;
	vertical-align: middle;
	width: 22%;
	text-align: center;
	padding: 40px 0;
	position: relative;
}

.main-page-counts .count-item:last-child {
	width: 30%;
}

.main-page-counts .count-item:after {
	content: '';
	display: block;
	width: 1px;
	height: 50%;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	background: #ffffff;
}

.main-page-counts .count-item:last-child:after {
	content: none;
}

.main-page-counts .count-item-big {
	font-size: 72px;
	font-family: 'Roboto', sans-serif;
	font-weight: 600;
	letter-spacing: 0;
	display: inline-block;
	vertical-align: middle;
	-webkit-user-select: auto;
	-moz-user-select: auto;
	-ms-user-select: auto;
	user-select: auto;
}

.main-page-counts .count-item-small {
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	font-weight: 400;
	display: inline-block;
	vertical-align: top;
	max-width: 80px;
	text-align: left;
	margin: 0 0 0 6px;
	-webkit-user-select: auto;
	-moz-user-select: auto;
	-ms-user-select: auto;
	user-select: auto;
}

.main-page-counts-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center 100%;
}

.main-page-create {
	margin: 50px auto 0;
	text-align: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.main-page-create-text {
	display: inline-block;
	vertical-align: middle;
	font-size: 20px;
	margin: 0 20px 0 0;
	letter-spacing: 0.5px;
	-webkit-user-select: auto;
	-moz-user-select: auto;
	-ms-user-select: auto;
	user-select: auto;
}

.main-page-create-button {
	display: inline-block;
	vertical-align: middle;
}

.main-page-create-button .button {
	text-transform: inherit;
	font-size: 20px;
	font-weight: 600;
	line-height: 1;
	padding: 18px 40px;
	border-radius: 30px;
}

.main-page-create-button.cloned {
	position: absolute;
	top: 46px;
	right: 40px;
}

.main-page-create-button.cloned .button {
	padding: 14px 30px;
	background: transparent;
	border: 2px solid #488BFA;
}

.main-page-create-button.cloned .button:hover {
	background: #488BFA;
}

.main-page-guid {
	margin: 0 auto;
	padding: 0 20px;
}

.main-page-guid a {
	display: inline-block;
	color: #ffffff;
	padding: 0;
	text-decoration: underline;
	font-weight: 600;
	border-radius: 30px;
	text-align: center;
	line-height: 24px;
}

.main-page-guid a:hover {
	text-decoration: none;
}

.main-page footer {
	border: none;
	padding: 0;
	margin: 50px 0;
}

.main-page .social-buttons {
	overflow: auto;
	margin: 0;
	cursor: default;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.social-button {
	font-size: 45px;
	text-decoration: none;
	color: rgba(255, 255, 255, 0.8);
	display: inline-block;
	vertical-align: middle;
	margin: 0 6px 0 0;
	cursor: pointer;
	transition: color .2s ease;
	-webkit-transition: color .2s ease;
}

.social-button i {
	display: block;
}

.social-button:hover {
	color: #ffffff;
}

.social-button:last-child {
	margin: 0;
}

/* 8. ushop */
.block-text ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: block;
}

.block-text ul li {
	display: block;
	position: relative;
	padding: 0 0 0 30px;
	margin: 0 auto 14px;
	line-height: 24px;
}

.block-text ul li:last-child {
	margin: 0;
}

.block-text ul li:before {
	content: '';
	width: 14px;
	height: 14px;
	background: #488bfa;
	display: block;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.centered {
	text-align: center;
}

.ushop-triple-block {
	text-align: center;
	margin: 60px auto;
}

.ushop-triple-item {
	width: 32%;
	display: inline-block;
	vertical-align: top;
	padding: 0 14px;
}

.ushop-triple-item-icon {
	font-size: 80px;
	color: #488bfa;
	margin: 0 auto 20px;
}

.ushop-triple-item-text {
	font-size: 18px;
}

.ushop-payment-block {
	margin: 50px auto 0;
	text-align: center;
}

.ushop-payment-item {
	display: inline-block;
	width: 18%;
	vertical-align: top;
	margin: 0 1% 60px 0;
}

.ushop-payment-item:nth-child(5),
.ushop-payment-item:last-child {
	margin: 0 0 60px 0;
}

.ushop-payment-item-image {
	display: block;
	margin: 0 auto 20px;
	height: 100px;
	position: relative;
}

.ushop-payment-item-image:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.ushop-payment-item-image img {
	width: auto;
	height: auto;
	max-width: 94%;
	max-height: 94%;
	display: block;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
}

.ushop-payment-item-name {
	font-weight: 600;
	font-size: 14px;
	-webkit-user-select: auto;
	-moz-user-select: auto;
	-ms-user-select: auto;
	user-select: auto;
}

.ushop-integrations-block {
	margin: 50px auto 40px;
	text-align: center;
}

.ushop-integration {
	display: inline-block;
	position: relative;
	border-radius: 8px;
	width: 22%;
	vertical-align: middle;
	background: #ffffff;
	box-shadow: 0px 0px 3px 0px rgba(88, 109, 133, 0.55);
	height: 120px;
	margin: 0 2% 2% 0;
	/*transition: box-shadow .25s ease;*/
	/*-webkit-transition: box-shadow .25s ease;*/
}

.ushop-integration:nth-child(4),
.ushop-integration:nth-child(8),
.ushop-integration:nth-child(12),
.ushop-integration:last-child {
	margin-right: 0;
}

.ushop-integration img {
	width: auto;
	height: auto;
	max-width: 94%;
	max-height: 94%;
	display: block;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
}

.ushop-integration:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*.ushop-integration:hover {*/
/*box-shadow: 0px 0px 12px 0px rgba(88, 109, 133, 0.3);*/
/*}*/

.ushop-export-list {
	font-size: 20px;
}

.ushop-export-list span {
	display: inline-block;
	vertical-align: middle;
}

.ushop-export-list i {
	font-size: 48px;
	display: inline-block;
	vertical-align: middle;
	margin: 0 4px 0;
}

.ushop-export-list p {
	margin: 0 auto 40px;
}

.ushop-export-list p:last-child {
	margin: 0 auto 10px;
}

.ushop-examples {
	margin: 50px auto;
}

.ushop-example {
	display: inline-block;
	vertical-align: middle;
	position: relative;
	width: 458px;
	height: 258px;
	margin: 0 4% 4% 0;
	box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.2);
	border-radius: 4px;
}

.ushop-example:nth-child(2n) {
	margin: 0 0 4% 0;
}

.ushop-example-logo {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 65%;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	transition: opacity .35s ease, visibility .35s ease;
	-webkit-transition: opacity .35s ease, visibility .35s ease;
}

.ushop-example-logo img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
}

.ushop-example-screen {
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 4px;
	box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.2);
	transition: opacity .6s ease, visibility .6s ease;
	-webkit-transition: opacity .6s ease, visibility .6s ease;
}

.ushop-example-screen img {
	display: inline-block;
	vertical-align: middle;
	max-width: 100%;
	max-height: 100%;
}

.ushop-example-name {
	display: table;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 35%;
	font-size: 18px;
	font-weight: 600;
	background: rgba(0, 0, 0, 0.3);
	color: #ffffff;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
	transition: opacity .35s ease, visibility .35s ease;
	-webkit-transition: opacity .35s ease, visibility .35s ease;
}

.ushop-example-name span {
	display: table-cell;
	vertical-align: middle;
}

.ushop-example:hover .ushop-example-logo {
	opacity: 0;
	visibility: hidden;
}

.ushop-example:hover .ushop-example-name {
	opacity: 0;
	visibility: hidden;
}

.ushop-example:hover .ushop-example-screen {
	opacity: 1;
	visibility: visible;
}

/* 9. windows */
.window {
	display: none;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9;
	background: rgba(0, 0, 0, 0.65);
}

.window-block {
	background: #ffffff;
	display: block;
	width: 500px;
	margin: 0 auto;
	position: relative;
	top: 40%;
	padding: 30px 30px 40px;
	text-align: center;
	border-radius: 10px;
	box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.5);
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

.window-close {
	position: absolute;
	top: 6px;
	right: 6px;
	color: #E0E1E5;
	cursor: pointer;
	font-size: 20px;
	width: 28px;
	height: 28px;
	line-height: 28px;
	transition: color .2s ease;
	-webkit-transition: color .2s ease;
}

.window-close:before {
	font-family: 'uTour-front';
	content: "\f00d";
}

.window-close:hover {
	color: #adafb7;
}

.window-title {
	margin: 0 auto 40px;
	font-size: 16px;
	text-align: left;
	position: relative;
}

.window-title:after {
	content: '';
	display: block;
	width: 20%;
	height: 1px;
	background: #e0e1e5;
	position: absolute;
	bottom: -12px;
	left: 0;
}

.guid-current-block {
	display: none;
	margin: 0 auto 30px;
	position: relative;
}

.guid-current-block-intro {
	position: relative;
	background: #e0e1e5;
	border-radius: 8px;
	padding: 14px 24px 16px;
	display: inline-block;
}

.guid-current-remove {
	cursor: pointer;
	position: absolute;
	top: -12px;
	right: -12px;
	display: block;
	width: 26px;
	height: 26px;
	background: #313945;
	color: #ffffff;
	border-radius: 50%;
	font-size: 15px;
	line-height: 26px;
	text-align: center;
	transform: scale(1);
	-webkit-transform: scale(1);
	transition: transform .2s ease;
	-webkit-transition: transform .2s ease;
}

.guid-current-remove:before {
	font-family: 'uTour-front';
	content: "\f00d";
}

.guid-current-remove:hover {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
}

.guid-current span {
	display: block;
	margin: 0 auto 4px;
}

.guid-current div {
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
}

.guid-field-block {
	display: inline-block;
}

.guid-field {
	padding: 10px 14px;
	border-radius: 8px;
	outline: none;
	border: 2px solid;
	border-color: #d8dcde;
	background: #ffffff;
	color: #6c7177;
	display: inline-block;
	vertical-align: middle;
	font-size: 15px;
	width: 150px;
	letter-spacing: 1px;
	transition: border .2s ease;
	-webkit-transition: border .2s ease;
}

.guid-field:hover {
	border-color: #c3c4c5;
}

.guid-field:focus {
	border-color: #488bfa;
}

.guid-apply-link {
	background: #488bfa;
	color: #ffffff;
	display: inline-block;
	vertical-align: middle;
	text-decoration: none;
	font-weight: 400;
	padding: 9px 28px 10px;
	margin: 0 0 0 10px;
	border-radius: 8px;
}

.guid-warning {
	opacity: 0;
	visibility: hidden;
	font-size: 13px;
	color: #d88e8e;
	margin: 5px 0 0 1px;
	text-align: left;
	transition: opacity .25s ease, visibility .25s ease;
	-webkit-transition: opacity .25s ease, visibility .25s ease;
}

.guid-help {
	margin;
	20px auto 0;
}

.guid-help a {
	font-size: 12px;
	color: #313945;
}

.guid-help a:hover {
	text-decoration: none;
}

/* 10. media */
@media only screen and (max-width: 1200px), only screen and (max-device-width: 1200px) {

	.intro {
		width: 1000px;
	}

	.block-title {
		font-size: 24px;
		line-height: 30px;
	}

	.block-text {
		font-size: 15px;
		line-height: 24px;
	}

	.main-title {
		font-size: 32px;
		line-height: 38px;
	}

	.block-image img {
		max-height: 450px;
	}

	/* templates page */
	.templates-block-image {
		width: 90%;
	}

	.category {
		width: 32%;
	}

	/* footer */
	.only-desktop {
		display: none;
	}

	/* main page */
	.main-page-title {
		width: 100%;
	}

	.main-page-counts .count-item-big {
		font-size: 60px;
	}

}

@media only screen and (max-width: 1024px), only screen and (max-device-width: 1024px) {

	.intro {
		width: 800px;
	}

	.button {
		line-height: 14px;
		padding: 14px 30px;
		border-radius: 7px;
		font-size: 14px;
	}

	/* templates page */
	.templates-block-image {
		width: 100%;
	}

	.category {
		font-size: 14px;
	}

	/* site management page */
	.modules-slider {
		width: 760px;
		max-width: 100%;
	}

	.module-item span {
		padding: 10px 20px;
		font-size: 14px;
	}

	.module-item.active span {
		padding: 10px 10px 10px 28px;
	}

	.module-item:after {
		border: 20px solid transparent;
		border-left: 12px solid;
	}

	.module-item.active:after {
		right: -32px;
	}

	.module-feature {
		height: 30px;
		font-size: 14px;
		margin: 0 auto 18px;
	}

	.module-feature *[class^="icon-"], *[class*=" icon-"] {
		font-size: 30px;
		min-width: 32px;
	}

	.module-feature span {
		width: calc(100% - 50px);
	}

	/* footer */
	.no-low-width {
		display: none;
	}

	/* main page */
	.main-page-nav-new {
		width: 760px;
	}

	.nav-item-new {
		width: 150px;
		height: 150px;
		padding: 12px;
	}

	.nav-item-icon {
		font-size: 50px;
	}

	.nav-item-new:hover {
		transform: scale(1.055);
		-webkit-transform: scale(1.055);
	}

	.main-page-title {
		font-size: 28px;
		line-height: 38px;
		margin: 40px auto 28px;
	}

	.main-page-counts .count-item-big {
		font-size: 48px;
	}

	/* ushop */
	.ushop-triple-item {
		padding: 0 10px;
	}

	.ushop-triple-item-icon {
		font-size: 68px;
		margin: 0 auto 10px;
	}

	.ushop-triple-item-text {
		font-size: 14px;
	}

	.ushop-payment-item {
		width: 32%;
		margin: 0 1% 40px 0;
	}

	.ushop-payment-item:nth-child(3n) {
		margin: 0 0 40px 0;
	}

	.ushop-payment-item:last-child {
		margin: 0;
	}

	.ushop-payment-item-image img {
		max-width: 80%;
		max-height: 80%;
	}

	.ushop-integration {
		width: 31%;
	}

	.ushop-integration:nth-child(3n) {
		margin: 0 0 2% 0 !important;
	}

	.ushop-integration:nth-child(4), .ushop-integration:nth-child(8), .ushop-integration:nth-child(12), .ushop-integration:last-child {
		margin-right: 2%;
	}

	.ushop-integration:last-child {
		margin: 0;
	}

	.ushop-integration img {
		max-width: 80%;
		max-height: 80%;
	}

	.ushop-example,
	.ushop-example:nth-child(2n) {
		margin: 0 0 6% 0;
	}

	.ushop-example:last-child {
		margin: 0;
	}

}

@media only screen and (max-width: 820px), only screen and (max-device-width: 820px) {

	.intro {
		width: 100%;
		margin: 0 auto;
		padding: 0 40px;
	}

	.block-image {
		width: 100%;
		display: block;
	}

	.block-content {
		width: 100%;
		text-align: center;
	}

	.block-title {
		display: inline-block;
		width: auto;
		text-align: center;
	}

	section > .intro > div:first-child {
		margin: 0;
	}

	section.center .block-image {
		max-width: 90%;
	}

	.block-button {
		margin: 50px 0 0;
	}

	.button {
		font-size: 16px;
		line-height: 16px;
		padding: 18px 40px;
		border-radius: 10px;
	}

	.block-text {
		font-size: 16px;
		line-height: 26px;
	}

	.next-section-name:after {
		display: block;
		margin: 14px auto 0;
	}

	.main-title {
		font-size: 28px;
		line-height: 32px;
	}

	/* main page */
	.main-page-title {
		background: rgba(0, 0, 0, 0.5);
		font-size: 18px;
		line-height: 24px;
		padding: 14px 14px 16px;
		border-radius: 6px;
		margin: 40px auto;
	}

	.main-page-descr {
		font-size: 16px;
	}

	.main-page-counts {
		background: transparent;
		padding: 0 20px;
		margin: 24px auto 50px;
	}

	.main-page-counts-title {
		display: block;
	}

	.main-page-counts > .intro {
		background: #22C380;
		border-radius: 6px;
	}

	.main-page-counts .count-item {
		width: 30%;
		padding: 20px 0;
	}

	.main-page-counts .count-item:last-child {
		width: 100%;
		display: block;
	}

	.main-page-counts .count-item:last-child:before {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		background: rgba(255, 255, 255, 0.5);
		width: 90%;
		height: 1px;
	}

	.main-page-counts .count-item:after {
		content: none;
	}

	.main-page-create-text {
		display: block;
		width: 100%;
		margin: 0 auto 30px;
	}

	.main-page header {
		text-align: left;
		width: 100%;
	}

	.main-page-nav-new {
		width: 600px;
	}

	.main-page-nav-new > .intro {
		padding: 0;
	}

	.nav-item-new {
		width: 130px;
		height: 130px;
		padding: 10px;
		margin: 0 20px 20px 0;
	}

	.nav-item-icon {
		font-size: 42px;
	}

	.nav-item-name {
		font-size: 12px;
		min-height: 32px;
	}

	.nav-item-new:nth-child(n+5) {
		margin: 0 20px 0 0;
	}

	.nav-item-new:nth-child(4) {
		margin: 0 0 20px 0;
	}

	.nav-item-new:last-child {
		margin: 0;
	}

	.nav-item-new:hover {
		transform: scale(1.055);
		-webkit-transform: scale(1.05);
	}

	.main-page header {
		text-align: center;
	}

	/* templates page */
	.category {
		vertical-align: middle;
		width: 48%;
	}

	/* footer */
	.no-mobile {
		display: none;
	}

}

@media only screen and (max-width: 640px), only screen and (max-device-width: 640px) {

	.button {
		font-size: 14px;
		line-height: 16px;
		padding: 14px 30px;
		border-radius: 6px;
	}

	.button.button--rounded {
		border-radius: 80px;
	}

	.block-button {
		margin: 40px 0 0;
	}

	.block-image {
		margin: 0 auto 40px;
	}

	.main-page header {
		text-align: center;
	}

	.main-page-create-button.cloned {
		position: static;
		top: auto;
		right: auto;
		margin: 0 auto 50px;
	}

	.main-page-create-button.cloned .button {
		background: #488bfa;
		border: none;
		padding: 14px 40px;
	}

	.nav-item-icon {
		display: inline-block;
		vertical-align: middle;
		margin: 0 10px 0 0;
		min-width: 62px;
		color: #7A9ECE;
		text-align: center;
	}

	.nav-item-name {
		display: inline-block;
		vertical-align: middle;
		width: auto;
		min-height: auto;
		font-size: 16px;
		max-width: 72%;
	}

	.main-page-nav-new {
		width: 100%;
	}

	.nav-item-new {
		width: 200px;
		height: 200px;
	}

	.nav-item-new:nth-child(2n) {
		margin: 0 0 20px 0;
	}

	.nav-item-new:last-child {
		margin: 0 0 20px 0;
	}

	.nav-item-icon {
		font-size: 60px;
		display: block;
		margin: 0 auto 10px;
	}

	.nav-item-name {
		font-size: 15px;
		min-height: 40px;
	}

	.nav-item-name {
		max-width: 100%;
	}

	.window-block {
		width: 92%;
		top: 45%;
	}

	.main-page-counts .count-item {
		width: 100%;
	}

	.main-page-counts .count-item:before {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		background: rgba(255, 255, 255, 0.5);
		width: 90%;
		height: 1px;
	}

	.main-page-counts .count-item:first-child:before {
		content: none;
	}

	.main-title {
		font-size: 22px;
		line-height: 24px;
	}

	section {
		padding: 40px 0;
	}

	.templates-blue {
		margin-top: 90px;
	}

	.templates-block-image img {
		margin: -50px auto 0;
	}

	.no-low-mobile {
		display: none;
	}

	.logo-and-copyright {
		margin: 0;
	}

	.ushop-triple-item {
		width: 100%;
		margin: 0 auto 40px;
	}

	.ushop-triple-item:last-child {
		margin: 0;
	}

	.ushop-payment-item-name {
		display: none;
	}

	.ushop-payment-item-image {
		height: 50px;
		margin: 0;
	}

	.ushop-payment-item {
		width: 48%;
		margin: 0 0 40px 0 !important;
	}

	.ushop-integration {
		width: 47%;
		margin: 0 2% 4% 0 !important;
	}

	.ushop-integration:nth-child(3n) {
		margin: 0 2% 4% 0 !important;
	}

	.ushop-example {
		width: 100%;
		height: 200px;
	}

	.ushop-example-logo {
		height: 70%;
	}

	.ushop-example-name {
		height: 30%;
		font-size: 15px;
	}

	.ushop-example-logo img {
		max-width: 80%;
		max-height: 80%;
	}

}

@media only screen and (max-width: 520px),
only screen and (max-device-width: 520px) {

	.nav-item-new {
		width: 150px;
		height: 150px;
		margin: 0 10px 12px 0;
	}

	.nav-item-new:nth-child(2n) {
		margin: 0 0 12px 0 !important;
	}

	.nav-item-new:nth-child(n+5) {
		margin: 0 10px 12px 0;
	}

	.nav-item-icon {
		font-size: 50px;
		color: #488bfa;
	}

	.nav-item-new:hover {
		transform: none;
		-webkit-transform: none;
	}

	.nav-item-name {
		font-size: 14px;
	}

	.nav-item-new:hover .nav-item-name {
		font-weight: 400;
	}

	.button {
		line-height: 22px;
	}

	.main-page-create-button .button {
		line-height: 26px;
	}

	.guid-field {
		display: block;
		width: 100%;
	}

	.guid-apply-link {
		display: block;
		width: 100%;
		margin: 9px auto 0;
	}

	.main-page-create-button {
		padding: 0 20px;
	}

	.main-page-create-button .button {
		border-radius: 60px;
	}

}

@media only screen and (max-width: 400px), only screen and (max-device-width: 400px) {

	.intro {
		padding: 0 20px;
	}

	.main-page .logo {
		font-size: 18px;
		height: 50px;
		padding: 0 0 0 60px;
		line-height: 50px;
	}

	.main-page-title {
		font-size: 16px;
		margin: 40px auto 30px;
	}

	.main-page-descr {
		margin: 0 auto 40px;
	}

	.nav-item-icon {
		min-width: 60px;
		font-size: 40px;
	}

	.block-title {
		font-size: 20px;
		line-height: 24px;
	}

	.block-text {
		font-size: 16px;
		line-height: 22px;
	}

}
