/*!
Theme Name: iKadastr
Theme URI: http://underscores.me/
Author: Ihor Tryhuk
Author URI: https://tryhuk.pp.ua/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: ikadastr
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

iKadastr is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

@font-face {
	font-family: 'Proxima Nova';
	src: url('fonts/ProximaNova-Regular.woff2') format('woff2'),
		url('fonts/ProximaNova-Regular.woff') format('woff');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Proxima Nova';
	src: url('fonts/ProximaNova-Semibold.woff2') format('woff2'),
		url('fonts/ProximaNova-Semibold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Proxima Nova';
	src: url('fonts/ProximaNova-Bold.woff2') format('woff2'),
		url('fonts/ProximaNova-Bold.woff') format('woff');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}


:root {
	--container: 1520px;

	--text-size: 16px;
	--text-size-sm: 14px;
	--text-size-esm: 12px;
	--h1-size: 46px;
	--h2-size: 40px;
	--h3-size: 34px;
	--h4-size: 28px;
	--h5-size: 24px;
	--h6-size: 20px;
}
*, ::after, ::before {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	margin: 0;
	padding: 0;
	font-size: var(--text-size);
	font-weight: 400;
	font-family: 'Proxima Nova';
	line-height: 1.17;
	color: #020F26;
	background: #F8F7FC;
}
a {
	color: #3F7EF3;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
	transition: .5s;
}
a:hover {
	text-decoration: none;
}
img {
	margin: 0;
	vertical-align: middle;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	transition: .5s;
}
.bg-cover {
	position: relative;
}
.bg-cover img,
.bg-cover video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.bg-cover span {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Proxima Nova';
	font-weight: 600;
	margin: 0 0 15px;
	line-height: 1.17;
}
h1 {
	font-size: var(--h1-size);
}
h2 {
	font-size: var(--h2-size);
}
h3 {
	font-size: var(--h3-size);
}
h4 {
	font-size: var(--h4-size);
}
h5 {
	font-size: var(--h5-size);
}
h6 {
	font-size: var(--h6-size);
}
p, ul, ol, blockquote {
	margin: 0 0 15px;
}
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child, p:last-child, ul:last-child, ol:last-child, blockquote:last-child {
	margin-bottom: 0;
}
iframe {
	max-width: 100%;
}
strong {
	font-weight: 600;
}
.form-fields {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px -24px;
}
.form-field {
	flex: 0 0 100%;
	max-width: 100%;
	padding: 0 10px;
	margin-bottom: 24px;
}
.form-field-33 {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
}
.form-field-67 {
	flex: 0 0 calc(100% / 3 * 2);
	max-width: calc(100% / 3 * 2);
}
.form-field-50 {
	flex: 0 0 50%;
	max-width: 50%;
}
.form-field > label {
	display: block;
	margin-bottom: 0px;
	font-size: var(--text-size-esm);
	font-weight: 400;
	font-size: var(--text-size);
	line-height: 1.25;
}
::-webkit-input-placeholder {
	color: #D9DBE4;
}
::-moz-placeholder {
	color: #D9DBE4;
}
:-ms-input-placeholder {
	color:#D9DBE4;
}
:-moz-placeholder {
	color: #D9DBE4;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="search"],
select,
textarea {
	font-size: var(--text-size);
	font-weight: 600;
	font-family: 'Proxima Nova';
	line-height: 1.5;
	width: 100%;
	background: transparent;
	border: none;
	border-bottom: 1px solid #D9DBE4;
	color: #020F26;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	padding: 10px 0px;
	min-height: 50px;
	outline: none;
	transition: .5s;
}
textarea {
	height: 150px;
	resize: vertical;
}
select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background: transparent url(images/arrow-down-circle-white.png) no-repeat 100% 50%;
    background-size: 24px;
    padding-right: 30px;
	cursor: pointer;
}
select::-ms-expand {
	display: none;
}
select option {
	
}
.form-field-policy {
	font-size: var(--text-size-esm);
	font-weight: 600;
	padding-top: 4px;
	color: #8F99AC;
}
.form-field-policy a {
	color: #8F99AC;
}
.form-field-policy a:hover {
	color: #3F7EF3;
}
.form-field-button.center {
	text-align: center;
}
.form-field-button.right {
	text-align: right;
}
.wpcf7-not-valid-tip {
	font-size: var(--text-size-esm);
	margin-top: 4px;
}
.wpcf7 form .wpcf7-response-output {
	margin: 24px 0 0;
	padding: 12px 16px;
	font-size: var(--text-size-sm);
}
.wpcf7 form.sent .wpcf7-response-output {
	display: none !important;
}



.screen-reader-text {
	display: none;
}
.container {
	width: 100%;
	max-width: var(--container);
	margin-left: auto;
	margin-right: auto;
}
.container-full {
	width: 100%;
	max-width: calc(100% - 80px);
	margin-left: auto;
	margin-right: auto;
}
.section {
	position: relative;
	padding-top: 160px;
	padding-bottom: 160px;
	z-index: 1;
}
.section-md {
	position: relative;
	padding-top: 120px;
	padding-bottom: 120px;
	z-index: 1;
}
.pt-0 {
	padding-top: 0 !important;
}
.pb-0 {
	padding-bottom: 0 !important;
}
.mt-0 {
	margin-top: 0 !important;
}
.mb-0 {
	margin-bottom: 0 !important;
}
@media (min-width: 992px) {
	.hide-lg {
		display: none !important;
	}
}

.text-lg {
	font-size: var(--h5-size);
}
.text-uppercase {
	text-transform: uppercase;
}
.list-arrow {
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.list-arrow li {
	position: relative;
	padding-left: 55px;
	z-index: 1;
}
.list-arrow li:before {
	content: '';
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/arrow-right-long-list.svg);
    mask-image: url(images/arrow-right-long-list.svg);
    background-color: #020F26;
    position: absolute;
    top: 0;
    left: 0;
    width: 39px;
    height: 18px;
    z-index: 1;
}



.heading {
	position: relative;
	color: #8F99AC;
	margin-bottom: 64px;
}
.heading:last-child {
	margin-bottom: 0;
}
.heading.center {
	text-align: center;
}
.heading.white {
	color: #ffffff;
}
.heading h2,
.heading .h2 {
	position: relative;
	display: inline-block;
	font-size: var(--h2-size);
	text-transform: uppercase;
	color: #020F26;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin: 0;
	z-index: 1;
}
.heading.center h2,
.heading.center .h2 {
	align-items: center;
}
.heading.white h2,
.heading.white .h2 {
	color: #ffffff;
}
.heading .grey {
	color: #8F99AC;
}
.heading p {
	margin-top: 8px;
}
.heading strong {
	font-weight: 600;
}


.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: var(--text-size);
	font-family: 'Proxima Nova';
	font-weight: 700;
	line-height: 1.5;
	border: none;
	padding: 10px 40px;
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
	outline: none;
	min-height: 60px;
	cursor: pointer;
	text-decoration: none;
	overflow: hidden;
	z-index: 1;
	transition: color 0.3s ease;
}
.btn.btn-sm {
	font-size: var(--text-size-esm);
	padding: 13px 35px;
	min-height: 44px;
	-moz-border-radius: 22px;
	-webkit-border-radius: 22px;
	border-radius: 22px;
}
.btn.btn-esm {
	font-size: var(--text-size-esm);
	padding: 7px 24px;
	min-height: 32px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
}
.btn:before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: -1;
}
.btn:hover:before {
	opacity: 1;
}
.btn-primary {
	color: #fff;
	background: #3F7EF3;
}
.btn-primary::before {
	background: linear-gradient(90deg, #3F7EF3, #020F26);
}
.btn-secondary {
	color: #3F7EF3;
	background: #ffffff;
}
.btn-secondary:hover {
	color: #FFFFFF;
}
.btn-secondary::before {
	background: linear-gradient(90deg, #3F7EF3, #020F26);
}
.btn-outline-primary {
	border: 1px solid #3F7EF3;
	background: transparent;
	color: #3F7EF3;
}
.btn-outline-primary:hover {
	border: 1px solid #3F7EF3;
	background: #3F7EF3;
	color: #ffffff;
}


/*.swiper-pagination {
	position: relative !important;
	bottom: auto !important;
	top: auto !important;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 40px;
	gap: 8px;
}
.swiper-pagination-bullet {
	flex: 0 0 10px;
	max-width: 10px;
	width: 10px !important;
	height: 10px !important;
	background: #E2E5F0 !important;
	margin: 0 !important;
	opacity: 1 !important;
	-moz-border-radius: 50% !important;
	-webkit-border-radius: 50% !important;
	border-radius: 50% !important;
}
.swiper-pagination.white .swiper-pagination-bullet {
	background: #ffffff !important;
	opacity: .4 !important;
}
.swiper-pagination-bullet-active {
	background: #019658 !important;
}
.swiper-pagination.white .swiper-pagination-bullet-active {
	background: #ffffff !important;
	opacity: 1 !important;
}*/

/*.swiper-navigation {
	position: relative;
	display: flex;
	align-items: center;
	gap: 15px;
	z-index: 9;
}
.swiper-navigation button {
	position: relative;
	flex: 0 0 50px;
	max-width: 50px;
	width: 50px;
	height: 50px;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
	border: 1px solid var(--line-black);
	background: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	outline: none;
	padding: 0;
	cursor: pointer;
	transition: .5s;
}
.swiper-navigation button:hover {
	background: var(--main-color);
}
.swiper-navigation button:disabled {
	background: var(--white);
	transform: scale(.88);
	cursor: no-drop;
}
.swiper-navigation button:before {
	content: '';
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/arrow-right.svg);
    mask-image: url(images/arrow-right.svg);
    background-color: var(--main-color);
    flex: 0 0 25px;
    max-width: 25px;
    width: 25px;
    height: 25px;
    transition: .5s;
    z-index: 1;
}
.swiper-navigation button.swiper-navigation-prev:before {
	transform: rotate(-180deg);
}
.swiper-navigation button:hover:before {
	background-color: var(--white);
}
.swiper-navigation button:disabled:before {
	background-color: var(--main-color);
}*/


.soc-links {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	gap: 24px;
}
.soc-links li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.soc-links li.instagram a {
	background-image: url(images/instagram.svg);
}
.soc-links li.youtube {
	background-image: url(images/youtube.svg);
}
.soc-links li.whatsapp a {
	background-image: url(images/whatsapp.svg);
}
.soc-links li.facebook a {
	background-image: url(images/facebook.svg);
}
.soc-links li.linkedin a {
	background-image: url(images/linkedin.svg);
}
.soc-links li a:hover {
	transform: scale(1.05);
}



.modal-mobile {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -9999;
	opacity: 0;
	transition: .5s;
}
.modal-mobile.show {
	z-index: 9999;
	opacity: 1;
}
.modal-mobile-wrap {
	position: relative;
	background: url(images/blue-dark-bg.jpg) no-repeat center;
	background-size: cover;
	height: 100%;
	width: 100%;
	transform: translateY(-100%);
	transition: .5s;
	overflow: auto;
	display: flex;
	flex-direction: column;
	z-index: 1;
}
.modal-mobile.show .modal-mobile-wrap {
	transform: translateY(0);
}
.modal-mobile-header {
	position: relative;
	padding: 10px 0;
	z-index: 1;
}
.modal-mobile-header-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	height: 24px;
}
.modal-mobile-logo {
	flex: auto;
}
.modal-mobile-logo img {
	max-height: 24px;
}
.modal-mobile-close {
	-webkit-mask-image: url(images/close-mobile.svg);
	mask-image: url(images/close-mobile.svg);
	-webkit-mask-size: 28px;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: #FFFFFF;
	flex: 0 0 24px;
	max-width: 24px;
	width: 24px;
	height: 24px;
	border: none;
	padding: 0;
	cursor: pointer;
	outline: none;
	transition: .5s;
}
.modal-mobile-close:hover {
	background-color: #3F7EF3;
}
.modal-mobile-body {
	flex: auto;
	padding: 22px 0 32px;
}
.modal-mobile-body .container {
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.mobile-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
	font-size: var(--text-size-sm);
	font-weight: 600;
	text-transform: uppercase;
}
.mobile-menu li {
	flex: calc(50% - 16px);
	max-width: calc(50% - 16px);
}
.mobile-menu li a {
	color: #FFFFFF;
	text-decoration: none;
}
.mobile-menu li a:hover {
	color: #3F7EF3;
}
.mobile-menu ul {
	display: none;
}
.modal-mobile-account {
	flex: auto;
}
.modal-mobile-account .btn {
	width: 100%;
}
.modal-mobile-contacts {
	color: #ffffff;
	font-size: var(--text-size-esm);
	line-height: 1.25;
	width: max-content;
	max-width: 100%;
	margin: auto;
}
.modal-mobile-contacts a {
	color: #ffffff;
	text-decoration: none;
}
.modal-mobile-contacts a:hover {
	color: #3F7EF3;
}


.modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1055;
	display: none;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	outline: 0;
}
.modal-dialog {
	position: relative;
	width: auto;
	max-width: 648px;
	margin: 1.75rem auto;
	pointer-events: none;
	display: flex;
	align-items: center;
	min-height: calc(100% - 3.5rem);
}
.modal-content {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	pointer-events: auto;
	background-color: #ffffff;
	background-clip: padding-box;
	outline: 0;
	padding: 32px;
	overflow: hidden;
	z-index: 1;
}
.modal-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1050;
	width: 100vw;
	height: 100vh;
	background: url(images/modal-bg.jpg) no-repeat center;
	background-size: cover;
	opacity: 0;
	z-index: -1;
}
.modal-backdrop.show {
	opacity: .6;
	z-index: 1049;
}
.modal-image {
	margin-bottom: 24px;
	height: 54px;
}
.modal-title {
	font-size: var(--h2-size);
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 24px;
	text-align: center;
}
.modal-title span {
	background: linear-gradient(90deg, #3F7EF3 0%, #3F7EF3 0%, #020F26 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.modal-description {
	text-align: center;
	font-weight: 600;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	margin-bottom: 32px;
}
.modal-description span {
	background: linear-gradient(90deg, #3F7EF3 0%, #3F7EF3 0%, #020F26 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.modal-close {
	position: absolute;
	background: url(images/close-modal.svg) no-repeat center;
	background-size: contain;
	width: 32px;
	height: 32px;
	top: 31px;
	right: 31px;
	border: none;
	cursor: pointer;
	padding: 0;
	transition: .5s;
	z-index: 9;
}
.modal-close:hover {
	transform: scale(1.1);
}



.wp-caption {
	max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}
.wp-caption-text {
	text-align: center;
}
.gallery {
	display: flex;
	flex-wrap: wrap;
	margin: 26px -12px 2px;
}
.gallery:first-child {
	margin-top: 0;
}
.gallery:last-child {
	margin-bottom: -24px;
}
.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
	margin: 0 0 24px;
	padding: 0 12px;
}
.gallery-item * {
	height: 100%;
}
.gallery-item > * {
	overflow: hidden;
	border: 1px solid var(--grey-light);
}
.gallery-columns-2 .gallery-item {
	flex: 0 0 calc(100% / 2);
	max-width: calc(100% / 2);
}
.gallery-columns-3 .gallery-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
}
.gallery-columns-4 .gallery-item {
	flex: 0 0 calc(100% / 4);
	max-width: calc(100% / 4);
}
.gallery-columns-5 .gallery-item {
	flex: 0 0 calc(100% / 5);
	max-width: calc(100% / 5);
}
.gallery-columns-6 .gallery-item {
	flex: 0 0 calc(100% / 6);
	max-width: calc(100% / 6);
}
.gallery-columns-7 .gallery-item {
	flex: 0 0 calc(100% / 6);
	max-width: calc(100% / 6);
}
.gallery-columns-8 .gallery-item {
	flex: 0 0 calc(100% / 8);
	max-width: calc(100% / 8);
}
.gallery-columns-9 .gallery-item {
	flex: 0 0 calc(100% / 9);
	max-width: calc(100% / 9);
}
.gallery-caption {
	display: block;
}
.alignleft {
	float: left;
	margin-right: 20px;
	margin-bottom: 20px;
}
.alignright {
	float: right;
	margin-left: 20px;
	margin-bottom: 20px;
}
.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
}


.grecaptcha-badge {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}


.header {
	position: sticky;
	top: 0;
	background: #F8F7FC;
	padding: 12px 0;
	z-index: 92;
}
body.home .header {
	background: #FFFFFF;
}
.header-userPanel:before {
	content: '';
	background: #020F26;
	width: 230px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.header-wrap {
	display: flex;
	align-items: center;
	gap: 64px;
	height: 44px;
}
.header-logo img {
	max-height: 26px;
}
.header-menu {
	flex: auto;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 40px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: var(--text-size-sm);
	font-weight: 600;
	text-transform: uppercase;
}
.header-menu li a {
	position: relative;
	background: linear-gradient(90deg, #020F26 0%, #020F26 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	text-decoration: none;
	padding: 2px 0;
	z-index: 1;
}
.header-menu li a:hover,
.header-menu li.active a,
.header-menu li.current-menu-item a {
	background: linear-gradient(90deg, #3F7EF3 0%, #3F7EF3 0%, #020F26 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.header-menu > li > a:after {
	content: '';
	background: linear-gradient(90deg, #3F7EF3 0%, #3F7EF3 0%, #020F26 100%);
	width: 0;
	height: 1px;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
	transition: .5s;
}
.header-menu > li > a:hover:after,
.header-menu > li.active > a:after,
.header-menu > li.current-menu-item > a:after {
	width: 100%;
}


.solutions-submenu {
	position: absolute;
	width: 100%;
	top: 100%;
	left: 0;
	background: #FFFFFF;
	padding: 52px 0 64px;
	opacity: 0;
	transform: translateY(-30px);
	pointer-events: none;
	z-index: -99;
	transition: .5s;
}
li.active > .solutions-submenu {
	opacity: 1;
	transform: translateY(0);
	pointer-events: inherit;
	z-index: 99;
}
.solutions-submenu-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}
.solutions-submenu-image {
	flex: 0 0 350px;
	max-width: 350px;
}
.solutions-submenu-wrap ul {
	flex: auto;
	max-width: 1000px;
	display: flex;
	flex-direction: column;
	gap: 48px;
	padding: 0;
	list-style: none;
}
.solutions-submenu-wrap ul li {
	position: relative;
	padding-left: 68px;
	z-index: 1;
}
.solutions-submenu-wrap ul li a {
	background: linear-gradient(90deg, #3F7EF3 0%, #3F7EF3 0%, #020F26 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: var(--h5-size);
	font-weight: 600;
	border-bottom: 1px solid;
}
.solutions-submenu-wrap ul li a:hover {
	background: linear-gradient(90deg, #020F26 0%, #020F26 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.solutions-submenu-wrap ul li a > span {
	position: absolute;
	width: 44px;
	height: 44px;
	background: #F8F7FC;
	top: 0;
	left: -68px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: -1;
}
.solutions-submenu-wrap ul li a > span:before {
	content: '';
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/arrow-down-right.svg);
    mask-image: url(images/arrow-down-right.svg);
    background-color: #3F7EF3;
    flex: 0 0 14px;
    max-width: 14px;
    height: 14px;
    transition: .5s;
}
.solutions-submenu-wrap ul li > span {
	display: block;
	margin-top: 16px;
	color: #8F99AC;
	font-size: var(--text-size);
	font-weight: 400;
	text-transform: none;
}
.solutions-submenu-wrap ul ul {
	display: none;
}



.header-phone {
	flex: auto;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 40px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: var(--text-size-sm);
	font-weight: 600;
	text-transform: uppercase;
}
.header-phone a {
	background: linear-gradient(90deg, #020F26 0%, #020F26 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	text-decoration: none;
}
.header-phone a:hover {
	background: linear-gradient(90deg, #3F7EF3 0%, #3F7EF3 0%, #020F26 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.header-account {
	flex: 0 0 265px;
	max-width: 265px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 20px;
}
.header-account-items {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	gap: 8px;
}
.header-account-items li a {
	display: flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
}
.header-account-item__value {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	text-align: right;
	justify-content: center;
	font-size: var(--text-size-esm);
	color: #8F99AC;
	margin: 0;
}
.header-account-item__value span {
	color: #0A0A0A;
	font-weight: 600;
}
.header-account-item__icon {
	position: relative;
	flex: 0 0 32px;
	max-width: 32px;
	width: 32px;
	height: 32px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #F8F7FC;
	z-index: 1;
	transition: .5s;
}
.header-account-items li a:hover .header-account-item__icon {
	background: #3F7EF3;
}
.header-account-item__icon:before {
	content: '';
	flex: 0 0 24px;
	max-width: 24px;
	height: 24px;
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
	background-color: #3F7EF3;
	transition: .5s;
}
li.user .header-account-item__icon:before {
	-webkit-mask-image: url(images/user.svg);
    mask-image: url(images/user.svg);
}
li.notification .header-account-item__icon:before {
	-webkit-mask-image: url(images/ring.svg);
    mask-image: url(images/ring.svg);
}
li.menu .header-account-item__icon:before {
	-webkit-mask-image: url(images/menu.svg);
    mask-image: url(images/menu.svg);
}
.header-account-items li a:hover .header-account-item__icon:before {
	background-color: #FFFFFF;
}
.alert .header-account-item__icon:after {
	content: '';
	position: absolute;
	width: 6px;
	height: 6px;
	background: #D40D42;
	top: 8px;
	right: 8px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	z-index: 1;
}

.header-toggle {
	display: flex;
	align-items: center;
}
.header-toggle button {
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/menu-toggle.svg);
    mask-image: url(images/menu-toggle.svg);
    background-color: #04173A;
    flex: 0 0 24px;
    max-width: 24px;
    width: 24px;
    height: 24px;
    border: none;
    outline: none;
    padding: 0;
    cursor: pointer;
    transition: .5s;
}
.header-toggle button:hover {
	background-color: #3F7EF3;
}





.main {
	position: relative;
	background: #F8F7FC;
	z-index: 1;
}



.hero-section {
	overflow: hidden;
	min-height: calc(100vh - 68px);
}
.hero-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -2;
}
.hero-bg:after {
	content: '';
	background: url(images/hero-mask-video.png) no-repeat center;
	background-size: cover;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.hero-wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 1000px;
	margin: 0 auto;
	padding: 85px 0;
	min-height: calc(100vh - 68px);
	z-index: 1;
}
.hero-info {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	text-align: center;
	color: #FFFFFF;
	margin-top: -15vh;
}
.hero-heading {
	font-size: var(--h1-size);
	line-height: 1.17;
	font-weight: 600;
	text-transform: uppercase;
	text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	margin: 0;
}
.hero-description {
	line-height: 1.17;
	font-weight: 600;
	text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	margin: 0;
}
.hero-search {
	position: absolute;
    bottom: 10vh;
    left: 0;
    width: 100%;
    z-index: 1;
}
.hero-search-heading {
	font-size: var(--text-size);
	font-weight: 600;
	line-height: 1.17;
	text-transform: uppercase;
	color: #FFFFFF;
	margin-bottom: 10px;
	text-align: center;
}
.hero-search-form {
	height: 48px;
	display: flex;
	align-items: center;
	padding: 0 16px;
	gap: 34px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.1);;
	backdrop-filter: blur(4px);
}
.hero-search-form label {
	flex: 0 0 auto;
	line-height: 1;
	color: #FFFFFF;
}
.hero-search-form input {
	flex: auto;
	width: 100%;
	height: 40px;
	font-weight: 600;
	color: #FFFFFF;
	background: none;
	border: none;
	outline: none;
	padding: 0;
}
.hero-search-form input::-webkit-input-placeholder {
	color: #D9DBE4;
}
.hero-search-form input::-moz-placeholder {
	color: #D9DBE4;
}
.hero-search-form input:-ms-input-placeholder {
	color: #D9DBE4;
}
.hero-search-form input:-moz-placeholder {
	color: #D9DBE4;
}
.hero-search-form button {
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/search.svg);
    mask-image: url(images/search.svg);
    background-color: #FFFFFF;
    flex: 0 0 24px;
    max-width: 24px;
    width: 24px;
    height: 24px;
    border: none;
    outline: none;
    padding: 0;
    cursor: pointer;
    transition: .5s;
}
.hero-search-form button:hover {
	background-color: #020F26;
}
.hero-liners {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.hero-liners span {
	position: absolute;
	background: rgba(235, 235, 235, 0.29);
	z-index: 1;
}
.hero-liners span:before {
	background: url(images/red-grid-blocks.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 73px;
	height: 7px;
}
.hero-liners span:nth-child(1) {
	width: 100%;
	height: 1px;
	top: 14vh;
	left: 0;
}
.hero-liners span:nth-child(2) {
	width: 100%;
	height: 1px;
	bottom: 27vh;
	left: 0;
}
.hero-liners span:nth-child(2):before {
	content: '';
	top: -7px;
    right: calc((100% - 1000px) / 2 - 73px - 56px);
}
.hero-liners span:nth-child(3) {
	width: 1px;
	height: 100%;
	top: 0;
	left: calc((100% - var(--container)) / 2 - 120px);
}
.hero-liners span:nth-child(3):before {
	content: '';
    top: calc(20% + 73px);
    left: 0;
    transform: rotate(-90deg);
    transform-origin: left top;
}
.hero-liners span:nth-child(4) {
	width: 1px;
	height: 100%;
	top: 0;
	left: calc((100% - 1000px) / 2 - 41px);
}
.hero-liners span:nth-child(5) {
	width: 1px;
	height: 100%;
	top: 0;
	right: calc((100% - 1000px) / 2 - 257px);
}



.offers-section {
	overflow: hidden;
}
.offers_main-section:before {
	content: '';
	position: absolute;
	top: 255px;
	right: calc((100% - var(--container)) / 2 - 73px - 55px);
	width: 73px;
	height: 7px;
	background: url(images/red-grid-blocks.svg) no-repeat center;
	background-size: contain;
	z-index: 1;
}
.offers-heading .line-1 {
	margin-left: -240px;
}
.offers-heading .line-2 {
	margin-right: -240px;
}
.offers_about-heading .line-1 {
	margin-left: -400px;
}
.offers_about-heading .line-2 {
	margin-right: -400px;
}
.offers-item {
	position: relative;
	z-index: 1;
}
.offers-item__wrap {
	position: relative;
	display: flex;
	z-index: 1;
}
.offers-item__line-top,
.offers-item__line-bottom {
	position: absolute;
	background: #D9DBE4;
	width: 100vw;
	height: 1px;
	left: calc((100vw - var(--container)) / -2);
	z-index: -1;
}
.offers-item__line-top {
	top: 0;
}
.offers-item__line-bottom {
	bottom: 0;
}
.offers_main-item:nth-child(2n) .offers-item__line-bottom:before {
	content: '';
	position: absolute;
	top: -7px;
	left: calc((100% - var(--container)) / 2 - 73px - 81px);
	width: 73px;
	height: 7px;
	background: url(images/red-grid-blocks.svg) no-repeat center;
	background-size: contain;
	z-index: 1;
}
.offers_user-item:nth-child(1) .offers-item__line-top:before {
	content: '';
	position: absolute;
	top: -7px;
	left: calc((100% - var(--container)) / 2 + 257px);
	width: 73px;
	height: 7px;
	background: url(images/red-grid-blocks.svg) no-repeat center;
	background-size: contain;
	z-index: 1;
}
.offers_user-item:nth-child(3n) .offers-item__line-bottom:before {
	content: '';
	position: absolute;
	top: -7px;
	right: calc((100% - var(--container)) / 2 + 10px);
	width: 73px;
	height: 7px;
	background: url(images/red-grid-blocks.svg) no-repeat center;
	background-size: contain;
	z-index: 1;
}
.offers_about-item:nth-child(1) .offers-item__line-top:before {
	content: '';
	position: absolute;
	top: -7px;
	right: calc((100% - var(--container)) / 2 + 200px);
	width: 73px;
	height: 7px;
	background: url(images/red-grid-blocks.svg) no-repeat center;
	background-size: contain;
	z-index: 1;
}
.offers_authorities-item:nth-child(2n) .offers-item__line-bottom:before {
	content: '';
	position: absolute;
	top: -7px;
	right: calc((100% - var(--container)) / 2 + 10px);
	width: 73px;
	height: 7px;
	background: url(images/red-grid-blocks.svg) no-repeat center;
	background-size: contain;
	z-index: 1;
}
.offers_authorities-item:last-child .offers-item__line-bottom:before {
	display: none;
}
.offers_partner-item:nth-child(1) .offers-item__line-top:before {
	content: '';
	position: absolute;
	top: -7px;
	left: calc((100% - var(--container)) / 2 + 257px);
	width: 73px;
	height: 7px;
	background: url(images/red-grid-blocks.svg) no-repeat center;
	background-size: contain;
	z-index: 1;
}
.offers-item__left {
	padding: 64px 75px 64px 0;
	flex: 0 0 39%;
	max-width: 39%;
}
.offers_user-item .offers-item__left,
.offers_about-item .offers-item__left {
	flex: 0 0 32%;
	max-width: 32%;
}
.offers_partner-item .offers-item__left {
	flex: 0 0 32%;
	max-width: 32%;
}
.offers_partner-item:last-child .offers-item__left {
	border-left: 1px solid #D9DBE4;
	margin-left: 32%;
	flex: 0 0 49%;
	max-width: 49%;
	padding-left: 64px;
	padding-right: 0;
}
.offers-item__right {
	position: relative;
	padding: 64px 0 64px 75px;
	border-left: 1px solid #D9DBE4;
	flex: 0 0 calc(61% - 60px);
	max-width: calc(61% - 60px);
	z-index: 1;
}
.offers_about-item .offers-item__right {
	flex: 0 0 68%;
	max-width: 68%;
}
.offers_user-item .offers-item__right {
	flex: 0 0 58%;
	max-width: 58%;
}
.offers_partner-item .offers-item__right {
	flex: 0 0 49%;
	max-width: 49%;
}
.offers_partner-item:last-child .offers-item__right {
	display: none;
}
.offers_main-item:nth-child(2n+1) .offers-item__right:before {
	content: '';
    position: absolute;
    top: calc(50% - 20px);
    left: -40px;
    width: 73px;
    height: 7px;
    background: url(images/red-grid-blocks.svg) no-repeat center;
    background-size: contain;
    z-index: 1;
    transform: rotate(-90deg);
}
.offers_user-item:nth-child(3n+2) .offers-item__right:before {
	content: '';
    position: absolute;
    top: calc(50% + 40px);
    left: -40px;
    width: 73px;
    height: 7px;
    background: url(images/red-grid-blocks.svg) no-repeat center;
    background-size: contain;
    z-index: 1;
    transform: rotate(-90deg);
}
.offers_partner-item:nth-child(7n+2) .offers-item__right:before {
	content: '';
    position: absolute;
    top: calc(50% + 40px);
    left: -40px;
    width: 73px;
    height: 7px;
    background: url(images/red-grid-blocks.svg) no-repeat center;
    background-size: contain;
    z-index: 1;
    transform: rotate(-90deg);
}
.offers_authorities-item:nth-child(4n+1) .offers-item__right:before {
	content: '';
    position: absolute;
    top: 75px;
    left: -40px;
    width: 73px;
    height: 7px;
    background: url(images/red-grid-blocks.svg) no-repeat center;
    background-size: contain;
    z-index: 1;
    transform: rotate(-90deg);
}
.offers_about-item:nth-child(3n) .offers-item__right:before {
	content: '';
    position: absolute;
    top: 35px;
    left: -40px;
    width: 73px;
    height: 7px;
    background: url(images/red-grid-blocks.svg) no-repeat center;
    background-size: contain;
    z-index: 1;
    transform: rotate(-90deg);
}
.offers-item__image {
	width: 160px;
	height: 160px;
	border-radius: 50%;
	overflow: hidden;
	margin-bottom: 32px;
}
.offers-item__title {
	margin-bottom: 16px;
	font-size: var(--h5-size);
	line-height: 1.2;
	font-weight: 600;
	text-transform: uppercase;
}
.offers-item__title a,
.offers-item__title span {
	background: linear-gradient(90deg, #3F7EF3 0%, #3F7EF3 0%, #020F26 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	border-bottom: 1px solid;
	color: #3F7EF3;
	transition: .5s;
}
.offers-item__title a:hover {
	background: linear-gradient(90deg, #020F26 0%, #020F26 0%, #020F26 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.offers-item__description {
	color: #8F99AC;
	line-height: 1.17;
	margin-bottom: 16px;
}
.offers-item__list p {
	font-size: var(--h5-size);
	font-weight: 600;
	line-height: 1.17;
	text-transform: uppercase;
	margin-bottom: 24px;
}
.offers-item__list ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.offers-item__list ul li {
	background: #FFFFFF;
	padding: 14px 20px;
	line-height: 1;
	border-radius: 22px;
}
.offers-item__list ul li span {
	background: linear-gradient(90deg, #020F26 0%, #020F26 0%, #020F26 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: .5s;
}
.offers-item__list ul li:hover span {
	background: linear-gradient(90deg, #3F7EF3 0%, #3F7EF3 0%, #020F26 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}



.offers-additional {
	max-width: 920px;
	margin: 0 auto 0;
	padding-top: 80px;
	gap: 4px 20px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-between;
}
.offers-additional-text {
	flex: 0 0 100%;
	max-width: 100%;
	display: flex;
	flex-direction: column;
	gap: 2.5px;
	margin: 0;
	font-size: var(--h2-size);
	font-weight: 600;
	line-height: 1.17;
	text-transform: uppercase;
	padding-bottom: 5px;
}
.offers-additional-text .grey {
	color: #8F99AC;
}
.offers-additional-text .line-1 img {
	vertical-align: baseline;
	max-width: 110px;
}
.offers-additional-text .line-2 {
	margin-left: 260px;
}
.offers-additional-description {
	flex: 0 0 calc(100% - 220px);
	max-width: calc(100% - 220px);
	margin-bottom: 0;
	font-weight: 600;
}
.offers-additional-description img {
	margin-left: 10px;
	max-width: 73px;
}
.offers-additional-button .btn {
	padding-left: 35px;
	padding-right: 35px;
}





.services-section {
	overflow: hidden;
}
.services-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
}
.services-heading h2 {
	margin-bottom: 0;
}
.services-heading p {
	max-width: 362px;
	text-align: right;
}
.services_xl-items {
	max-width: 1264px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	padding-top: 66px;
}
.services_xl-item {
	flex: 0 0 calc(50% - 12px);
	max-width: calc(50% - 12px);
}
.services_xl-item:nth-child(2n+1) {
	margin-top: -66px;
}
.services_xl-item__wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	height: calc((1264px - 24px) / 2 / 1.6578);
	padding: 24px;
	text-decoration: none;
	color: #ffffff;
	cursor: pointer;
	z-index: 1;
}
.services_xl-item__wrap:hover {
	color: #3F7EF3;
}
.services_xl-item__image {
	position: absolute;
	overflow: hidden;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.services_xl-item__image:before {
	content: '';
	background: url(images/news-item-lines.svg) no-repeat center;
	background-size: cover;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.services_xl-item__image:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 79%;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(4, 23, 58, 0) 0%, #04173A 100%);
	z-index: 1;
}
.services_xl-item__wrap:hover .services_xl-item__image img {
	transform: scale(1.1);
}
.services_xl-item__title {
	font-size: var(--h5-size);
	font-weight: 600;
	line-height: 1.17;
	text-transform: uppercase;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	margin-bottom: 8px;
}
.services_xl-item__description {
	line-height: 1.17;
	color: #fff;
	overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}



.services-items {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	padding-top: 50px;
}
.services-item {
	flex: 0 0 calc(50% - 12px);
	max-width: calc(50% - 12px);
}
.services-item:nth-child(2n+1) {
	margin-top: -50px;
}
.services-item__wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	height: calc(((var(--container) / 3 * 2 - 12px) - 24px) / 2 / 1.63);
	padding: 24px;
	text-decoration: none;
	color: #ffffff;
	cursor: pointer;
	z-index: 1;
}
.services-item__wrap:hover {
	color: #3F7EF3;
}
.services-item__image {
	position: absolute;
	overflow: hidden;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.services-item__image:before {
	content: '';
	background: url(images/news-item-lines.svg) no-repeat center;
	background-size: cover;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.services-item__image:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 79%;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(4, 23, 58, 0) 0%, #04173A 100%);
	z-index: 1;
}
.services-item__wrap:hover .services-item__image img {
	transform: scale(1.1);
}
.services-item__title {
	font-size: var(--h5-size);
	font-weight: 600;
	line-height: 1.17;
	text-transform: uppercase;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}
.services-item__description {
	display: none;
}



.services-additional {
	max-width: 1256px;
	margin: 80px auto 0;
	gap: 20px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}
.services-additional-text {
	flex: 0 0 78%;
	max-width: 78%;
	display: flex;
	flex-direction: column;
	gap: 2.5px;
	margin: 0;
	font-size: var(--h2-size);
	font-weight: 600;
	line-height: 1.17;
	text-transform: uppercase;
	padding-bottom: 5px;
}
.services-additional-text .grey {
	color: #8F99AC;
}
.services-additional-text .line-1 img {
	vertical-align: baseline;
	max-width: 110px;
}
.services-additional-text .line-2 {
	margin-left: 100px;
}
.services-additional-text .line-3 {
	text-align: right;
}
.services-additional-text .line-3 img {
	margin-left: 10px;
	max-width: 73px;
}



.infoBlock-section {
	overflow: hidden;
	background: url(images/blue-dark-bg.jpg) no-repeat left top;
	background-size: cover;
}
.infoBlock-section.no-bg {
	background: transparent;
}
.infoBlock-image {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
}
.infoBlock-image img {
	object-position: left center;
}
.infoBlock-wrap {
	display: flex;
}
.infoBlock-left {
	flex: 0 0 67%;
	max-width: 67%;
	padding-right: 30px;
}
.infoBlock-right {
	position: relative;
	flex: 0 0 33%;
	max-width: 33%;
	z-index: 1;
}
.infoBlock-heading.heading {
	margin-bottom: 48px;
}
.infoBlock-heading .line-2 {
	margin-left: 127px;
}
.infoBlock-heading p {
	margin-left: 257px;
	max-width: 550px;
}
.infoBlock-section.black .infoBlock-heading p {
	color: #020F26;
}
.infoBlock-image {
	position: absolute;
	top: 0;
	right: 0;
	width: calc((100% - var(--container)) / 2 + var(--container) * .33);
	height: 100%;
	z-index: 1;
}
.infoBlock-items {
	margin-left: 257px;
	max-width: 550px;
	display: flex;
	flex-direction: column;
	gap: 48px;
}
.infoBlock-item {
	color: #ffffff;
	line-height: 1.17;
}
.infoBlock-section.black .infoBlock-item {
	color: #020F26;
}
.infoBlock-item * {
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}
.infoBlock-item h4 {
	margin-bottom: 24px;
}
.infoBlock-item .list-arrow li:before {
	background-color: #FFFFFF;
}
.infoBlock-section.black .infoBlock-item .list-arrow li:before {
	background-color: #020F26;
}




.advantages-heading .line-1 {
	margin-left: -240px;
}
.advantages-heading .line-2 {
	margin-right: -240px;
}
.advantages-items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 1442px;
	margin: 0 auto;
	gap: 8px;
}
.advantages-items p {
	background: #ffffff;
	border-radius: 30px;
	padding: 22px 20px;
	font-size: var(--text-size);
	font-weight: 600;
	line-height: 1;
	margin: 0;
}
.advantages-items p span {
	background: linear-gradient(90deg, #3F7EF3 0%, #3F7EF3 0%, #020F26 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.advantages-button {
	text-align: center;
	margin-top: 64px;
}



.blog-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 80px;
}
.blog-left {
	position: relative;
	flex: auto;
	max-width: calc(52% - 80px);
	z-index: 1;
}
.blog-left-sticky {
	position: sticky;
	top: calc(68px + 30px);
	z-index: 1;
}
.blog-right {
	flex: 0 0 41%;
	max-width: 41%;
}
.blog-mainInfo {
	display: flex;
	max-width: 660px;
	justify-content: space-between;
	line-height: 1.17;
}
.blog-mainInfo-image {
	flex: 0 0 calc(37.5% - 12px);
	max-width: calc(37.5% - 12px);
}
.blog-mainInfo-info {
	flex: 0 0 calc(62.5% - 12px);
	max-width: calc(62.5% - 12px);
	padding: 44px 0;
}
.blog-mainInfo-text-1 {
	margin-bottom: 24px;
}
.blog-mainInfo-button {
	margin-bottom: 48px;
}
.blog-mainInfo-info p {
	margin-bottom: 8px;
}
.blog-mainInfo-info p:last-child {
	margin-bottom: 0;
}


.blog-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px -64px;
}
.blog-item {
	margin: 0 0 64px;
	padding: 0 12px;
}
.blog-items.columns-1 .blog-item {
	flex: 0 0 100%;
	max-width: 100%;
}
.blog-items.columns-2 .blog-item {
	flex: 0 0 50%;
	max-width: 50%;
}
.blog-items.columns-3 .blog-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
}
.blog-item__wrap {
	position: relative;
	z-index: 1;
}
.blog-item__image {
	position: relative;
	height: calc((var(--container) - 24px * 2) / 3 / 1.6333);
	overflow: hidden;
	margin-bottom: 24px;
	z-index: 1;
}
.blog-item__image-inner {
	position: relative;
	height: 100%;
	z-index: 1;
}
.blog-item__wrap:hover .blog-item__image img {
	transform: scale(1.1);
}
.blog-item__image-inner:before {
	content: '';
	background: url(images/news-item-lines.svg) no-repeat center;
	background-size: cover;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.blog-item__image-inner:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 79%;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(4, 23, 58, 0) 0%, #04173A 100%);
	z-index: 2;
}
.blog-item__meta {
	position: absolute;
	left: 16px;
	bottom: 16px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	z-index: 2;
}
.blog-item.style-2 .blog-item__meta {
	left: 24px;
	bottom: 24px;
}
.blog-item__date {
	background: #868D98;
	border-radius: 16px;
	font-size: var(--text-size-esm);
	line-height: 1;
	font-weight: 600;
	color: #FFFFFF;
	padding: 10px;
}
.blog-item__cat {
	font-size: var(--text-size-esm);
	line-height: 1.2;
	font-weight: 600;
	color: #FFFFFF;
}
.blog-item__cat a {
	color: #FFFFFF;
	text-decoration: none;
}
.blog-item__cat a:hover {
	color: #3F7EF3;
}
.blog-item__title {
	font-size: var(--text-size);
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 8px;
}
.blog-item.style-2 .blog-item__title {
	font-size: var(--h5-size);
}
.blog-item__title a {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	color: #020F26;
}
.blog-item__wrap:hover .blog-item__title a {
	color: #3F7EF3;
}
.blog-item__description {
	color: #8F99AC;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}



.navigation.pagination {
	position: relative;
	margin-top: 64px;
	z-index: 2;
}
.nav-links {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.nav-links .page-numbers {
	min-width: 32px;
	height: 32px;
	font-size: var(--text-size-esm);
	font-weight: 600;
	color: #020F26;
	background: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 5px;
	text-decoration: none;
	-moz-border-radius: 22px;
	-webkit-border-radius: 22px;
	border-radius: 22px;
}
.nav-links .page-numbers:hover,
.nav-links .page-numbers.current {
	background: #020F26;
	color: #ffffff;
}
.nav-links .page-numbers.dots {
	background: none;
	color: #020F26;
}
.nav-links .page-numbers.next,
.nav-links .page-numbers.prev {
	display: none;
}



.error-404-number {
	font-size: calc(var(--h1-size) * 8);
	font-weight: 600;
	text-align: center;
	line-height: 1;
	margin-bottom: 24px;
	color: #8F99AC;
}
.error-404-button {
	text-align: center;
}


.subscribe-section.section-md,
.feedback-section.section-md {
	padding-top: 80px;
	background: url(images/subscribe-bg.jpg) no-repeat center;
	background-size: cover;
}
.subscribe-section:before,
.feedback-section:before {
	content: '';
	background: url(images/subscribe-image.png) no-repeat center;
	background-size: cover;
	position: absolute;
	width: calc((100%  - var(--container)) / 2 + var(--container) * .4);
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.subscribe-wrap,
.feedback-wrap {
	display: flex;
	flex-wrap: wrap;
}
.subscribe-left,
.feedback-left {
	flex: 0 0 40%;
	max-width: 40%;
}
.subscribe-heading .line-1 img,
.feedback-heading .line-1 img {
	vertical-align: baseline;
	max-width: 93px;
}
.subscribe-heading .line-2 {
	margin-left: 86px;
}
.feedback-heading .line-2 {
	margin-left: 188px;
}
.subscribe-right,
.feedback-right {
	flex: 0 0 60%;
	max-width: 60%;
	padding: 75px 90px 0;
}
.subscribe-form,
.feedback-form {
	max-width: 660px;
	margin-left: auto;
	color: #ffffff;
}
.subscribe-form input[type="text"],
.subscribe-form input[type="email"],
.subscribe-form input[type="tel"],
.subscribe-form input[type="password"],
.subscribe-form select,
.subscribe-form textarea,
.feedback-form input[type="text"],
.feedback-form input[type="email"],
.feedback-form input[type="tel"],
.feedback-form input[type="password"],
.feedback-form select,
.feedback-form textarea {
	color: #FFFFFF;
}
.subscribe-form .form-field-policy,
.feedback-form .form-field-policy {
	padding-top: 4px;
	color: #ffffff;
}
.subscribe-form .form-field-policy a,
.feedback-form .form-field-policy a {
	color: #ffffff;
}
.subscribe-form .form-field-policy a:hover,
.feedback-form .form-field-policy a:hover {
	color: #ffffff;
}







.faq-items {
	max-width: 1320px;
	margin: auto;
}
.faq-item {
	position: relative;
	border-bottom: 1px solid #D9DBE4;
}
.faq-item__head {
	position: relative;
	display: flex;
	cursor: pointer;
}
.faq-item__count {
	flex: 0 0 145px;
	max-width: 145px;
	padding: 32px;
	color: #8F99AC;
	font-size: var(--h2-size);
	transition: .5s;
}
.faq-item.active .faq-item__count,
.faq-item__head:hover .faq-item__count {
	color: #3F7EF3;
}
.faq-item__title {
	border-left: 1px solid #D9DBE4;
	padding: 32px 32px 32px 76px;
	font-size: var(--h5-size);
	font-weight: 600;
	text-transform: uppercase;
	background: linear-gradient(90deg, #020F26 0%, #020F26 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	max-width: 860px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.faq-item.active .faq-item__title,
.faq-item__head:hover .faq-item__title {
	background: linear-gradient(90deg, #3F7EF3 0%, #3F7EF3 0%, #020F26 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
    text-fill-color: transparent;
}
.faq-item__toggle {
	flex: 0 0 32px;
	max-width: 32px;
	width: 32px;
	height: 32px;
	background: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	margin: auto 0 auto auto;
	transition: .5s;
}
.faq-item__toggle:before {
	content: '';
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/arrow-right.svg);
    mask-image: url(images/arrow-right.svg);
    background-color: #3F7EF3;
    flex: 0 0 21px;
    max-width: 21px;
    height: 21px;
    transition: .5s;
}
.faq-item__head:hover .faq-item__toggle,
.faq-item.active .faq-item__toggle {
	background: #3F7EF3;
}
.faq-item.active .faq-item__toggle {
	transform: rotate(90deg);
}
.faq-item.active .faq-item__toggle:before,
.faq-item__head:hover .faq-item__toggle:before {
	background-color: #ffffff;
}
.faq-item__body {
	border-top: 1px solid #D9DBE4;
	padding-left: 145px;
}
.faq-item__content {
	border-left: 1px solid #D9DBE4;
	padding: 32px 32px 32px 76px;
	max-width: 860px;
}
.faq-additional {
	max-width: 1256px;
	margin: 80px auto 0;
	gap: 20px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}
.faq-additional-text {
	flex: 0 0 78%;
	max-width: 78%;
	display: flex;
	flex-direction: column;
	gap: 2.5px;
	margin: 0;
	font-size: var(--h2-size);
	font-weight: 600;
	line-height: 1.17;
	text-transform: uppercase;
	padding-bottom: 5px;
}
.faq-additional-text .grey {
	color: #8F99AC;
}
.faq-additional-text .line-1 img {
	vertical-align: baseline;
	max-width: 110px;
}
.faq-additional-text .line-2 {
	margin-left: 35px;
}
.faq-additional-text .line-3 {
	text-align: right;
}
.faq-additional-text .line-3 img {
	margin-left: 10px;
	max-width: 73px;
}





.bottomSticky-section.section-md {
	position: sticky;
	bottom: 0;
	background: url(images/blue-dark-bg.jpg) no-repeat left top;
	background-size: cover;
	z-index: -1;
}
.bottomSticky-image {
	text-align: center;
}
.bottomSticky-image img {
	width: 100%;
	max-width: 1000px;
}



.footer {
	position: relative;
	background: #091927;
	padding: 80px 0 110px;
	color: #868D98;
	z-index: 1;
}
.footer:before {
	content: '';
	background: url(images/footer-before.png) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 675px;
	height: 191px;
	left: calc((100% - var(--container)) / 2 - 209px);
	bottom: 0;
	z-index: 1;
}
.footer:after {
	content: '';
	background: url(images/footer-after.png) no-repeat left center;
	background-size: cover;
	position: absolute;
	width: calc((100% - var(--container)) / 2 + 50px);
	height: 100%;
	right: 0;
	bottom: 0;
	z-index: -1;
}
.footer a {
	color: #868D98;
	text-decoration: none;
}
.footer a:hover {
	color: #ffffff;
}
.footer-top {
	position: relative;
	margin-bottom: 80px;
	z-index: 1;
}
.footer-wrap {
	display: flex;
	gap: 24px;
}
.footer-left {
	flex: 0 0 calc(100% / 3 - 12px);
	max-width: calc(100% / 3 - 12px);
}
.footer-copyright {
	padding-top: 70px;
	font-size: var(--text-size-esm);
	line-height: 1.2;
}
.footer-right {
	flex: 0 0 calc(100% / 3 * 2 - 12px);
	max-width: calc(100% / 3 * 2 - 12px);
}
.footer-widgets {
	display: flex;
	gap: 24px;
}
.footer-widget {
	flex: 1;
}
.footer-widget-50 {
	flex: 2;
}
.footer-widget-title {
	font-size: var(--text-size);
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 20px;
	text-transform: uppercase;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	color: #FFFFFF;
}
.footer-menu {
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 16px;
	line-height: 1.2;
}
.footer-menu-big {
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 24px;
	font-size: var(--text-size);
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 20px;
	text-transform: uppercase;
}
.footer-menu-big li a {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	color: #FFFFFF;
}
.footer-menu-big li a:hover {
	text-decoration: none;
}


.page-header {
	position: relative;
	padding: 64px 0;
	z-index: 1;
}
.page-breadcrumbs {
	font-size: var(--text-size-esm);
	font-weight: 600;
	text-transform: uppercase;
	color: #3F7EF3;
	margin-bottom: 16px;
}
.page-breadcrumbs .breadcrumb_last {
	color: #8F99AC;
}
.page-breadcrumbs a {
	color: #020F26;
	text-decoration: none;
}
.page-breadcrumbs a:hover {
	color: #3F7EF3;
}
.page-title {
	font-size: var(--h1-size);
	font-weight: 600;
	text-transform: uppercase;
	line-height: 1.17;
}
.pageServices-header-wrap {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 30px;
}
.pageServices-header-wrap > * {
	margin: 0;
}
.pageServices-search {
	flex: 0 0 calc(100% / 3 - 30px);
	max-width: calc(100% / 3 - 30px);
}
.pageServices-search-heading {
	font-size: var(--text-size-esm);
	font-weight: 400;
	margin-bottom: 0;
}
.search-form {
	position: relative;
	z-index: 1;
}
.search-form input {
	padding-right: 32px;
}
.search-form button {
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/search.svg);
    mask-image: url(images/search.svg);
    background-color: #020F26;
    position: absolute;
    top: calc(50% - 12px);
    right: 0;
    width: 24px;
    height: 24px;
    border: none;
    outline: none;
    padding: 0;
    cursor: pointer;
    transition: .5s;
}
.search-form button:hover {
	background-color: #3F7EF3;
}



.pHero-section {
	position: relative;
	padding: 100px 0;
	overflow: hidden;
	z-index: 1;
}
.pHero-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.pForUserHero-bg:before {
	content: '';
	background: url(images/map-user-hero.png) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 294px;
	height: 302px;
	bottom: 0;
	left: 0;
	z-index: 1;
}
.pForUserHero-bg:after {
	content: '';
	background: url(images/map-user-hero.png) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 198px;
	height: 203px;
	top: 0;
	right: 0;
	z-index: 1;
}
.pForPartnerHero-bg:before {
	content: '';
	background: url(images/map-user-hero.png) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 294px;
	height: 302px;
	bottom: 0;
	right: 0;
	z-index: 1;
}
.pContactsHero-bg:after {
	content: '';
	background: url(images/map-user-hero.png) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 198px;
	height: 203px;
	top: 0;
	right: 0;
	z-index: 1;
}
.pHero-wrap {
	display: flex;
	justify-content: space-between;
	gap: 30px;
}
.pHero-left {
	flex: auto;
	max-width: calc(100% / 3 * 2 - 30px);
}
.pHero-heading {
	position: relative;
	display: inline-block;
	font-size: var(--h1-size);
	text-transform: uppercase;
	color: #ffffff;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin: 0;
	z-index: 1;
}
.pHero-section.black .pHero-heading {
	color: #020F26;
}
.pHero-heading .line-2 {
	margin-left: 260px;
}
.pHero-right {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	padding-top: 80px;
	display: flex;
	flex-direction: column;
	gap: 48px;
}
.pHero-description {
	color: #ffffff;
	margin: 0;
	font-weight: 600;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}
.pHero-section.black .pHero-description {
	color: #020F26;
}




.infoBlock_2-heading .line-2 {
	margin-left: 132px;
}
.infoBlock_2-heading-2 .line-2 {
	margin-left: 260px;
}
.infoBlock_2-heading p,
.infoBlock_2-content,
.infoBlock_2-button {
	margin-left: 257px;
}
.infoBlock_2-content,
.infoBlock_2-button {
	margin-bottom: 64px;
}
.infoBlock_2-content:last-child {
	margin-bottom: 0;
}
.infoBlock_2-content h4 {
	margin-bottom: 24px;
}
.infoBlock_2-wrap {
	max-width: 1080px;
	margin: auto;
}




.screenshots-section {
	overflow: hidden;
}
.screenshots-section:before {
	content: '';
	background: url(images/screenshots-map.png) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 1271px;
	height: 762px;
	bottom: 0;
	left: calc((100% - var(--container)) / 2 - 200px);
	opacity: .25;
	z-index: -1;
}
.screenshots-section:after {
	content: '';
	background: url(images/screenshots-map.png) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 1271px;
	height: 762px;
	top: 391px;
	right: calc((100% - var(--container)) / 2 - 1072px);
	opacity: .25;
	z-index: -1;
}
.screenshots-wrap {
	position: relative;
	height: calc(var(--container) / 1.3451);
	z-index: 1;
}
.screenshots-heading .line-1 {
	margin-left: -310px;
}
.screenshots-heading .line-2 {
	margin-right: -310px;
}
.screenshots-description {
	text-align: center;
	margin-bottom: 48px;
}
.screenshots-button {
	text-align: center;
}
.screenshots-images {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.screenshots-image {
	position: absolute;
	z-index: 1;
}
.screenshots-image:nth-child(1) {
	left: 0;
	top: 280px;
	width: 27.3%;
	height: 23.6%;
}
.screenshots-image:nth-child(2) {
	top: 169px;
	right: 0;
	width: 22.2%;
	height: 19.5%;
}
.screenshots-image:nth-child(3) {
	top: calc(304px + 14.9%);
    right: 8.5%;
    width: 34.5%;
    height: 28.4%;
}
.screenshots-image:nth-child(4) {
	bottom: 71px;
    left: 9.6%;
    width: 38.6%;
    height: 34.1%;
}
.screenshots-image:nth-child(5) {
	bottom: 63px;
	right: 0;
	width: 19.1%;
	height: 14.2%;
}



.packet-heading .line-1 img {
	vertical-align: baseline;
}
.packet-heading .line-3 {
	margin-left: 257px;
}
.packet-heading .line-4 {
	margin-left: 515px;
}

.packet-block-advantages {
	position: relative;
	padding: 64px 280px 64px 64px;
	background: url(images/packet-block-bg.jpg) no-repeat center;
	background-size: cover;
	margin-bottom: 8px;
	z-index: 1;
}
.packet-block-advantages:before {
	content: '';
	position: absolute;
	background: url(images/packet-block-map.png) no-repeat center;
	background-size: cover;
	width: 725px;
	height: 100%;
	top: 0;
	right: 0;
	z-index: -1;
}
.packet-block-advantages h3 {
	font-size: var(--h5-size);
	font-weight: 600;
	color: #FFFFFF;
	margin-bottom: 24px;
	text-transform: uppercase;
}
.packet-block-advantages ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.packet-block-advantages ul li {
	background: #FFFFFF;
	padding: 14px 20px;
	line-height: 1;
	border-radius: 22px;
	font-weight: 600;
}
.packet-block-advantages ul li span {
	background: linear-gradient(90deg, #020F26 0%, #020F26 0%, #020F26 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: .5s;
}
.packet-block-advantages ul li:hover span {
	background: linear-gradient(90deg, #3F7EF3 0%, #3F7EF3 0%, #020F26 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.packet-wrap {
	position: relative;
	background: #FFFFFF;
	border: 1px solid #D9DBE4;
	display: flex;
}
.packet-title {
	flex: 0 0 23%;
	max-width: 23%;
	border-right: 1px solid #D9DBE4;
	margin-bottom: 0;
	padding: 24px;
	font-size: var(--h5-size);
	font-weight: 600;
	text-transform: uppercase;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}
.packet-button {
	flex: 0 0 22%;
	max-width: 22%;
	padding: 24px;
	border-left: 1px solid #D9DBE4;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}
.packet-button .btn {
	width: 100%;
	padding-left: 16px;
	padding-right: 16px;
}
.packet-price {
	flex: 0 0 55%;
	max-width: 55%;
	display: flex;
	align-items: center;
	padding: 24px;
	justify-content: center;
	gap: 85px;
	line-height: 1.17;
}
.packet-price-item__label {
	font-size: var(--text-size);
	margin-bottom: 0;
	font-weight: 400;
	color: #8F99AC;
}
.packet-price-item__value span {
	background: linear-gradient(90deg, #3F7EF3 0%, #3F7EF3 0%, #020F26 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: var(--h5-size);
	font-weight: 600;
}
.packet-price-item__value sup {
	font-size: var(--text-size-esm);
	font-weight: 600;
	color: #8F99AC;
	margin-left: 4px;
}



.specialists-section {
	overflow: hidden;
}
.specialists-section:before {
	content: '';
	background: url(images/screenshots-map.png) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 1271px;
	height: 762px;
	bottom: 0;
	left: calc((100% - var(--container)) / 2 - 200px);
	opacity: .25;
	z-index: -1;
}
.specialists-section:after {
	content: '';
	background: url(images/screenshots-map.png) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 1271px;
	height: 762px;
	top: 391px;
	right: calc((100% - var(--container)) / 2 - 1072px);
	opacity: .25;
	z-index: -1;
}
.specialists-wrap {
	position: relative;
	height: calc(var(--container) / 1.3451);
	z-index: 1;
}
.specialists-heading .line-1 {
	margin-left: -342px;
}
.specialists-heading .line-2 {
	margin-right: -342px;
}
.specialists-description {
	text-align: center;
	max-width: 660px;
	margin: 0 auto;
}
.specialists-items {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.specialists-item {
	position: absolute;
	z-index: 1;
}
.specialists-item:nth-child(1) {
	left: 0;
	top: 280px;
	width: 27.3%;
	height: 23.6%;
}
.specialists-item:nth-child(2) {
	top: 169px;
	right: 0;
	width: 22.2%;
	height: 19.5%;
}
.specialists-item:nth-child(3) {
	top: calc(215px + 24%);
    right: 8.5%;
    width: 34.5%;
    height: 28.4%;
}
.specialists-item:nth-child(4) {
	bottom: 71px;
    left: 9.6%;
    width: 38.6%;
    height: 34.1%;
}
.specialists-item:nth-child(5) {
	bottom: 63px;
	right: 0;
	width: 19.1%;
	height: 14.2%;
}
.specialists-item__image {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.specialists-item__title {
	position: absolute;
	font-size: var(--h5-size);
	font-weight: 600;
	background: #ffffff;
	padding: 16px 24px;
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
	z-index: 1;
}
.specialists-item__title span {
	background: linear-gradient(90deg, #3F7EF3 0%, #3F7EF3 0%, #020F26 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.specialists-item:nth-child(1) .specialists-item__title {
	top: 30px;
	left: 100%;
	transform: translateX(-50%);
}
.specialists-item:nth-child(2) .specialists-item__title {
	bottom: 50px;
	left: 0%;
	transform: translateX(-50%);
}
.specialists-item:nth-child(3) .specialists-item__title {
	top: 30px;
	left: 0%;
	transform: translateX(-50%);
}
.specialists-item:nth-child(4) .specialists-item__title {
	top: 0;
	right: 14px;
	transform: translateY(-50%);
}
.specialists-item:nth-child(5) .specialists-item__title {
	top: 50%;
	left: 0%;
	transform: translate(-50%, -50%);
}
.specialists-item__text {
	position: absolute;
	width: 100%;
	top: calc(100% + 16px);
	left: 0;
	z-index: 1;
}



.team-section {
	overflow: hidden;
}
.team-heading .line-1 {
	margin-left: -415px;
}
.team-heading .line-2 {
	margin-right: -415px;
}
.team-items {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	z-index: 1;
}
.team-items:before {
	content: '';
	background: #D9DBE4;
	width: 100vw;
	height: 1px;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}
.team-item {
	display: none;
	position: relative;
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	border-right: 1px solid #D9DBE4;
	z-index: 1;
}
.team-items.active .team-item,
.team-item:nth-child(1),
.team-item:nth-child(2),
.team-item:nth-child(3),
.team-item:nth-child(4),
.team-item:nth-child(5),
.team-item:nth-child(6) {
	display: block;
}
.team-item:nth-child(3n+1) {
	border-left: 1px solid #D9DBE4;
}
.team-item:nth-child(3n+1):after {
	content: '';
	background: #D9DBE4;
	width: 100vw;
	height: 1px;
	position: absolute;
	bottom: 0;
	left: calc((100vw - var(--container)) / -2);
	z-index: -1;
}
.team-item__wrap {
	position: relative;
	height: 100%;
	padding: 32px 24px;
	z-index: 1;
}
.team-item__image {
	width: 160px;
	height: 160px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	margin-bottom: 32px;
	overflow: hidden;
}
.team-item__title {
	font-size: var(--h5-size);
	font-weight: 600;
	margin-bottom: 16px;
	text-transform: uppercase;
}
.team-item__title span {
	background: linear-gradient(90deg, #3F7EF3 0%, #3F7EF3 0%, #020F26 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.team-item__bottom {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}
.team-item__advantages {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.team-item__advantages span {
	display: inline-block;
	color: #020F26;
	font-size: var(--text-size);
	font-weight: 600;
	background: #FFFFFF;
	line-height: 1;
	-moz-border-radius: 22px;
	-webkit-border-radius: 22px;
	border-radius: 22px;
	padding: 14px 20px;
}
.team-item__button {
	flex: 0 0 54px;
	max-width: 54px;
	width: 54px;
	height: 44px;
	background: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	-moz-border-radius: 22px;
	-webkit-border-radius: 22px;
	border-radius: 22px;
}
.team-item__button:hover {
	background: #3F7EF3;
}
.team-item__button:before {
	content: '';
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/arrow-down-right.svg);
    mask-image: url(images/arrow-down-right.svg);
    background-color: #3F7EF3;
    flex: 0 0 14px;
    max-width: 14px;
    height: 14px;
    transition: .5s;
}
.team-item__button:hover:before {
	background-color: #FFFFFF;
}

.team-button {
	margin-top: 48px;
	text-align: center;
}

.team-additional {
	max-width: 1280px;
	margin: 80px auto 0;
	gap: 20px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}
.team-additional-text {
	flex: auto;
	max-width: calc(100% - 210px - 20px);
	display: flex;
	flex-direction: column;
	gap: 2.5px;
	margin: 0;
	font-size: var(--h2-size);
	font-weight: 600;
	line-height: 1.17;
	text-transform: uppercase;
	padding-bottom: 5px;
}
.team-additional-text .grey {
	color: #8F99AC;
}
.team-additional-text .line-1 {
	margin-left: 185px;
}
.team-additional-text .line-1 img {
	vertical-align: baseline;
	max-width: 110px;
}
.team-additional-text .line-3 {
	text-align: right;
}
.team-additional-text .line-3 img {
	margin-left: 10px;
	max-width: 73px;
}



.modalSideInfo {
	position: fixed;
	right: 0;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: -999;
	opacity: 0;
	transition: .5s;
}
.modalSideInfo.show {
	z-index: 999;
	opacity: 1;
}
.modalSideInfo-bg {
	content: '';
	background: url(images/modal-bg.jpg) no-repeat center;
	background-size: cover;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	transition: .5s;
	z-index: -1;
}
.modalSideInfo.show .modalSideInfo-bg {
	opacity: .6;
}
.modalSideInfo-wrap {
	position: relative;
	background: #FFFFFF;
	height: 100%;
	width: 100%;
	max-width: 880px;
	margin-left: auto;
	transform: translateX(100%);
	padding: 64px;
	transition: .5s;
	overflow: auto;
	z-index: 1;
}
.modalSideInfo.show .modalSideInfo-wrap {
	transform: translateX(0);
}
.modalSideInfo-close {
	position: absolute;
	top: 64px;
	right: 64px;
	background: url(images/close.svg) no-repeat center;
	background-size: contain;
	width: 32px;
	height: 32px;
	border: none;
	padding: 0;
	outline: none !important;
	cursor: pointer;
	z-index: 2;
	transition: .5s;
}
.modalSideInfo-close:hover {
	transform: scale(1.1);
}
.modalSideInfo-body {
	position: relative;
	width: 100%;
	padding-right: 32px;
	z-index: 1;
}
.modalSideInfo-loading,
.faq-loading {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}
.modalSideInfo-loading img,
.faq-loading img {
	max-width: 120px;
	max-height: 120px;
}
.singleSpecialist-name {
	font-size: var(--h2-size);
	font-weight: 600;
	text-transform: uppercase;
	line-height: 1.17;
	margin-bottom: 24px;
}
.singleSpecialist-name span {
	background: linear-gradient(90deg, #3F7EF3 0%, #3F7EF3 0%, #020F26 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	border-bottom: 1px solid;
}
.singleSpecialist-image {
	width: 160px;
	height: 160px;
	overflow: hidden;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	margin-bottom: 24px;
}
.singleSpecialist-advantages-blocks {
	display: flex;
	flex-direction: column;
	gap: 64px;
}
.singleSpecialist-advantages-heading {
	font-size: var(--h5-size);
	font-weight: 600;
	color: #020F26;
	line-height: 1.17;
	text-transform: uppercase;
	margin-bottom: 24px;
}
.singleSpecialist-advantages-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.singleSpecialist-advantages-list li {
	background: #F8F7FC;
	font-size: var(--text-size);
	font-weight: 600;
	color: #020F26;
	line-height: 1;
	padding: 14px 20px;
	-moz-border-radius: 22px;
	-webkit-border-radius: 22px;
	border-radius: 22px;
}









.map-section {
	background: url(images/blue-dark-bg.jpg) no-repeat left top;
	background-size: cover;
}
.map-heading.heading {
	margin-bottom: 56px;
}
.map-heading .line-1 {
	margin-left: -180px;
}
.map-heading .line-2 {
	margin-right: -180px;
}
.map-image {
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
}
.map-captions {
	margin: 6px auto 0;
	padding: 0;
	list-style: none;
	max-width: 1200px;
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}
.map-captions li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 600;
	color: #ffffff;
}
.map-captions li span {
	flex: 0 0 16px;
	max-width: 16px;
	width: 16px;
	height: 16px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}



.problems-section {
	overflow: hidden;
}
.problems-section:before {
	content: '';
	background: url(images/screenshots-map.png) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 1271px;
	height: 762px;
	top: 524px;
	left: calc((100% - var(--container)) / 2 - 200px);
	opacity: .25;
	z-index: -1;
}
.problems-section:after {
	content: '';
	background: url(images/screenshots-map.png) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 1271px;
	height: 762px;
	top: 391px;
	right: calc((100% - var(--container)) / 2 - 1072px);
	opacity: .25;
	z-index: -1;
}
.problems-wrap {
	position: relative;
	height: calc(var(--container) / 1.3451);
	z-index: 1;
}
.problems-heading .line-1 {
	margin-left: -320px;
}
.problems-heading .line-2 {
	margin-right: -320px;
}
.problems-description {
	text-align: center;
	max-width: 660px;
	margin: 0 auto;
}
.problems-items {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.problems-item {
	position: absolute;
	z-index: 1;
}
.problems-item:nth-child(1) {
	left: 0;
	top: 280px;
	width: 27.3%;
	height: 23.6%;
}
.problems-item:nth-child(2) {
	top: 169px;
	right: 0;
	width: 22.2%;
	height: 19.5%;
}
.problems-item:nth-child(3) {
	top: calc(215px + 24%);
    right: 8.5%;
    width: 34.5%;
    height: 28.4%;
}
.problems-item:nth-child(4) {
	bottom: 71px;
    left: 9.6%;
    width: 38.6%;
    height: 34.1%;
}
.problems-item:nth-child(5) {
	bottom: 63px;
	right: 0;
	width: 19.1%;
	height: 14.2%;
}
.problems-item__image {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.problems-item__title {
	position: absolute;
	font-size: var(--h5-size);
	font-weight: 600;
	background: #ffffff;
	padding: 16px 24px;
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
	width: max-content;
	z-index: 1;
}
.problems-item__title span {
	background: linear-gradient(90deg, #3F7EF3 0%, #3F7EF3 0%, #020F26 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.problems-item:nth-child(1) .problems-item__title {
	bottom: 30px;
	left: calc(100% + 25px);
	transform: translateX(-50%);
}
.problems-item:nth-child(2) .problems-item__title {
	bottom: 25px;
	left: -100px;
	transform: translateX(-50%);
}
.problems-item:nth-child(3) .problems-item__title {
	top: 80px;
	left: 100px;
	transform: translateX(-50%);
}
.problems-item:nth-child(4) .problems-item__title {
	bottom: 32px;
	left: -140px;
}
.problems-item:nth-child(5) .problems-item__title {
	top: 50%;
	left: 0%;
	transform: translate(-50%, -50%);
}
.problems-results {
	text-align: center;
	margin-top: 50px;
}
.problems-results p {
	display: inline-block;
	font-size: var(--h5-size);
	font-weight: 600;
	background: #ffffff;
	padding: 16px 24px;
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
}
.problems-results p span {
	background: linear-gradient(90deg, #3F7EF3 0%, #3F7EF3 0%, #020F26 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}



.pHeroAbout-section {
	position: relative;
	padding: 120px 0 140px;
	overflow: hidden;
	z-index: 1;
}
.pHeroAbout-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.pHeroAbout-wrap {
	display: flex;
	justify-content: space-between;
	gap: 30px;
}
.pHeroAbout-left {
	flex: auto;
	max-width: calc(100% / 3 * 2);
}
.pHeroAbout-heading {
	position: relative;
	display: inline-block;
	font-size: var(--h1-size);
	text-transform: uppercase;
	color: #ffffff;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin: 0;
	z-index: 1;
}
.pHeroAbout-heading .line-1 {
	margin-left: 257px;
}
.pHeroAbout-heading .line-2 {
	margin-left: 386px;
}
.pHeroAbout-heading .line-3 {
	margin-left: 332px;
}
.pHeroAbout-right {
	flex: 0 0 calc(100% / 3 - 30px);
	max-width: calc(100% / 3 - 30px);
}
.pHeroAbout-description {
	text-align: right;
	color: #ffffff;
	margin: 0;
	font-weight: 600;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}



.marquee-section {
	position: relative;
	padding: 64px 0 0;
	z-index: 1;
}
.simplemarquee-wrapper > span,
.marquee-items > span {
	margin-right: 8px;
	display: inline-block;
	font-size: var(--h5-size);
	font-weight: 600;
	background: #ffffff;
	padding: 16px 24px;
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
}
.simplemarquee-wrapper > span:last-child,
.marquee-items > span {
	margin-right: 0;
}
.marquee-items {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
}
.simplemarquee-wrapper span span,
.marquee-items > span span {
	background: linear-gradient(90deg, #3F7EF3 0%, #3F7EF3 0%, #020F26 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}




.mission-section {
	overflow: hidden;
}
.mission-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.mission-heading.heading {
	margin-bottom: 46px;
}
.mission-heading .line-1 img {
	vertical-align: baseline;
}
.mission-heading .line-2 {
	margin-left: 267px;
}
.mission-content {
	margin-left: 267px;
	color: #ffffff;
	font-size: var(--h5-size);
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.mission-content span {
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}
.mission-content > * {
	margin: 0;
}
.mission-content ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 0;
	list-style: none;
}
.mission-content ul li {
	background: #ffffff;
	padding: 16px 24px;
	color: #020F26;
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
	font-weight: 600;
}


.founder-section {
	overflow: hidden;
}
.founder-line-left {
	position: absolute;
	width: 1px;
	height: 100%;
	background: #D9DBE4;
	top: 0;
	left: calc((100% - var(--container)) / 2);
	z-index: 1;
}
.founder-line-left:before {
	content: '';
    position: absolute;
    top: 103px;
    left: -31px;
    width: 73px;
    height: 7px;
    background: url(images/red-grid-blocks.svg) no-repeat center;
    background-size: contain;
    transform: rotate(-90deg);
    z-index: 1;
}
.founder-line-bottom {
	position: absolute;
	width: 100%;
	height: 1px;
	background: #D9DBE4;
	bottom: 0;
	left: 0;
	z-index: 1;
}
.founder-line-bottom:before {
	content: '';
    position: absolute;
    bottom: 0;
    right: calc((100% - var(--container)) / 2 - 73px - 85px);
    width: 73px;
    height: 7px;
    background: url(images/red-grid-blocks.svg) no-repeat center;
    background-size: contain;
    z-index: 1;
}
.founder-wrap {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	border-left: 1px solid #D9DBE4;
	z-index: 1;
}
.founder-left {
	position: relative;
	flex: 0 0 calc(100% / 3 * 2);
	max-width: calc(100% / 3 * 2);
	padding: 0 80px 0 257px;
	z-index: 1;
}
.founder-right {
	position: relative;
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	background: #F9F8F3;
	border-left: 1px solid #D9DBE4;
	z-index: 2;
}
.founder-right:before {
	content: '';
	background: url(images/map-founder.png) no-repeat left center;
	background-size: contain;
	position: absolute;
	left: calc(100% - 2px);
	top: 0;
	min-width: 200px;
	width: calc((100vw - var(--container)) / 2);
	height: 370px;
	z-index: -2;
}
.founder-main {
	padding: 120px 0 64px;
}
.founder-bottom {
	position: relative;
	padding: 64px 0;
	z-index: 1;
}
.founder-bottom:before {
	content: '';
    position: absolute;
    width: 100vw;
    height: 1px;
    background: #D9DBE4;
    top: 0;
    left: calc((100vw - var(--container)) / -2 - 257px);
    z-index: -1;
}
.founder-bottom:after {
	content: '';
	background: url(images/map-user-hero.png) no-repeat right center;
	background-size: contain;
	position: absolute;
	min-width: 200px;
	width: calc((100vw - var(--container)) / 2);
	height: 100%;
	bottom: 0;
	right: calc(100% + 257px);
	z-index: 1;
}
.founder-name {
	font-size: var(--h5-size);
	font-weight: 600;
	line-height: 1.16;
	text-transform: uppercase;
	margin-bottom: 8px;
}
.founder-name span {
	background: linear-gradient(90deg, #3F7EF3 0%, #3F7EF3 0%, #020F26 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.founder-profession {
	font-weight: 600;
	line-height: 1.17;
}


.marketValue-section.section {
	padding-top: 60px;
}

.feedback_about-section {
	overflow: hidden;
}
.feedback_about-wrap {
	display: flex;
	gap: 6.5%;
}
.feedback_about-left {
	flex: 0 0 28%;
	max-width: 28%;
}
.feedback_about-image {
	position: relative;
	z-index: 1;
}
.feedback_about-image:after {
	content: '';
    position: absolute;
    top: calc(100% + 108px);
    left: 124px;
    width: 73px;
    height: 7px;
    background: url(images/red-grid-blocks.svg) no-repeat center;
    background-size: contain;
    z-index: 1;
}
.feedback_about-right {
	position: relative;
	flex: auto;
	max-width: 750px;
	padding-top: 55px;
	z-index: 1;
}
.feedback_about-right:before {
	content: '';
    position: absolute;
    top: 213px;
    left: calc(-32px + 100% + 24px);
    width: 73px;
    height: 7px;
    background: url(images/red-grid-blocks.svg) no-repeat center;
    background-size: contain;
    transform: rotate(-90deg);
    z-index: 1;
}
.feedback_about-heading.heading {
	margin-bottom: 32px;
}
.feedback_about-heading .line-2 {
	margin-left: 116px;
}
.feedback_about-description {
	font-size: var(--h5-size);
	font-weight: 600;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	margin-bottom: 64px;
}
.feedback_about-map-1 {
	content: '';
	position: absolute;
	width: 197px;
	height: 108px;
	background: url(images/map-feedback-1.png) no-repeat top left;
	background-size: contain;
	top: 100%;
	left: 0;
	z-index: -1;
}
.feedback_about-map-2 {
	content: '';
    position: absolute;
    width: 198px;
    height: 180px;
    background: url(images/map-feedback-2.png) no-repeat top left;
    background-size: contain;
    top: 160px;
    right: calc((100% - var(--container)) / 2 - 198px);
    z-index: -1;
}
.feedback_about-map-3 {
	content: '';
    position: absolute;
    width: 203px;
    height: 296px;
    background: url(images/map-feedback-3.png) no-repeat top left;
    background-size: contain;
    top: 485px;
    right: calc((100% - var(--container)) / 2 - 203px);
    z-index: -1;
}




.pageServices-body-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}
.pageServices-sidebar {
	flex: 0 0 calc(100% / 3 - 12px);
	max-width: calc(100% / 3 - 12px);
}
.pageServices-main {
	flex: 0 0 calc(100% / 3 * 2 - 12px);
	max-width: calc(100% / 3 * 2 - 12px);
}




.servicesCategories-menu,
.servicesCategories-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
	gap: 8px;
	display: flex;
	flex-direction: column;
}
.servicesCategories-menu {
	max-width: 335px;
}
.servicesCategories-menu li a {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: var(--text-size-esm);
	font-weight: 600;
	line-height: 1.333;
	padding: 10px 20px;
	border: 1px solid transparent;
	text-decoration: none;
}
.servicesCategories-menu > li > a {
	background: #020F26;
	border-color: #020F26;
	color: #FFFFFF;
	min-height: 50px;
	-moz-border-radius: 25px;
	-webkit-border-radius: 25px;
	border-radius: 25px;
}
.servicesCategories-menu > li > a:after {
	content: '';
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/chevron-down.svg);
    mask-image: url(images/chevron-down.svg);
    background-color: #ffffff;
    flex: 0 0 24px;
    max-width: 24px;
    width: 24px;
    height: 24px;
    transition: .5s;
}
.servicesCategories-menu > li.active > a:after {
    transform: rotate(-90deg);
}
.servicesCategories-menu ul {
	margin-top: 8px;
}
.servicesCategories-menu ul li a {
	background: #FFFFFF;
	border-color: #868D98;
	min-height: 44px;
	-moz-border-radius: 22px;
	-webkit-border-radius: 22px;
	border-radius: 22px;
}
.servicesCategories-menu ul li a span {
	background: linear-gradient(90deg, #020F26 0%, #020F26 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: .5s;
}
.servicesCategories-menu ul li a:hover span {
	background: linear-gradient(90deg, #3F7EF3 0%, #3F7EF3 0%, #020F26 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}



.pageSearch-title {
	font-size: var(--h5-size);
	font-weight: 600;
	margin-bottom: 30px;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	margin-left: 100px;
}



.singleServices-wrap {
	position: relative;
	z-index: 1;
}
.singleServices-main {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
	margin-bottom: 24px;
}
.singleServices-main > * {
	margin: 0 !important;
}
.singleServices-title {
	font-size: var(--h2-size);
	font-weight: 600;
	text-transform: uppercase;
	line-height: 1.17;
	margin-bottom: 24px;
	max-width: 500px;
}
.singleServices-title span {
	background: linear-gradient(90deg, #3F7EF3 0%, #3F7EF3 0%, #020F26 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	border-bottom: 1px solid;
}
.singleServices-price {
	font-weight: 600;
	color: #8F99AC;
	max-width: 500px;
}
.singleServices-image {
	height: 160px;
	overflow: hidden;
	margin-bottom: 24px;
}
.singleServices-items {
	display: flex;
	flex-direction: column;
	gap: 64px;
}
.singleServices-item__customForm {
	max-width: 500px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.singleServices-item__customForm-heading {
	font-weight: 600;
	margin-bottom: 0;
}
.services-form {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.services-form p {
	margin: 0;
	font-size: var(--text-size-esm);
	font-weight: 600;
	color: #8F99AC;
}
.services-form label {
	font-size: var(--text-size-esm);
}
.singleServices-item__list-heading {
	font-size: var(--h5-size);
	font-weight: 600;
	color: #020F26;
	line-height: 1.17;
	text-transform: uppercase;
	margin-bottom: 24px;
}
.singleServices-item__list-items {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.singleServices-item__list-items.vertical {
	flex-direction: column;
	align-items: flex-start;
}
.singleServices-item__list-items li {
	background: #F8F7FC;
	font-size: var(--text-size);
	font-weight: 600;
	color: #020F26;
	line-height: 1;
	padding: 14px 20px;
	-moz-border-radius: 22px;
	-webkit-border-radius: 22px;
	border-radius: 22px;
}
.singleServices-item__content {
	max-width: 575px;
	line-height: 1.37;
}
.singleServices-item__content ul {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 0 0 0 60px;
	list-style: none;
}
.singleServices-item__content ul li {
	position: relative;
	padding-left: 40px;
	z-index: 1;
}
.singleServices-item__content ul li:before {
	content: '';
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/arrow-right.svg);
    mask-image: url(images/arrow-right.svg);
    background-color: #020F26;
    width: 24px;
    height: 24px;
    position: absolute;
    top: -1px;
    left: 0;
    z-index: 1;
}
.singleServices-item__content .wp-caption-text {
	margin-top: 8px;
	font-size: var(--text-size-esm);
	font-weight: 600;
	color: #8F99AC;
}
.singleServices-item__content blockquote {
	position: relative;
	padding: 5px 0 5px 20px;
	z-index: 1;
}
.singleServices-item__content blockquote:before,
.singleServices-item__content blockquote:after {
	content: '';
	position: absolute;
	width: 4px;
	background: #3F7EF3;
	left: 0;
}
.singleServices-item__content blockquote:before {
	top: 0;
	height: calc(100% - 5px - 5px);
}
.singleServices-item__content blockquote:after {
	height: 5px;
	bottom: 0;
}





.categoriesBlog-items {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 48px;
	padding: 0;
	list-style: none;
	max-width: 960px;
}
.categoriesBlog-items li a {
	display: block;
	color: #FFFFFF;
	background: linear-gradient(90deg, #020F26 0%, #020F26 100%);
	text-decoration: none;
	font-size: var(--text-size-esm);
	font-weight: 600;
	line-height: 1.34;
	padding: 14px 20px;
	-moz-border-radius: 22px;
	-webkit-border-radius: 22px;
	border-radius: 22px;
}
.categoriesBlog-items li a:hover,
.categoriesBlog-items li.active a {
	background: linear-gradient(90deg, #3F7EF3 0%, #3F7EF3 0%, #020F26 100%);
}





.singleBlog-wrap {
	max-width: 1008px;
	margin: 0 auto;
	padding-top: 64px;
}
.singleBlog-breadcrumbs {
	text-align: center;
}
.singleBlog-title {
	margin: 0 0 16px;
	font-size: var(--h2-size);
	font-weight: 600;
	text-transform: uppercase;
	text-align: center;
}
.singleBlog-meta {
	margin-bottom: 16px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
}
.singleBlog-meta span {
	background: #ffffff;
	-moz-border-radius: 16px;
	-webkit-border-radius: 16px;
	border-radius: 16px;
	color: #020F26;
	font-size: var(--text-size-esm);
	font-weight: 600;
	line-height: 1;
	padding: 10px;
}
.singleBlog-excerpt {
	color: #8F99AC;
	text-align: center;
	margin-bottom: 32px;
}
.singleBlog-image {
	margin-bottom: 48px;
}
.singleBlog-info {
	display: flex;
	flex-direction: column;
	gap: 48px;
}


.page-content h1 {
	font-size: var(--h4-size);
}
.page-content h2 {
	font-size: var(--h5-size);
}
.page-content h6 {
	font-size: var(--h5-size);
}
.page-content h4 {
	font-size: var(--h5-size);
}
.page-content h5 {
	font-size: var(--text-size);
}
.page-content h6 {
	font-size: var(--text-size);
}
.page-content blockquote {
	position: relative;
	padding: 0px 0 0px 32px;
	z-index: 1;
}
.page-content blockquote:before,
.page-content blockquote:after {
	content: '';
	position: absolute;
	width: 7px;
	background: #D34D3C;
	left: 0;
}
.page-content blockquote:before {
	top: 0;
	height: calc(100% - 13px - 8px);
}
.page-content blockquote:after {
	height: 8px;
	bottom: 0;
}
.page-content span[style="text-decoration: underline;"] {
	text-decoration-thickness: 1px !important;
	text-underline-offset: 3px;
}

.singleBlog-share {
	max-width: 940px;
	margin: 80px auto 0;
	gap: 20px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}
.singleBlog-share-text {
	flex: 0 0 78%;
	max-width: 78%;
	display: flex;
	flex-direction: column;
	gap: 2.5px;
	margin: 0;
	font-size: var(--h2-size);
	font-weight: 600;
	line-height: 1.17;
	text-transform: uppercase;
	padding-bottom: 5px;
	text-align: center;
	align-items: center;
}
.singleBlog-share-text .grey {
	color: #8F99AC;
}
.singleBlog-share-text .line-1 {
	margin-left: -190px;
}
.singleBlog-share-text .line-1 img {
	vertical-align: baseline;
	max-width: 110px;
}
.singleBlog-share-text .line-2 {
	margin-right: -400px;
}
.singleBlog-share-text .line-2 img:last-child {
	margin-left: 10px;
	max-width: 73px;
	margin-top: -6px;
}
.singleBlog-share-text .line-2 img.share-icon-fb {
	vertical-align: middle;
	margin-top: -6px;
}


.relatedBlog-heading.heading {
	margin-bottom: 48px;
}



.pContactsHero-items {
	position: relative;
	margin-top: 64px;
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	z-index: 1;
}
.pContactsHero-items:first-child {
	margin-top: 0;
}
.pContactsHero-item {
	flex: 0 0 auto;
	min-width: 234px;
	max-width: 100%;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.pContactsHero-item__email-2 {
	margin-left: 260px;
}
.pContactsHero-item p {
	color: #ffffff;
	margin: 0;
	font-size: var(--h5-size);
	font-weight: 600;
	line-height: 1.17;
}
.pContactsHero-item__adress p span {
	background: linear-gradient(90deg, #3F7EF3 0%, #3F7EF3 0%, #020F26 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.pContactsHero-item p a {
	color: #ffffff;
	text-decoration: none;
}
.pContactsHero-item p a:hover {
	opacity: .75;
}
.pContactsHero-item p.pContactsHero-item__label {
	font-size: var(--text-size);
	line-height: 1;
	color: #8F99AC;
}

.pContactsLocation-section.section {
	padding-top: 80px;
}
.pContactsLocation-image {
	margin-top: 64px;
}



.pFAQ-body-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}
.pFAQ-body-sidebar {
	flex: 0 0 calc(17% - 12px);
	max-width: calc(17% - 12px);
}
.pFAQ-body-main {
	flex: 0 0 calc(83% - 12px);
	max-width: calc(83% - 12px);
}

.faq-categories {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.faq-categories li a {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	color: #FFFFFF;
	background: #020F26;
	text-decoration: none;
	font-size: var(--text-size-esm);
	font-weight: 600;
	line-height: 1.34;
	padding: 16px 20px;
	-moz-border-radius: 24px;
	-webkit-border-radius: 24px;
	border-radius: 24px;
}
.faq-categories li a:hover,
.faq-categories li.active a {
	color: #3F7EF3;
}
.faq-categories li.all-question a:before {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/menu-grid.svg);
	mask-image: url(images/menu-grid.svg);
	background-color: #FFFFFF;
	flex: 0 0 16px;
	max-width: 16px;
	width: 16px;
	height: 16px;
	transition: .5s;
}
.faq-categories li.all-question a:hover:before,
.faq-categories li.all-question.active a:before {
	background-color: #3F7EF3;
}




.pLandsHero-section {
	position: relative;
	padding: 64px 0;
	overflow: hidden;
	z-index: 1;
}
.pLandsHero-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.pLandsHero-wrap {
	display: flex;
	justify-content: space-between;
	gap: 60px;
}
.pLandsHero-left,
.pLandsHero-right {
	flex: 1;
}
.pLandsHero-heading .line-2 {
	margin-left: 260px;
}
.pLandsHero-heading p {
	margin-left: 260px;
	color: #ffffff;
	font-weight: 600;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.area-block {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}
.area-left {
	flex: 0 0 calc(44% - 15px);
	max-width: calc(44% - 15px);
}
.area-right {
	flex: 0 0 calc(56% - 15px);
	max-width: calc(56% - 15px);
}
.area-number {
	font-size: var(--h5-size);
	font-weight: 600;
	color: #FFFFFF;
	margin-bottom: 8px;
}
.area-characteristics {
	margin: 0 0 24px;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-size: var(--text-size);
	line-height: 1;
	color: #8F99AC;
	font-weight: 600;
}
.area-buttons {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
}
.area-map {
	position: relative;
	height: 290px;
	z-index: 1;
}
.area-content-map {
	margin-top: 8px;
	color: #ffffff;
	font-size: var(--text-size-esm);
	font-weight: 600;
}
.area-content-map a {
	color: #ffffff;
}
.area-content-map a:hover {
	color: #3F7EF3;
}





.projects-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px -64px;
}
.projects-item {
	margin: 0 0 64px;
	padding: 0 12px;
}
.projects-items.columns-1 .projects-item {
	flex: 0 0 100%;
	max-width: 100%;
}
.projects-items.columns-2 .projects-item {
	flex: 0 0 50%;
	max-width: 50%;
}
.projects-items.columns-3 .projects-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
}
.projects-item__wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	z-index: 1;
}
.projects-item__image {
	position: relative;
	height: calc((var(--container) - 24px * 2) / 3 / 1.6333);
	overflow: hidden;
	margin-bottom: 24px;
	overflow: hidden;
	z-index: 1;
}
.projects-item__image:before {
	content: '';
	background: url(images/news-item-lines.svg) no-repeat center;
	background-size: cover;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.projects-item__image:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 79%;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(4, 23, 58, 0) 0%, #04173A 100%);
	z-index: 2;
}
.projects-item__wrap:hover .projects-item__image img {
	transform: scale(1.1);
}
.projects-item__title {
	font-size: var(--text-size);
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 8px;
}
.projects-item__content {
	color: #8F99AC;
	margin-bottom: 8px;
}
.projects-item__content:last-child {
	margin-bottom: 0;
}
.projects-item__button {
	margin-top: auto;
}



.modalInfo-image {
	height: auto;
}
.modalInfo-title {
	font-size: var(--h5-size);
	text-align: left;
}
.modalFindOutCost-description,
.modalTraining-description {
	text-align: left;
}



.modalThanks-image {
	height: auto;
}
.modalThanks-image:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 60%;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(4, 23, 58, 0) 0%, #020F26 100%);
	z-index: 1;
}
.modalThanks-title {
	text-align: left;
	font-size: calc(var(--h3-size) / 1.1666);
	margin-bottom: 4px !important;
}
.modalThanks-description {
	text-decoration: none;
	font-size: var(--text-size-esm);
	color: #8F99AC;
	text-align: left;
}



.modalCookie {
	display: none;
	position: fixed;
	bottom: 48px;
	left: 50%;
	transform: translateX(-50%);
	max-width: 100%;
	z-index: 20;
}
.modalCookie-wrap {
	position: relative;
	width: 1080px;
	max-width: var(--container);
	display: flex;
	align-items: center;
	gap: 16px;
	background: #FFFFFF;
	border: 1px solid #ECF2FE;
	box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.1);
	padding: 16px 24px;
	z-index: 1;
}
.modalCookie-content {
	position: relative;
	flex: auto;
	padding-left: 32px;
	font-size: var(--text-size-sm);
	line-height: 1.5;
	z-index: 1;
}
.modalCookie-content:before {
	content: '';
	background: url(images/cookie.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 24px;
	height: 24px;
	top: -1.5px;
	left: 0;
	z-index: 1;
}
.modalCookie-button {
	flex: 0 0 auto;
}







@media (max-width: 1599px) {
	:root {
		--container: 1320px;

		--text-size: 16px;
		--text-size-sm: 14px;
		--text-size-esm: 12px;
		--h1-size: 42px;
		--h2-size: 36px;
		--h3-size: 30px;
		--h4-size: 24px;
		--h5-size: 20px;
		--h6-size: 18px;
	}
	.btn {
		min-height: 56px;
		padding: 8px 32px;
	}
	.btn.btn-sm {
		min-height: 44px;
		padding: 13px 24px;
	}
	.section {
		padding-top: 120px;
		padding-bottom: 120px;
	}
	.section-md {
		padding-top: 90px;
		padding-bottom: 90px;
	}
	.heading {
		margin-bottom: 48px;
	}
	.offers-item__left {
		padding: 48px 64px 48px 0;
	}
	.offers-item__right {
		padding: 48px 0 48px 64px;
		flex: 0 0 61%;
		max-width: 61%;
	}
	.offers-item__image {
		width: 140px;
		height: 140px;
		margin-bottom: 24px;
	}
	.services_xl-items {
		max-width: 1100px;
	}
	.services_xl-item__wrap {
		height: calc((1100px - 24px) / 2 / 1.6578);
	}
	.services-additional,
	.faq-additional,
	.team-additional {
		max-width: 1100px;
		margin-top: 64px;
	}
	.offers-additional {
		padding-top: 64px;
	}
	.services-additional-text,
	.faq-additional-text {
		flex: 0 0 75%;
		max-width: 75%;
	}
	.services-additional-text .line-1 img,
	.subscribe-heading .line-1 img, 
	.feedback-heading .line-1 img,
	.faq-additional-text .line-1 img,
	.packet-heading .line-1 img,
	.offers-additional-text .line-1 img,
	.team-additional-text .line-1 img,
	.singleBlog-share-text .line-1 img,
	.mission-heading .line-1 img {
		max-width: 90px;
	}
	.infoBlock-heading .line-2,
	.infoBlock_2-heading .line-2 {
		margin-left: 100px;
	}
	.infoBlock-heading p,
	.infoBlock-items,
	.pHero-heading .line-2,
	.infoBlock_2-heading p, 
	.infoBlock_2-content, 
	.infoBlock_2-button,
	.packet-heading .line-3,
	.infoBlock_2-heading-2 .line-2,
	.offers-additional-text .line-2,
	.pLandsHero-heading .line-2,
	.pLandsHero-heading p,
	.pHeroAbout-heading .line-1,
	.mission-heading .line-2,
	.mission-content {
		margin-left: 200px;
	}
	.pHeroAbout-heading .line-2 {
		margin-left: 300px;
	}
	.pHeroAbout-heading .line-3 {
		margin-left: 250px;
	}
	.packet-heading .line-4 {
		margin-left: 430px;
	}
	.infoBlock-heading.heading {
		margin-bottom: 36px;
	}
	.infoBlock-items {
		gap: 36px;
	}
	.advantages-heading .line-1 {
		margin-left: -200px;
	}
	.advantages-heading .line-2 {
		margin-right: -200px;
	}
	.advantages-items p {
		padding: 20px;
	}
	.advantages-button {
		margin-top: 48px;
	}
	.blog-left {
		flex: 0 0 52%;
		max-width: 52%;
	}
	.blog-mainInfo-info {
		padding: 32px 0;
	}
	.blog-mainInfo-button {
		margin-bottom: 36px;
	}
	.blog-right {
		flex: 0 0 calc(44% - 80px);
		max-width: calc(44% - 80px);
	}
	.blog-items,
	.projects-items {
		margin-bottom: -48px;
	}
	.blog-item,
	.projects-item {
		margin-bottom: 48px;
	}
	.subscribe-right, .feedback-right {
		padding: 75px 78px 0;
	}
	.faq-items {
		max-width: 1240px;
	}
	.faq-item__count {
		padding: 24px;
		flex: 0 0 120px;
		max-width: 120px;
	}
	.faq-item__title,
	.faq-item__content {
		padding: 24px 24px 24px 64px;
	}
	.faq-item__body {
		padding-left: 120px;
	}

	.footer {
		padding: 80px 0 100px;
	}
	.footer-top {
		margin-bottom: 64px;
	}
	.bottomSticky-image img {
		max-width: 860px;
	}
	.singleServices-items {
		gap: 48px;
	}
	.singleServices-item__content ul {
		padding-left: 48px;
	}
	.pHero-right {
		gap: 36px;
		padding-top: 64px;
	}
	.pForUserHero-bg:before {
		width: 230px;
		height: 238px;
	}
	.pForUserHero-bg:after {
		width: 150px;
		height: 156px;
	}
	.infoBlock_2-content, .infoBlock_2-button {
		margin-bottom: 48px;
	}
	.screenshots-heading .line-1 {
		margin-left: -270px;
	}
	.screenshots-heading .line-2 {
		margin-right: -270px;
	}
	.screenshots-description {
		margin-bottom: 36px;
	}
	.packet-block-advantages {
		padding: 48px 230px 48px 48px;
	}
	.packet-price {
		flex: 0 0 50%;
		max-width: 50%;
		gap: 64px;
	}
	.packet-button {
		flex: 0 0 27%;
		max-width: 27%;
	}
	.problems-heading .line-1 {
		margin-left: -290px;
	}
	.problems-heading .line-2 {
		margin-right: -290px;
	}
	.pForPartnerHero-bg:before {
		width: 240px;
		height: 246px;
	}

	.solutions-submenu {
		padding: 36px 0 48px;
	}
	.solutions-submenu-image {
		flex: 0 0 300px;
		max-width: 300px;
	}
	.solutions-submenu-wrap ul {
		gap: 36px;
	}
	.problems-section:before,
	.problems-section:after,
	.specialists-section:before,
	.specialists-section:after {
		width: 950px;
		height: 570px;
	}
	.problems-section:after,
	.specialists-section:after {
		right: calc((100% - var(--container)) / 2 - 820px);
	}
	.problems-results {
		margin-top: 10px;
	}
	.feedback-heading .line-2,
	.team-additional-text .line-1 {
		margin-left: 160px;
	}
	.specialists-heading .line-1 {
    	margin-left: -300px;
	}
	.specialists-heading .line-2 {
    	margin-right: -300px;
	}
	.team-item__wrap {
		padding: 24px;
	}
	.team-item__image {
		width: 140px;
		height: 140px;
		margin-bottom: 24px;
	}
	.team-button {
		margin-top: 36px;
	}
	.map-heading .line-1 {
    	margin-left: -160px;
	}
	.map-heading .line-2 {
    	margin-right: -160px;
	}
	.map-heading.heading {
		margin-bottom: 36px;
	}
	.map-image,
	.map-captions {
		max-width: 1080px;
	}


	.modalSideInfo-wrap {
		max-width: 720px;
		padding: 48px;
	}
	.modalSideInfo-close {
		top: 48px;
		right: 48px;
	}
	.singleSpecialist-image {
		width: 140px;
		height: 140px;
	}
	.singleSpecialist-advantages-blocks {
		gap: 48px;
	}

	.page-header {
		padding: 48px 0;
	}
	.singleBlog-wrap {
		padding-top: 48px;
	}
	.singleBlog-excerpt {
		margin-bottom: 24px;
	}
	.singleBlog-image {
		margin-bottom: 36px;
	}
	.singleBlog-info {
		gap: 36px;
	}
	.singleBlog-share {
		margin-top: 64px;
		max-width: 840px;
	}
	.singleBlog-share-text {
		flex: 0 0 75%;
		max-width: 75%;
	}
	.singleBlog-share-text .line-1 {
		margin-left: -150px;
	}
	.singleBlog-share-text .line-2 {
	    margin-right: -370px;
	}
	.feedback_about-right {
		padding-top: 42px;
	}
	.feedback_about-heading.heading {
		margin-bottom: 24px;
	}
	.feedback_about-description {
		margin-bottom: 48px;
	}
	.pContactsLocation-image {
		margin-top: 48px;
	}

	.marquee-section {
		padding-top: 48px;
	}
	.founder-left {
		padding: 0 64px 0 200px;
	}
	.founder-main {
		padding: 90px 0 48px;
	}
	.founder-bottom {
		padding: 48px 0;
	}
}





@media (max-width: 1399px) {
	:root {
		--container: 1110px;

		--text-size: 16px;
		--text-size-sm: 14px;
		--text-size-esm: 12px;
		--h1-size: 36px;
		--h2-size: 32px;
		--h3-size: 28px;
		--h4-size: 22px;
		--h5-size: 20px;
		--h6-size: 18px;
	}
	.section {
		padding-top: 100px;
		padding-bottom: 100px;
	}
	.section-md {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.header-menu {
		gap: 32px;
	}
	.hero-wrap {
		max-width: 680px;
		padding: 64px 0;
	}
	.offers-heading .line-1 {
		margin-left: -200px;
	}
	.offers-heading .line-2 {
		margin-right: -200px;
	}
	.bottomSticky-image img {
		max-width: 640px;
	}
	.screenshots-wrap,
	.specialists-wrap,
	.problems-wrap {
		height: calc(var(--container) / 1.08);
	}
	.screenshots-image:nth-child(1),
	.specialists-item:nth-child(1),
	.problems-item:nth-child(1) {
		height: 25.2%;
	}
	.screenshots-image:nth-child(2),
	.specialists-item:nth-child(2),
	.problems-item:nth-child(2) {
		height: 19.6%;
	}
	.screenshots-image:nth-child(3),
	.specialists-item:nth-child(3),
	.problems-item:nth-child(3) {
		height: 23%;
	}
	.screenshots-image:nth-child(4),
	.specialists-item:nth-child(4),
	.problems-item:nth-child(4) {
		height: 27.3%;
	}
	.screenshots-image:nth-child(5),
	.specialists-item:nth-child(5),
	.problems-item:nth-child(5) {
		width: 24.1%;
	}
	.specialists-heading .line-1 {
		margin-left: -240px;
	}
	.specialists-heading .line-2 {
		margin-right: -240px;
	}
	.specialists-item__title,
	.problems-item__title,
	.services-item__title,
	.simplemarquee-wrapper > span {
		font-size: var(--h6-size);
	}
	.infoBlock-heading p, .infoBlock-items, .pHero-heading .line-2, .infoBlock_2-heading p, .infoBlock_2-content, .infoBlock_2-button, .packet-heading .line-3, .infoBlock_2-heading-2 .line-2, .offers-additional-text .line-2, .pLandsHero-heading .line-2, .pLandsHero-heading p, .pHeroAbout-heading .line-1, .mission-heading .line-2, .mission-content {
		margin-left: 175px;
	}
	.offers_about-heading .line-1 {
    	margin-left: -300px;
	}
	.offers_about-heading .line-2 {
    	margin-right: -300px;
	}
	.pLandsHero-wrap {
		gap: 20px;
	}
	.error-404-number {
		font-size: calc(var(--h1-size) * 7);
	}

}





@media (max-width: 1199px) {
	:root {
		--container: 910px;

		--text-size: 16px;
		--text-size-sm: 14px;
		--text-size-esm: 12px;
		--h1-size: 36px;
		--h2-size: 32px;
		--h3-size: 28px;
		--h4-size: 22px;
		--h5-size: 20px;
		--h6-size: 18px;
	}
	.header-account {
		flex: 0 0 auto;
		max-width: 160px;
	}
	.header-wrap {
		gap: 48px;
	}
	.header-menu {
		gap: 24px;
	}
	.solutions-submenu-wrap {
		gap: 20px;
	}
	.solutions-submenu-image {
		flex: 0 0 260px;
		max-width: 260px;
	}
	.solutions-submenu-wrap ul {
		gap: 24px;
	}
	.solutions-submenu-wrap ul li a {
		font-size: var(--h6-size);
	}
	.solutions-submenu-wrap ul li > span {
		font-size: var(--text-size-sm);
		margin-top: 10px;
	}
	.services_xl-items {
		max-width: 100%;
	}
	.services_xl-item__wrap {
		height: calc((var(--container) - 24px) / 2 / 1.6578);
	}
	.services_xl-item__title {
		font-size: var(--h6-size);
	}

	.services-additional-text .line-2 {
		margin-left: 30px;
	}
	.services-additional-text, .faq-additional-text {
		flex: 0 0 70%;
		max-width: 70%;
	}
	.infoBlock-heading .line-2, .infoBlock_2-heading .line-2 {
		margin-left: 50px;
	}
	.infoBlock-heading p, .infoBlock-items, .pHero-heading .line-2, .infoBlock_2-heading p, .infoBlock_2-content, .infoBlock_2-button, .packet-heading .line-3, .infoBlock_2-heading-2 .line-2, .offers-additional-text .line-2, .pLandsHero-heading .line-2, .pLandsHero-heading p, .pHeroAbout-heading .line-1, .mission-heading .line-2, .mission-content {
		margin-left: 100px;
	}
	.blog-wrap {
		gap: 40px;
	}
	.blog-left {
		flex: 0 0 54%;
		max-width: 54%;
	}
	.blog-right {
		flex: 0 0 calc(46% - 40px);
        max-width: calc(46% - 40px);
	}
	.blog-item__image,
	.projects-item__image {
		margin-bottom: 16px;
	}
	.blog-item.style-2 .blog-item__title {
		font-size: var(--h6-size);
	}
	.projects-item__content {
		font-size: var(--text-size-sm);
	}
	.subscribe-heading .line-2 {
		margin-left: 0;
	}
	.subscribe-right, .feedback-right {
        padding: 48px 0 0 36px;
    }
    .faq-additional-text .line-2 {
    	text-align: right;
    	margin-left: auto;
    	max-width: 430px;
    }
    .footer-left {
    	flex: 0 0 calc(25% - 12px);
    	max-width: calc(25% - 12px);
    }
    .footer-right {
    	flex: 0 0 calc(75% - 12px);
    	max-width: calc(75% - 12px);
    }
    .soc-links {
    	gap: 12px;
    }
    .footer-copyright {
    	padding-top: 36px;
    }
    .footer:before {
    	width: 520px;
    	height: 150px;
    }
    .footer:after {
    	width: calc((100% - var(--container)) / 2 + 20px);
    }
    .offers-item__left {
    	padding: 48px 48px 48px 0;
    }
    .offers-item__right {
    	padding: 48px 0 48px 48px;
    }
    .pHero-section {
    	padding: 80px 0;
    }
    .screenshots-heading .line-1 {
    	margin-left: -160px;
    }
    .screenshots-heading .line-2 {
        margin-right: -160px;
    }
    .packet-heading .line-4 {
    	margin-left: 200px;
    }
    .packet-block-advantages {
    	padding: 48px;
    }
    .packet-price {
    	gap: 24px;
    }
    .specialists-heading .line-1 {
    	margin-left: -150px;
    }
    .specialists-heading .line-2 {
    	margin-right: -150px;
    }
    .screenshots-image:nth-child(1), .specialists-item:nth-child(1), .problems-item:nth-child(1) {
    	width: 24.3%;
    	height: 20.2%;
    }
    .screenshots-image:nth-child(2), .specialists-item:nth-child(2), .problems-item:nth-child(2) {
    	width: 20.2%;
    	height: 17.6%;
    	top: 186px;
    }
    .screenshots-image:nth-child(3), .specialists-item:nth-child(3), .problems-item:nth-child(3) {
		top: calc(215px + 25%);
		right: 7.5%;
		width: 31.5%;
		height: 20%;
    }
    .screenshots-image:nth-child(4), .specialists-item:nth-child(4), .problems-item:nth-child(4) {
		height: 24.3%;
		bottom: 60px;
		width: 36.6%;
		left: 8%;
	}
	.screenshots-image:nth-child(5), .specialists-item:nth-child(5), .problems-item:nth-child(5) {
		width: 24.1%;
		bottom: 50px;
		height: 14%;
	}
	.specialists-item__text {
		font-size: var(--text-size-sm);
		top: calc(100% + 10px);
	}
	.offers_partner-item .offers-item__right {
		flex: 0 0 68%;
		max-width: 68%;
	}
	.offers-additional-description {
		flex: 0 0 calc(100% - 210px);
		max-width: calc(100% - 210px);
	}
	.offers-additional-button .btn {
		padding-left: 24px;
		padding-right: 24px;
	}
	.team-heading .line-1 {
		margin-left: -250px;
	}
	.team-heading .line-2 {
		margin-right: -250px;
	}
	.feedback-heading .line-2, .team-additional-text .line-1 {
		margin-left: 100px;
	}
	.team-additional-text .line-2 {
		max-width: 480px;
		text-align: right;
		margin-left: auto;
	}
	.map-heading .line-1 {
        margin-left: -100px;
    }
    .map-heading .line-2 {
        margin-right: -140px;
    }
    .problems-item:nth-child(4) .problems-item__title {
    	bottom: 10px;
    	left: -50px;
	}
	.problems-heading .line-1 {
		margin-left: -200px;
	}
	.problems-heading .line-2 {
        margin-right: -200px;
    }
    .infoBlock-heading.heading {
    	width: calc(100% + 30px);
    }
    .pContactsHero-item__email-2 {
    	margin-left: 0;
    }
    .pContactsHero-item {
    	min-width: 200px;
    }
    .pLandsHero-wrap {
    	flex-wrap: wrap;
    	gap: 48px;
    }
    .pLandsHero-left, .pLandsHero-right {
    	flex: 0 0 100%;
    	max-width: 100%;
    }

    .pHeroAbout-heading .line-2 {
    	margin-left: 150px;
    }
    .pHeroAbout-heading .line-3 {
    	margin-left: 100px;
    }

    .mission-heading.heading h2 {
    	display: block;
    }
    .mission-heading.heading .line-2 {
    	margin-left: 0;
    }
    .founder-left {
    	padding: 0 64px;
    }
}





@media (max-width: 991px) {
	:root {
		--container: 690px;

		--text-size: 16px;
		--text-size-sm: 14px;
		--text-size-esm: 12px;
		--h1-size: 32px;
		--h2-size: 28px;
		--h3-size: 24px;
		--h4-size: 22px;
		--h5-size: 20px;
		--h6-size: 18px;
	}
	[data-aos] {
		opacity: 1 !important;
		transform: translateZ(0) !important;
		transition-delay: 0 !important;
	}
	.container-full {
		max-width: calc(100% - 32px);
	}
	.btn {
		min-height: 60px;
		padding: 10px 40px;
	}
	.section,
	.section-md {
		padding-top: 96px;
		padding-bottom: 96px;
	}
	.heading.center {
		text-align: left;
	}
	.heading h2, .heading .h2 {
		display: block;
	}
	.heading h2 .line-1, .heading .h2 .line-1,
	.heading h2 .line-2, .heading .h2 .line-2 {
		margin: 0;
	}
	.header {
		padding: 10px 0;
	}
	.header-wrap {
		gap: 24px;
		height: 24px;
	}
	.header-menu,
	.header-account {
		display: none;
	}
	.header-logo {
		flex: auto;
	}
	.header-logo img {
		max-height: 24px;
	}
	.hero-wrap {
		min-height: calc(100vh - 44px);
		max-width: 100%;
		padding: 80px 0 150px;
	}
	.hero-search {
		bottom: 24px;
	}
	.hero-search-heading {
		font-size: var(--text-size-esm);
		margin-bottom: 16px;
	}
	.hero-search-form {
		gap: 0;
		height: 60px;
		padding: 12px 16px;
	}
	.hero-search-form label {
		position: absolute;
		top: 12px;
		left: 16px;
		font-size: var(--text-size-esm);
		z-index: -1;
	}
	.hero-search-form input {
		padding-top: 20px;
	}
	.hero-liners {
		display: none;
	}
	.offers-item__wrap {
		flex-wrap: wrap;
		gap: 40px;
		padding: 48px 0;
	}
	.offers-item__left,
	.offers-item__right {
		flex: 0 0 100%;
		max-width: 100%;
		padding: 0;
		border: none;
	}
	.offers-item__image {
		width: 160px;
		height: 160px;
		margin-bottom: 32px;
	}
	.offers-item__title {
		font-size: var(--h3-size);
	}
	.offers_main-item:nth-child(2n+1) .offers-item__right:before {
		display: none;
	}
	.offers-item__list p {
		font-size: var(--h3-size);
	}
	.offers-item__line-top, .offers-item__line-bottom {
		display: none;
	}
	.offers-item {
		border-bottom: 1px solid rgba(2, 15, 38, 0.15);
	}
	.offers-item:first-child {
		border-top: 1px solid rgba(2, 15, 38, 0.15);
	}
	.services-heading {
		flex-wrap: wrap;
		gap: 0px;
	}
	.services-heading p {
		flex: 0 0 100%;
		margin-top: 2px;
		max-width: 100%;
		text-align: left;
	}
	.services_xl-items,
	.services-items {
		padding-top: 0;
	}
	.services_xl-item,
	.services-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.services_xl-item:nth-child(2n+1),
	.services-item:nth-child(2n+1) {
		margin-top: 0;
	}
	.services_xl-item__wrap,
	.services-item__wrap {
		height: 380px;
		padding: 16px;
	}
	.services_xl-item__title,
	.services-item__title {
		font-size: var(--h3-size);
	}
	.services-item__title {
		margin-bottom: 0;
	}
	.services-item__description {
		display: block;
		margin-top: 8px;
		line-height: 1.17;
		color: #fff;
		overflow: hidden;
	    display: -webkit-box;
	    -webkit-line-clamp: 2;
	    -webkit-box-orient: vertical;
	}
	.services-additional {
		flex-direction: column;
		gap: 16px;
		align-items: flex-start;
	}
	.services-additional-text {
		flex: auto;
		max-width: 100%;
		padding-bottom: 0;
		display: block;
	}
	.services-additional-text .line-2 {
		margin-left: 0;
	}
	.services-additional-text .line-3 {
		text-align: left;
	}
	.services-additional-text .line-1 img, .subscribe-heading .line-1 img, .feedback-heading .line-1 img, .faq-additional-text .line-1 img, .packet-heading .line-1 img, .offers-additional-text .line-1 img, .team-additional-text .line-1 img, .singleBlog-share-text .line-1 img, .mission-heading .line-1 img {
		max-width: 110px;
	}
	.infoBlock-section.section-md {
		display: flex;
		flex-direction: column-reverse;
		padding-top: 0;
	}
	.infoBlock-image {
		position: relative;
		width: 100%;
		margin-bottom: 80px;
	}
	.infoBlock-image img {
		object-position: center;
	}
	.infoBlock-left {
		flex: 0 0 100%;
		max-width: 100%;
		padding-right: 0;
	}
	.infoBlock-heading.heading {
		margin-bottom: 48px;
	}
	.infoBlock-heading p, .infoBlock-items, .pHero-heading .line-2, .infoBlock_2-heading p, .infoBlock_2-content, .infoBlock_2-button, .packet-heading .line-3, .infoBlock_2-heading-2 .line-2, .offers-additional-text .line-2, .pLandsHero-heading .line-2, .pLandsHero-heading p, .pHeroAbout-heading .line-1, .mission-heading .line-2, .mission-content {
		margin-left: 0;
	}
	.infoBlock-heading.heading p {
		max-width: 100%;
	}
	.text-lg {
		font-size: var(--h3-size);
	}
	.infoBlock-items {
		gap: 48px;
		max-width: 100%;
	}
	.advantages-items {
		max-width: 100%;
		justify-content: flex-start;
	}
	.advantages-items p {
		padding: 22px 20px;
	}
	.advantages-button {
		text-align: left;
	}
	.blog-wrap {
		gap: 48px;
	}
	.blog-left {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.blog-left-sticky {
		position: relative;
		top: 0;
	}
	.blog-mainInfo {
		max-width: 100%;
	}
	.blog-mainInfo-image {
		display: none;
	}
	.blog-mainInfo-info {
		flex: 0 0 100%;
		max-width: 100%;
		padding: 0;
	}
	.blog-mainInfo-button {
		margin-bottom: 48px;
	}
	.blog-right {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.blog-item__image {
		height: calc(var(--container) / 1.6333);
	}
	.blog-item__image, .projects-item__image {
		margin-bottom: 24px;
	}
	.blog-item.style-2 .blog-item__meta {
		left: 16px;
		bottom: 16px;
	}
	.blog-item.style-2 .blog-item__title {
		font-size: var(--h3-size);
	}
	.subscribe-section:before, .feedback-section:before {
		display: none;
	}
	.subscribe-section.section-md, .feedback-section.section-md {
		padding-top: 40px;
		background-position: 85% 50%;
	}
	.subscribe-wrap, .feedback-wrap {
		gap: 48px;
	}
	.subscribe-left, .feedback-left {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.subscribe-right, .feedback-right {
		flex: 0 0 100%;
		max-width: 100%;
		padding: 0;
	}
	.subscribe-form, .feedback-form {
		max-width: 100%;
	}
	.form-fields {
		margin-bottom: -20px;
	}
	.form-field {
		margin-bottom: 20px;
	}
	.form-field-50,
	.form-field-67,
	.form-field-33 {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.form-field-button.right {
		text-align: left;
	}
	.faq-section .heading {
		text-align: center;
	}
	.faq-item:first-child .faq-item__head {
		padding-top: 0;
	}
	.faq-item__head {
		flex-wrap: wrap;
		padding: 24px 0;
	}
	.faq-item__count {
		flex: 0 0 100%;
		max-width: 100%;
		padding: 0;
		margin-bottom: 24px;
	}
	.faq-item__title, .faq-item__content {
		padding: 0;
		flex: auto;
		max-width: calc(100% - 24px - 20px);
		border: none;
	}
	.faq-item__title {
		font-size: var(--text-size);
	}
	.faq-item__toggle {
		flex: 0 0 24px;
		max-width: 24px;
		width: 24px;
		height: 24px;
	}
	.faq-item__toggle:before {
		flex: 0 0 16px;
		max-width: 16px;
		height: 16px;
	}
	.faq-item__body {
		padding: 0;
	}
	.faq-item__content {
		padding: 24px 0;
	}
	.faq-additional {
		max-width: 100%;
		margin-top: 96px;
		flex-wrap: wrap;
		gap: 16px;
	}
	.faq-additional-text {
		flex: 0 0 100%;
		max-width: 100%;
		display: block;
	}
	.footer-wrap {
		gap: 48px;
		flex-wrap: wrap;
	}
	.footer-left {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.footer-right {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.footer-widgets {
		flex-direction: column;
	}
	.footer-widget-title {
		margin-bottom: 16px;
	}
	.footer-copyright {
		padding-top: 0;
		order: 4;
	}
	.footer-main .footer-widgets {
		gap: 48px;
	}
	.footer:after {
		display: none;
	}
	.footer:before {
		left: 0;
		width: 100%;
		height: 190px;
	}
	.bottomSticky-section.section-md {
		padding-top: 40px;
		padding-bottom: 40px;
	}
    .pForUserHero-bg:before,
    .pForUserHero-bg:after {
    	display: none;
    }
    .pHero-section,
    .pHeroAbout-section {
    	padding: 80px 0;
    	min-height: 600px;
    	display: flex;
    	flex-direction: column;
    	justify-content: center;
    }
    .pHero-wrap,
    .pHeroAbout-wrap {
    	flex-wrap: wrap;
    	gap: 20px;
    	margin-bottom: 80px;
    }
    .pHero-left,
    .pHeroAbout-left {
    	flex: 0 0 100%;
    	max-width: 100%;
    }
    .pHero-heading,
    .pHeroAbout-heading {
    	display: block;
    }
    .pHero-heading br,
    .pHeroAbout-heading br {
    	display: none;
    }
    .pHeroAbout-heading .line-1,
    .pHeroAbout-heading .line-2,
    .pHeroAbout-heading .line-3 {
    	margin-left: 0;
    }
    .pHero-right,
    .pHeroAbout-right {
    	flex: 0 0 100%;
    	max-width: 100%;
    	padding-top: 0;
    	gap: 20px;
    }
    .pHero-description,
    .pHeroAbout-description {
    	text-align: left;
    	text-decoration: none;
    }
    .offers_user-item .offers-item__left, .offers_about-item .offers-item__left, .offers_user-item .offers-item__right {
    	flex: 0 0 100%;
    	max-width: 100%;
    }
    .offers_user-item .offers-item__wrap,
    .offers_about-item .offers-item__wrap,
    .offers_authorities-item .offers-item__wrap {
    	gap: 24px;
    }
    .offers_user-item:nth-child(3n+2) .offers-item__right:before,
    .offers_about-item:nth-child(3n) .offers-item__right:before {
    	display: none;
    }
    .offers-item__title br {
    	display: none;
    }
    .offers_about-item .offers-item__right {
    	flex: 0 0 100%;
    	max-width: 100%;
    }
    .screenshots-section:before,
    .screenshots-section:after {
    	display: none;
    }
    .screenshots-description,
    .screenshots-button {
    	margin-bottom: 48px;
    	text-align: left;
    }
    .screenshots-images {
    	position: relative;
    	display: flex;
    	flex-direction: column;
    	gap: 24px;
    	z-index: 1;
    }
    .screenshots-image {
    	position: relative;
    	top: 0 !important;
    	left: 0 !important;
    	bottom: 0 !important;
    	right: 0 !important;
    	width: 100% !important;
    	height: calc(var(--container) / 1.52) !important;
    }
	.screenshots-image img {
		object-position: center top;
	}
    .screenshots-wrap, .specialists-wrap, .problems-wrap {
    	height: auto;
    }
    .packet-section {
    	overflow: hidden;
    }
    .packet-heading .line-4 {
    	margin-left: 0;
    }
    .packet-block-advantages:before {
    	display: none;
    }
    .packet-block-advantages {
    	width: 100vw;
    	padding: 80px calc((100vw - var(--container)) / 2);
    	margin-left: calc((100vw - var(--container)) / -2);
    	margin-bottom: 0;
    }
    .packet-block-advantages ul li {
    	padding: 12px 20px;
    	border-radius: 20px;
    }
    .packet-wrap {
    	border: none;
    	width: 100vw;
    	padding: 48px calc((100vw - var(--container)) / 2);
    	margin-left: calc((100vw - var(--container)) / -2);
    	flex-wrap: wrap;
    }
    .packet-title {
    	flex: 0 0 100%;
    	max-width: 100%;
    	border: none;
    	padding: 0;
    	font-size: var(--h3-size);
    	display: block;
    	text-align: left;
    }
    .packet-price {
    	flex: 0 0 100%;
    	max-width: 100%;
    	margin: 24px 0;
    	padding: 24px 0;
    	border-top: 1px solid rgba(2, 15, 38, 0.15);
    	border-bottom: 1px solid rgba(2, 15, 38, 0.15);
    	flex-direction: column;
    	align-items: flex-start;
    }
    .packet-price-item__value span {
    	font-size: var(--h3-size);
    }
    .packet-button {
    	flex: 0 0 100%;
    	max-width: 100%;
    	border: none;
    	padding: 0;
    	display: block;
    	text-align: left;
    }
    .pForPartnerHero-bg:before {
    	display: none;
    }
    .pForPartnerHero-bg img {
    	object-position: left center;
    }
    .problems-section:before, .problems-section:after, .specialists-section:before, .specialists-section:after {
    	display: none;
    }
    .specialists-description,
    .problems-description {
    	max-width: 100%;
    	text-align: left;
    	margin-bottom: 48px;
    }
    .specialists-items,
    .problems-items {
    	position: relative;
    	display: flex;
    	flex-direction: column;
    	gap: 48px;
    	z-index: 1;
    }
    .specialists-item,
    .problems-item {
    	position: relative;
    	top: 0 !important;
    	left: 0 !important;
    	bottom: 0 !important;
    	right: 0 !important;
    	width: 100% !important;
    	height: auto !important;
    }
    .specialists-item__image,
    .problems-item__image {
    	height: calc(var(--container) / 1.52);
    	margin-bottom: 24px;
    }
    .specialists-item__title,
    .problems-item__title {
    	position: relative;
    	top: 0 !important;
    	left: 0 !important;
    	bottom: 0 !important;
    	right: 0 !important;
    	transform: none !important;
    	font-size: var(--h3-size);
    	display: inline-block;
    	margin-bottom: 16px;
    	max-width: 100%;
    }
    .problems-item__title {
    	margin-bottom: 0;
    }
    .specialists-item__text {
    	position: relative;
    	top: 0;
    	font-size: var(--text-size);
    }
    .offers_partner-item .offers-item__wrap,
    .offers_partner-item .offers_authorities-item {
    	gap: 24px;
    }
    .offers_partner-item .offers-item__left,
    .offers_partner-item .offers-item__right {
    	flex: 0 0 100%;
    	max-width: 100%;
    }
    .offers_partner-item:nth-child(7n+2) .offers-item__right:before,
    .offers_authorities-item:nth-child(4n+1) .offers-item__right:before {
    	display: none;
    }
    .offers_partner-item:last-child .offers-item__left {
    	border: none;
    	margin-left: 0;
    	padding-left: 0;
    	flex: 0 0 100%;
    	max-width: 100%;
    }
    .offers-additional {
    	padding-top: 96px;
    	max-width: 100%;
    	gap: 0;
    }
    .offers-additional-text {
    	display: block;
    	margin-bottom: 48px;
    	padding-bottom: 0;
    }
    .offers-additional-description {
    	flex: 0 0 100%;
    	max-width: 100%;
    	margin-bottom: 16px;
    }
    .team-item {
    	flex: 0 0 100%;
    	max-width: 100%;
    	border: none !important;
    }
    .team-item__wrap {
    	padding: 32px 0;
    }
    .team-item__image {
    	width: 160px;
    	height: 160px;
    	margin-bottom: 32px;
    }
    .team-item__title {
    	font-size: var(--h3-size);
    }
    .team-item__bottom {
    	flex-wrap: wrap;
    	gap: 8px;
    }
    .team-item__advantages {
    	flex: 0 0 100%;
    	max-width: 100%;
    }
    .team-item:after {
	    content: '';
	    background: #D9DBE4;
	    width: 100vw;
	    height: 1px;
	    position: absolute;
	    bottom: 0;
	    left: calc((100vw - var(--container)) / -2);
	    z-index: -1;
	}
	.team-button {
		margin-top: 48px;
	}
	.team-additional {
		gap: 16px;
		flex-wrap: wrap;
	}
	.team-additional-text {
		flex: 0 0 100%;
		max-width: 100%;
		display: block;
	}
	.feedback-heading .line-2, .team-additional-text .line-1 {
		margin-left: 0;
	}
	.team-additional-text .line-2 {
		max-width: 100%;
		text-align: left;
	}
	.map-heading.heading {
		margin-bottom: 48px;
	}
	.map-section + .section {
		padding: 0 !important;
	}
	.infoBlock-section-2 .infoBlock-image {
		margin-bottom: 48px;
		height: 450px;
	}
	.modalSideInfo-wrap {
		max-width: 400px;
		padding: 64px 16px;
	}
	.modalSideInfo-close {
		top: 16px;
		right: 16px;
	}
	.modalSideInfo-body {
		padding-right: 0;
	}
	.singleSpecialist-image {
		width: 160px;
		height: 160px;
	}
	.singleSpecialist-advantages-blocks {
		gap: 64px;
	}
	.singleSpecialist-advantages-heading {
		font-size: var(--h3-size);
	}
	.singleSpecialist-advantages-list {
		flex-direction: column;
		align-items: flex-start;
	}
	.problems-results {
		margin-top: 48px;
		text-align: left;
	}
	.problems-results p {
		font-size: var(--h3-size);
	}
	.marquee-carousel {
		display: none;
	}
	.mission-content br {
		display: none;
	}
	.mission-content {
		font-size: var(--h3-size);
	}
	.mission-content ul {
		flex-direction: column;
		align-items: flex-start;
	}
	.mission-bg img {
		object-position: right center;
	}
	.founder-line-left,
	.founder-line-bottom {
		display: none;
	}
	.founder-wrap {
		border: none;
	}
	.founder-left {
		flex: 0 0 100%;
		max-width: 100%;
		padding: 0;
	}
	.founder-right {
		display: none;
	}
	.founder-image {
		margin-bottom: 48px;
	}
	.founder-bottom {
		border-top: 1px solid rgba(2, 15, 38, 0.15);
		border-bottom: 1px solid rgba(2, 15, 38, 0.15);
	}
	.founder-bottom:before {
		display: none;
	}
	.founder-name {
		font-size: var(--h3-size);
	}
	.feedback_about-section {
		overflow: hidden;
	}
	.feedback_about-map-1,
	.feedback_about-map-2,
	.feedback_about-map-3,
	.feedback_about-image:after,
	.feedback_about-right:before {
		display: none;
	}
	.feedback_about-wrap {
		flex-wrap: wrap;
		gap: 48px;
	}
	.feedback_about-left {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.feedback_about-right {
		padding-top: 0;
		max-width: 100%;
	}
	.feedback_about-heading.heading {
		margin-bottom: 36px;
	}
	.feedback_about-image {
		width: 100vw;
		margin-left: calc((100vw - var(--container)) / -2);
	}
	.feedback_about-image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
	}
	.pageServices-header-wrap {
		flex-wrap: wrap;
	}
	.pageServices-search {
		display: none;
	}
	.pageServices-body-wrap {
		gap: 96px;
	}
	.pageServices-sidebar {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.pageServices-main {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.servicesCategories-menu {
		max-width: 100%;
	}
	.singleServices-items {
		gap: 64px;
	}
	.singleServices-item__list-heading {
		font-size: var(--h3-size);
	}
	.singleServices-item__list-items {
		flex-direction: column;
		align-items: flex-start;
	}
	.blog-items.columns-2 .blog-item,
	.blog-items.columns-3 .blog-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.singleBlog-wrap {
		padding-top: 24px;
	}
	.singleBlog-top {
		display: flex;
		flex-direction: column;
	}
	.singleBlog-breadcrumbs {
		text-align: left;
		order: 1;
	}
	.singleBlog-image {
		order: 2;
		margin-bottom: 16px;
	}
	.singleBlog-title {
		margin-bottom: 16px;
		font-size: var(--h1-size);
		text-align: left;
		order: 3;
	}
	.singleBlog-meta {
		flex-direction: column;
		align-items: flex-start;
		order: 4;
	}
	.singleBlog-excerpt {
		text-align: left;
		margin-bottom: 48px;
		order: 5;
	}
	.singleBlog-info {
		order: 6;
		gap: 48px;
	}
	.singleBlog-share {
		margin-top: 48px;
		max-width: 100%;
		flex-wrap: wrap;
		gap: 16px;
	}
	.singleBlog-share-text {
		flex: 0 0 100%;
		max-width: 480px;
		display: block;
		text-align: left;
		padding-bottom: 0;
	}
	.singleBlog-share-text .line-1,
	.singleBlog-share-text .line-2 {
		margin-left: 0;
		margin-right: 0;
	}
	.singleBlog-share-button {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.pContactsHero-bg:after {
		display: none;
	}
	.pContactsHero-items {
		margin-top: -16px;
		flex-direction: column;
	}
	.pContactsLocation-section {
		overflow: hidden;
	}
	.pContactsLocation-image {
		width: 100vw;
		margin-left: calc((100vw - var(--container)) / -2);
		height: 520px;
	}
	.pFAQ-body-wrap {
		gap: 48px;
	}
	.pFAQ-body-sidebar {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.pFAQ-body-main {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.pLandsHero-heading p {
		margin-top: 20px;
	}
	.area-block {
		gap: 48px;
	}
	.area-left,
	.area-right {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.area-number {
		font-size: var(--h3-size);
	}
	.area-map {
		height: 260px;
	}
	.area-content-map {
		text-align: left;
	}
	.pLandsHero-bg img {
		object-position: right top;
	}
	.projects-items.columns-2 .projects-item,
	.projects-items.columns-3 .projects-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.projects-item__image {
		height: calc(var(--container) / 1.6333);
	}
	.projects-item__title {
		font-size: var(--h5-size);
	}
	.offers_main-section:before {
		display: none;
	}
	.modal-content {
		padding: 16px;
	}
	.modal-close {
		top: 15px;
		right: 15px;
	}
	.modal-image {
		margin-bottom: 16px;
	}
	.modal-title,
	.modalInfo-title {
		margin-bottom: 16px;
		font-size: var(--h3-size);
	}
	.modal-description {
		margin-bottom: 24px;
	}
	.infoBlock-heading.heading {
		width: 100%;
	}
	.marketValue-section.section {
		padding-top: 0;
	}
}





@media (max-width: 767px) {
	:root {
		--container: 510px;

		--text-size: 16px;
		--text-size-sm: 14px;
		--text-size-esm: 12px;
		--h1-size: 32px;
		--h2-size: 28px;
		--h3-size: 24px;
		--h4-size: 22px;
		--h5-size: 20px;
		--h6-size: 18px;
	}
	.modal-dialog {
		max-width: var(--container);
	}
	.error-404-number {
        font-size: calc(var(--h1-size) * 5);
    }
    .modalCookie-wrap {
    	flex-wrap: wrap;
    	padding: 16px;
    }
    .modalCookie-content {
    	flex: 0 0 100%;
    	max-width: 100%;
    }
    .modalCookie-button {
    	flex: 0 0 100%;
    	max-width: 100%;
    	text-align: center;
    }
}




@media (max-width: 575px) {
	:root {
		--container: calc(100vw - 32px);

		--text-size: 16px;
		--text-size-sm: 14px;
		--text-size-esm: 12px;
		--h1-size: 32px;
		--h2-size: 28px;
		--h3-size: 24px;
		--h4-size: 22px;
		--h5-size: 20px;
		--h6-size: 18px;
	}
	.container-full {
		max-width: var(--container);
	}
	.services-additional {
		margin-left: 0;
		margin-right: 0;
	}
	.services-additional-text .line-1 img,
	.faq-additional-text .line-1 img,
	.packet-heading .line-1 img,
	.offers-additional-text .line-1 img,
	.team-additional-text .line-1 img,
	.mission-heading .line-1 img,
	.singleBlog-share-text .line-1 img,
	.singleBlog-share-text .line-2 img.share-icon-fb {
		margin-bottom: 8px;
		margin-top: 8px;
		display: block;
	}
	.services-additional-text .line-3,
	.faq-additional-text .line-3,
	.team-additional-text .line-3,
	.feedback-heading .line-2,
	.singleBlog-share-text .line-2 {
		display: block;
		text-align: left;
	}
	.pHeroAbout-heading {
		max-width: 320px;
	}
	.singleServices-item__content ul {
		padding-left: 24px;
	}
}