/*!
Theme Name: Consult Hub
Theme URI: http://underscores.me/
Author: WEBTOP
Author URI: https://web24.pro/
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: consult-hub
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.

Consult Hub 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/
*/

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
	--container: 1316px;
	--gap: 30px;
	--radius: calc(var(--gap) / 2);
	--shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);

	--admin-bar: 32px;

	--text-size: 16px;
	--text-size-lg: 18px;
	--text-size-sm: 14px;
	--h1-size: 48px;
	--h2-size: 40px;
	--h3-size: 32px;
	--h4-size: 28px;
	--h5-size: 24px;
	--h6-size: 21px;

	--black: #181818;
	--white: #FFFFFF;
	--bg: #F3F7FC;
	--blue: #084778;
	--blue-light: #3ABCF8;
	--light: #D8EBFF;
	--grey: #5D666F;
}
*, ::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: 'Open Sans', sans-serif;
	line-height: 1.5;
	color: var(--black);
	background: var(--bg);
}
a {
	color: var(--blue);
	transition: .5s;
}
a:hover {
	text-decoration: none;
	color: var(--black);
}
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: 'Open Sans', sans-serif;
	font-weight: 700;
	margin: calc(var(--gap) * 1.25) 0 calc(var(--gap) / 1.5);
	line-height: 1.2;
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
	margin-top: 0;
}
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 calc(var(--gap) / 1.5);
}
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%;
}
.form-fields {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / 1.5 / -2) calc(var(--gap) / -1.5);
}
.form-field {
	flex: 0 0 100%;
	max-width: 100%;
	padding: 0 calc(var(--gap) / 1.5 / 2);
	margin-bottom: calc(var(--gap) / 1.5);
}
.form-field-50 {
	flex: 0 0 50%;
	max-width: 50%;
}
::-webkit-input-placeholder {
	color: var(--grey);
}
::-moz-placeholder {
	color: var(--grey);
}
:-ms-input-placeholder {
	color: var(--grey);
}
:-moz-placeholder {
	color: var(--grey);
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
select,
textarea {
	font-size: var(--text-size);
	font-weight: 400;
	font-family: 'Open Sans', sans-serif;
	line-height: 1.5;
	width: 100%;
	background: #F6F6F6;
	border: none;
	color: var(--black);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	padding: 18px 20px;
	height: 60px;
	outline: none;
	transition: .5s;
}
textarea {
	height: 140px;
	resize: vertical;
}
select {
	cursor: pointer;
}
.form-field-button.center {
	text-align: center;
}
.wpcf7-spinner {
	position: absolute;
	right: 0;
	top: 0;
}
.wpcf7-not-valid-tip {
	margin-top: 4px;
	font-size: var(--text-size-sm);
}
.wpcf7 form .wpcf7-response-output {
	margin: var(--gap) 0 0;
	padding: calc(var(--gap) / 2.5) calc(var(--gap) / 2);
}




.screen-reader-text {
	display: none;
}
.container {
	width: 100%;
	max-width: var(--container);
	margin-left: auto;
	margin-right: auto;
}
.section {
	position: relative;
	padding-top: calc(var(--gap) * 3);
	padding-bottom: calc(var(--gap) * 3);
	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;
	}
}
.bg-white {
	background: var(--white);
}


.heading {
	margin-bottom: calc(var(--gap) * 2);
}
.heading.center {
	text-align: center;
}
.heading.white {
	color: var(--white);
}
.heading-label {
	position: relative;
	margin: var(--gap) 0 calc(var(--gap) / 1.5);
	z-index: 1;
}
.heading-label span {
	position: absolute;
	top: 40%;
	left: 0;
	transform: translate(0, -50%);
	font-size: calc(var(--h1-size) * 1.75);
	font-weight: 800;
	text-transform: uppercase;
	white-space: nowrap;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke: 1px #DFDFDF;
	z-index: -1;
}
.heading.center .heading-label span {
	left: 50%;
	transform: translate(-50%, -50%);
}
.bg-white .heading-label span {
	-webkit-text-stroke: 1px var(--light);
}
.heading.white .heading-label span {
	-webkit-text-stroke: 1px #8B8F99;
}
.heading-label p {
	font-weight: 700;
	color: var(--black);
	text-transform: uppercase;
	letter-spacing: 2px;
}
.heading h2 {
	font-size: var(--h1-size);
	font-weight: 700;
	color: var(--blue);
	margin: 0 0 calc(var(--gap) / 2);
}
.heading h2:last-child {
	margin-bottom: 0;
}
.heading.white .heading-label p,
.heading.white h2 {
	color: var(--white);
}
.heading > p {
	font-size: var(--h6-size);
}




.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: calc(var(--gap) / 5);
	font-size: var(--text-size);
	font-family: 'Open Sans', sans-serif;
	font-weight: 600;
	line-height: 1.5;
	border: none;
	padding: calc(var(--gap) / 1.75) calc(var(--gap) * 1.333);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	outline: none;
	min-width: 240px;
	min-height: 60px;
	cursor: pointer;
	text-decoration: none;
	z-index: 1;
	transition: .5s;
}
.btn-primary {
	background-color: var(--blue-light);
	border-color: var(--blue-light);
	color: var(--white);
}
.btn-primary:hover {
	background-color: var(--blue);
	border-color: var(--blue);
	color: var(--white);
}
.btn-secondary {
	background-color: var(--blue);
	border-color: var(--blue);
	color: var(--white);
}
.btn-secondary:hover {
	background-color: var(--black);
	border-color: var(--black);
	color: var(--white);
}
.btn.btn-link {
	padding: 0;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	color: var(--blue-light);
	min-height: inherit;
	min-width: inherit;
}
.btn.btn-link:hover {
	color: var(--blue);
}
.btn.btn-link:after {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/expand-down.svg);
	mask-image: url(images/expand-down.svg);
	background-color: var(--blue-light);
	flex: 0 0 12px;
	max-width: 12px;
	width: 12px;
	height: 12px;
	transform: rotate(-90deg);
	margin-bottom: -2px;
	transition: .5s;
}
.btn.btn-link:hover:after {
	background-color: var(--blue);
}


.swiper-pagination {
	position: relative !important;
	bottom: auto !important;
	top: auto !important;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: calc(var(--gap) * 1.5);
	gap: calc(var(--gap) / 10);
}
.swiper-pagination-bullet {
	flex: 0 0 20px;
	max-width: 20px;
	width: 20px !important;
	height: 20px !important;
	background: transparent !important;
	border: 1px solid transparent !important;
	margin: 0 !important;
	opacity: 1 !important;
	-moz-border-radius: 50% !important;
	-webkit-border-radius: 50% !important;
	border-radius: 50% !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	transition: .5s;
}
.swiper-pagination-bullet-active {
	border-color: var(--blue) !important;
}
.swiper-pagination.white .swiper-pagination-bullet-active {
	border-color: var(--white) !important;
}
.swiper-pagination-bullet:before {
	content: '';
	flex: 0 0 8px;
	max-width: 8px;
	height: 8px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background: var(--grey);
	transition: .5s;
}
.swiper-pagination.white .swiper-pagination-bullet:before {
	background: var(--light);
}
.swiper-pagination.white .swiper-pagination-bullet {
	background: var(--white);
}
.swiper-pagination-bullet-active:before,
.swiper-pagination-bullet:hover:before {
	background: var(--blue);
}
.swiper-pagination.white .swiper-pagination-bullet-active:before,
.swiper-pagination.white .swiper-pagination-bullet:hover:before {
	background: var(--white);
}


button.swiper-navigation {
	position: absolute;
	top: calc(50% - 30px);
	width: 60px;
	height: 60px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	border: none;
	background: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	outline: none;
	padding: 0;
	cursor: pointer;
	transition: .5s;
	z-index: 9;
}
button.swiper-navigation:hover {
	background: var(--light);
}
button.swiper-navigation:disabled {
	background: var(--white);
	opacity: .15;
	cursor: no-drop;
}
button.swiper-navigation.prev {
	left: 0;
}
button.swiper-navigation.next {
	right: 0;
}
button.swiper-navigation:before {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/expand-down.svg);
	mask-image: url(images/expand-down.svg);
	background-color: var(--black);
    flex: 0 0 28px;
    max-width: 28px;
    width: 28px;
    height: 28px;
    transition: .5s;
    z-index: 1;
}
button.swiper-navigation.prev:before {
	transform: rotate(90deg);
}
button.swiper-navigation.next:before {
	transform: rotate(-90deg);
}


.soc-links {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 2);
}
.soc-links li.soc-mobile {
	display: none;
}
.soc-links li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 25px;
	height: 25px;
}
.soc-links li a svg {
	flex: 0 0 100%;
	max-width: 100%;
	height: 100%;
}
.soc-links li a path {
	fill: var(--blue-light);
	transition: .5s;
}
.soc-links.white li a path {
	fill: var(--white);
}
.soc-links li a:hover path,
.soc-links.white li a:hover path {
	fill: var(--light);
}



.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-bg {
	background: rgb(0 0 0 / 45%);
	position: absolute;
	opacity: 0;
	transition: .5s;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.modal-mobile.show .modal-mobile-bg {
	opacity: 1;
}
.modal-mobile-wrap {
	position: relative;
	background: var(--white);
	height: 100%;
	width: 100%;
	max-width: 360px;
	margin-left: auto;
	transform: translateX(100%);
	padding: 60px var(--gap) var(--gap);
	transition: .5s;
	overflow: auto;
	z-index: 1;
}
.modal-mobile.show .modal-mobile-wrap {
	transform: translateX(0);
}
.modal-mobile-close {
	position: absolute;
	top: 15px;
	right: 15px;
	-webkit-mask-image: url(images/close.svg);
	mask-image: url(images/close.svg);
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--black);
	width: 34px;
	height: 34px;
	border: none;
	padding: 0;
	outline: none !important;
	transition: .5s;
}
.modal-mobile-close:hover {
	background-color: var(--blue);
}
.mobile-menu {
	margin: 0 0 var(--gap);
	padding: 0;
	list-style: none;
}
.mobile-menu li {
	position: relative;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	z-index: 1;
}
.mobile-menu > li {
	border-bottom: 1px solid var(--light);
}
.mobile-menu > li:last-child {
	border-bottom: 0;
}
.mobile-menu li a {
	order: 1;
	flex: 0 0 100%;
	max-width: 100%;
	position: relative;
	font-weight: 500;
	display: block;
	padding: 10px 0;
	text-decoration: none;
	color: var(--black);
	z-index: 1;
}
.mobile-menu li.menu-item-has-children > a {
	flex: 0 0 calc(100% - 32px);
	max-width: calc(100% - 32px);
}
.mobile-menu li:hover > a,
.mobile-menu li.current-menu-item > a {
	color: var(--blue);
}
.mobile-menu-toggle {
	order: 2;
	-webkit-mask-size: 12px;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/expand-down.svg);
	mask-image: url(images/expand-down.svg);
	background-color: var(--black);
	flex: 0 0 32px;
	max-width: 32px;
	width: 32px;
	height: 32px;
	cursor: pointer;
	transition: .5s;
}
.mobile-menu li.menu-item-has-children:hover > .mobile-menu-toggle {
	background-color: var(--blue);
}
.mobile-menu li.menu-item-has-children.active > .mobile-menu-toggle {
	background-color: var(--blue);
	transform: rotate(180deg);
}
.mobile-menu ul {
	flex: 0 0 100%;
	max-width: 100%;
	display: none;
	order: 3;
	margin: 0 0 10px;
	padding: 0 0 0 20px;
	list-style: none;
	text-transform: none;
	z-index: 9;
}



.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: 420px;
	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: var(--white);
	background-clip: padding-box;
	outline: 0;
	padding: calc(var(--gap) * 1.5) var(--gap) var(--gap);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	overflow: hidden;
	z-index: 1;
}
.modal-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1050;
	width: 100vw;
	height: 100vh;
	background-color: var(--black);
	opacity: 0;
	z-index: -1;
}
.modal-backdrop.show {
	opacity: .7;
	z-index: 1049;
}
.modal-title {
	font-size: var(--h5-size);
	color: var(--blue);
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: calc(var(--gap) / 2);
	text-align: center;
}
.modal-description {
	text-align: center;
}
.modal-close {
	position: absolute;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/close.svg);
	mask-image: url(images/close.svg);
	background-color: var(--grey);
	width: 32px;
	height: 32px;
	top: 12px;
	right: 12px;
	border: none;
	cursor: pointer;
	padding: 0;
	transition: .5s;
	z-index: 9;
}
.modal-close:hover {
	background-color: var(--black);
}


/*
.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: 32px -15px 2px;
}
.gallery:first-child {
	margin-top: 0;
}
.gallery:last-child {
	margin-bottom: -30px;
}
.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
	margin: 0 0 24px;
	padding: 0 12px;
}
.gallery-item > * {
	overflow: hidden;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	border: 1px solid var(--line);
}
.gallery-columns-2 .gallery-item {
	flex: 0 0 calc(100% / 2);
	max-width: calc(100% / 2);
}
.gallery-columns-2 .gallery-item > * {
	height: calc((var(--container) - 30px) / 2 / 1.4);
}
.gallery-columns-3 .gallery-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
}
.gallery-columns-3 .gallery-item > * {
	height: calc((var(--container) - 30px * 2) / 3 / 1.4);
}
.gallery-columns-4 .gallery-item {
	flex: 0 0 calc(100% / 4);
	max-width: calc(100% / 4);
}
.gallery-columns-4 .gallery-item > * {
	height: calc((var(--container) - 30px * 3) / 4 / 1.4);
}
.gallery-columns-5 .gallery-item {
	flex: 0 0 calc(100% / 5);
	max-width: calc(100% / 5);
}
.gallery-columns-5 .gallery-item > * {
	height: calc((var(--container) - 30px * 4) / 5 / 1.4);
}
.gallery-columns-6 .gallery-item {
	flex: 0 0 calc(100% / 6);
	max-width: calc(100% / 6);
}
.gallery-columns-6 .gallery-item > * {
	height: calc((var(--container) - 30px * 5) / 6 / 1.4);
}
.gallery-columns-7 .gallery-item {
	flex: 0 0 calc(100% / 6);
	max-width: calc(100% / 6);
}
.gallery-columns-7 .gallery-item > * {
	height: calc((var(--container) - 30px * 6) / 7 / 1.4);
}
.gallery-columns-8 .gallery-item {
	flex: 0 0 calc(100% / 8);
	max-width: calc(100% / 8);
}
.gallery-columns-8 .gallery-item > * {
	height: calc((var(--container) - 30px * 7) / 8 / 1.4);
}
.gallery-columns-9 .gallery-item {
	flex: 0 0 calc(100% / 9);
	max-width: calc(100% / 9);
}
.gallery-columns-9 .gallery-item > * {
	height: calc((var(--container) - 30px * 8) / 9 / 1.4);
}
.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: .5s;
}
.gallery-item a:hover img {
	transform: scale(1.08);
}
.gallery-caption {
	display: block;
}
.alignleft {
	float: left;
	margin-right: 30px;
	margin-bottom: 20px;
}
.alignright {
	float: right;
	margin-left: 30px;
	margin-bottom: 20px;
}
.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
}
img.alignleft,
img.alignright,
img.aligncenter {
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
}*/




.wrapper {
	position: relative;
	z-index: 1;
}

.topbar {
	position: relative;
	background: var(--blue);
	color: var(--white);
	padding: calc(var(--gap) / 3) 0;
	z-index: 1;
}
.topbar a {
	color: var(--white);
	text-decoration: none;
}
.topbar a:hover {
	color: var(--light);
}
.topbar-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: var(--gap);
	height: 25px;
}
.topbar-contacts {
	display: flex;
	align-items: center;
	gap: var(--gap);
	margin: 0;
	padding: 0;
	list-style: none;
}
.topbar-contacts li {
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 3);
}
.topbar-contacts li:before {
	content: '';
	flex: 0 0 25px;
	max-width: 25px;
	width: 25px;
	height: 25px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--white);
}
.topbar-contacts li.phone:before {
	-webkit-mask-image: url(images/phone.svg);
	mask-image: url(images/phone.svg);
}
.topbar-contacts li.address:before {
	-webkit-mask-image: url(images/location.svg);
	mask-image: url(images/location.svg);
}


.header {
	position: sticky;
	top: 0;
	background: var(--white);
	padding: var(--gap) 0;
	z-index: 92;
}
.admin-bar .header {
	top: var(--admin-bar);
}
.header.fixed {
	box-shadow: var(--shadow);
}
.header-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: calc(var(--gap) * 1.5);
	height: 70px;
}
.header-logo {
	margin-right: var(--gap);
}
.header-logo img {
	max-height: 70px;
}
.main-menu {
	flex: 0 0 auto;
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	gap: var(--gap);
	font-size: var(--text-size-lg);
	font-weight: 600;
}
.main-menu li {
	position: relative;
	z-index: 1;
}
.main-menu li a {
	display: flex;
	align-items: center;
	padding: calc(var(--gap) / 3) 0;
	gap: calc(var(--gap) / 5);
	color: var(--black);
	text-decoration: none;
}
.main-menu li a:hover,
.main-menu li.current-menu-item > a {
	color: var(--blue);
}
.main-menu li.menu-item-has-children > a:after {
	content: '';
	flex: 0 0 12px;
	max-width: 12px;
	width: 12px;
	height: 12px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/expand-down.svg);
	mask-image: url(images/expand-down.svg);
	background-color: var(--black);
	margin-bottom: -3px;
	transition: .5s;
}
.main-menu li.menu-item-has-children:hover > a:after {
	transform: rotate(180deg);
}
.main-menu li.menu-item-has-children > a:hover:after,
.main-menu li.current-menu-item.menu-item-has-children > a:after {
	background-color: var(--blue);
}
.main-menu ul {
	position: absolute;
	top: 100%;
	left: calc(var(--gap) / -2);
	margin: 0;
	padding: 0;
	list-style: none;
	background: var(--white);
	box-shadow: var(--shadow);
	width: max-content;
	max-width: 320px;
	transform: translateY(20px);
	opacity: 0;
	visibility: hidden;
	font-size: var(--text-size);
	transition: .5s;
	z-index: -99;
}
.main-menu li:hover > ul {
	transform: translateY(0);
	opacity: 1;
	visibility: inherit;
	z-index: 1;
}
.main-menu > li:last-child > ul {
	left: auto;
	right: 0;
}
.main-menu ul li {
	padding: calc(var(--gap) / 2) calc(var(--gap) / 1.5);
	border-bottom: 1px solid var(--light);
}
.main-menu ul li:last-child {
	border-bottom: none;
}
.main-menu ul li a {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.main-menu ul li.menu-item-has-children > a:after,
.main-menu ul li.menu-item-has-children:hover > a:after {
	transform: rotate(-90deg);
}
.main-menu ul ul {
	top: 0;
	left: 100%;
}
.lang-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: var(--text-size-lg);
	font-weight: 700;
	text-transform: uppercase;
}
.lang-menu > li {
	position: relative;
}
.lang-menu > li > a {
	display: flex;
	align-items: center;
	padding: calc(var(--gap) / 3) 0;
	gap: calc(var(--gap) / 5);
	color: var(--blue);
	text-decoration: none;
}
.lang-menu > li > a:hover {
	color: var(--blue-light);
}
.lang-menu > li > a:after {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/expand-down.svg);
	mask-image: url(images/expand-down.svg);
	background-color: var(--blue);
	flex: 0 0 12px;
	max-width: 12px;
	width: 12px;
	height: 12px;
	transition: .25s;
}
.lang-menu > li > a:hover:after {
	background-color: var(--blue-light);
}
.lang-menu > li.active > a:after {
	transform: rotate(-180deg);
}
.lang-menu ul {
	display: none;
	position: absolute;
	top: 100%;
	right: 0px;
	width: 100%;
	background: var(--white);
	box-shadow: var(--shadow);
	font-size: var(--text-size);
	margin: 0;
	padding: 0;
	list-style: none;
	z-index: 9;
}
.lang-menu ul li {
	text-align: center;
	border-bottom: 1px solid var(--light);
}
.lang-menu ul li:last-child {
	border-bottom: none;
}
.lang-menu ul li a {
	color: var(--black);
	display: flex;
	align-items: center;
	justify-content: center;
	height: 44px;
	text-decoration: none;
}
.lang-menu ul li a:hover {
	color: var(--blue);
}
.header-toggle {
	display: flex;
	align-items: center;
}
.header-toggle button {
	flex: 0 0 36px;
	max-width: 36px;
	width: 36px;
	height: 36px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/menu.svg);
	mask-image: url(images/menu.svg);
	background-color: var(--blue-light);
	border: none;
	padding: 0;
	outline: none;
	cursor: pointer;
	transition: .5s;
}
.header-toggle button:hover {
	background-color: var(--blue);
}



.main {
	position: relative;
	z-index: 2;
}


.map-section {
	background: var(--white);
}
.map-section iframe {
	width: 100%;
	height: 460px;
	border: 5px solid #EBEBEB !important;
	-moz-border-radius: var(--radius);
	-webki-border-radius: var(--radius);
	border-radius: var(--radius);
	margin-bottom: -230px;
}


.footer {
	position: relative;
	background: var(--black) url(images/footer-bg.jpg) no-repeat center;
	background-size: cover;
	color: var(--white);
	z-index: 1;
}
.footer.has-map {
	padding-top: 230px;
}
.footer-wrap {
	padding: calc(var(--gap) * 3) 0 calc(var(--gap) * 2);
	display: flex;
	justify-content: space-between;
	gap: var(--gap);
}
.footer-widget {
	max-width: 310px;
}
.footer-widget-title {
	position: relative;
	font-size: var(--text-size-lg);
	font-weight: 700;
	padding-bottom: calc(var(--gap) / 3);
	margin-bottom: var(--gap);
	color: var(--blue-light);
	line-height: 1.2;
	z-index: 1;
}
.footer-widget-title:after {
	content: '';
	position: absolute;
	width: 100px;
	height: 1px;
	background: #D9D9D9;
	bottom: 0;
	left: 0;
	z-index: -1;
}
.footer-logo {
	margin-bottom: var(--gap);
}
.footer-logo img {
	max-height: 70px;
}
.footer-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 2);
	font-weight: 600;
	line-height: 1.2;
}
.footer-menu li a {
	color: var(--white);
	text-decoration: none;
}
.footer-menu li a:hover {
	color: var(--light);
}
.footer-menu ul {
	display: none;
}
.footer-contacts {
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 2);
	margin: 0 0 var(--gap);
	padding: 0;
	list-style: none;
	font-weight: 600;
	line-height: 1.2;
}
.footer-contacts li {
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 3);
}
.footer-contacts li:before {
	content: '';
	flex: 0 0 25px;
	max-width: 25px;
	width: 25px;
	height: 25px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--blue-light);
}
.footer-contacts li.phone:before {
	-webkit-mask-image: url(images/phone.svg);
	mask-image: url(images/phone.svg);
}
.footer-contacts li.e-mail:before {
	-webkit-mask-image: url(images/email.svg);
	mask-image: url(images/email.svg);
}
.footer-contacts li.address:before {
	-webkit-mask-image: url(images/location.svg);
	mask-image: url(images/location.svg);
}
.footer-contacts li a {
	color: var(--white);
	text-decoration: none;
}
.footer-contacts li a:hover {
	color: var(--light);
}
.footer-bank-details {
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 10);
}
.footer-bank-details > * {
	margin-bottom: 0;
}
.footer-bottom {
	border-top: 1px solid #3D4352;
	padding: calc(var(--gap) / 2) 0;
}
.footer-bottom-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: var(--gap);
}
.copyright {
	font-weight: 300;
	margin: 0;
}
.copyright a {
	color: var(--light);
	text-decoration: none;
}
.copyright a:hover {
	color: var(--white);
}
.bottom-menu {
	display: flex;
	gap: var(--gap);
	margin: 0;
	padding: 0;
	list-style: none;
}
.bottom-menu li a {
	color: var(--white);
	text-decoration: none;
}
.bottom-menu li a:hover {
	color: var(--light);
}



.page-header {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 355px;
	text-align: center;
	overflow: hidden;
	z-index: 1;
}
.page-header-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.page-header-bg:after {
	content: '';
	background: rgba(38, 37, 37, 0.65);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.page-header-label {
	position: relative;
	margin: var(--gap) 0 calc(var(--gap) / 1.5);
	z-index: 1;
}
.page-header-label span {
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: calc(var(--h1-size) * 1.75);
	font-weight: 800;
	text-transform: uppercase;
	white-space: nowrap;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke: 1px #9B9B9B;
	z-index: -1;
}
.page-header-label p {
	font-weight: 700;
	color: var(--white);
	text-transform: uppercase;
	letter-spacing: 2px;
}
.page-title {
	font-size: var(--h1-size);
	font-weight: 700;
	color: var(--white);
	margin: 0;
}
.page-bradcrumbs {
	position: relative;
	padding: calc(var(--gap) / 2) 0;
	color: var(--grey);
	z-index: 1;
}
.page-bradcrumbs a {
	color: var(--grey);
	text-decoration: none;
}
.page-bradcrumbs a:hover {
	color: var(--blue);
}
.page-body.section {
	padding-top: calc(var(--gap) * 1.5);
}
.page-body-wrap {
	display: flex;
	gap: var(--gap);
}
.page-body-main {
	flex: 0 0 calc(100% / 3 * 2 - var(--gap) / 2);
	max-width: calc(100% / 3 * 2 - var(--gap) / 2);
}
.page-body-sidebar {
	flex: 0 0 calc(100% / 3 - var(--gap) / 2);
	max-width: calc(100% / 3 - var(--gap) / 2);
}

.page-content ul {
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 2);
}
.page-content ul li {
	position: relative;
	padding-left: 38px;
	z-index: 1;
}
.page-content ul li:before {
	content: '';
	background: url(images/check-blue-list.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 23px;
	height: 23px;
	top: 0;
	left: 0;
	z-index: 1;
}


.error-404-number {
	font-size: calc(var(--h1-size) * 7);
	font-weight: 600;
	text-align: center;
	line-height: 1;
	margin-bottom: var(--gap);
	color: var(--light);
}
.error-404-button {
	text-align: center;
}





.heroSlider-item.swiper-slide {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 850px;
}
.heroSlider-item__bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.heroSlider-item__bg:after {
	content: '';
	background: rgba(49, 49, 49, 0.6);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.heroSlider-item__bg:before {
	content: '';
	background: url(images/angle.png) no-repeat left top;
	background-size: contain;
	position: absolute;
	width: 299px;
	height: 336px;
	top: 0;
	left: 0;
	z-index: 2;
}
.hero-pagination.swiper-pagination {
	display: none;
	position: absolute !important;
	bottom: var(--gap) !important;
	width: auto !important;
	left: 50% !important;
	transform: translateX(-50%);
}
.hero-navigation {
	opacity: 0;
	transition: .5s;
}
.hero-section:hover .hero-navigation {
	opacity: 1;
}
button.hero-navigation.swiper-navigation.prev {
	left: calc((100% - var(--container)) / 2 / 2);
}
button.hero-navigation.swiper-navigation.next {
	right: calc((100% - var(--container)) / 2 / 2);
}
.heroSlider-item__wrap {
	padding: 0 calc(var(--gap) * 3);
	max-width: calc(1060px + var(--gap) * 3 * 2);
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: calc(var(--gap) * 2);
}
.heroSlider-item__wrap:before {
	content: '';
	background: url(images/element-grey.svg) no-repeat center;
	background-size: contain;
	flex: 0 0 220px;
	max-width: 220px;
	width: 220px;
	height: 240px;
	z-index: -1;
}
.heroSlider-item__info {
	flex: auto;
	max-width: calc(100% - var(--gap) * 2 - 220px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: var(--gap);
}
.heroSlider-item__heading {
	margin: 0;
	font-size: calc(var(--h1-size) * 2);
	text-transform: uppercase;
	color: var(--white);
}
.heroSlider-item__description {
	margin: 0;
	font-size: var(--h6-size);
	color: var(--white);
}
.heroSlider-item__button {
	flex: 0 0 100%;
	max-width: 100%;
	text-align: center;
}



.advantages-wrap {
	position: relative;
	padding: calc(var(--gap) * 2.6667) calc(var(--gap) * 2);
	background: url(images/bg-advantages.png) no-repeat center;
	background-size: cover;
	z-index: 1;
}
.advantages-items {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) * -1) calc(var(--gap) * -2);
}
.advantages-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin: 0 0 calc(var(--gap) * 2);
	padding: 0 var(--gap);
}
.advantages-item__wrap {
	display: flex;
	gap: var(--gap);
}
.advantages-item__image {
	flex: 0 0 65px;
	max-width: 65px;
}
.advantages-item__info {
	flex: auto;
}
.advantages-item__title {
	font-size: var(--h5-size);
	font-weight: 700;
	line-height: 1.2;
	color: var(--blue-light);
	margin-bottom: calc(var(--gap) / 3);
}
.advantages-item__text {
	font-size: var(--text-size-lg);
}





.services-section:before {
	content: '';
	background: url(images/element-blue.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	top: calc(var(--gap) * 3);
	left: calc((100% - var(--container)) / 2 - 123px);
	width: 380px;
	height: 424px;
	z-index: -1;
}
.services-items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.services-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.services-item__wrap {
	position: relative;
	background: var(--white);
	height: 100%;
	display: flex;
	flex-direction: column;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: var(--gap);
	transition: .5s;
	z-index: 1;
}
.services-item__wrap:hover {
	background: #0267AE;
	color: var(--white);
}
.services-item__head {
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 2);
	margin-bottom: calc(var(--gap) / 2);
	padding-bottom: calc(var(--gap) / 2);
	border-bottom: 1px solid var(--blue);
	transition: .5s;
}
.services-item__wrap:hover .services-item__head {
	border-bottom-color: var(--white);
}
.services-item__image {
	flex: 0 0 100px;
	max-width: 100px;
}
.services-item__title {
	flex: auto;
	margin: 0;
	font-size: var(--h5-size);
	line-height: 1.2;
}
.services-item__title a {
	color: var(--black);
	text-decoration: none;
}
.services-item__wrap:hover .services-item__title a {
	color: var(--white);
}
.services-item__title a:hover {
	color: var(--blue);
}
.services-item__wrap:hover .services-item__title a:hover {
	color: var(--light);
}
.services-item__content {
	flex: auto;
	margin-bottom: var(--gap);
}
.services-item__button {
	text-align: center;
}
.services-item__button .btn {
	min-width: auto;
}
.services-item__wrap:hover .services-item__button .btn {
	background-color: var(--white);
	border-color: var(--white);
	color: var(--blue-light);
}
.services-item__wrap:hover .services-item__button .btn:hover {
	background-color: var(--light);
	border-color: var(--light);
	color: var(--blue);
}



.about-wrap {
	display: flex;
	gap: var(--gap);
}
.about-left {
	position: relative;
	flex: 0 0 calc(50% - var(--gap) / 2);
	max-width: calc(50% - var(--gap) / 2);
	min-height: calc((var(--container) - var(--gap)) / 2);
	z-index: 1;
}
.about-left:before {
	content: '';
	background: url(images/element-plus-blue.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 107px;
	height: 126px;
	top: -100px;
	left: 0;
	z-index: -1;
}
.about-right {
	position: relative;
	flex: 0 0 calc(50% - var(--gap) / 2);
	max-width: calc(50% - var(--gap) / 2);
	padding-bottom: calc(var(--gap) * 3);
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) * 2);
	z-index: 1;
}
.about-right:before {
	content: '';
	background: url(images/element-grey.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	transform: scale(-1, 1);
	width: 280px;
	height: 311px;
	right: 0;
	bottom: 0;
	opacity: .5;
	z-index: -1;
}
.about-image {
	position: absolute;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	overflow: hidden;
	z-index: 1;
}
.about-image-1 {
	width: calc(100% - var(--gap));
	height: 100%;
	top: 0;
	left: 0;
}
.about-image-2 {
	width: 300px;
	height: 320px;
	right: 0;
	bottom: var(--gap);
}
.about-counters-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.about-counters-item {
	flex: 0 0 50%;
	max-width: 50%;
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.about-counters-item__wrap {
	position: relative;
	display: flex;
	align-items: baseline;
	gap: calc(var(--gap) / 3);
	padding: calc(var(--gap) / 2) 0 0 calc(var(--gap) / 2);
	line-height: 1.2;
	z-index: 1;
}
.about-counters-item__wrap:before {
	content: '';
	-moz-border-radius: calc(var(--radius) / 1.5);
	-webkit-border-radius: calc(var(--radius) / 1.5);
	border-radius: calc(var(--radius) / 1.5);
	background: #9ADFFF;
	position: absolute;
	width: 50px;
	height: 50px;
	top: 0;
	left: 0;
	z-index: -1;
}
.about-counters-item__value {
	font-size: var(--h1-size);
	color: var(--blue);
	font-weight: 700;
	margin: 0;
}
.about-counters-item__description {
	font-weight: 600;
	padding-bottom: 4px;
}




.blog-section:before {
	content: '';
	background: url(images/angle.png) no-repeat right top;
	background-size: contain;
	position: absolute;
	width: 406px;
	height: 456px;
	top: 0;
	right: 0;
	transform: scale(-1, 1);
	z-index: -1;
}
.blog-section:after {
	content: '';
	background: url(images/circles-grid.svg) no-repeat left bottom;
	background-size: contain;
	position: absolute;
	width: 470px;
	height: 466px;
	bottom: 0;
	left: 0;
	z-index: -1;
}
.blog-items {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.blog-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.blog-items.columns-2 .blog-item {
	flex: 0 0 50%;
	max-width: 50%;
}
.blog-item__wrap {
	position: relative;
	height: 100%;
	background: var(--white);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	z-index: 1;
}
.blog-item__image {
	flex: 0 0 calc((var(--container) - var(--gap) * 2) / 3 / 1.5);
	max-height: calc((var(--container) - var(--gap) * 2) / 3 / 1.5);
}
.blog-item__info {
	flex: auto;
	padding: calc(var(--gap) / 2) calc(var(--gap) / 1.5) var(--gap);
	display: flex;
	flex-direction: column;
}
.blog-item__date {
	color: var(--grey);
	padding-bottom: calc(var(--gap) / 3);
	margin-bottom: calc(var(--gap) / 2);
	border-bottom: 1px solid #D9D9D9;
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 4);
	font-size: var(--text-size-sm);
}
.blog-item__date:before {
	content: '';
	flex: 0 0 12px;
	max-width: 12px;
	width: 12px;
	height: 12px;
	background: url(images/calendar.svg) no-repeat center;
	background-size: contain;
}
.blog-item__title {
	margin: 0 0 calc(var(--gap) / 2);
	font-size: var(--text-size-lg);
	font-weight: 700;
	line-height: 1.375;
}
.blog-item__title a {
	color: var(--black);
	text-decoration: none;
}
.blog-item__title a:hover {
	color: var(--blue);
}
.blog-item__excerpt {
	flex: auto;
	color: var(--grey);
	overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin: 0 0 calc(var(--gap) / 1.5);
}

.blog-button {
	text-align: center;
	margin-top: calc(var(--gap) * 2);
}



.clients-section {
	overflow: hidden;
}
.clients-carousel {
	position: relative;
	width: calc(100% + var(--gap));
	margin-left: calc(var(--gap) / -2);
	z-index: 1;
}
.clients-carousel:before {
	content: '';
	background: url(images/element-grey.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 250px;
	height: 277px;
	left: -90px;
	top: -120px;
	opacity: .5;
	z-index: -1;
}
.clients-carousel:after {
	content: '';
	background: url(images/element-grey.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	transform: scale(-1, 1);
	width: 250px;
	height: 277px;
	right: -90px;
	bottom: -45px;
	opacity: .5;
	z-index: -1;
}
.clients-swiper {
	margin: calc(var(--gap) / -1.5) 0;
}
.clients-item.swiper-slide {
	padding: calc(var(--gap) / 1.5) calc(var(--gap) / 2);
	height: auto;
}
.clients-item__wrap {
	position: relative;
	height: 100%;
	background: var(--white);
	display: flex;
	flex-direction: column;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	overflow: hidden;
	z-index: 1;
}
.clients-item__image {
	flex: 0 0 110px;
	max-height: 110px;
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.clients-item__image img {
	max-height: 90px;
}
.clients-item__info {
	flex: auto;
	background: #0267AE;
	color: var(--white);
	padding: var(--gap) calc(var(--gap) / 1.5);
}
.clients-item__title {
	font-size: var(--text-size-lg);
	font-weight: 700;
	text-align: center;
	margin-bottom: calc(var(--gap) / 2);
}
.clients-item__description {
	text-align: center;
	color: var(--white);
}


.feedback-wrap {
	display: flex;
}
.feedback-left {
	flex: 0 0 59%;
	max-width: 59%;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	overflow: hidden;
	padding-left: calc(var(--gap) * 3);
	padding-right: calc(var(--gap) * 3);
}
.feedback-right {
	position: relative;
	flex: 0 0 41%;
	max-width: 41%;
	z-index: 1;
}
.feedback-image {
	position: absolute;
	width: calc(100% + var(--gap));
	height: calc(100% - var(--gap) * 3 * 2);
	top: calc(var(--gap) * 3);
	right: 0;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	overflow: hidden;
	z-index: 1;
}



.fixed-contact {
	position: fixed;
	right: var(--gap);
	bottom: var(--gap);
	z-index: 40;
}
.fixed-contact a {
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background: #0267AE;
	animation: shadow-pulse 1.5s infinite;
}
.fixed-contact a:hover {
	background: var(--blue);
}
.fixed-contact a:before {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/phone.svg);
	mask-image: url(images/phone.svg);
	background-color: var(--white);
	flex: 0 0 25px;
	max-width: 25px;
	height: 25px;
	transition: .5s;
}

@keyframes shadow-pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 112, 244, 0.4);
  }
  100% {
    box-shadow: 0 0 7px 25px rgba(0, 112, 244, 0);
  }
}



.widget {
	position: relative;
	margin-bottom: var(--gap);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--white);
	z-index: 1;
}
.widget:last-child {
	margin-bottom: 0;
}
.widget-title {
	min-height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #0267AE;
	color: var(--white);
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	padding: calc(var(--gap) / 3) calc(var(--gap) / 1.5);
	margin: 0;
}
.recent-posts {
	position: relative;
	padding: calc(var(--gap) / 1.5);
	margin: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 1.5);
	z-index: 1;
}
.recent-posts li {
	display: flex;
	gap: calc(var(--gap) / 1.5);
}
.recent-post-image {
	flex: 0 0 85px;
	max-width: 85px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	overflow: hidden;
}
.recent-post-date {
	color: var(--grey);
	margin-bottom: calc(var(--gap) / 5);
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 4);
	font-size: var(--text-size-sm);
}
.recent-post-date:before {
	content: '';
	flex: 0 0 12px;
	max-width: 12px;
	width: 12px;
	height: 12px;
	background: url(images/calendar.svg) no-repeat center;
	background-size: contain;
}
.recent-post-title {
	font-weight: 600;
	line-height: 1.375;
}
.recent-post-title a {
	color: var(--black);
	text-decoration: none;
}
.recent-post-title a:hover {
	color: var(--blue);
}


.contactForm-widget {
	position: relative;
	background: url(images/bg-contactForm.jpg) no-repeat center;
	background-size: cover;
	padding: var(--gap) calc(var(--gap) / 1.5);
	color: var(--white);
	z-index: 1;
}
.contactForm-widget:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: var(--black);
	opacity: .6;
	z-index: -1;
}
.contactForm-widget__text {
	text-align: center;
	color: var(--white);
	margin-bottom: calc(var(--gap) / 1.5);
}



.navigation.pagination {
	position: relative;
	margin-top: calc(var(--gap) * 1.5);
	z-index: 2;
}
.nav-links {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
	gap: calc(var(--gap) / 3);
	margin: 0;
	padding: 0;
	list-style: none;
}
.nav-links .page-numbers {
	min-width: 46px;
	height: 46px;
	font-weight: 500;
	color: var(--black);
	border: 1px solid var(--grey);
	background: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 10px;
	text-decoration: none;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
}
.nav-links .page-numbers:hover,
.nav-links .page-numbers.current {
	background: #0267AE;
	border-color: #0267AE;
	color: var(--white);
}



.singleBlog-image {
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	overflow: hidden;
}
.singleBlog-date {
	color: var(--grey);
	padding: calc(var(--gap) / 2) 0;
	border-bottom: 1px solid #D9D9D9;
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 4);
	font-size: var(--text-size-sm);
}
.singleBlog-date:before {
	content: '';
	flex: 0 0 12px;
	max-width: 12px;
	width: 12px;
	height: 12px;
	background: url(images/calendar.svg) no-repeat center;
	background-size: contain;
}



.pageContacts-wrap {
	display: flex;
	align-items: flex-start;
	gap: var(--gap);
}
.pageContacts-left {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
}
.pageContacts-right {
	flex: 0 0 calc(100% / 3 * 2 - var(--gap));
	max-width: calc(100% / 3 * 2 - var(--gap));
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	overflow: hidden;
	padding-left: calc(var(--gap) * 3);
	padding-right: calc(var(--gap) * 3);
}
.pageContacts-logo {
	margin-bottom: var(--gap);
}
.pageContacts-company {
	margin-bottom: var(--gap);
	color: var(--grey);
}
.pageContacts-info {
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 2);
	margin: 0 0 var(--gap);
	padding: 0;
	list-style: none;
	font-weight: 600;
	line-height: 1.2;
	font-size: var(--text-size-lg);
}
.pageContacts-info li {
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 3);
}
.pageContacts-info li:before {
	content: '';
	flex: 0 0 25px;
	max-width: 25px;
	width: 25px;
	height: 25px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--blue-light);
}
.pageContacts-info li.phone:before {
	-webkit-mask-image: url(images/phone.svg);
	mask-image: url(images/phone.svg);
}
.pageContacts-info li.e-mail:before {
	-webkit-mask-image: url(images/email.svg);
	mask-image: url(images/email.svg);
}
.pageContacts-info li.address:before {
	-webkit-mask-image: url(images/location.svg);
	mask-image: url(images/location.svg);
}
.pageContacts-info li.schedule:before {
	-webkit-mask-image: url(images/clock.svg);
	mask-image: url(images/clock.svg);
}
.pageContacts-info li a {
	color: var(--black);
	text-decoration: none;
}
.pageContacts-info li a:hover {
	color: var(--blue);
}



.info-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: calc(var(--gap) * 3);
}
.info-wrap:after {
	content: '';
	background: url(images/element-blue.svg) no-repeat center;
	background-size: contain;
	flex: 0 0 225px;
	max-width: 225px;
	width: 225px;
	height: 250px;
	z-index: 1;
}


.steps-items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.steps-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.steps-item__wrap {
	position: relative;
	display: flex;
	gap: var(--gap) calc(var(--gap) / 3);
	align-items: center;
	min-height: 120px;
	height: 100%;
	padding: calc(var(--gap) / 2);
	background: var(--bg);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	z-index: 1;
}
.steps-item__count {
	font-size: calc(var(--h1-size) * 1.25);
	font-weight: 700;
	line-height: 1;
	position: absolute;
	top: calc(var(--gap) / 3);
	right: calc(var(--gap) / 2);
	color: var(--blue-light);
	opacity: .5;
	z-index: -1;
}
.steps-item__image {
	flex: 0 0 100px;
	max-width: 100px;
	width: 100px;
}
.steps-item__title {
	font-size: var(--h5-size);
	font-weight: 700;
	line-height: 1.375;
	color: var(--black);
	padding-right: var(--gap);
}




.contentImage-wrap {
	position: relative;
	display: flex;
	gap: var(--gap);
	z-index: 1;
}
.contentImage-wrap.reverse {
	flex-direction: row-reverse;
}
.contentImage-wrap:before {
	content: '';
	background: url(images/element-grey.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 223px;
	height: 248px;
	right: 0;
	bottom: calc(var(--gap) * -2);
	transform: scale(-1, 1);
	opacity: .5;
	z-index: -1;
}
.contentImage-wrap.reverse:before {
	display: none;
}
.contentImage-left,
.contentImage-right {
	flex: 0 0 calc(50% - var(--gap) / 2);
	max-width: calc(50% - var(--gap) / 2);
}
.contentImage-right {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.contentImage-image {
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	overflow: hidden;
}
.contentImage-image.shadow-img {
	box-shadow: var(--shadow);
}
.contentImage-image img {
	min-height: calc((var(--container) - var(--gap)) / 2);
}
.contentImage-image.contain-img img {
	min-height: inherit;
}






.results-wrap {
	display: flex;
	gap: var(--gap);
}
.results-left,
.results-right {
	flex: 0 0 calc(50% - var(--gap) / 2);
	max-width: calc(50% - var(--gap) / 2);
}
.results-image {
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	overflow: hidden;
}
.results-counters-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.results-counters-item {
	flex: 0 0 50%;
	max-width: 50%;
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.results-counters-item__wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 3);
	line-height: 1.2;
	z-index: 1;
}
.results-counters-item__wrap:before {
	content: '';
	-moz-border-radius: calc(var(--radius) / 1.5);
	-webkit-border-radius: calc(var(--radius) / 1.5);
	border-radius: calc(var(--radius) / 1.5);
	background: #9ADFFF;
	position: absolute;
	width: 50px;
	height: 50px;
	top: 0;
	left: 0;
	z-index: -1;
}
.results-counters-item__head {
	display: flex;
	align-items: baseline;
	gap: calc(var(--gap) / 3);
	padding: calc(var(--gap) / 2) 0 0 calc(var(--gap) / 2);
}
.results-counters-item__value {
	font-size: var(--h1-size);
	color: var(--blue);
	font-weight: 700;
	margin: 0;
}
.results-counters-item__title {
	font-weight: 600;
	color: var(--black);
}
.results-counters-item__description {
	color: var(--grey);
}



.partners-carousel {
	position: relative;
	width: calc(100% + var(--gap));
	margin-left: calc(var(--gap) / -2);
	z-index: 1;
}
.partners-swiper {
	margin: calc(var(--gap) / -1.5) 0;
}
.partners-item.swiper-slide {
	padding: calc(var(--gap) / 1.5) calc(var(--gap) / 2);
}
.partners-item__image {
	position: relative;
	height: calc((var(--container) - var(--gap) * 5) / 6 / 1.6);
	padding: calc(var(--gap) / 3);
	background: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	z-index: 1;
}
.partners-item__image img {
	max-height: calc((var(--container) - var(--gap) * 5) / 6 / 1.6 - var(--gap) / 3 * 2);
}



.imagesGallery-items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
	padding-bottom: calc(var(--gap) / 2);
}
.imagesGallery-item {
	flex: 0 0 25%;
	max-width: 25%;
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.imagesGallery-item__image {
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	overflow: hidden;
	height: calc((var(--container) - var(--gap) * 3) / 4 / .7);
	display: flex;
	align-items: center;
	justify-content: center;
}
.imagesGallery-item__image a:hover img {
	transform: scale(1.05);
}
.imagesGallery-item__image img {
	max-height: calc((var(--container) - var(--gap) * 3) / 4 / .7);
}






.servicesList-items {
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) * 1.5);
}
.servicesList-item__wrap {
	position: relative;
	background: var(--white);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: var(--gap);
	z-index: 1;
}
.servicesList-item:nth-child(2n) .servicesList-item__wrap {
	background: #0267AE;
	color: var(--white);
}
.servicesList-item__head {
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 2);
	margin-bottom: calc(var(--gap) / 1.5);
	padding-bottom: calc(var(--gap) / 2);
	border-bottom: 1px solid var(--blue);
}
.servicesList-item:nth-child(2n) .servicesList-item__head {
	border-bottom-color: var(--white);
}
.servicesList-item__image {
	flex: 0 0 100px;
	max-width: 100px;
}
.servicesList-item__title {
	flex: auto;
	margin: 0;
	font-size: var(--h5-size);
	line-height: 1.2;
}
.servicesList-item__title a {
	color: var(--black);
	text-decoration: none;
}
.servicesList-item:nth-child(2n) .servicesList-item__title a {
	color: var(--white);
}
.servicesList-item__title a:hover {
	color: var(--blue);
}
.servicesList-item:nth-child(2n) .servicesList-item__title a:hover {
	color: var(--light);
}
.servicesList-item__description {
	flex: 0 0 66%;
	max-width: 66%;
	margin-left: var(--gap);
}
.servicesList-item__content {
	margin-bottom: var(--gap);
}
.servicesList-item:nth-child(2n) .servicesList-item__content * {
	color: var(--white);
}
.servicesList-item:nth-child(2n) .servicesList-item__content ul li:before {
	background-image: url(images/check-blue-list-white.svg);
}
.servicesList-item__button {
	text-align: right;
}
.servicesList-item__button .btn {
	min-width: auto;
}
.servicesList-item:nth-child(2n) .servicesList-item__button .btn {
	background-color: var(--white);
	border-color: var(--white);
	color: var(--blue-light);
}
.servicesList-item:nth-child(2n) .servicesList-item__button .btn:hover {
	background-color: var(--light);
	border-color: var(--light);
	color: var(--blue);
}



.singleServices-wrap {
	position: relative;
	display: flex;
	gap: var(--gap);
	z-index: 1;
}
.singleServices-left,
.singleServices-right {
	flex: 0 0 calc(50% - var(--gap) / 2);
	max-width: calc(50% - var(--gap) / 2);
}
.singleServices-right {
	display: flex;
	flex-direction: column;
	gap: var(--gap);
	justify-content: space-between;
}
.singleServices-right:before {
	content: '';
	background: url(images/element-grey.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 223px;
	height: 248px;
	right: 0;
	bottom: calc(var(--gap) * -2);
	transform: scale(-1, 1);
	opacity: .5;
	z-index: -1;
}
.singleServices-image {
	overflow: hidden;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
}


.stepsSimple-items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.stepsSimple-item {
	flex: 0 0 calc(100% / 4);
	max-width: calc(100% / 4);
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.stepsSimple-item__wrap {
	position: relative;
	display: flex;
	gap: calc(var(--gap) / 2);
	padding: calc(var(--gap) / 1.5) 0 0 var(--gap);
	z-index: 1;
}
.stepsSimple-item__wrap:before {
	content: '';
	-moz-border-radius: calc(var(--radius) / 1.5);
	-webkit-border-radius: calc(var(--radius) / 1.5);
	border-radius: calc(var(--radius) / 1.5);
	background: #9ADFFF;
	position: absolute;
	width: 60px;
	height: 60px;
	top: 0;
	left: 0;
	z-index: -1;
}
.stepsSimple-item__wrap:after {
	content: '';
	background: url(images/arrow-right-long.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	top: calc(30px - 7.5px);
	right: calc(var(--gap) / 1.5);
	width: 76px;
	height: 15px;
	z-index: -1;
}
.stepsSimple-item:last-child .stepsSimple-item__wrap:after {
	display: none;
}
.stepsSimple-item__count {
	font-size: var(--h1-size);
	font-weight: 700;
	line-height: 1;
	color: var(--blue);
}
.stepsSimple-item__title {
	font-weight: 700;
	line-height: 1.375;
	color: var(--black);
	padding-top: calc(var(--gap) / 1.333);
}



.problem-section:after {
	content: '';
	background: url(images/circles-grid.svg) no-repeat left bottom;
	background-size: contain;
	position: absolute;
	width: 470px;
	height: 466px;
	bottom: 0;
	left: 0;
	z-index: -1;
}




.faq-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.faq-bg:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: var(--black);
	opacity: .75;
	z-index: 1;
}
.faq-wrap {
	display: flex;
	gap: var(--gap);
}
.faq-left {
	flex: 0 0 calc(42% - var(--gap) / 2);
	max-width: calc(42% - var(--gap) / 2);
}
.faq-right {
	flex: 0 0 calc(58% - var(--gap) / 2);
	max-width: calc(58% - var(--gap) / 2);
}
.faq-items {
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 1.5);
}
.faq-item {
	background: var(--white);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
}
.faq-item__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: calc(var(--gap) / 1.5);
	line-height: 1.2;
	font-weight: 700;
	color: #0267AE;
	cursor: pointer;
	padding: calc(var(--gap) / 1.5) var(--gap);
	transition: .5s;
}
.faq-item__toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 20px;
	max-width: 20px;
	width: 20px;
	height: 20px;
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/expand-down.svg);
    mask-image: url(images/expand-down.svg);
    background-color: #0267AE;
	transition: .5s;
}
.active .faq-item__toggle {
    transform: rotate(180deg);
}
.faq-item__body {
	padding: 0 var(--gap) calc(var(--gap) / 1.5);
}



.archiveCases-content {
	margin-bottom: calc(var(--gap) * 1.5);
}


.tabs-nav {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	gap: var(--gap);
	margin-bottom: calc(var(--gap) * 1.5);
	overflow: auto;
}
.tabs-nav li {
	flex: 1;
}
.tabs-nav li a {
	width: 100%;
	height: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: var(--white);
	border: 1px solid #DEDEDE;
	font-weight: 500;
	color: var(--black);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	text-decoration: none;
	padding: calc(var(--gap) / 2) calc(var(--gap) / 1.5);
}
.tabs-nav li a:hover,
.tabs-nav li.active a {
	background: var(--blue-light);
	border-color: var(--blue-light);
	color: var(--white);
}
.tabs-block {
	display: none;
}
.tabs-block.active {
	display: block;
}



.cases-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.cases-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.cases-item__wrap {
	position: relative;
	background: var(--white);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: var(--gap);
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 1.5);
	z-index: 1;
}
.cases-item__image {
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: calc(var(--gap) / 3);
}
.cases-item__image img {
	max-height: 48px;
}
.cases-item__line {
	border-bottom: 1px solid #DEDEDE;
	width: 100%;
}
.cases-item__head {
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 3);
}
.cases-item__title {
	font-size: var(--h5-size);
	font-weight: 700;
	margin: 0;
}
.cases-item__scope {
	margin: 0;
}
.cases-item__scope strong {
	color: var(--blue-light);
}



@media (max-width: 1399px) {
	:root {
		--container: 1116px;
		--gap: 24px;
		--radius: calc(var(--gap) / 2);
		--shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);

		--admin-bar: 32px;

		--text-size: 16px;
		--text-size-lg: 18px;
		--text-size-sm: 14px;
		--h1-size: 42px;
		--h2-size: 36px;
		--h3-size: 32px;
		--h4-size: 28px;
		--h5-size: 24px;
		--h6-size: 20px;
	}
	button.swiper-navigation {
		width: 48px;
		height: 48px;
		top: calc(50% - 24px);
	}
	button.swiper-navigation:before {
		flex: 0 0 20px;
		max-width: 20px;
		width: 20px;
		height: 20px;
	}
	.heading-label,
	.page-header-label {
		margin-bottom: calc(var(--gap) / 2);
	}
	.heading-label span,
	.page-header-label span {
		font-size: calc(var(--h1-size) * 1.5);
	}
	.topbar-contacts {
		font-size: var(--text-size-sm);
	}
	.header {
		padding: calc(var(--gap) / 1.333) 0;
	}
	.header-logo {
		margin-right: 0;
	}
	.main-menu,
	.lang-menu {
		font-size: var(--text-size);
	}
	.header-wrap {
		height: 60px;
	}
	.header-logo img,
	.footer-logo img,
	.pageContacts-logo img {
		max-height: 60px;
	}
	.heroSlider-item.swiper-slide {
		height: calc(100vw / 1.75);
		min-height: 480px;
	}
	.heroSlider-item__wrap {
		gap: calc(var(--gap) * 1.5);
	}
	.heroSlider-item__wrap:before {
		flex: 0 0 130px;
		max-width: 130px;
		width: 130px;
		height: 145px;
	}
	.heroSlider-item__info {
		max-width: calc(100% - var(--gap) * 1.5 - 130px);
		gap: calc(var(--gap) / 2);
	}
	.heroSlider-item__heading {
		font-size: calc(var(--h1-size) * 1.75);
		margin-top: -10px;
	}
	.heroSlider-item__bg:before,
	.blog-section:before {
		width: 180px;
		height: 200px;
	}
	.services-section:before {
		width: 260px;
		height: 290px;
		left: calc((100% - var(--container)) / 2 - 60px);
	}
	.services-item__image,
	.steps-item__image,
	.servicesList-item__image {
		flex: 0 0 68px;
		max-width: 68px;
	}
	.services-item__title,
	.steps-item__title,
	.servicesList-item__title {
		font-size: var(--h6-size);
	}
	.about-right {
		gap: calc(var(--gap) * 1.5);
	}
	.about-right:before {
		width: 200px;
		height: 220px;
	}
	.about-left:before {
		width: 80px;
		height: 95px;
		top: -65px;
	}
	.about-image-2 {
		width: 240px;
		height: 250px;
	}
	.blog-section:after,
	.problem-section:after {
		width: 400px;
		height: 320px;
	}
	.clients-carousel:before {
		width: 200px;
		height: 225px;
		left: -30px;
	}
	.clients-carousel:after {
		width: 200px;
		height: 225px;
		right: -30px;
	}
	.page-header {
		min-height: 240px;
	}
	.info-wrap {
		gap: calc(var(--gap) * 2);
	}
	.info-wrap:after {
		flex: 0 0 150px;
		max-width: 150px;
		width: 150px;
		height: 170px;
	}
	.singleServices-right:before,
	.contentImage-wrap:before {
		width: 200px;
		height: 225px;
		bottom: calc(var(--gap) * -1);
	}
	.stepsSimple-item__wrap:after {
		width: 50px;
		height: 10px;
		right: calc(var(--gap) / 2);
	}
	.advantages-item__image {
		flex: 0 0 56px;
		max-width: 56px;
	}
	.advantages-item__title {
		font-size: var(--h6-size);
	}
	.advantages-item__text {
		font-size: var(--text-size);
	}
	.heading > p {
		font-size: var(--text-size-lg);
	}
	.faq-item__head {
		padding: calc(var(--gap) / 1.25) var(--gap);
	}
	.faq-item__body {
		padding: 0 var(--gap) calc(var(--gap) / 1.25);
	}
	.footer-widget {
		max-width: 280px;
	}
	.cases-item__title {
		font-size: var(--h6-size);
	}
	.pageContacts-info {
		font-size: var(--text-size);
	}
	.error-404-number {
		font-size: calc(var(--h1-size) * 5.5);
	}
}



@media (max-width: 1199px) {
	:root {
		--container: 916px;
		--gap: 24px;
		--radius: calc(var(--gap) / 2);
		--shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);

		--admin-bar: 32px;

		--text-size: 16px;
		--text-size-lg: 17px;
		--text-size-sm: 14px;
		--h1-size: 36px;
		--h2-size: 30px;
		--h3-size: 26px;
		--h4-size: 22px;
		--h5-size: 20px;
		--h6-size: 18px;
	}
	input[type="text"], input[type="email"], input[type="tel"], input[type="password"], select, textarea {
		height: 54px;
	}
	textarea {
		height: 100px;
	}
	.btn {
		min-width: 200px;
		min-height: 54px;
		padding: calc(var(--gap) / 1.75) var(--gap);
	}
	.soc-links li a {
		width: 20px;
		height: 20px;
	}
	.header-button .btn {
		min-width: auto;
	}
	.header-wrap {
		height: 54px;
	}
	.main-menu {
		gap: calc(var(--gap) / 1.5);
	}
	.header-logo img {
		max-height: 54px;
	}
	.heroSlider-item__wrap {
		padding: 0 calc(var(--gap) * 2);
		max-width: calc(1060px + var(--gap) * 2 * 2);
	}
	.feedback-left,
	.pageContacts-right {
		padding-left: calc(var(--gap) * 2);
		padding-right: calc(var(--gap) * 2);
	}
	.footer-contacts li:before,
	.topbar-contacts li:before,
	.pageContacts-info li:before {
		flex: 0 0 20px;
		max-width: 20px;
		width: 20px;
		height: 20px;
	}
	.footer-widget-title {
		margin-bottom: calc(var(--gap) / 2);
	}
	.footer-bottom {
		font-size: var(--text-size-sm);
	}

	.partners-item__image {
		height: calc((var(--container) - var(--gap) * 3) / 4 / 1.6);
	}
	.partners-item__image img {
		max-height: calc((var(--container) - var(--gap) * 3) / 4 / 1.6 - var(--gap) / 3 * 2);
	}
}





@media (max-width: 991px) {
	:root {
		--container: 696px;
		--gap: 24px;
		--radius: calc(var(--gap) / 2);
		--shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);

		--admin-bar: 32px;

		--text-size: 16px;
		--text-size-lg: 17px;
		--text-size-sm: 14px;
		--h1-size: 36px;
		--h2-size: 30px;
		--h3-size: 26px;
		--h4-size: 22px;
		--h5-size: 20px;
		--h6-size: 18px;
	}
	.heading {
		margin-bottom: calc(var(--gap) * 1.5);
	}
	.topbar {
		display: none;
	}
	.topbar-wrap {
		height: 50px;
	}
	.topbar-contacts {
		flex-direction: column;
		align-items: flex-start;
		gap: 2px;
	}
	.main-menu,
	.header-button {
		display: none;
	}
	.header-wrap {
		gap: var(--gap);
		height: 40px;
	}
	.header-logo {
		flex: auto;
	}
	.header-logo img {
		max-height: 40px;
	}
	button.hero-navigation.swiper-navigation {
		display: none;
	}
	.hero-pagination.swiper-pagination {
		display: flex;
	}
	.heroSlider-item__wrap {
		max-width: 100%;
		padding: 0;
		flex-direction: column;
		align-items: center;
		gap: var(--gap);
	}
	.heroSlider-item__wrap:before {
        flex: 0 0 80px;
        max-width: 80px;
        max-height: 80px;
        width: 80px;
        height: 80px;
    }
    .heroSlider-item__info {
    	max-width: 100%;
    	text-align: center;
    	gap: calc(var(--gap) / 3);
    }
    .heroSlider-item__heading {
    	font-size: calc(var(--h1-size) * 1.25);
    }
    .heroSlider-item__description {
    	font-size: var(--text-size-lg);
    }
    .advantages-wrap {
    	padding: calc(var(--gap) * 1.5);
    }
    .advantages-item,
    .services-item,
    .blog-item,
    .steps-item,
    .stepsSimple-item,
    .cases-item {
    	flex: 0 0 50%;
    	max-width: 50%;
    }
    .services-section:before {
    	width: 200px;
    	height: 220px;
    }
    .about-wrap {
    	flex-direction: column;
    	gap: calc(var(--gap) * 1.5);
    }
    .about-left {
    	flex: auto;
    	max-width: 100%;
    	min-height: var(--container);
    }
    .about-right {
    	flex: auto;
    	max-width: 100%;
    	gap: var(--gap);
    }
    .blog-item__image {
		flex: 0 0 calc((var(--container) - var(--gap)) / 2 / 1.5);
		max-height: calc((var(--container) - var(--gap)) / 2 / 1.5);
	}
	.feedback-right {
		display: none;
	}
	.feedback-left {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.map-section iframe {
		height: 360px;
		margin-bottom: -180px;
	}
	.footer.has-map {
		padding-top: 160px;
	}
	.footer-wrap {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: calc(var(--gap) * 1.5);
	}
	.footer-widget {
		max-width: 100%;
	}
	.footer-widget-title:after {
		left: calc(50% - 50px);
	}
	.footer-contacts {
		align-items: center;
	}
	.footer-soc {
		justify-content: center;
	}
	.footer-bottom-wrap {
		flex-direction: column-reverse;
		gap: calc(var(--gap) / 2);
		text-align: center;
	}
	.bottom-menu {
		flex-direction: column;
		align-items: center;
		gap: calc(var(--gap) / 4);
	}
	.page-header.section {
		padding-top: calc(var(--gap) * 2);
		padding-bottom: calc(var(--gap) * 2);
	}
	.page-header {
		min-height: 200px;
	}
	.info-wrap:after {
		display: none;
	}
	.contentImage-wrap,
	.results-wrap,
	.singleServices-wrap,
	.contentImage-wrap.reverse,
	.faq-wrap,
	.pageContacts-wrap {
		flex-direction: column;
		gap: calc(var(--gap) * 1.5);
	}
	.page-body-wrap {
		flex-direction: column;
		gap: calc(var(--gap) * 3);
	}
	.contentImage-left,
	.contentImage-right,
	.results-left,
	.results-right,
	.singleServices-left,
	.singleServices-right,
	.faq-left,
	.faq-right,
	.page-body-main,
	.page-body-sidebar,
	.pageContacts-left,
	.pageContacts-right {
		flex: auto;
		max-width: 100%;
	}
	.contentImage-image img {
		min-height: var(--container);
	}
	.partners-item__image {
		height: calc((var(--container) - var(--gap) * 2) / 3 / 1.6);
	}
	.partners-item__image img {
		max-height: calc((var(--container) - var(--gap) * 2) / 3 / 1.6 - var(--gap) / 3 * 2);
	}
	.imagesGallery-item {
		flex: 0 0 calc(100% / 3);
		max-width: calc(100% / 3);
	}
	.imagesGallery-item__image {
		height: calc((var(--container) - var(--gap) * 2) / 3 / .7);
	}
	.imagesGallery-item__image img {
		max-height: calc((var(--container) - var(--gap) * 2) / 3 / .7);
	}
	.servicesList-item__head {
		flex-wrap: wrap;
	}
	.servicesList-item__title {
		flex: 0 0 calc(100% - 68px - var(--gap) / 2);
		max-width: calc(100% - 68px - var(--gap) / 2);
	}
	.servicesList-item__description {
		flex: 0 0 100%;
		max-width: 100%;
		margin-left: 0;
	}
	.faq-button {
		display: none;
	}
	.faq-wrap .heading {
		margin-bottom: 0;
	}
	.tabs-nav li {
		flex: 0 0 auto;
	}
}





@media (max-width: 767px) {
	:root {
		--container: 516px;
		--gap: 20px;
		--radius: calc(var(--gap) / 2);
		--shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);

		--admin-bar: 46px;

		--text-size: 16px;
		--text-size-lg: 17px;
		--text-size-sm: 14px;
		--h1-size: 32px;
		--h2-size: 28px;
		--h3-size: 24px;
		--h4-size: 22px;
		--h5-size: 20px;
		--h6-size: 18px;
	}
	.services-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.form-field-50 {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.stepsSimple-item__wrap:before,
	.results-counters-item__wrap:before {
		width: 42px;
		height: 42px;
	}
	.advantages-item__image {
		flex: 0 0 40px;
		max-width: 40px;
	}
}





@media (max-width: 575px) {
	:root {
		--container: calc(100vw - 30px);
		--gap: 20px;
		--radius: calc(var(--gap) / 2);
		--shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);

		--admin-bar: 0px;

		--text-size: 15px;
		--text-size-lg: 16px;
		--text-size-sm: 14px;
		--h1-size: 28px;
		--h2-size: 24px;
		--h3-size: 22px;
		--h4-size: 20px;
		--h5-size: 18px;
		--h6-size: 17px;
	}
	.advantages-item, .services-item, .blog-item, .steps-item, .stepsSimple-item, .cases-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.advantages-items {
		margin-bottom: calc(var(--gap) * -1);
	}
	.advantages-item {
		margin-bottom: var(--gap);
	}
	.services-section:before {
		top: calc(var(--gap) * 6);
	}
	.services-section:before,
	.about-right:before,
	.clients-carousel:before,
	.singleServices-right:before,
	.contentImage-wrap:before {
        width: 120px;
        height: 135px;
    }
    .clients-carousel:after {
    	display: none;
    }
	.about-image-2 {
		width: 140px;
		height: 140px;
	}
	.about-counters-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.blog-item__image {
		flex: 0 0 calc(var(--container) / 1.5);
		max-height: calc(var(--container) / 1.5);
	}
	.feedback-left, .pageContacts-right,
	.advantages-wrap {
		padding: calc(var(--gap) * 1.5) var(--gap);
	}
	.blog-section:after, .problem-section:after {
		width: calc(100% - 30px);
	}
	.results-counters-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.partners-item__image {
		height: calc((var(--container) - var(--gap)) / 2 / 1.6);
	}
	.partners-item__image img {
		max-height: calc((var(--container) - var(--gap)) / 2 / 1.6 - var(--gap) / 3 * 2);
	}
	.imagesGallery-item {
		flex: 0 0 calc(100% / 2);
		max-width: calc(100% / 2);
	}
	.imagesGallery-item__image {
		height: calc((var(--container) - var(--gap)) / 2 / .7);
	}
	.imagesGallery-item__image img {
		max-height: calc((var(--container) - var(--gap)) / 2 / .7);
	}
	.blog-items.columns-2 .blog-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.single-post .page-title {
		font-size: var(--h2-size);
	}
	.modal-dialog {
		max-width: var(--container);
	}
}