:root {
	--primary: #242424;
	--primary-80: rgba(156, 48, 254, 0.8);
	--primary-light: #a25fde;

	--secondary: #071d2b;
	--secondary-light: #60a8f3;

	--bg: #f7fafc;
	--text-color: #071d2b;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
	display: block;
}
a {
	color: #000;
	text-decoration: underline;
}
a:hover {
	text-decoration: none;
}
a, img {
	border: none;
}
a, input:focus, button:focus, textarea:focus, select:focus {
	outline: none;
}
button {
	cursor: pointer;
}
body {
	background: var(--bg);
	color: var(--text-color);
	font: 16px/1.4 Inter, Arial, Tahoma, sans-serif;
}

.bg-w {
	background: #fff;
}

.wrapper {
	width: 100%;
	overflow: hidden;
	text-align: center;
}
.container {
	max-width: 1280px;
	margin: 0 auto;
	padding-left: 15px;
	padding-right: 15px;
}
.container:after,
.cla:after {
	content: '';
	clear: both;
	display: block;
}

.cl {
	clear: both;
	display: block;
}
img {
	user-select: none;
}

.pic {
	display: block;
	max-width: 100%;
	margin: 0 auto;
}

h1, h2, h3 {
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 1px;
}

h2 {
	font-size: 30px;
}
.no-uppper {
	text-transform: none;
}

ul {
	list-style: inside;
}

.btn {
	display: inline-block;
	padding: 0 32px;
	background: var(--primary);
	border: none;
	border-radius: 8px;
	color: #fff;
	font-size: 20px;
	line-height: 64px;
	font-weight: bold;
	text-decoration: none;
	box-shadow: 0 0 32px rgba(0, 0, 0, 0.25);
}
.btn:hover {
	background: var(--primary-light);
}
.btn-w {
	background: #fff;
	color: var(--primary);
}
.btn-w:hover {
	background: rgba(255, 255, 255, 0.9);
}
.btn-b {
	background: var(--secondary);
}
.btn-b:hover {
	background: var(--secondary-light);
}

.btn-lg {
	padding: 0 48px;
	border-radius: 12px;
	font-size: 32px;
	line-height: 80px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.text-center {
	text-align: center;
}

.text-right-rtl {
	text-align: right;
	direction: rtl;
}

.s-desc {
	font-size: 18px;
	margin-bottom: 30px;
}


/* header
*************************************************/
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	padding: 15px 0;
	background: rgba(255, 255, 255, 0.5);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	z-index: 999;
}
.logo {
	float: left;
}
.logo a {
	text-decoration: none;
}
.logo img {
	display: block;
	width: 120px;
	float: left;
}
/*
.logo a:after {
	content: attr(data-name);
	line-height: 32px;
	margin-left: 6px;
}
*/
.menu {
	float: right;
	width: 32px;
	height: 32px;
	padding-top: 4px;
	cursor: pointer;
}
.menu div {
	height: 3px;
	background: #000;
}
.menu div + div {
	margin-top: 4px;
}

.modal-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #f5f5f5;
	padding: 48px 20px;
	z-index: 9999;
	display: none;
}
.modal-nav.open {
	display: block;
}
.modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 48px;
	font-size: 40px;
	line-height: 48px;
	cursor: pointer;
}
.nav {
	max-width: 320px;
	margin: 0 auto;
	font-size: 24px;
	text-align: left;
	font-weight: bold;
}
.nav-name {
	color: var(--primary);
	margin-bottom: 25px;
}
.nav-link {
	display: block;
	font-size: 16px;
	text-decoration: none;
}
.nav-link + .nav-link {
	margin-top: 10px;
}
.nav-link:hover {
	color: #666;
}


/* main
*************************************************/
.main {
	min-height: 100vh;
	background: #fff;
	padding-top: 100px;
}
.main h1 {
	font-size: 42px;
	margin-bottom: 25px;
}
.main h1 span {
 	position: relative;
 	z-index: 1;
}
.main h1 span:before {
	content: '';
	position: absolute;
	z-index: -1;
	width: 105%;
	height: 61%;
	bottom: 4px;
	left: 50%;
	top: calc(39% - 4px);
	transform: translateX(-50%);
	background: url("../images//brush.svg") no-repeat;
	background-position-x: 0%;
	background-position-y: 0%;
	background-size: auto;
	background-position: center;
	background-size: 100% 100%;
}
.main-desc {
	margin-top: 25px;
	margin-bottom: 50px;
}
.main-desc h2 {
	margin-bottom: 25px;
}
.main-desc p + p {
	margin-top: 15px;
}
.main-desc ul {
	margin-top: 20px;
}
.main-pic {
	display: block;
	max-width: 100%;
	margin: 0 auto 15px;
}


/* benefits
*************************************************/
.benefits {
	background: #fff;
	padding: 50px 0 20px;
	text-align: center;
}
.benefits .container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.benefit {
	background: #fff1e5;
	border-radius: 24px;
	padding: 32px 24px;
}
.benefit img {
	display: block;
	height: 64px;
	margin: 0 auto 20px;
}
.benefit strong {
	display: block;
	font-size: 18px;
	margin-bottom: 12px;
}

/* why
*************************************************/
.why {
	padding: 50px 0;
	text-align: center;
}
.why h2 {
	margin-bottom: 15px;
}
.why .s-desc {}
.why-item {
	display: inline-block;
	vertical-align: top;
	width: 40%;
	padding: 0 15px;
}
.why-item img {
	display: block;
	margin: 0 auto 20px;
}
.why-item strong {
	display: block;
	font-size: 22px;
	margin-bottom: 16px;
}



/* cover
*************************************************/
.cover {
	padding: 50px 0;
}
.cover-wrap {
	background: url('../images/phone-bg.jpg') center center no-repeat;
	background-size: cover;
	border-radius: 30px;
	padding: 50px 40% 50px 50px;
	color: #fff;
	text-align: left;
	text-shadow: 0 0 2px #000;
}
.cover h2 {
	margin: 25px 0;
}
.cover ul {
	margin-top: 15px;
}



/* content
*************************************************/
.content {
	padding: 50px 0;
}
.content h2 {
	margin-bottom: 25px;
}
.content-item {
	display: inline-block;
	vertical-align: top;
	width: 24%;
	padding: 0 10px;
	margin-bottom: 25px;
}
.content-pic {
	display: block;
	margin: 0 auto 15px;
}
.content-title {
	color: #000;
	margin-bottom: 8px;
}

/* work
*************************************************/
.works {
	padding: 50px 0;
	background: #071d2b;
	color: #fff;
}

/* work
*************************************************/
.work {
	padding: 50px 0;
}
.work .container {
	display: flex;
	align-items: center;
}
.work h2 {
	margin-bottom: 25px;
}
.work-col {
	flex: 1;
	text-align: left;
}
.work-col:first-child {
	padding-right: 30px;
}
.b-r .work-col:first-child {
	padding-right: 0;
}
.b-r .work-col:last-child {
	padding-left: 30px;
}
.work-col img {
	display: block;
	max-width: 100%;
	height: auto;
	border-radius: 20px;
}
.work-badge {
	display: inline-block;
	background: #FFBF00;
	background: linear-gradient(to bottom right, #FFBF00 0%, #FFBF00 50%, #FF7800 100%);
	border-radius: 8px;
	padding: 6px 16px;
	margin-bottom: 12px;
	font-size: 16px;
	line-height: 1.25;
	letter-spacing: 1px;
	font-weight: 600;
}


/* steps
*************************************************/
.steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	background: #143346;
	border: 1px solid #C5D6E0;
	border-radius: 32px;
	margin: 36px 0;
	overflow: hidden;
	color: #fff;
}
.step {
	padding: 16px;
}
.step + .step {
	border-left: 1px solid #C5D6E0;
}
.step-icon {
	display: block;
	margin: 0 auto 16px;
}
.step h3 {
	text-transform: none;
}


/* faq
*************************************************/
.faq {
	padding: 50px 0;
}
.faq h2 {
	margin-bottom: 35px;
}
.faq-items {
	max-width: 900px;
	margin: 0 auto;
	background: #fff;
	border: 1px solid #C5D6E0;
	border-radius: 32px;
	overflow: hidden;
}
.faq-item {
	padding: 24px;
	color: #5C7A8C;
	text-align: left;
}
.faq-item strong {
	display: block;
	color: var(--text-color);
	font-size: 18px;
	margin-bottom: 5px;
}
.faq-item + .faq-item {
	border-top: 1px solid #C5D6E0;
}
.faq-item p + p {
	margin-top: 8px;
}


/* footer
*************************************************/
.footer {
	background: var(--secondary);
	padding: 30px 0;
	color: #fff;
}
.footer a {
	color: #C5D6E0;
	text-decoration: none;
}
.footer a:hover {
	color: #fff;
	text-decoration: underline;
}
.footer-nav {
	margin-bottom: 15px;
}
.footer-nav a {
	margin: 0 4px;
}
.copyright {
	font-size: 14px;
	opacity: 0.8;
}


.text {
	padding-top: 80px;
	margin-bottom: 50px;
	text-align: left;
}
.text h1 {
	margin-bottom: 25px;
}
.text h2 {
	font-size: 20px;
	margin-bottom: 10px;
}
.text h3 {
	font-size: 18px;
	margin-bottom: 6px;
}
.text h4 {
	font-size: 16px;
}
.text p {
	margin-bottom: 8px;
}
.text p + h2,
.text p + h3 {
	margin-top: 20px;
}
.text p + h4 {
	margin-top: 8px;
}
.text ul,
.text ol {
	list-style-position: inside;
	padding-left: 6px;
	margin-bottom: 8px;
}
.no-bull {
	list-style: none;
}

.map {
	height: 600px;
	margin: 25px 0;
}
.map-box {
	display: block;
	width: 100%;
	height: 100%;
	border: none;
}

.about-pic {
	display: block;
	width: 100%;
	max-width: 400px;
	height: auto;
}


/* form
*************************************************/
.form {
	max-width: 640px;
	margin: 0 auto;
	text-align: left;
}
.form-row {
	margin: 0 -15px;
}
.form-row:after {
	content: '';
	clear: both;
	display: block;
}
.form-col {
	float: left;
	width: 50%;
	padding: 0 15px;
}
.form-label {
	font-size: 14px;
	opacity: 0.6;
	margin-bottom: 4px;
}
.form-input {
	display: block;
	width: 100%;
	height: 60px;
	padding: 0 10px;
	background: #f0f0f0;
	border: 2px solid #ddd;
	border-radius: 4px;
	color: var(--text-color);
	font-family: Inter, Arial, Tahoma, sans-serif;
	font-size: 16px;
	margin-bottom: 15px;
}
textarea.form-input {
	height: 160px;
	padding: 10px;
	margin-bottom: 30px;
}

@media (max-width: 991px) {
	.content-item {
		width: 48%;
	}

	.benefits .container {
		grid-template-columns: repeat(3, 1fr);
		gap: 16px;
	}
}

@media (max-width: 880px) {
	.main .container {
		padding-top: 20px;
	}
}

@media (max-width: 767px) {
	.benefits .container {
		grid-template-columns: repeat(2, 1fr);
	}

	.work .container {
		flex-direction: column;
	}
	.work-col:first-child {
		padding-right: 0;
		margin-bottom: 25px;
	}

	.b-r .work-col:last-child {
		padding-left: 0;
	}
	.b-r .work-col:first-child {
		order: 2;
	}
	.b-r .work-col:last-child {
		order: 1;
	}

	.steps {
		grid-template-columns: repeat(2, 1fr);
	}
	.step + .step {
		border-left: none;
	}
	.step:nth-child(2),
	.step:nth-child(4) {
		border-left: 1px solid #C5D6E0;
	}
	.step:nth-child(3),
	.step:nth-child(4) {
		border-top: 1px solid #C5D6E0;
	}
}


@media (max-width: 639px) {
	.main .container {
		flex-direction: column;
	}
	.main h1 {
		font-size: 32px;
	}
	.main-desc {
		width: 100%;
		margin-bottom: 25px;
	}
	.main-desc h2,
	.main-desc h3 {
		text-align: center;
	}

	.main .btn-lg {
		width: 100%;
		padding-left: 0;
		padding-right: 0;
	}

	.content-item {
		display: block;
		width: 100%;
	}
	.content-pic {
		max-width: 120px;
	}

	.why-item {
		display: block;
		width: 100%;
	}
	.why-item + .why-item {
		margin-top: 25px;
	}

	.cover-wrap {
		padding: 50px 25px;
	}
}


@media (max-width: 585px) {
	.steps {
		grid-template-columns: repeat(1, 1fr);
	}
	.step + .step {
		border-top: 1px solid #C5D6E0;
	}
	.step:nth-child(2),
	.step:nth-child(4) {
		border-left: none;
	}

	.benefits .container {
		grid-template-columns: repeat(1, 1fr);
	}
}