@font-face {
    font-family: 'Mier';
    src: url('../fonts/MierB03-SubsetEng-Regular.woff2') format('woff2'),
         url('../fonts/MierB03-SubsetEng-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Mier';
    src: url('../fonts/MierB03-SubsetEng-Demi.woff2') format('woff2'),
         url('../fonts/MierB03-SubsetEng-Demi.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Mier';
    src: url('../fonts/MierB03-SubsetEng-Bold.woff2') format('woff2'),
         url('../fonts/MierB03-SubsetEng-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

:root {
	--primary: #242424;
	--primary-80: rgba(156, 48, 254, 0.8);
	--primary-light: #a25fde;

	--secondary: #071d2b;
	--secondary-light: #60a8f3;

	--bg: #f7fafc;
	--bg-secondary: #EBF1F5;
	--bg-3: #fff1e5;
	--text-color: #071d2b;

	--btn-bg: #ff7800;
	--btn-bg-hov: #fff268;
	--btn-text: #fff;

	--err: #ef4444;

	--popup-bg: #071d2b;
	--popup-text: #fff;
	--popup-text-secondary: #c5d6e0;
	--popup-btn: #0070f6;

}

@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;
}
html {
	scroll-behavior: smooth;
}
/* body {
	background: var(--bg);
	color: var(--text-color);
	font: 16px/1.4 Inter, Arial, Tahoma, sans-serif;
} */
body {
	background: var(--bg);
	color: var(--text-color);
	font-family: 'Mier', Arial, sans-serif;
	font-size: 19px;
	line-height: 1.18;
}

.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;
}
.header .container {
	display: flex;
	align-items: center;
	gap: 32px;
}
.service-name {
	font-size: 24px;
	font-weight: 600;
	text-align: left;
	text-transform: capitalize;
	padding: 0 15px 0 25px;
	max-width: 1280px;
    margin: 10px auto 0;
}
.logo {
}
.logo a {
	text-decoration: none;
}
.logo img {
	display: block;
	width: 120px;
}
/*
.logo a:after {
	content: attr(data-name);
	line-height: 32px;
	margin-left: 6px;
}
*/

.h-nav ul {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 20px;
	list-style: none;
	font-size: 16px;
}
.h-nav li {
	text-wrap: nowrap;
}
.h-nav a {
	line-height: 28px;
	color: inherit;
	text-decoration: none;
}
.h-nav a:hover {
	text-decoration: underline;
}

.menu {
	float: right;
	width: 32px;
	height: 32px;
	padding-top: 4px;
	cursor: pointer;
	display: none;
}
.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;
	position: relative;
	display: flex;
	align-items: center;
	justify-items: center;
	text-align: center;
}
.step a {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	opacity: 0;
	z-index: 1;
}
.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;
}
.text table {
	margin: 12px 0;
	border: 1px solid var(--text-color);
	border-collapse: collapse;
	border-radius: 4px;
	overflow: auto;
	width: 100%;
	min-width: 100%;
}
.text th,
.text td {
	padding: 8px 12px;
	border: 1px solid var(--text-color);
	white-space: nowrap;
}
.text th {
	background-color: var(--bg-secondary);
}
/* Table wrapper for mobile horizontal scroll */
.table-wrapper {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	margin: 12px 0;
}
.table-wrapper table {
	margin: 0;
	min-width: 600px; /* Minimum width to ensure table doesn't get too cramped */
}
.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;
	}

	.header .container {
		justify-content: space-between;
	}
	.menu {
		display: block;
	}
	.h-nav {
		display: none;
	}
}


@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);
	}
}

.popup {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	backdrop-filter: blur(8px);
	background: rgba(0, 0, 0, 0.5);
	padding: 16px;
	display: flex;
	align-items: center;
	z-index: 999;
}
.popup-dialog {
	font-size: 17px;
	background: var(--popup-bg);
	max-width: 480px;
	margin: 0 auto;
	border-radius: 32px;
	text-align: left;
	box-shadow: 0 4px 40px rgba(0, 0, 0, .08);
}
.popup-logo {
	padding: 32px 32px 24px;
	border-radius: 32px 32px 0 0;
}
.popup-logo img {
	display: block;
	width: 110px;
}
.popup-title {
	color: var(--popup-text);
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 16px;
	display: flex;
	gap: 12px;
	align-items: center;
	padding: 0 32px;
}
.popup-title svg {
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	color: var(--err);
}
.popup p {
	padding: 0 32px;
	color: var(--popup-text-secondary);
}
.popup p + p {
	margin-top: 12px;
}
.popup a {
	font-weight: bold;
	cursor: pointer;
	color: var(--popup-text);
	text-decoration: underline;
}
.popup .popup-btn {
	display: block;
	text-align: center;
	padding: 12px 24px;
	font-size: 18px;
	margin: 24px 32px 32px;
	border-radius: 50px;
	background-color: var(--popup-btn);
	color: var(--popup-text);
	text-decoration: none;
	transition: filter 0.2s ease-out;
	text-decoration: none;

	&:hover {
		filter: brightness(1.1);
	}
}

/* ### */
.blog {
	background-color: var(--bg-secondary);
}
.blog .container {
	padding: 40px 15px;
}
.blog-box {
	margin: 24px 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 24px;
	text-align: left;
}
.blog-item {
	display: flex;
	gap: 8px;
	flex-direction: column;
	cursor: pointer;
	padding: 16px;
	border-radius: 8px;
	position: relative;
	border: 1px solid var(--btn-bg);
	transition: background-color 0.2s ease-out, border-color 0.2s ease-out;

	&:hover {
		background-color: var(--bg-3);
	}
}
.blog-box img {
	display: block;
	width: 100%;
	border-radius: 8px;
}
.blog-box h3 {
	font-size: 18px;
}
.blog-box p {
	font-size: 14px;
	opacity: 0.9;
}
.blog-item a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	opacity: 0;
}
.blog-item button {
	display: block;
	width: 100%;
	padding: 12px;
	border-radius: 40px;
	font-size: 16px;
	border: 1px solid var(--btn-bg);
	background-color: var(--bg-3);
	text-align: center;
	margin-top: auto;
}
/* ### */
.post .container {
	max-width: 700px;
	padding: 80px 16px 20px;
	text-align: justify;
}
.post img {
	display: block;
	width: 100%;
	max-width: 320px;
	margin: 0 auto 12px;
}
.post-info img {
	display: block;
	width: 100%;
	max-width: none;
	max-height: 200px;
	object-fit: cover;
	border-radius: 12px;
}
.post-info h2 {
	font-size: 24px;
	margin: 12px 0 32px;
	text-align: center;
}
.post h3 {
	margin-top: 24px;
	font-size: 20px;
	margin-bottom: 8px;
}
.post p + p {
	margin-top: 6px;
}
/* ### */
/* ### */
.regions {
	background-color: var(--bg-secondary);
}
.regions .container {
	padding: 40px 15px;
}
.regions h2 {
	margin-bottom: 32px;
}
.regions-box {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}
.regions-item {
	box-shadow: 0 4px 40px rgba(0, 0, 0, .08);
	background-color: var(--bg);
	padding: 40px 20px;
	border-radius: 20px;
}
.regions-item h3 {
	font-size: 24px;
	text-align: left;
	margin-bottom: 24px;
}
.regions-info {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 30px 1fr;
    column-gap: 12px;
    row-gap: 4px;
	text-align: left;
}
.regions-icon {
	grid-row: span 2;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--btn-bg);
	background-color: var(--bg-3);
	color: var(--btn-bg);
	border-radius: 40px;
}
.regions-info svg {
    width: 18px;
    height: 18px;
}
.regions-info h4 {
    font-size: 18px;
}
.regions-info p {
    font-size: 16px;
    color: var(--text-color);
}
@media (max-width: 768px) {
	.regions-box {
		grid-template-columns: 1fr;
	}
}
/* ### */