/*!
Theme Name: Megakom
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: megakom
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.

Megakom 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/
*/

:root {
	--container: 1240px;
	--gap: 24px;
	--radius: 24px;
	--header-height: 72px;
	--admin-bar: 32px;
	--box-shadow: 0px 4px 24px -8px rgba(0, 79, 181, 0.12);

	--text-size: 16px;
	--text-size-sm: 14px;
	--text-size-esm: 12px;
	--h1-size: 36px;
	--h2-size: 32px;
	--h3-size: 28px;
	--h4-size: 24px;
	--h5-size: 20px;
	--h6-size: 18px;
}
*, ::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: 'Inter', sans-serif;
	line-height: 1.5;
	color: #667383;
	background: #FFFFFF;
}
a {
	color: #006BF1;
	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: 'Inter', sans-serif;
	font-weight: 800;
	margin: calc(var(--gap) * 1.5) 0 var(--gap);
	line-height: 1.2;
	color: #051A36;
	letter-spacing: -.9px;
}
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 var(--gap);
}
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: 700;
}
blockquote {
	font-style: italic;
}
.form-fields {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / 2 / -2) calc(var(--gap) / -1.5);
}
.form-field {
	flex: 0 0 100%;
	max-width: 100%;
	padding: 0 calc(var(--gap) / 2 / 2);
	margin-bottom: calc(var(--gap) / 1.5);
}
.form-field-33 {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
}
.form-field-50 {
	flex: 0 0 50%;
	max-width: 50%;
}
.form-field > label {
	display: block;
	color: #051A36;
	font-size: var(--text-size-sm);
	font-weight: 500;
	line-height: 1.25;
	margin-bottom: calc(var(--gap) / 5);
}
::-webkit-input-placeholder {
	color: #667383;
}
::-moz-placeholder {
	color: #667383;
}
:-ms-input-placeholder {
	color: #667383;
}
:-moz-placeholder {
	color: #667383;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="date"],
select,
textarea {
	font-size: var(--text-size-sm);
	font-weight: 400;
	font-family: 'Inter', sans-serif;
	line-height: 1.5;
	width: 100%;
	background: #FFFFFF;
	border: 1px solid #DEE5EF;
	color: #051223;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	padding: calc(var(--gap) / 2) calc(var(--gap) / 1.5);
	height: 56px;
	outline: none;
	transition: .5s;
}
textarea {
	height: 120px;
	resize: vertical;
}
select {
	-moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
	cursor: pointer;
	background-image: url(images/arrow-select.svg);
	background-repeat: no-repeat;
	background-position: calc(100% - var(--gap) / 2.5) center;
	background-size: 24px;
	padding-right: calc(var(--gap) * 1.5);
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
input[type="date"]:focus,
select:focus,
textarea:focus {
	border-color: #006BF1;
}
.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) calc(var(--gap) / 1.5);
	font-size: var(--text-size-sm);
}
.form-field-policy {
	font-size: var(--text-size-esm);
	line-height: 1.2;
	margin-top: calc(var(--gap) / 3);
}
.form-check {
	position: relative;
	display: block;
	padding-left: 29px;
	cursor: pointer;
	font-size: var(--text-size-sm);
	z-index: 1;
}
.form-check input[type="checkbox"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
	display: inline-block;
	vertical-align: middle;
	background: #FFFFFF;
	border: 1px solid #DEE5EF;
	width: 20px;
	height: 20px;
	outline: 0;
	padding: 0px;
	margin: 0;
	margin-right: 0;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	position: absolute;
	left: 0;
	top: 0;
	cursor: pointer;
	transition: .25s;
}
.form-check input[type="checkbox"]:checked:after {
	content: '';
    width: 6px;
    height: 11px;
    border-bottom: 1px solid #006BF1;
    border-right: 1px solid #006BF1;
    display: block;
    position: absolute;
    top: 1px;
    left: 6px;
    transform: rotate(45deg);
}



.screen-reader-text {
	display: none;
}
.container {
	width: 100%;
	max-width: var(--container);
	margin-left: auto;
	margin-right: auto;
}
.container-sm {
	width: 100%;
	max-width: var(--container-sm);
	margin-left: auto;
	margin-right: auto;
}
.section {
	position: relative;
	padding-top: calc(var(--gap) * 4);
	padding-bottom: calc(var(--gap) * 4);
	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;
	}
}
.w-100 {
	width: 100%;
}
.absolute {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
    z-index: -2;
}
.opacity-50 {
	opacity: .5;
}
.opacity-60 {
	opacity: .6;
}
.opacity-80 {
	opacity: .8;
}
.bg-mesh {
	background: radial-gradient(at 20% 20%, #006cee40 0, #0000 50%), radial-gradient(at 80% 0, #00c19726 0, #0000 50%), radial-gradient(at 0 80%, #314ede33 0, #0000 50%);
    background: radial-gradient(at 20% 20%, color(xyz 0.209 0.168 0.856 / 0.251), #0000 50%), radial-gradient(at 80% 0, color(xyz 0.24 0.403 0.354 / 0.149), #0000 50%), radial-gradient(at 0 80%, #314ede33, #0000 50%);
}
.gradient-hero {
	background: radial-gradient(1200px 600px at 80% -10%, #006cee2e, #0000 60%), radial-gradient(900px 500px at -10% 30%, #00c1971a, #0000 60%), linear-gradient(#fafcff, #e8f3ff);
    background: radial-gradient(1200px 600px at 80% -10%, color(xyz 0.209 0.168 0.856 / 0.18), #0000 60%), radial-gradient(900px 500px at -10% 30%, color(xyz 0.24 0.403 0.354 / 0.102), #0000 60%), linear-gradient(color(xyz 0.92 0.971 1.117), color(xyz 0.837 0.886 1.107));
}
.bg-dark {
	background: radial-gradient(36.46% 42.53% at 10% 90%, rgba(0, 194, 150, 0.18) 0%, rgba(0, 194, 150, 0) 60%), radial-gradient(41.67% 42.53% at 90% 10%, rgba(0, 107, 241, 0.35) 0%, rgba(0, 107, 241, 0) 60%);

}
.bg-light {
	background: #F0F6FD;
}
.bg-navy {
	background: #051A36;
}



.heading {
	margin-bottom: calc(var(--gap) * 2);
}
.heading.center {
	text-align: center;
}
.heading.white {
	color: rgba(255, 255, 255, 0.7);
}
.heading p {
	margin-bottom: calc(var(--gap) / 2);
}
.heading p:last-child {
	margin-bottom: 0;
}
.heading p:first-child {
	margin-bottom: calc(var(--gap) / 1.5);
}
.heading p:first-child span {
	display: inline-flex;
	align-items: center;
	font-size: var(--text-size-esm);
	font-weight: 600;
	padding: calc(var(--gap) / 6) calc(var(--gap) / 2);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	background: rgba(0, 107, 241, 0.1);
	color: #006BF1;
}
.heading.white p:first-child span {
	background: rgba(0, 194, 150, 0.2);
	color: #00C296;
}
.heading h2 {
	font-size: var(--h1-size);
	margin: 0 0 calc(var(--gap) / 2);
}
.heading.white h2 {
	color: #FFFFFF;
}



.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: calc(var(--gap) / 2);
	text-align: center;
	font-size: var(--text-size);
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	line-height: 1.5;
	background: transparent;
	border: 1px solid transparent;
	padding: calc(var(--gap) / 2) calc(var(--gap) * 1.1667);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	outline: none;
	min-height: 56px;
	cursor: pointer;
	text-decoration: none;
	z-index: 1;
	transition: .5s;
}
.btn.btn-sm {
	font-size: var(--text-size-sm);
	font-weight: 500;
	padding: calc(var(--gap) / 4) calc(var(--gap) / 1.5);
	gap: calc(var(--gap) / 3);
	min-height: 36px;
}
.btn-icon-left:before,
.btn-icon-right:after {
	content: '';
	flex: 0 0 16px;
	max-width: 16px;
	width: 16px;
	height: 16px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	transition: .5s;
}
.btn-primary {
	background: linear-gradient(98.32deg, #006BF1 0%, #007EF1 20%, #008FF0 40%, #0070E7 75%, #1A60E3 80%, #314EDE 100%);
	box-shadow: 0px 0px 48px rgba(0, 106, 237, 0.35);
	color: #FFFFFF;
}
.btn-sm.btn-primary {
	box-shadow: 0px 4px 24px -8px rgba(0, 79, 181, .12);
}
.btn-primary:hover {
	background: linear-gradient(98.32deg, #008FF0 0%, #008FF0 20%, #008FF0 40%, #008FF0 75%, #008FF0 80%, #008FF0 100%);
	color: #FFFFFF;
}
.btn-primary:before,
.btn-primary:after {
	background-color: #FFFFFF;
}
.btn-secondary {
	background: rgba(255, 255, 255, .7);
	box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 2px -1px rgba(0, 0, 0, 0.1);
	border-color: #DEE5EF;
	color: #051A36;
}
.btn.btn-sm.btn-secondary {
	box-shadow: none;
}
.btn-secondary:hover {
	background: rgba(255, 255, 255, .95);
	border-color: #DEE5EF;
	color: #051A36;
}
.btn-secondary:before,
.btn-secondary:after {
	background-color: #051A36;
}
.btn-thirdy {
	background: #051A36;
	box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 2px -1px rgba(0, 0, 0, 0.1);
	color: #FFFFFF;
}
.btn-thirdy:hover {
	background: rgba(5, 26, 54, .9);
	color: #FFFFFF;
}
.btn-thirdy:before,
.btn-thirdy:after {
	background-color: #FFFFFF;
}
.btn-outline-primary {
	background-color: transparent;
	border-color: transparent;
	color: #051223;
}
.btn-outline-primary:hover {
	background-color: rgba(255, 255, 255, .35);
	border-color: #DEE5EF;
	color: #051223;
}
.btn-outline-primary:before,
.btn-outline-primary:after {
	background-color: #051223;
}
.btn.btn-link {
	font-size: var(--text-size-sm);
	font-weight: 600;
	padding: 0;
	gap: calc(var(--gap) / 4);
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	color: #006BF1;
	min-width: inherit;
	min-height: inherit;
}
.btn.btn-link:hover {
	color: #051A36;
}
.btn.btn-link:before,
.btn.btn-link:after {
	background-color: #006BF1;
}
.btn.btn-link:hover:before,
.btn.btn-link:hover:after {
	background-color: #051A36;
}
.btn-icon-arrowRight:before,
.btn-icon-arrowRight:after {
	-webkit-mask-image: url(images/arrow-right.svg);
	mask-image: url(images/arrow-right.svg);
}
.btn-icon-phone:before,
.btn-icon-phone:after {
	-webkit-mask-image: url(images/phone.svg);
	mask-image: url(images/phone.svg);
}
.btn-icon-user:before,
.btn-icon-user:after {
	-webkit-mask-image: url(images/user.svg);
	mask-image: url(images/user.svg);
}
.btn-icon-pin:before,
.btn-icon-pin:after {
	-webkit-mask-image: url(images/pin.svg);
	mask-image: url(images/pin.svg);
}
.btn-icon-search:before,
.btn-icon-search:after {
	-webkit-mask-image: url(images/search.svg);
	mask-image: url(images/search.svg);
}

/*
.swiper-pagination {
	position: relative !important;
	bottom: auto !important;
	top: auto !important;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: var(--gap);
	gap: calc(var(--gap) / 3);
}
.swiper-pagination-bullet {
	flex: 0 0 12px;
	max-width: 12px;
	width: 12px !important;
	height: 12px !important;
	background: var(--light) !important;
	margin: 0 !important;
	opacity: 1 !important;
	-moz-border-radius: var(--radius) !important;
	-webkit-border-radius: var(--radius) !important;
	border-radius: var(--radius) !important;
	transition: .5s;
}
.swiper-pagination-bullet:hover,
.swiper-pagination-bullet-active {
	background: var(--blue) !important;
}


button.swiper-navigation {
	position: absolute;
	top: 50%;
	width: 40px;
	height: 40px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	border: none;
	background: var(--white);
	border: 1px solid var(--light);
	display: flex;
	align-items: center;
	justify-content: center;
	outline: none;
	padding: 0;
	cursor: pointer;
	transform: translateY(-50%);
	opacity: 0;
	transition: .5s;
	z-index: 3;
}
*:hover > button.swiper-navigation {
	opacity: 1;
}
button.swiper-navigation:hover {
	background: var(--blue);
}
button.swiper-navigation:disabled {
	background: var(--white);
	opacity: 0;
	cursor: no-drop;
}
button.swiper-navigation.prev {
	left: -20px;
}
button.swiper-navigation.next {
	right: -20px;
}
button.swiper-navigation: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(--black);
	flex: 0 0 24px;
	max-width: 24px;
	height: 24px;
	transition: .5s;
}
button.swiper-navigation:hover:before {
	background-color: var(--white);
}
button.swiper-navigation.prev:before {
	transform: scale(-1, 1);
}
button.swiper-navigation:disabled:before {
	background-color: var(--black);
}*/


.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: 40px;
	height: 40px;
	background: #122640;
	border: 1px solid rgba(255, 255, 255, .1);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
}
.soc-links li a:hover {
	background: #006bf1;
}
.soc-links li a svg {
	flex: 0 0 16px;
	max-width: 16px;
	height: 16px;
}
.soc-links li a path {
	fill: var(--white);
	transition: .5s;
}



.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: #FFFFFF;
	height: 100%;
	width: 100%;
	max-width: 360px;
	margin-left: auto;
	transform: translateX(100%);
	display: flex;
	flex-direction: column;
	transition: .5s;
	overflow: auto;
	z-index: 1;
}
.modal-mobile.show .modal-mobile-wrap {
	transform: translateX(0);
}
.mobile-header {
	position: relative;
	padding: var(--gap);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--gap);
	height: var(--header-height);
	z-index: 1;
}
.mobile-logo {
	max-width: 86px;
}
.mobile-logo img {
	max-height: calc(var(--header-height) - var(--gap) / 1.5 * 2);
}
.modal-mobile-close {
	-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: #051A36;
	flex: 0 0 32px;
	max-width: 32px;
	width: 32px;
	height: 32px;
	border: none;
	padding: 0;
	cursor: pointer;
	outline: none !important;
	transition: .5s;
}
.modal-mobile-close:hover {
	background-color: #006BF1;
}
.mobile-body {
	flex: auto;
	padding: var(--gap);
}
.mobile-buttons {
	display: flex;
	gap: calc(var(--gap) / 2);
	margin-bottom: var(--gap);
}
.mobile-buttons .btn {
	flex: 1;
}
.mobile-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: var(--h6-size);
	font-weight: 500;
}
.mobile-menu li {
	position: relative;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	z-index: 1;
}
.mobile-menu > li {
	border-bottom: 1px solid #DEE5EF;
}
.mobile-menu > li:last-child {
	border-bottom: 0;
}
.mobile-menu li a {
	order: 1;
	flex: 0 0 100%;
	max-width: 100%;
	position: relative;
	display: block;
	padding: 10px 0;
	text-decoration: none;
	color: #051A36;
	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: #006BF1;
}
.mobile-menu-toggle {
	order: 2;
	-webkit-mask-size: 20px;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/arrow-down.svg);
	mask-image: url(images/arrow-down.svg);
	background-color: #051A36;
	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: #006BF1;
}
.mobile-menu li.menu-item-has-children.active > .mobile-menu-toggle {
	background-color: #006BF1;
	transform: rotate(180deg);
}
.mobile-menu ul {
	max-height: 0;
	overflow: hidden;
	flex: 0 0 100%;
	max-width: 100%;
	order: 3;
	margin: 0;
	padding: 0 0 0 20px;
	list-style: none;
	text-transform: none;
	z-index: 9;
}
.mobile-menu li.active > ul {
	max-height: 9999px !important;
	margin: 0 0 10px;
}
.mobile-footer {
	position: relative;
	padding: calc(var(--gap) * 1.5) var(--gap);
	background: #051A36;
	color: #FFFFFF;
	z-index: 1;
}
.mobile-footer a {
	color: #FFFFFF;
	text-decoration: none;
}
.mobile-footer a:hover {
	color: #006BF1;
}



.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: 480px;
	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: calc(var(--gap) * 2) calc(var(--gap) * 1.5) calc(var(--gap) * 1.5);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	overflow: hidden;
	z-index: 1;
}
.modal-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1050;
	width: 100vw;
	height: 100vh;
	background-color: #051A36;
	opacity: 0;
	z-index: -1;
}
.modal-backdrop.show {
	opacity: .8;
	z-index: 1049;
}
.modal-title {
	font-size: var(--h5-size);
	color: #051A36;
	font-weight: 700;
	text-align: center;
	margin: 0;
}
.modal-description {
	text-align: center;
	margin-top: calc(var(--gap) / 3);
}
.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: #051A36;
	width: 32px;
	height: 32px;
	top: 12px;
	right: 12px;
	border: none;
	cursor: pointer;
	padding: 0;
	transition: .5s;
	z-index: 9;
}
.modal-close:hover {
	background-color: #006BF1;
}


.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 {
	clear: both;
	display: flex;
	flex-wrap: wrap;
	margin: calc(var(--gap) + 2px) calc(var(--gap) / -2) 2px;
}
.gallery:first-child {
	margin-top: 0;
}
.gallery:last-child {
	margin-bottom: calc(var(--gap) * -1);
}
.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.gallery-item > * {
	overflow: hidden;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
}
.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) - var(--gap)) / 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) - var(--gap) * 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) - var(--gap) * 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) - var(--gap) * 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) - var(--gap) * 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) - var(--gap) * 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) - var(--gap) * 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) - var(--gap) * 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;
	margin-top: calc(var(--gap) / 4);
	font-style: italic;
}
.alignleft {
	float: left;
	margin-right: calc(var(--gap) * 1.5);
	margin-bottom: var(--gap);
}
.alignright {
	float: right;
	margin-left: calc(var(--gap) * 1.5);
	margin-bottom: var(--gap);
}
.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: var(--gap);
}








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


.header {
	position: sticky;
	top: 0;
	border-bottom: 1px solid #DEE5EF;
	background: rgba(255, 255, 255, .9);
	backdrop-filter: blur(8px);
	box-shadow: 0 4px 24px -8px #f0f6fd;
	transition: .5s;
	z-index: 92;
}
.admin-bar .header {
	top: var(--admin-bar);
}
body.home .header:not(.fixed) {
	background: transparent;
	border-color: transparent;
	box-shadow: none;
}
.header-wrap {
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 3);
	height: var(--header-height);
}
.header-logo img {
	max-height: calc(var(--header-height) - var(--gap) / 1.5 * 2);
}
.main-menu {
	flex: auto;
	max-width: 100%;
	margin: 0;
	padding: 0 var(--gap);
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	gap: calc(var(--gap) / 3);
	font-size: var(--text-size-sm);
	font-weight: 500;
}
.main-menu li {
	position: relative;
	z-index: 1;
}
.main-menu li a {
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 8);
	padding: calc(var(--gap) / 2) 0;
	color: rgba(5, 18, 35, 0.8);
	min-height: calc(var(--header-height) - var(--gap) / 1.5 * 2);
	text-decoration: none;
}
.main-menu li a:hover,
.main-menu li.current-menu-item > a {
	color: #006BF1;
}
.main-menu li.menu-item-has-children > a:after {
	content: '';
	flex: 0 0 14px;
	max-width: 14px;
	width: 14px;
	height: 14px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/arrow-down.svg);
	mask-image: url(images/arrow-down.svg);
	background-color: rgba(5, 18, 35, 0.8);
	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: #006BF1;
}
.main-menu ul {
	position: absolute;
	top: 100%;
	left: calc(var(--gap) / -1.5);
	margin: 0;
	padding: calc(var(--gap) / 3) 0;
	box-shadow: 0 4px 24px -8px rgba(0, 79, 181, .12);
	list-style: none;
	background: #FFFFFF;
	border: 1px solid #DEE5EF;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	min-width: 200px;
	width: max-content;
	max-width: 320px;
	transform: translateY(20px);
	opacity: 0;
	visibility: hidden;
	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: 0 calc(var(--gap) / 3);
}
.main-menu ul li a {
	padding: calc(var(--gap) / 3) calc(var(--gap) / 2);
	display: flex;
	align-items: center;
	justify-content: space-between;
	text-transform: none;
	color: #051223;
	-moz-border-radius: calc(var(--radius) / 2);
	-webkit-border-radius: calc(var(--radius) / 2);
	border-radius: calc(var(--radius) / 2);
	min-height: inherit;
}
.main-menu ul li a:hover {
	color: #006BF1;
	background: #f0f6fd;
}
.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: calc(var(--gap) / 1.5);
	left: 100%;
}
.header-phone.btn.btn-sm {
	font-weight: 600;
	flex: 0 0 auto;
}
.header-city {
	flex: 0 0 auto;
	position: relative;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: var(--text-size-sm);
	font-weight: 500;
	z-index: 2;
}
.header-city > li {
	position: relative;
	z-index: -1;
}
/*.header-city > li:before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(5, 26, 54, .65);
	width: 100%;
	height: 100%;
	opacity: 0;
	pointer-events: none;
	transition: .5s;
	z-index: 1;
}
.header-city > li.active:before {
	opacity: 1;
	position: visibility;
}*/
.header-city > li > a span {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	max-width: 120px;
}
.header-city > li > a:after {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/arrow-down.svg);
	mask-image: url(images/arrow-down.svg);
	background-color: #FFFFFF;
	flex: 0 0 16px;
	max-width: 16px;
	width: 16px;
	height: 16px;
	transition: .5s;
}
.header-city > li.active > a:after {
	transform: rotate(180deg);
}
.header-city ul {
	position: absolute;
	top: calc(100% + var(--gap) / 3);
	right: 0;
	margin: 0;
	padding: calc(var(--gap) / 3) 0;
	box-shadow: 0 4px 24px -8px rgba(0, 79, 181, .12);
	list-style: none;
	background: #FFFFFF;
	border: 1px solid #DEE5EF;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	min-width: 200px;
	width: max-content;
	max-width: 320px;
	transform: translateY(20px);
	opacity: 0;
	visibility: hidden;
	transition: .5s;
	z-index: 1;
}
.header-city li.active > ul {
	transform: translateY(0);
	opacity: 1;
	visibility: inherit;
}
.header-city ul li {
	padding: 0 calc(var(--gap) / 3);
}
.header-city ul li a {
	padding: calc(var(--gap) / 3) calc(var(--gap) / 2);
	display: block;
	color: #051223;
	-moz-border-radius: calc(var(--radius) / 2);
	-webkit-border-radius: calc(var(--radius) / 2);
	border-radius: calc(var(--radius) / 2);
	text-decoration: none;
}
.header-city ul li a:hover {
	color: #006BF1;
	background: #f0f6fd;
}
.header-button {
	flex: 0 0 auto;
}
.header-toggle {
	display: flex;
}
.header-toggle button {
	flex: 0 0 32px;
	max-width: 32px;
	width: 32px;
	height: 32px;
	-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: #051A36;
	border: none;
	outline: none;
	padding: 0;
	cursor: pointer;
	transition: .5s;
}
.header-toggle button:hover {
	background-color: #006BF1;
}


.main {
	position: relative;
	margin-top: calc(var(--header-height) * -1);
	z-index: 1;
}


.footer {
	position: relative;
	background: #051A36;
	color: rgba(255, 255, 255, .8);
	font-size: var(--text-size-sm);
	z-index: 1;
}
.footer a {
	text-decoration: none;
	color: rgba(255, 255, 255, .8);
}
.footer a:hover {
	color: #FFFFFF;
}
.footer-wrap {
	padding: calc(var(--gap) * 2.667) 0;
	display: flex;
	justify-content: space-between;
	gap: var(--gap);
}
.footer-widget {
	max-width: 300px;
}
.footer-widget-title {
	color: rgba(255, 255, 255, .6);
	font-weight: 700;
	margin-bottom: calc(var(--gap) / 1.5);
	text-transform: uppercase;
}
.footer-logo {
	margin-bottom: var(--gap);
}
.footer-logo img {
	max-height: calc(var(--header-height) - var(--gap) / 1.5 * 2);
}
.footer-info {
	margin-bottom: calc(var(--gap) * 1.1667);
}
.footer-menu,
.footer-contacts {
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 2);
	line-height: 1.2;
}
.footer-menu ul {
	display: none;
}
.footer-contacts li {
	display: flex;
	gap: calc(var(--gap) / 3);
}
.footer-contacts li:before {
	content: '';
	flex: 0 0 16px;
	max-width: 16px;
	width: 16px;
	height: 16px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: #006BF1;
}
.footer-contacts li.address:before {
	-webkit-mask-image: url(images/pin.svg);
	mask-image: url(images/pin.svg);
}
.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/mail.svg);
	mask-image: url(images/mail.svg);
}
.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--gap);
	border-top: 1px solid rgba(255, 255, 255, .1);
	padding: calc(var(--gap) / 1.5) 0;
	color: rgba(255, 255, 255, .6);
}
.footer-bottom p {
	margin: 0;
}
.footer-bottom a {
	color: rgba(255, 255, 255, .6);
}
.footer-bottom a:hover {
	color: #FFFFFF;
}
.bottom-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	gap: var(--gap);
}
.bottom-menu ul {
	display: none;
}



.page-header.section {
	background: #e7f3ff;
	padding-top: calc(var(--gap) * 4 + var(--header-height));
}
body.single-post .page-header.section {
	padding-top: calc(var(--gap) * 2.5 + var(--header-height));
	padding-bottom: calc(var(--gap) * 2.5);
}
.page-title {
	font-size: calc(var(--h1-size) * 1.333);
	text-align: center;
}
body.single-post .page-title {
	font-size: var(--h2-size);
}



.error-404-number {
	font-size: calc(var(--h1-size) * 7);
	font-weight: 700;
	text-align: center;
	line-height: 1;
	color: var(--grey);
	opacity: .3;
}
.error-404-button {
	text-align: center;
}




.hero-section {
	padding-top: calc(var(--gap) * 4 + var(--header-height));
}
.hero3-section {
	padding-top: calc(var(--gap) * 2 + var(--header-height));
}
.heroBusiness {
	background: #051A36;
	color: rgba(255, 255, 255, 0.7);
}
.hero-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: calc(var(--gap) / 1.2) calc(var(--gap) * 2);
}
.heroBusiness .hero-wrap {
	align-items: center;
}
.hero-label {
	flex: 0 0 100%;
	max-width: 100%;
	margin: 0;
}
.hero2-label {
	margin-bottom: calc(var(--gap) / 2);
}
.hero-label.center {
	text-align: center;
}
.hero-label-inner {
	display: inline-flex;
	align-items: center;
	gap: calc(var(--gap) / 3);
	font-size: var(--text-size-esm);
	font-weight: 600;
	color: #006BF1;
	border: 1px solid #DEE5EF;
	background: rgba(255, 255, 255, .7);
	backdrop-filter: blur(8px);
	padding: calc(var(--gap) / 4) calc(var(--gap) / 1.5);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
}
.heroBusiness .hero-label-inner {
	background: rgba(0, 107, 241, 0.2);
	color: #FFFFFF;
	border: transparent;
}
.hero-label-inner span {
	flex: 0 0 8px;
	max-width: 8px;
	width: 8px;
	height: 8px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background: #00C296;
	animation: dot-online 2s infinite;
}
@keyframes dot-online {
	0% {
		background: #00C296;
	}
	70% {
		background: #00e7b2;
	}
	100% {
		background: #00C296;
	}
}
.heroBusiness .hero-label-inner span {
	background: url(images/business.svg) no-repeat center;
	background-size: contain;
	flex: 0 0 14px;
	max-width: 14px;
	width: 14px;
	height: 14px;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
	animation: none;
}
.hero-left {
	flex: 0 0 calc(50% - var(--gap));
	max-width: calc(50% - var(--gap));
}
.hero-content {
	font-size: var(--h6-size);
	margin-bottom: calc(var(--gap) * 1.5);
}
.hero-content:last-child {
	margin-bottom: 0;
}
.hero-content h1 {
	font-size: calc(var(--h1-size) * 1.5);
	font-weight: 800;
	letter-spacing: -1.5px;
}
.hero2-content h1 {
	font-size: calc(var(--h1-size) * 1.333);
}
.heroBusiness .hero-content h1 {
	color: #FFFFFF;
}
.hero-content h1 strong {
	font-weight: 800;
	background: linear-gradient(102.24deg, #051A36 0%, #00317C 50%, #0047CB 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
}
.heroBusiness .hero-content h1 strong {
	color: #FFFFFF;
}
.hero-buttons {
	display: flex;
	gap: calc(var(--gap) / 2);
	margin-bottom: calc(var(--gap) * 1.667);
}
.hero-buttons:last-child {
	margin-bottom: 0;
}
.hero-buttons.center {
	justify-content: center;
}
.hero-advantages {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / 2 / -2) calc(var(--gap) / -2);
}
.hero-advantages-item {
	margin: 0 0 calc(var(--gap) / 2);
	padding: 0 calc(var(--gap) / 2 / 2);
	flex: 0 0 25%;
	max-width: 25%;
}
.hero-advantages-item__wrap {
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 3);
	background: rgba(255, 255, 255, .7);
	border: 1px solid #DEE5EF;
	backdrop-filter: blur(8px);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	padding: calc(var(--gap) / 2);
}
.hero-advantages-item__image {
	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: #E7F3FF;
}
.hero-advantages-item__image img {
	max-width: 16px;
	max-height: 16px;
}
.hero-advantages-item__info {
	flex: auto;
	color: rgba(5, 18, 35, .8);
	font-size: var(--text-size-esm);
	font-weight: 500;
	line-height: 1.2;
}
.hero-right {
	flex: 0 0 calc(50% - var(--gap));
	max-width: calc(50% - var(--gap));
}
.hero-image {
	position: relative;
	z-index: 1;
}
.hero-image img {
	-moz-border-radius: calc(var(--gap) * 1.333);
	-webkit-border-radius: calc(var(--gap) * 1.333);
	border-radius: calc(var(--gap) * 1.333);
	border: 1px solid #DEE5EF;
	box-shadow: 0 0 64px rgba(0, 107, 241, .6);
}
.hero-caption {
	position: absolute;
	background: rgba(255, 255, 255, .85);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	padding: calc(var(--gap) / 1.5);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-bottom: 0;
	z-index: 1;
}
.hero-caption-1 {
	left: calc(var(--gap) / -1.5);
	bottom: calc(var(--gap) * 1.333);
}
.hero-caption-2 {
	right: calc(var(--gap) / -1.5);
	top: calc(var(--gap) * 1.333);
}
.hero-caption-label {
	font-size: var(--text-size-esm);
	color: #667383;
	font-weight: 500;
}
.hero-caption-value {
	font-size: var(--h4-size);
	font-weight: 800;
	color: #051A36;
}
.hero-caption-text {
	font-size: var(--text-size-esm);
}
.hero-caption-1 .hero-caption-text {
	color: #00C296;
}
.hero-caption-2 .hero-caption-text {
	color: #006BF1;
}

.hero-counters {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap);
}
.hero-counters-item {
	flex: 0 0 calc(50% - var(--gap) / 2);
	max-width: calc(50% - var(--gap) / 2);
	border: 1px solid rgba(255, 255, 255, 0.08);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	background: rgba(5, 26, 54, 0.6);
	padding: calc(var(--gap) / 1.2);
}
.hero-counters-item__value {
	font-size: var(--h3-size);
	font-weight: 800;
	line-height: 1.2;
	color: #FFFFFF;
	margin-bottom: calc(var(--gap) / 6);
}
.hero-counters-item__label {
	font-size: var(--text-size-esm);
}


.hero-otherPages .btn.active {
	border-color: #20c997;
    background: #20c997;
    color: #071a33;
}





.tariffs-items {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.tariffs-item {
	flex: 0 0 25%;
	max-width: 25%;
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.tariffs-item__wrap {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	border: 1px solid #DEE5EF;
	background: #FFFFFF;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	padding: var(--gap);
	box-shadow: 0 4px 24px -8px rgba(0, 79, 181, .12);
	z-index: 1;
}
.tariffs-item__wrap.is-border {
	border-color: rgba(0, 107, 241, .4);
	box-shadow: 0px 0px 0px 2px rgba(0, 107, 241, 0.2), var(--box-shadow);
}
.tariffs-item__badge {
	position: absolute;
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 6);
	max-width: 100%;
	height: 24px;
	top: -12px;
	left: 50%;
	background: linear-gradient(101.86deg, #006BF1 0%, #007EF1 20%, #008FF0 40%, #0070E7 75%, #1A60E3 80%, #314EDE 100%);
	transform: translateX(-50%);
	font-size: var(--text-size-esm);
	font-weight: 600;
	color: #FFFFFF;
	padding: 0 calc(var(--gap) / 2);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	z-index: 1;
}
.tariffs-item__badge:before {
	content: '';
	background: url(images/star.svg) no-repeat center;
	background-size: contain;
	flex: 0 0 12px;
	max-width: 12px;
	width: 12px;
	height: 12px;
}
.tariffs-item__image {
	flex: 0 0 48px;
	max-height: 48px;
	width: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #E7F3FF;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	margin-bottom: calc(var(--gap) / 1.5);
}
.tariffs-item__image img {
	max-width: 24px;
	max-height: 24px;
}
.tariffs-item__name {
	font-size: var(--h6-size);
	color: #051a36;
	font-weight: 700;
	margin-bottom: calc(var(--gap) / 6);
}
.tariffs-item__speed {
	margin-bottom: calc(var(--gap) / 1.2);
	padding: 0;
	list-style: none;
	display: flex;
	gap: calc(var(--gap) / 2);
	color: #006BF1;
	font-size: var(--text-size);
	font-weight: 600;
}
.tariffs-item__speed li {
	flex: 1;
}
.tariffs-item__price {
	font-size: var(--h1-size);
	font-weight: 800;
	color: #051A36;
	margin-bottom: calc(var(--gap) / 1.2);
	line-height: 1.2;
}
.tariffs-item__price del {
	font-size: var(--text-size);
	color: #667383;
	font-weight: 500;
	display: block;
	opacity: .8;
}
.tariffs-item__price ins {
	text-decoration: none;
}
.tariffs-item__price span {
	font-size: var(--text-size-sm);
	font-weight: 500;
	color: #667383;
}
.tariffs-item__content {
	flex: auto;
	max-height: 200px;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 1.5);
	font-size: var(--text-size-esm);
	margin-bottom: var(--gap);
	overflow: auto;
}
.tariffs-item__content-block > p {
	font-size: var(--text-size-esm);
	font-weight: 600;
	color: #051A36;
	margin-bottom: calc(var(--gap) / 3);
}
.tariffs-item__content-block:first-child > p {
	display: none;
}
.tariffs-item__content-block > div {
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 3);
}
.tariffs-item__content-block > div > * {
	margin: 0;
}
.tariffs-item__content-block ul {
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 6);
	padding: 0;
	list-style: none;
	color: rgba(5, 18, 35, .8);
	font-size: var(--text-size-sm);
}
.tariffs-item__content-block ul li {
	position: relative;
	padding-left: 24px;
	z-index: 1;
}
.tariffs-item__content-block ul li:before {
	content: '';
	position: absolute;
	width: 16px;
	height: 16px;
	background: url(images/checked.svg) no-repeat center;
	background-size: contain;
	top: 3px;
	left: 0;
	z-index: 1;
}
.edit-tariff {
	position: absolute;
	font-size: var(--text-size-esm);
	top: var(--gap);
	right: var(--gap);
	z-index: 1;
}



.cover-wrap {
	position: relative;
	padding: calc(var(--gap) * 2);
	border: 1px solid #DEE5EF;
	background: #E7F3FF;
	-moz-border-radius: calc(var(--radius) * 1.333);
	-webkit-border-radius: calc(var(--radius) * 1.333);
	border-radius: calc(var(--radius) * 1.333);
	overflow: hidden;
	display: flex;
	align-items: flex-start;
	gap: calc(var(--gap) * 2);
	z-index: 1;
}
.cover-left {
	flex: 0 0 calc(55% - var(--gap));
	max-width: calc(55% - var(--gap));
	padding: calc(var(--gap) / 1.5) 0;
}
.cover-heading.heading {
	margin-bottom: var(--gap);
}
.cover-list {
	margin-bottom: var(--gap);
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: calc(var(--gap) / 3);
}
.cover-list li {
	flex: 0 0 auto;
	background: #FFFFFF;
	border: 1px solid #DEE5EF;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 4);
	padding: calc(var(--gap) / 6) calc(var(--gap) / 2);
	color: rgba(5, 18, 35, 0.8);
	font-size: var(--text-size-sm);
	font-weight: 500;
}
.cover-list li span {
	flex: 0 0 6px;
	max-width: 6px;
	width: 6px;
	height: 6px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background: #00C296;
}
.cover-right {
	position: relative;
	flex: 0 0 calc(45% - var(--gap));
	max-width: calc(45% - var(--gap));
	z-index: 1;
}
.cover-image {
	position: relative;
	background: #051A36;
	border: 1px solid #DEE5EF;
	box-shadow: 0px 8px 32px -12px rgba(0, 79, 181, 0.16);
	-moz-border-radius: calc(var(--radius) * 1.333);
	-webkit-border-radius: calc(var(--radius) * 1.333);
	border-radius: calc(var(--radius) * 1.333);
	overflow: hidden;
	z-index: 1;
}
.cover-counters {
	position: absolute;
	bottom: var(--gap);
	left: var(--gap);
	width: calc(100% - var(--gap) * 2);
	background: rgba(5, 26, 54, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.08);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	padding: calc(var(--gap) / 1.5);
	display: flex;
	justify-content: space-between;
	gap: var(--gap);
	z-index: 1;
}
.cover-counters-item {
	color: #FFFFFF;
	line-height: 1.333;
}
.cover-counters-item__label {
	font-size: var(--text-size-esm);
	margin-bottom: 0;
	opacity: .8;
}
.cover-counters-item__value {
	font-size: var(--h4-size);
	font-weight: 800;
}
.cover-form {
	position: relative;
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid #DEE5EF;
	backdrop-filter: blur(4px);
	box-shadow: var(--box-shadow);
	padding: var(--gap);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	z-index: 1;
}
.cover-form-heading {
	font-size: var(--text-size-sm);
	font-weight: 700;
	color: #051223;
	margin-bottom: calc(var(--gap) / 2);
}
.cover-form-field {
	position: relative;
	z-index: 1;
}
.cover-form-field input {
	padding-left: calc(var(--gap) / 1.5 + 16px + var(--gap) / 3);
	background-image: url(images/search.svg);
	background-repeat: no-repeat;
	background-position: calc(var(--gap) / 1.5) center;
	background-size: 16px;
}
.cover-results {
	margin-top: calc(var(--gap) / 1.6);
	position: relative;
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid #DEE5EF;
	backdrop-filter: blur(4px);
	box-shadow: var(--box-shadow);
	padding: var(--gap);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	max-height: 240px;
	overflow-y: auto;
	display: none;
	z-index: 1;
}
.cover-result-item {
	margin-bottom: calc(var(--gap) / 2);
	padding-bottom: calc(var(--gap) / 2);
	border-bottom: 1px solid #f9f9f9;
	display: flex;
	gap: calc(var(--gap) / 3);
	font-size: var(--text-size-sm);
}
.cover-result-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: 0;
}
.cover-result-item:before {
	content: '';
	flex: 0 0 16px;
	max-width: 16px;
	width: 16px;
	height: 16px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/pin.svg);
	mask-image: url(images/pin.svg);
	background-color: #006BF1;
}
.cover-image {
	padding: calc(var(--gap) * 4) 0;
}


.steps-wrap {
	position: relative;
	z-index: 1;
}
.steps-wrap:before {
	content: '';
	background: linear-gradient(90deg, rgba(0, 107, 241, 0) 0%, rgba(0, 107, 241, 0.3) 33.33%, rgba(0, 194, 150, 0.3) 66.67%, rgba(0, 194, 150, 0) 100%);
	position: absolute;
	width: 100%;
	height: 1px;
	top: 28px;
	left: 0;
	z-index: -1;
}
.steps-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.steps-item {
	flex: 0 0 20%;
	max-width: 20%;
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.steps-item__wrap {
	position: relative;
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: calc(var(--gap) / 1.2);
	height: 100%;
	z-index: 1;
}
.steps-item__count {
	flex: 0 0 56px;
	max-height: 56px;
	width: 56px;
	background: linear-gradient(135deg, #006BF1 0%, #007EF1 20%, #008FF0 40%, #0070E7 75%, #1A60E3 80%, #314EDE 100%);
	box-shadow: 0px 0px 48px 0px rgba(0, 106, 237, 0.35);
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: var(--text-size-sm);
	font-weight: 800;
	color: #FFFFFF;
}
.steps-item__info {
	position: relative;
	width: 100%;
	flex: auto;
	font-size: var(--text-size-sm);
	text-align: center;
	box-shadow: 0px 4px 24px -8px #004FB51F;
	border: 1px solid #DEE5EF;
	background: #FFFFFF;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	padding: calc(var(--gap) / 1.2);
	z-index: 1;
}
.steps-item__title {
	font-size: var(--text-size);
	font-weight: 700;
	margin-bottom: calc(var(--gap) / 3);
	line-height: 1.2;
	color: #051A36;
}





.advantages-items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.advantages-item {
	flex: 0 0 50%;
	max-width: 50%;
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.columns-5 .advantages-item {
	flex: 0 0 20%;
	max-width: 20%;
}
.columns-4 .advantages-item {
	flex: 0 0 calc(100% / 4);
	max-width: calc(100% / 4);
}
.columns-3 .advantages-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
}
.advantages-item__wrap {
	position: relative;
	height: 100%;
	box-shadow: var(--box-shadow);
	border: 1px solid #DEE5EF;
	background: #FFFFFF;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	padding: var(--gap);
	z-index: 1;
}
.advantages-item__image {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: calc(var(--gap) / 1.2);
	background: #E7F3FF;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}
.advantages-item.size-sm .advantages-item__image {
	width: 44px;
	height: 44px;
	margin-bottom: calc(var(--gap) / 2);
}
.advantages-item__image img {
	max-width: 28px;
	max-height: 28px;
}
.advantages-item.size-sm .advantages-item__image img {
	max-width: 20px;
	max-height: 20px;	
}
.advantages-item__title {
	font-size: var(--h6-size);
	font-weight: 700;
	margin-bottom: calc(var(--gap) / 3);
	line-height: 1.2;
	color: #051A36;
}
.advantages-item.size-sm .advantages-item__title {
	font-size: var(--text-size-sm);
	font-weight: 600;
	margin-bottom: 0;
}
.advantages-item__text {
	font-size: var(--text-size-sm);
}





.counters-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.counters-item {
	flex: 0 0 20%;
	max-width: 20%;
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.counters-item__wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100%;
	box-shadow: var(--box-shadow);
	border: 1px solid #DEE5EF;
	background: #FFFFFF;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	padding: var(--gap);
	z-index: 1;
}
.counters-item__value {
	text-align: center;
	font-size: var(--h1-size);
	font-weight: 800;
	line-height: 1.1;
	background: linear-gradient(102.24deg, #051A36 0%, #00317C 50%, #0047CB 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
	margin-bottom: calc(var(--gap) / 3);
}
.counters-item__text {
	font-size: var(--text-size-sm);
	text-align: center;
}




.banner-wrap {
	display: flex;
	align-items: center;
	gap: calc(var(--gap) * 2);
}
.banner-left,
.banner-right {
	flex: 0 0 calc(50% - var(--gap));
	max-width: calc(50% - var(--gap));
}
.banner-image {
	position: relative;
	z-index: 1;
}
.banner-image:before {
	content: '';
	background: rgba(0, 107, 241, 0.3);
	filter: blur(32px);
	position: absolute;
	width: calc(100% + var(--gap) * 2);
	height: calc(100% + var(--gap) * 2);
	top: calc(var(--gap) * -1);
	left: calc(var(--gap) * -1);
	z-index: -1;
}
.banner-image img {
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	box-shadow: 0px 8px 32px rgba(0, 79, 181, 0.16);
	border: 1px solid rgba(255, 255, 255, 0.1)
}
.banner-advantages {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.banner-advantages-item {
	flex: 0 0 50%;
	max-width: 50%;
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.banner-advantages-item__wrap {
	position: relative;
	height: 100%;
	background: rgba(5, 26, 54, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.08);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	padding: var(--gap);
	z-index: 1;
}
.banner-advantages-item__image {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: calc(var(--gap) / 1.6);
	background: rgba(0, 107, 241, 0.3);
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}
.banner-advantages-item__image img {
	max-width: 20px;
	max-height: 20px;
}
.banner-advantages-item__title {
	font-size: var(--text-size);
	font-weight: 700;
	margin-bottom: calc(var(--gap) / 4);
	color: #FFFFFF;
}
.banner-advantages-item__text {
	font-size: var(--text-size-sm);
	color: rgba(255, 255, 255, 0.7);
}



.news-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.news-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.news-item__wrap {
	position: relative;
	height: 100%;
	overflow: hidden;
	background: #FFFFFF;
	border: 1px solid #DEE5EF;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	box-shadow: var(--box-shadow);
	display: flex;
	flex-direction: column;
	z-index: 1;
}
.news-item__image {
	flex: 0 0 calc((var(--container) - var(--gap) * 2) / 3 / 1.2);
	max-height: calc((var(--container) - var(--gap) * 2) / 3 / 1.2);
}
.news-item__info {
	position: relative;
	flex: auto;
	display: flex;
	flex-direction: column;
	padding: var(--gap);
	z-index: 1;
}
.news-item__date {
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 6);
	font-size: var(--text-size-esm);
	margin-bottom: calc(var(--gap) / 2);
}
.news-item__date:before {
	content: '';
	background: url(images/calendar.svg) no-repeat center;
	background-size: contain;
	flex: 0 0 14px;
	max-width: 14px;
	width: 14px;
	height: 14px;
}
.news-item__title {
	font-size: var(--h6-size);
	font-weight: 700;
	margin: 0 0 calc(var(--gap) / 3);
	line-height: 1.15;
}
.news-item__title a {
	color: #051A36;
	text-decoration: none;
}
.news-item__title a:hover {
	color: #006BF1;
}
.news-item__excerpt {
	font-size: var(--text-size-sm);
	margin-bottom: calc(var(--gap) / 1.5);
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.news-item__button {
	margin-top: auto;
}
.news-button {
	margin-top: calc(var(--gap) * 1.333);
	text-align: center;
}



.reviews-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.reviews-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.reviews-item__wrap {
	position: relative;
	height: 100%;
	overflow: hidden;
	background: #FFFFFF;
	border: 1px solid #DEE5EF;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	box-shadow: var(--box-shadow);
	padding: var(--gap);
	display: flex;
	flex-direction: column;
	z-index: 1;
}
.reviews-item__rating {
	display: flex;
	gap: calc(var(--gap) / 6);
	margin-bottom: calc(var(--gap) / 1.25);
}
.reviews-item__rating span {
	flex: 0 0 16px;
	max-width: 16px;
	height: 16px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/rating.svg);
	mask-image: url(images/rating.svg);
	background-color: #667383;
}
.reviews-item__rating span.active {
	background-color: #00C296;
}
.reviews-item__text {
	flex: auto;
}
.reviews-item__info {
	border-top: 1px solid #DEE5EF;
	padding-top: calc(var(--gap) / 1.25);
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 2);
}
.reviews-item__image {
	flex: 0 0 44px;
	max-width: 44px;
	width: 44px;
	height: 44px;
	background: linear-gradient(135deg, #006BF1 0%, #007EF1 20%, #008FF0 40%, #0070E7 75%, #1A60E3 80%, #314EDE 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: var(--text-size-sm);
	font-weight: 700;
	color: #FFFFFF;
	text-transform: uppercase;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}
.reviews-item__info p {
	font-size: var(--text-size-esm);
}
.reviews-item__info p span {
	font-size: var(--text-size-sm);
	font-weight: 700;
	color: #051A36;
	display: block;
	line-height: 1.2;
}






.faq-wrap {
	display: flex;
	gap: calc(var(--gap) * 2);
}
.faq-left,
.faq-right {
	flex: 0 0 calc(50% - var(--gap));
	max-width: calc(50% - var(--gap));
}
.faq-items {
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 2);
}
.faq-item {
	position: relative;
	background: #FFFFFF;
	box-shadow: var(--box-shadow);
	border: 1px solid #DEE5EF;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	transition: .5s;
	z-index: 1;
}
.faq-item.active {
	padding-bottom: var(--gap);
}
.faq-item__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: calc(var(--gap) / 2) calc(var(--gap) / 1.2);
	min-height: 56px;
	gap: var(--gap);
	cursor: pointer;
	transition: .5s;
}
.faq-item__title {
	font-size: var(--text-size);
	font-weight: 600;
	color: #051A36;
}
.faq-item__toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 16px;
	max-width: 16px;
	width: 16px;
	height: 16px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/arrow-down.svg);
	mask-image: url(images/arrow-down.svg);
	background-color: #667383;
	transition: .5s;
}
.active .faq-item__toggle {
	transform: rotate(180deg);
}
.faq-item__body {
	max-height: 0;
	padding: 0 calc(var(--gap) / 1.2);
	overflow: hidden;
	transition: 0.5s ease;
}
.faq-item.active .faq-item__body {
	max-height: 10000px;
}



.feedback-wrap {
	position: relative;
	padding: calc(var(--gap) * 2);
	border: 1px solid #DEE5EF;
	background: linear-gradient(114.21deg, #006BF1 0%, #007EF1 20%, #008FF0 40%, #0070E7 75%, #1A60E3 80%, #314EDE 100%);
	-moz-border-radius: calc(var(--radius) * 1.333);
	-webkit-border-radius: calc(var(--radius) * 1.333);
	border-radius: calc(var(--radius) * 1.333);
	box-shadow: 0px 8px 32px rgba(0, 79, 181, 0.16);
	overflow: hidden;
	display: flex;
	align-items: center;
	gap: calc(var(--gap) * 2);
	z-index: 1;
}
.feedback-left,
.feedback-right {
	flex: 0 0 calc(50% - var(--gap));
	max-width: calc(50% - var(--gap));
}
.feedback-heading.heading {
	margin-bottom: var(--gap);
}
.feedback-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: calc(var(--gap) / 3) var(--gap);
	color: rgba(255, 255, 255, 0.8);
	font-size: var(--text-size-sm);
}
.feedback-form {
	position: relative;
	background: #FFFFFF;
	box-shadow: var(--box-shadow);
	border: 1px solid #DEE5EF;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	padding: var(--gap);
	z-index: 1;
}
.feedback-form-heading {
	font-size: var(--h4-size);
	font-weight: 700;
	color: #051A36;
	margin-bottom: 0;
}
.feedback-form-description {
	font-size: var(--text-size-sm);
	margin-bottom: 0;
	margin-top: 4px;
}
.feedback-form-description + .wpcf7 {
	margin-top: var(--gap);
}







.services-items {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	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;
	height: 100%;
	display: flex;
	flex-direction: column;
	border: 1px solid #DEE5EF;
	background: #FFFFFF;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	padding: var(--gap);
	box-shadow: 0 4px 24px -8px rgba(0, 79, 181, .12);
	z-index: 1;
}
.services-item__image {
	flex: 0 0 48px;
	max-height: 48px;
	width: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #E7F3FF;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	margin-bottom: calc(var(--gap) / 1.5);
}
.services-item__image img {
	max-width: 24px;
	max-height: 24px;
}
.services-item__title {
	font-size: var(--h6-size);
	color: #051a36;
	font-weight: 700;
	margin-top: 0;
	margin-bottom: calc(var(--gap) / 2);
	line-height: 1.2;
}
.services-item__content {
	font-size: var(--text-size-sm);
	margin-bottom: var(--gap);
}
.services-item__footer {
	border-top: 1px solid #DEE5EF;
	padding-top: calc(var(--gap) / 1.25);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: calc(var(--gap) / 2);
}
.services-item__price {
	font-size: var(--h3-size);
	font-weight: 800;
	line-height: 1.2;
	color: #051A36;
}
.services-item__price span {
	font-size: var(--text-size-sm);
	color: #667383;
	font-weight: 500;
}


.equipments-items {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.equipments-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.equipments-item__wrap {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	border: 1px solid #DEE5EF;
	background: #FFFFFF;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	box-shadow: var(--box-shadow);
	overflow: hidden;
	z-index: 1;
}
.equipments-item__label {
	background: rgba(0, 107, 241, 0.1);
	color: #006BF1;
	font-size: var(--text-size-esm);
	font-weight: 600;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	line-height: 1.2;
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	padding: calc(var(--gap) / 6) calc(var(--gap) / 2);
	position: absolute;
	top: var(--gap);
	left: var(--gap);
	z-index: 2;
}
.equipments-item__image {
	flex: 0 0 calc((var(--container) - var(--gap) * 2) / 3 / 1.75);
	max-height: calc((var(--container) - var(--gap) * 2) / 3 / 1.75);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: calc(var(--gap) / 2);
}
.equipments-item__image img {
	max-height: calc((var(--container) - var(--gap) * 2) / 3 / 1.75 - var(--gap));
}
.equipments-item__info {
	position: relative;
	flex: auto;
	display: flex;
	flex-direction: column;
	padding: var(--gap);
	z-index: 1;
}
.equipments-item__title {
	font-size: var(--h6-size);
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: calc(var(--gap) / 1.5);
	color: #051A36;
}
.equipments-item__content {
	margin-bottom: calc(var(--gap) / 1.2);
}
.equipments-item__content ul {
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 6);
	padding: 0;
	list-style: none;
	color: rgba(5, 18, 35, .8);
	font-size: var(--text-size-sm);
}
.equipments-item__content ul li {
	position: relative;
	padding-left: 24px;
	z-index: 1;
}
.equipments-item__content ul li:before {
	content: '';
	position: absolute;
	width: 16px;
	height: 16px;
	background: url(images/checked.svg) no-repeat center;
	background-size: contain;
	top: 3px;
	left: 0;
	z-index: 1;
}
.equipments-item__characteristics {
	display: flex;
	flex-wrap: wrap;
	gap: calc(var(--gap) / 3) calc(var(--gap) / 2);
	background: rgba(240, 246, 253, 0.6);
	margin: 0 0 var(--gap);
	padding: calc(var(--gap) / 1.5);
	list-style: none;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
}
.equipments-item__characteristics li {
	flex: 0 0 calc(50% - var(--gap) / 2 / 2);
	max-width: calc(50% - var(--gap) / 2 / 2);
	font-size: var(--text-size-esm);
}
.equipments-item__characteristics li span {
	font-weight: 600;
	color: #051A36;
	display: block;
	line-height: 1.2;
	margin-top: 2px;
}
.equipments-item__footer {
	margin-top: auto;
	border-top: 1px solid #DEE5EF;
	padding-top: calc(var(--gap) / 1.25);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: calc(var(--gap) / 2);
}
.equipments-item__price {
	font-size: var(--h3-size);
	font-weight: 800;
	line-height: 1.2;
	color: #051A36;
}
.equipments-item__price del {
	font-size: var(--text-size);
	color: #667383;
	font-weight: 500;
	display: block;
	opacity: .8;
}
.equipments-item__price ins {
	text-decoration: none;
}
.equipments-item__price span,
.equipments-item__price del {
	font-size: var(--text-size-sm);
	color: #667383;
	font-weight: 500;
}





.promotions-items {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.promotions-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.promotions-item__wrap {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	border: 1px solid #DEE5EF;
	background: #FFFFFF;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	box-shadow: var(--box-shadow);
	padding: var(--gap);
	z-index: 1;
}
.promotions-item__wrap.is-border {
	background: linear-gradient(135deg, rgba(0, 107, 241, 0.05) 0%, #FFFFFF 100%);
	border: 1px solid rgba(0, 107, 241, 0.4);
}
.promotions-item__label {
	background: linear-gradient(118.47deg, #006BF1 0%, #007EF1 20%, #008FF0 40%, #0070E7 75%, #1A60E3 80%, #314EDE 100%);
	color: #FFFFFF;
	box-shadow: var(--box-shadow);
	font-size: var(--text-size-esm);
	font-weight: 600;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	line-height: 1.2;
	display: inline-flex;
	align-items: center;
	height: 24px;
	padding: calc(var(--gap) / 6) calc(var(--gap) / 2);
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}
.promotions-item__image {
	flex: 0 0 48px;
	max-height: 48px;
	width: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #E7F3FF;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	margin-bottom: calc(var(--gap) / 1.5);
}
.promotions-item__image img {
	max-width: 24px;
	max-height: 24px;
}
.promotions-item__title {
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 6);
	font-size: var(--text-size-sm);
	font-weight: 500;
	color: #006BF1;
	line-height: 1.2;
	margin-bottom: calc(var(--gap) / 1.5);
}
.promotions-item__title span {
	font-size: var(--h6-size);
	font-weight: 700;
	display: block;
	color: #051A36;
}
.promotions-item__content {
	font-size: var(--text-size-sm);
	margin-bottom: calc(var(--gap) / 1.2);
}
.promotions-item__content:last-child {
	margin-bottom: 0;
}
.promotions-item__content ul {
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 6);
	padding: 0;
	list-style: none;
	color: rgba(5, 18, 35, .8);
	font-size: var(--text-size-sm);
}
.promotions-item__content ul li {
	position: relative;
	padding-left: 24px;
	z-index: 1;
}
.promotions-item__content ul li:before {
	content: '';
	position: absolute;
	width: 16px;
	height: 16px;
	background: url(images/checked.svg) no-repeat center;
	background-size: contain;
	top: 3px;
	left: 0;
	z-index: 1;
}
.promotions-item__period {
	background: #F0F6FD;
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 3);
	font-size: var(--text-size-esm);
	font-weight: 500;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	padding: calc(var(--gap) / 3) calc(var(--gap) / 2);
}
.promotions-item__period:before {
	content: '';
	background: url(images/calendar.svg) no-repeat center;
	background-size: contain;
	flex: 0 0 14px;
	max-width: 14px;
	width: 14px;
	height: 14px;
}
.promotions-item__button {
	margin-top: auto;
}



.promotionsInfo-wrap {
	position: relative;
	background: rgba(240, 246, 253, 0.4);
	border: 1px solid #DEE5EF;
	padding: calc(var(--gap) * 1.333);
	display: flex;
	gap: calc(var(--gap) * 2);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	margin-top: calc(var(--gap) * 2);
	z-index: 1;
}
.promotionsInfo-left {
	flex: auto;
}
.promotionsInfo-right {
	flex: 0 0 auto;
}
.promotionsInfo-heading {
	font-size: var(--h5-size);
	font-weight: 700;
	color: #051A36;
	line-height: 1.2;
	margin-bottom: calc(var(--gap) / 6);
}
.promotionsInfo-description {
	font-size: var(--text-size-sm);
}






.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: 44px;
	height: 44px;
	font-weight: 500;
	color: #051A36;
	border: 1px solid #f9f9f9;
	background: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 10px;
	text-decoration: none;
	-moz-border-radius: calc(var(--radius) / 2);
	-webkit-border-radius: calc(var(--radius) / 2);
	border-radius: calc(var(--radius) / 2);
}
.nav-links .page-numbers:hover,
.nav-links .page-numbers.current {
	background: #006BF1;
	border-color: #006BF1;
	color: #FFFFFF;
}




.singleNews-wrap:after {
	content: '';
	clear: both;
	display: block;
}
.singleNews-image {
	float: left;
	margin: 0 calc(var(--gap) * 2) var(--gap) 0;
}
.singleNews-image img {
	max-width: calc(var(--container) / 2 - var(--gap));
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
}
.singleNews-date {
	display: inline-flex;
	align-items: center;
	gap: calc(var(--gap) / 6);
	font-size: var(--text-size-sm);
	margin-bottom: calc(var(--gap) / 2);
	border: 1px solid rgba(222, 229, 239, 1);
	padding: calc(var(--gap) / 6) calc(var(--gap) / 2);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
}
.singleNews-date:before {
	content: '';
	background: url(images/calendar.svg) no-repeat center;
	background-size: contain;
	flex: 0 0 14px;
	max-width: 14px;
	width: 14px;
	height: 14px;
}



.pageAbout-about-heading.heading {
	margin-bottom: var(--gap);
}
.about-button {
	margin-top: calc(var(--gap) * 1.333);
}





.pageContacts-wrap {
	display: flex;
	gap: calc(var(--gap) * 2);
}
.pageContacts-left,
.pageContacts-right {
	flex: 0 0 calc(50% - var(--gap));
	max-width: calc(50% - var(--gap));
}
.pageContacts-items {
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap);
}
.pageContacts-item {
	flex: 0 0 calc(50% - var(--gap) / 2);
	max-width: calc(50% - var(--gap) / 2);
	border: 1px solid #DEE5EF;
	box-shadow: var(--box-shadow);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	padding: var(--gap);
}
.pageContacts-item.flex {
	flex: 0 0 100%;
	max-width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0 calc(var(--gap) / 1.5);
}
.pageContacts-item__icon {
	width: 44px;
	height: 44px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #E7F3FF;
	margin-bottom: calc(var(--gap) / 1.5);
}
.pageContacts-item.flex .pageContacts-item__icon {
	flex: 0 0 44px;
	max-width: 44px;
}
.pageContacts-item__icon:before {
	content: '';
	flex: 0 0 20px;
	max-width: 20px;
	height: 20px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background: #006BF1;
}
.pageContacts-item__icon.phone:before {
	-webkit-mask-image: url(images/phone.svg);
	mask-image: url(images/phone.svg);
}
.pageContacts-item__icon.e-mail:before {
	-webkit-mask-image: url(images/mail.svg);
	mask-image: url(images/mail.svg);
}
.pageContacts-item__icon.address:before {
	-webkit-mask-image: url(images/pin.svg);
	mask-image: url(images/pin.svg);
}
.pageContacts-item__icon.schedule:before {
	-webkit-mask-image: url(images/schedule.svg);
	mask-image: url(images/schedule.svg);
}
.pageContacts-item__label {
	font-size: var(--text-size-esm);
	font-weight: 600;
	text-transform: uppercase;
	line-height: 1.25;
	margin-bottom: calc(var(--gap) / 6);
}
.pageContacts-item.flex .pageContacts-item__label {
	margin-bottom: calc(var(--gap) / 1.5);
	flex: auto;
	max-width: calc(100% - 44px - var(--gap) / 1.5);
	color: #051A36;
	font-size: var(--text-size);
	font-weight: 700;
	text-transform: inherit;
}
.pageContacts-item__value {
	font-weight: 700;
	color: #051A36;
}
.pageContacts-item__value a {
	color: #051A36;
	text-decoration: none;
}
.pageContacts-item__value a:hover {
	color: #006BF1;
}
.pageContacts-item__content {
	flex: 0 0 100%;
	max-width: 100%;
	color: rgba(5, 18, 35, 0.8);
	font-size: var(--text-size-sm);
}
.pageContacts-item__content ul {
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 3);
}
.pageContacts-item__content ul li {
	display: flex;
	gap: var(--gap);
	justify-content: space-between;
}
.pageContacts-item__content ul li strong {
	font-weight: 600;
}



.paymentPreparation {
	position: relative;
    overflow: hidden;
    padding: clamp(26px, 4vw, 44px);
    border: 1px solid #dce6f2;
    border-radius: 32px;
    background: #071a33;
    color: #ffffff;
    box-shadow: 0 16px 46px rgba(7, 26, 51, 0.12);
}
.paymentPreparation:before {
	position: absolute;
    inset: 0;
    content: "";
    background: radial-gradient(520px 280px at 90% 12%, rgba(11, 99, 246, 0.38), rgba(11, 99, 246, 0) 62%), radial-gradient(480px 260px at 8% 94%, rgba(32, 201, 151, 0.2), rgba(32, 201, 151, 0) 60%);
    pointer-events: none;
}
.paymentPreparation .heading {
	margin-bottom: var(--gap);
}
.paymentPreparation .heading p:first-child span {
	background: rgba(32, 201, 151, 0.18);
    color: #5df1c4;
}
.paymentPreparation-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 2);
}
.paymentPreparation-list li {
	display: flex;
    gap: calc(var(--gap) / 2);
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.86);
    font-weight: 700;
}
.paymentPreparation-list li span {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #20c997;
    color: #071a33;
    font-size: var(--text-size-sm);
}


.instructions-items {
	display: flex;
	flex-direction: column;
	gap: var(--gap);
}
.instructions-item__wrap {
	display: flex;
	gap: calc(var(--gap) * 2);
	align-items: center;
	padding: clamp(20px, 3vw, 30px);
	border: 1px solid #dce6f2;
	border-radius: 28px;
	background: #ffffff;
	box-shadow: 0 10px 30px rgba(7, 26, 51, 0.08);
}
.instructions-item:nth-child(2n) .instructions-item__wrap {
	flex-direction: row-reverse;
}
.instructions-item__left {
	flex: 0 0 calc(75% - var(--gap));
	max-width: calc(75% - var(--gap));
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 1.71);
}
.instructions-item__count {
	width: 48px;
	height: 48px;
	display: grid;
	place-items: center;
	border-radius: 16px;
	background: linear-gradient(135deg, #0b63f6, #2747d8);
	color: #ffffff;
	font-weight: 900;
	box-shadow: 0 12px 26px rgba(11, 99, 246, 0.26);
}
.instructions-item__heading {
	margin-bottom: 0;
	font-size: var(--h2-size);
	font-weight: 800;
	color: #071a33;
	line-height: 1.15;
}
.instructions-item__caption span {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(11, 99, 246, 0.1);
    color: #0b63f6;
    font-size: 13px;
    font-weight: 900;
}
.instructions-item__right {
	flex: 0 0 calc(25% - var(--gap));
	max-width: calc(25% - var(--gap));
}
.instructions-item__image {
	overflow: hidden;
	width: min(100%, 290px);
	justify-self: center;
	border: 10px solid #071a33;
	border-radius: 32px;
	background: #071a33;
	box-shadow: 0 18px 44px rgba(7, 26, 51, 0.24);
	border-radius: 22px;
}




.form-login {
	max-width: 420px;
	margin: 0 auto;
	border: 1px solid #DEE5EF;
	background: #FFFFFF;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	padding: var(--gap);
	box-shadow: 0 4px 24px -8px rgba(0, 79, 181, .12);
	padding: var(--gap);
}


.headerAccount {
	position: relative;
	margin-bottom: var(--gap);
}
.headerAccount-list {
	display: flex;
	position: relative;
	background: #f9f9f9;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	z-index: 1;
	padding: var(--gap);
}
.headerAccount-list__item {
	flex: 1;
	border-right: 1px solid #DEE5EF;
	color: #051A36;
	text-align: center;
	margin-right: var(--gap);
	padding-right: var(--gap);
}
.headerAccount-list__item:last-child {
	margin-right: 0;
	padding-right: 0;
	border-right: none;
}
.headerAccount-list__item strong {
	display: block;
}


.bodyAccount-wrap {
	display: flex;
	gap: calc(var(--gap) * 2);
}
.navAccount {
	flex: 0 0 240px;
	max-width: 240px;
}
.navAccount ul {
	margin-bottom: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 3);
}
.navAccount ul a.btn {
	justify-content: flex-start;
	text-align: left;
}
.pageAccount {
	flex: auto;
	max-width: calc(100% - 240px - var(--gap) * 2);
}
.dataAccount {
	display: flex;
	gap: var(--gap);
}
.dataAccount-col {
	flex: calc(50% - var(--gap) / 2);
	max-width: calc(50% - var(--gap) / 2);
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 2);
}
.dataAccount-item {
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 8);
	color: #051A36;
}
.dataAccount-item label {
	color: #667383;
	font-size: var(--text-size-sm);
}


.tableAccount {
	position: relative;
	width: 100%;
	border-collapse: collapse;
	padding: 0;
	z-index: 1;
}
.tableAccount th,
.tableAccount td {
	position: relative;
	padding: calc(var(--gap) / 2) calc(var(--gap) / 1.25);
	z-index: 1;
}
.tableAccount th {
	text-align: left;
	font-weight: 400;
	font-size: var(--text-size-sm);
	border-bottom: 1px solid #DEE5EF;
}
.tableAccount td {
	color: #051A36;
}
.tableAccount tr:nth-child(2n+1) td {
	background: #f9f9f9;
}

.stopServiceForm {
	background: #f9f9f9;
	margin-bottom: calc(var(--gap) * 2);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	padding: var(--gap);
}
.stopServiceForm-title {
	font-size: var(--h5-size);
	font-weight: 500;
	color: #051A36;
}
.stopServiceForm-field {
	align-items: flex-end;
}



@media (max-width: 1299px) {
	:root {
		--container: 1140px;
		--gap: 20px;
		--radius: 20px;
		--header-height: 72px;
		--admin-bar: 32px;
		--box-shadow: 0px 4px 24px -8px rgba(0, 79, 181, 0.12);

		--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;
	}
	.header-city > li > a span {
		max-width: 100px;
	}
	.main-menu {
		padding: 0;
	}
	.hero-content h1 {
		font-size: calc(var(--h1-size) * 1.333);
	}
}




@media (max-width: 1199px) {
	:root {
		--container: 910px;
		--gap: 20px;
		--radius: 20px;
		--header-height: 72px;
		--admin-bar: 32px;
		--box-shadow: 0px 4px 24px -8px rgba(0, 79, 181, 0.12);

		--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;
	}
	.btn {
		padding: calc(var(--gap) / 2) var(--gap);
	}
	.btn.btn-sm {
		padding: calc(var(--gap) / 4) calc(var(--gap) / 2);
	}
	.header-logo {
		max-width: 86px;
	}
	.header-button {
		display: none;
	}
	.hero-left {
		flex: 0 0 calc(58% - var(--gap));
		max-width: calc(58% - var(--gap));
	}
	.hero-right {
		flex: 0 0 calc(42% - var(--gap));
		max-width: calc(42% - var(--gap));
	}
	.hero-caption-1 {
		bottom: calc(var(--gap) / 1.333);
	}
	.hero-caption-2 {
		top: calc(var(--gap) / 1.333);
	}
	.hero-caption-value {
		font-size: var(--h6-size);
	}
	.tariffs-item {
		flex: 0 0 calc(100% / 3);
		max-width: calc(100% / 3);
	}
	.columns-5 .advantages-item,
	.columns-4 .advantages-item {
		flex: 0 0 calc(100% / 3);
		max-width: calc(100% / 3);
	}
}




@media (max-width: 991px) {
	:root {
		--container: 690px;
		--gap: 16px;
		--radius: 16px;
		--header-height: 56px;
		--admin-bar: 32px;
		--box-shadow: 0px 4px 16px -4px rgba(0, 79, 181, 0.12);

		--text-size: 15px;
		--text-size-sm: 14px;
		--text-size-esm: 12px;
		--h1-size: 28px;
		--h2-size: 24px;
		--h3-size: 22px;
		--h4-size: 20px;
		--h5-size: 18px;
		--h6-size: 16px;
	}
	.header-wrap {
		gap: calc(var(--gap) / 1.5);
	}
	.main-menu {
		display: none;
	}
	.header-phone {
		margin-left: auto;
	}
	.header-account {
		display: none;
	}
	.header-phone.btn.btn-sm {
		flex: 0 0 36px;
		max-width: 36px;
		width: 36px;
		justify-content: center;
		font-size: 0;
		gap: 0;
	}
	.hero-section {
		padding-top: calc(var(--header-height) + var(--gap) * 2);
	}
	.hero-label {
		order: 1;
	}
	.hero-right {
		flex: 0 0 100%;
		max-width: 100%;
		order: 2;
	}
	.hero-left {
		flex: 0 0 100%;
		max-width: 100%;
		order: 3;
	}
	.hero-image img {
		box-shadow: 0 0 24px rgba(0, 107, 241, .6);
	}
	.tariffs-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.tariffs-item__name {
		font-size: var(--h5-size);
	}
	.cover-wrap,
	.banner-wrap,
	.faq-wrap,
	.feedback-wrap,
	.promotionsInfo-wrap,
	.pageContacts-wrap {
		flex-direction: column;
	}
	.cover-left,
	.cover-right,
	.banner-left,
	.banner-right,
	.faq-left,
	.faq-right,
	.feedback-left,
	.feedback-right,
	.promotionsInfo-left,
	.promotionsInfo-right,
	.pageContacts-left,
	.pageContacts-right {
		flex: auto;
		max-width: 100%;
	}
	.promotionsInfo-wrap {
		gap: var(--gap);
	}
	.faq-wrap {
		gap: calc(var(--gap) * 4);
	}
	.steps-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.steps-item__wrap {
		flex-direction: row;
	}
	.steps-item__count {
		flex: 0 0 56px;
		height: 56px;
	}
	.steps-wrap:before {
		width: 1px;
		height: 100%;
		left: 28px;
		top: 0;
		background: linear-gradient(0deg, rgba(0, 107, 241, 0) 0%, rgba(0, 107, 241, 0.3) 33.33%, rgba(0, 194, 150, 0.3) 66.67%, rgba(0, 194, 150, 0) 100%);
	}
	.steps-item__info {
		text-align: left;
	}
	.steps-item__title {
		font-size: var(--h6-size);
	}
	.counters-items {
		justify-content: center;
	}
	.counters-item {
		flex: 0 0 calc(100% / 3);
		max-width: calc(100% / 3);
	}
	.news-items {
		justify-content: center;
	}
	.news-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.news-item__image {
		flex: 0 0 calc((var(--container) - var(--gap)) / 2 / 1.2);
		max-height: calc((var(--container) - var(--gap)) / 2 / 1.2);
	}
	.reviews-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.footer-wrap {
		flex-direction: column;
		gap: calc(var(--gap) * 2);
	}
	.footer-widget {
		max-width: 100%;
	}
	.footer-bottom {
		flex-direction: column-reverse;
		align-items: center;
		text-align: center;
		gap: calc(var(--gap) / 2);
	}
	.bottom-menu {
		flex-direction: column;
		gap: calc(var(--gap) / 4);
		align-items: center;
	}
	.footer-menu, .footer-contacts {
		gap: calc(var(--gap) / 1.5);
	}
	.services-item,
	.equipments-item,
	.promotions-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.equipments-item__image {
		flex: 0 0 calc((var(--container) - var(--gap)) / 2 / 1.75);
		max-height: calc((var(--container) - var(--gap)) / 2 / 1.75);
	}
	.equipments-item__image img {
		max-height: calc((var(--container) - var(--gap)) / 2 / 1.75 - var(--gap));
	}
	.heroBusiness .hero-wrap {
		gap: calc(var(--gap) * 2);
	}
	.heroBusiness .hero-left {
		order: 1;
	}
	.hero-image {
		margin-bottom: calc(var(--gap) / 2);
	}
	.form-fields {
		margin: 0 calc(var(--gap) / 2 / -2) calc(var(--gap) / -1.5);
	}
	.form-field {
		padding: 0 calc(var(--gap) / 2 / 2);
		margin-bottom: calc(var(--gap) / 1.5);
	}
	.form-field > label {
		margin-bottom: calc(var(--gap) / 4);
	}

	.page-template-page-payment-method .hero-wrap {
		flex-direction: column-reverse;
		gap: var(--gap);
	}
	.instructions-item__wrap,
	.instructions-item:nth-child(2n) .instructions-item__wrap {
		flex-direction: column;
	}
	.instructions-item__left,
	.instructions-item__right {
		flex: auto;
		max-width: 100%;
	}


	.headerAccount {
		margin-bottom: calc(var(--gap) * 2);
	}
	.headerAccount-list {
		flex-direction: column;
	}
	.headerAccount-list__item {
		margin: 0 0 calc(var(--gap) / 1.25);
		padding: 0 0 calc(var(--gap) / 1.25);
		border-right: none;
		text-align: left;
		border-bottom: 1px solid #DEE5EF;
	}
	.headerAccount-list__item:last-child {
		margin-bottom: 0;
		padding-bottom: 0;
		border-bottom: none;
	}
	.bodyAccount-wrap {
		flex-direction: column;
	}
	.navAccount,
	.pageAccount {
		flex: auto;
		max-width: 100%;
	}
	.dataAccount {
		flex-direction: column;
	}
	.dataAccount-col {
		flex: auto;
		max-width: 100%;
	}

	.tableAccount,
	.tableAccount tbody,
	.tableAccount tr,
	.tableAccount td {
		display: block;
		padding: 0;
		width: 100%;
	}
	.tableAccount thead {
		display: none;
	}
	.tableAccount tr {
		padding: calc(var(--gap) / 1.25);
		-moz-border-radius: var(--radius);
		-webkit-border-radius: var(--radius);
		border-radius: var(--radius);
	}
	.tableAccount tr:nth-child(2n+1) {
		background: #f9f9f9;
	}
	.tableAccount tr:nth-child(2n+1) td {
		background: none;
	}
	.tableAccount td {
		display: flex;
		gap: calc(var(--gap) / 2);
	}
	.tableAccount td:before {
		content: attr(data-title) " ";
		flex: 0 0 120px;
		max-width: 120px;
		display: inline-block;
		color: #667383;
	}
}




@media (max-width: 767px) {
	:root {
		--container: 510px;
		--gap: 16px;
		--radius: 16px;
		--header-height: 56px;
		--admin-bar: 46px;
		--box-shadow: 0px 4px 16px -4px rgba(0, 79, 181, 0.12);

		--text-size: 15px;
		--text-size-sm: 14px;
		--text-size-esm: 12px;
		--h1-size: 28px;
		--h2-size: 24px;
		--h3-size: 22px;
		--h4-size: 20px;
		--h5-size: 18px;
		--h6-size: 16px;
	}
	.hero-content h1,
	.page-title {
		font-size: var(--h1-size);
	}
	.hero-advantages-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.hero-buttons {
		flex-direction: column;
		gap: calc(var(--gap) / 2);
	}
	.columns-5 .advantages-item, .columns-4 .advantages-item, .columns-3 .advantages-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.cover-wrap,
	.feedback-wrap {
		padding: calc(var(--gap) * 2) var(--gap);
	}
	.singleNews-image {
		float: none;
		margin-right: 0;
	}
	.singleNews-image img {
		max-width: 100%;
	}
	.error-404-number {
		font-size: calc(var(--h1-size) * 5);
	}
	.page-header.section {
		padding: calc(var(--gap) * 2.5 + var(--header-height)) 0 calc(var(--gap) * 2.5);
	}
	.form-field-50,
	.form-field-33 {
		flex: 0 0 100%;
		max-width: 100%;
	}
}




@media (max-width: 575px) {
	:root {
		--container: calc(100vw - var(--gap) * 2);
		--gap: 16px;
		--radius: 16px;
		--header-height: 56px;
		--admin-bar: 0px;
		--box-shadow: 0px 4px 16px -4px rgba(0, 79, 181, 0.12);

		--text-size: 15px;
		--text-size-sm: 14px;
		--text-size-esm: 12px;
		--h1-size: 28px;
		--h2-size: 24px;
		--h3-size: 22px;
		--h4-size: 20px;
		--h5-size: 18px;
		--h6-size: 16px;
	}
	.heading h2 {
		font-size: var(--h2-size);
	}
	.tariffs-item,
	.advantages-item,
	.banner-advantages-item,
	.news-item,
	.columns-5 .advantages-item, 
	.columns-4 .advantages-item, 
	.columns-3 .advantages-item,
	.services-item,
	.equipments-item,
	.promotions-item,
	.pageContacts-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.counters-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.news-item__image {
		flex: 0 0 calc(var(--container) / 1.2);
		max-height: calc(var(--container) / 1.2);
	}
	.equipments-item__image {
		flex: 0 0 calc(var(--container) / 1.75);
		max-height: calc(var(--container) / 1.75);
	}
	.equipments-item__image img {
		max-height: calc(var(--container) / 1.75 - var(--gap));
	}
	.modal-dialog {
		max-width: var(--container);
	}
}