/*!
Theme Name: Provider Express
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: provider-express
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.

Provider Express 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=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
	--container: 1316px;
	--gap: 30px;
	--radius: 20px;
	--shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);

	--text-size: 18px;
	--text-size-sm: 16px;
	--h1-size: 48px;
	--h2-size: 36px;
	--h3-size: 28px;
	--h4-size: 24px;
	--h5-size: 21px;
	--h6-size: 18px;

	--black: #272727;
	--white: #FFFFFF;
	--bg: #F4F9FF;
	--blue: #005BBF;
	--grey: #606060;
	--grey-light: #D9D9D9;
}
*, ::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.25;
	color: var(--black);
	background: var(--white);
}
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: 'Inter', serif;
	font-weight: 600;
	margin: 0 0 25px;
	line-height: 1.2;
}
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 25px;
}
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child, p:last-child, ul:last-child, ol:last-child, blockquote:last-child {
	margin-bottom: 0;
}
iframe {
	max-width: 100%;
}
strong {
	font-weight: 600;
}
.form-fields {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -3) calc(var(--gap) / -1.5);
}
.form-field {
	flex: 0 0 100%;
	max-width: 100%;
	padding: 0 calc(var(--gap) / 3);
	margin-bottom: calc(var(--gap) / 1.5);
}
.form-field-label {
	display: block;
	margin-bottom: calc(var(--gap) / 2);
	line-height: 1.2;
}
::-webkit-input-placeholder {
	color: #5F6368;
}
::-moz-placeholder {
	color: #5F6368;
}
:-ms-input-placeholder {
	color: #5F6368;
}
:-moz-placeholder {
	color: #5F6368;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
select,
textarea {
	font-size: var(--text-size);
	font-weight: 400;
	font-family: 'Inter', sans-serif;
	line-height: 1.5;
	width: 100%;
	background: var(--white);
	border: 1px solid #868F9A;
	color: var(--black);
	-moz-border-radius: calc(var(--gap) * 1.5);
	-webkit-border-radius: calc(var(--gap) * 1.5);
	border-radius: calc(var(--gap) * 1.5);
	padding: 16px 24px;
	height: 60px;
	outline: none;
	transition: .5s;
}
textarea {
	height: 120px;
	resize: vertical;
}
select {
	cursor: pointer;
}
.form-field-button .btn.w-100 {
	width: 100%;
}
.form-field-radio,
.form-field-checkbox {
	max-width: calc(100% - 25px);
	margin-left: auto;
}
.form-field-radio .wpcf7-radio,
.form-field-checkbox .wpcf7-checkbox {
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 2);
}
.form-field-radio .wpcf7-list-item,
.form-field-checkbox .wpcf7-list-item {
	margin: 0;
}
.form-field-radio .wpcf7-list-item label,
.form-field-checkbox .wpcf7-list-item label {
	position: relative;
	cursor: pointer;
	padding-left: 30px;
	z-index: 1;
}
.form-field-radio .wpcf7-list-item input[type=radio] {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	border: 1px solid var(--grey-light);
	background: var(--white);
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	margin: 0;
}
.form-field-radio .wpcf7-list-item input[type=radio]:checked {
	border-color: var(--blue);
	background: var(--blue);
}
.form-field-radio .wpcf7-list-item input[type=radio]:checked:after {
	content: '';
	background: var(--blue);
	border: 3px solid var(--white);
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	position: absolute;
	width: 16px;
	height: 16px;
	top: calc(50% - 8px);
	left: calc(50% - 8px);
	z-index: 1;
}
.form-field-checkbox .wpcf7-list-item input[type=checkbox] {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	border: 1px solid var(--grey-light);
	background: var(--white);
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	margin: 0;
}
.form-field-checkbox .wpcf7-list-item input[type=checkbox]:checked {
	border-color: var(--blue);
	background: var(--blue);
}
.form-field-checkbox .wpcf7-list-item input[type=checkbox]:checked:after {
	content: '';
	background: var(--blue);
	border: 3px solid var(--white);
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	position: absolute;
	width: 16px;
	height: 16px;
	top: calc(50% - 8px);
	left: calc(50% - 8px);
	z-index: 1;
}
.wpcf7-spinner {
	position: absolute;
	right: 0;
	top: 0;
}
.wpcf7-not-valid-tip {
	font-size: var(--text-size-sm);
	margin-top: 4px;
}
.wpcf7 form .wpcf7-response-output {
	margin: 20px 0 0;
	padding: 16px 24px;
	text-align: center;
}




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


.heading {
	position: relative;
	margin-bottom: calc(var(--gap) * 2);
}
.heading:last-child {
	margin-bottom: 0;
}
.heading.center {
	text-align: center;
}
.heading.white {
	color: var(--white);
}
.heading h2,
.heading .h2 {
	color: #424242;
	display: inline-block;
	font-size: var(--h1-size);
	padding-bottom: 10px;
	border-bottom: 2px solid var(--blue);
}
.heading.white h2,
.heading.white .h2 {
	color: var(--white);
	border-bottom-color: var(--white);
}


.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	text-align: center;
	font-size: var(--text-size);
	font-family: 'Inter', serif;
	font-weight: 600;
	line-height: 1.5;
	border: none;
	padding: 10px 34px;
	-moz-border-radius: calc(var(--radius) * 1.5);
	-webkit-border-radius: calc(var(--radius) * 1.5);
	border-radius: calc(var(--radius) * 1.5);
	outline: none;
	min-height: 60px;
	cursor: pointer;
	text-decoration: none;
	z-index: 1;
	transition: .5s;
}
.btn.btn-sm {
	min-height: 50px;
}
.btn-primary {
	background-color: var(--blue);
	border-color: var(--blue);
	color: var(--white);
}
.btn-primary:hover {
	background-color: var(--black);
	border-color: var(--black);
	color: var(--white);
}
.btn-secondary {
	background-color: var(--white);
	border-color: var(--white);
	color: var(--blue);
}
.btn-secondary:hover {
	background-color: var(--black);
	border-color: var(--black);
	color: var(--white);
}
.btn.btn-link {
	padding: 0;
	font-weight: 400;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	color: var(--blue);
	min-height: inherit;
}
.btn.btn-link:hover {
	color: var(--black);
}
.btn.btn-link: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(--blue);
	transform: rotate(-90deg);
	transition: .5s;
}
.btn.btn-link:hover:after {
	background-color: var(--black);
}


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



.swiper-navigation-button {
	position: absolute;
	top: calc(50% - 20px);
	width: 40px;
	height: 40px;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
	border: none;
	background: none;
	display: flex;
	align-items: center;
	justify-content: center;
	outline: none;
	padding: 0;
	cursor: pointer;
	transition: .5s;
	z-index: 9;
}
.swiper-pagination ~ .swiper-navigation-button {
	top: calc(50% - 50px);
}
.swiper-navigation-button:disabled {
	opacity: .15;
	cursor: no-drop;
}
.swiper-navigation-button.swiper-navigation-prev {
	left: -20px;
}
.swiper-navigation-button.swiper-navigation-next {
	right: -20px;
}
.swiper-navigation-button: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(--blue);
    flex: 0 0 20px;
    max-width: 20px;
    width: 20px;
    height: 20px;
    transition: .5s;
    z-index: 1;
}
.swiper-navigation-button:hover:before {
	background-color: var(--black);
}
.swiper-navigation-button.swiper-navigation-prev:before {
	transform: rotate(90deg);
}
.swiper-navigation-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) / 1.5);
}
.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);
	transition: .5s;
}
.soc-links li a:hover path {
	fill: var(--black);
}
.soc-links.white li a:hover path {
	fill: var(--white);
}



.modal-mobile {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -9999;
	opacity: 0;
	transition: .5s;
}
.modal-mobile.show {
	z-index: 9999;
	opacity: 1;
}
.modal-mobile-wrap {
	position: relative;
	background: var(--white);
	height: 100%;
	width: 100%;
	transform: translateY(-100%);
	transition: .5s;
	overflow: auto;
	display: flex;
	flex-direction: column;
	z-index: 1;
}
.modal-mobile.show .modal-mobile-wrap {
	transform: translateY(0);
}
.modal-mobile-header {
	position: relative;
	padding: 10px 0;
	box-shadow: var(--shadow);
	background: var(--white);
	z-index: 1;
}
.modal-mobile-header-wrap {
	height: 36px;
	display: flex;
	align-items: center;
	gap: var(--gap);
}
.modal-mobile-logo {
	flex: auto;
}
.modal-mobile-logo img {
	max-height: 36px;
}
.modal-mobile-close {
	-webkit-mask-image: url(images/close.svg);
	mask-image: url(images/close.svg);
	-webkit-mask-size: 34px;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--black);
	flex: 0 0 36px;
	max-width: 36px;
	width: 36px;
	height: 36px;
	border: none;
	padding: 0;
	cursor: pointer;
	outline: none;
	transition: .5s;
}
.modal-mobile-close:hover {
	background-color: var(--blue);
}
.modal-mobile-body {
	padding: calc(var(--gap)) 0;
}
.modal-mobile-body-wrap {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: calc(var(--gap) * 2);
}
.mobile-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: var(--h6-size);
	font-weight: 600;
}
.mobile-menu li {
	position: relative;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	z-index: 1;
}
.mobile-menu > li {
	border-bottom: 1px solid var(--bg);
}
.mobile-menu > li:last-child {
	border-bottom: none;
}
.mobile-menu li a {
	order: 1;
	flex: 0 0 100%;
	max-width: 100%;
	position: relative;
	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-mobile-body-wrap .widget_wp_contacts_widget {
	width: max-content;
	max-width: 100%;
	margin: 0 auto;
	text-align: center;
}



.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: 740px;
	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: var(--white);
	outline: 0;
	padding: calc(var(--gap) * 2);
	-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: var(--black);
	opacity: 0;
	z-index: -1;
}
.modal-backdrop.show {
	opacity: .7;
	z-index: 1049;
}
.modal-title {
	font-size: var(--h3-size);
	color: var(--blue);
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: var(--gap);
	text-align: center;
}
.modal-description {
	text-align: center;
	margin-bottom: var(--gap);
}
.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: 20px;
	right: 20px;
	border: none;
	cursor: pointer;
	padding: 0;
	transition: .5s;
	z-index: 9;
}
.modal-close:hover {
	background-color: var(--black);
}
.modal-form {
	max-width: 550px;
	margin: 0 auto;
}




.page-content ul,
.page-content ol {
	margin-top: -10px;
	list-style: none;
	padding: 0 0 0 10px;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 2);
}
.page-content ol {
	counter-reset: my-awesome-counter;
}
.page-content ul:first-child,
.page-content ol:first-child {
	margin-top: 0;
}
.page-content ul li,
.page-content ol li {
	position: relative;
	padding-left: 30px;
	z-index: 1;
}
.page-content ol li {
	counter-increment: my-awesome-counter;
}
.page-content ul li:before {
	content: '';
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/check-list.svg);
    mask-image: url(images/check-list.svg);
    background-color: var(--blue);
	position: absolute;
	width: 20px;
	height: 20px;
	top: 0;
	left: 0;
	z-index: -1;
}
.page-content ol li:before {
	content: counter(my-awesome-counter);
	background: var(--blue);
	color: var(--white);
	position: absolute;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	left: 0;
	top: -2px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	font-size: var(--text-size-sm);
}
.page-content.big-ol {
	gap: var(--gap);
}
.page-content.big-ol li {
	padding-left: 95px;
	min-height: 65px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.page-content.big-ol li:before {
	width: 65px;
	height: 65px;
	font-size: var(--h1-size);
	font-weight: 700;
}


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




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

.topbar {
	position: relative;
	background: rgba(217, 217, 217, 0.7);
	z-index: 93;
}
.topbar a {
	color: var(--black);
	text-decoration: none;
}
.topbar a:hover {
	color: var(--blue);
}
.topbar-wrap {
	position: relative;
	display: flex;
	align-items: center;
	gap: calc(var(--gap) * 4);
	height: 40px;
	z-index: 1;
}
.topbar-contacts {
	flex: auto;
	display: flex;
	align-items: center;
	gap: var(--gap);
}
.topbar-contacts p {
	margin: 0;
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	gap: 6px;
}
.topbar-contacts p:before {
	content: '';
	flex: 0 0 24px;
	max-width: 24px;
	width: 24px;
	height: 24px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--blue);
}
.topbar-contacts p.phone:before {
	-webkit-mask-image: url(images/phone.svg);
	mask-image: url(images/phone.svg);
}
.topbar-account {
	display: flex;
}
.topbar-account a {
	position: relative;
	display: flex;
	align-items: center;
	height: 40px;
	gap: 10px;
	padding: 0 40px;
	color: var(--white);
	font-weight: 600;
	z-index: 1;
}
.topbar-account a:hover {
	color: var(--white);
}
.topbar-account a:before {
	content: '';
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/user.svg);
    mask-image: url(images/user.svg);
    background-color: var(--white);
    flex: 0 0 24px;
    max-width: 24px;
    width: 24px;
    height: 24px;
    transition: .5s;
}
.topbar-account a:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: var(--blue);
	transform: skewX(-20deg);
	transition: .5s;
	z-index: -1;
}
.topbar-account a:hover:after {
	background: var(--black);
}



.header {
	position: sticky;
	top: 0;
	background: var(--white);
	padding: 18px 0;
	box-shadow: var(--shadow);
	z-index: 92;
}
.header-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 60px;
	gap: calc(var(--gap) * 1.83);
}
.header-logo {
	max-width: 224px;
}
.header-logo img {
	max-height: 60px;
}
.main-menu {
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
	gap: calc(var(--gap) * 1.33);
	font-size: var(--h5-size);
	font-weight: 600;
}
.main-menu li {
	position: relative;
	z-index: 1;
}
.main-menu li a {
	color: var(--black);
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 0;
	text-decoration: none;
}
.main-menu li a:hover,
.main-menu li.current-menu-item > a,
.main-menu li.current-post-ancestor > a {
	color: var(--blue);
}
.main-menu li.menu-item-has-children > a: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;
	-webkit-mask-image: url(images/expand-down.svg);
	mask-image: url(images/expand-down.svg);
	background-color: var(--black);
	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,
.main-menu li.current-post-ancestor.menu-item-has-children > a:after {
	background-color: var(--blue);
}
.main-menu ul {
	position: absolute;
	top: 100%;
	left: calc(var(--gap) / -1.5);
	margin: 0;
	padding: calc(var(--gap) / 2) 0;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	list-style: none;
	background: var(--white);
	color: var(--black);
	box-shadow: var(--shadow);
	width: 280px;
	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: calc(var(--gap) / 2) calc(var(--gap) / 1.5);
	border-bottom: 1px solid var(--bg);
}
.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: calc(var(--gap) / 1.5);
	left: 100%;
}
.header-account {
	display: flex;
}
.header-account a {
	flex: 0 0 36px;
	max-width: 36px;
	width: 36px;
	height: 36px;
	-webkit-mask-size: 28px;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/user.svg);
    mask-image: url(images/user.svg);
    background-color: var(--blue);
}
.header-account a:hover {
	background-color: var(--black);
}
.header-toggle {
	display: flex;
}
.header-toggle button {
	flex: 0 0 36px;
	max-width: 36px;
	width: 36px;
	height: 36px;
	-webkit-mask-size: 30px;
    -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(--black);
	border: none;
	outline: none;
	padding: 0;
	cursor: pointer;
	transition: .5s;
}
.header-toggle button:hover {
    background-color: var(--blue);
}


.main {
	position: relative;
	overflow: hidden;
	z-index: 1;
}


.footer {
	position: relative;
	background: var(--bg);
	padding: 60px 0;
	z-index: 1;
}
.footer-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap);
}
.footer-widget {
	flex: 0 0 calc((100% / 4) - (3 * var(--gap) / 4));
	max-width: calc((100% / 4) - (3 * var(--gap) / 4));
}
.footer-widget-title {
	font-weight: 600;
	text-transform: uppercase;
	color: var(--blue);
	margin-bottom: var(--gap);
	text-decoration: underline;
	text-underline-offset: 10px;
}
.footer-widget .menu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 1.5);
}
.footer-widget .menu li a {
	color: var(--black);
	text-decoration: none;
}
.footer-widget .menu li a:hover {
	color: var(--blue);
}
.footer-widget .menu ul {
	display: none;
}
.contacts-widget {
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) * 1.5);
}
.contacts-items {
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 1.5);
}
.contacts-items p {
	margin: 0;
	display: flex;
	align-items: center;
}
.contacts-items p:before {
	content: '';
	flex: 0 0 24px;
	max-width: 24px;
	width: 24px;
	height: 24px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--blue);
}
.contacts-items p.phone:before {
	-webkit-mask-image: url(images/phone.svg);
	mask-image: url(images/phone.svg);
}
.contacts-items p a {
	color: var(--black);
	text-decoration: none;
}
.contacts-items p a:hover {
	color: var(--blue);
}
.footer-bottom {
	position: relative;
	background: #2C3035;
	color: var(--white);
	padding: 12px 0;
	font-size: var(--text-size-sm);
	text-align: center;
	z-index: 1;
}
.footer-bottom a {
	color: var(--white);
	text-decoration: none;
}
.footer-bottom a:hover {
	color: var(--white);
	opacity: .8;
}



.page-header {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: var(--gap);
	min-height: 300px;
	padding: calc(var(--gap) * 2) 0;
	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: linear-gradient(180.53deg, #080808 0.48%, rgba(38, 38, 38, 0.721154) 44.31%, rgba(115, 115, 115, 0) 99.56%);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.page-breadcrumbs {
	position: absolute;
	top: 20px;
	left: 0;
	width: 100%;
	font-size: var(--text-size-sm);
	color: var(--white);
	margin: 0;
}
.page-breadcrumbs a {
	color: var(--white);
	text-decoration: none;
}
.page-breadcrumbs a:hover {
	color: var(--white);
	opacity: .8;
}
.page-title {
	flex: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	font-weight: 700;
	font-size: calc(var(--h1-size) * 2);
	color: var(--white);
	line-height: 1.2;
}


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


.hero-section {
	min-height: 520px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.hero_xl-section {
	min-height: 730px;
}
.hero-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.hero-bg:after {
	content: '';
	background: linear-gradient(180.53deg, #080808 0.48%, rgba(38, 38, 38, 0.721154) 44.31%, rgba(115, 115, 115, 0) 99.56%);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.hero-wrap {
	text-align: center;
}
.hero-heading {
	margin: 0;
	font-size: calc(var(--h1-size) * 2);
	font-weight: 700;
	color: var(--white);
	line-height: 1.2;
}
.hero-description {
	margin: calc(var(--gap) / 2) 0 0;
	font-size: var(--h1-size);
	font-weight: 400;
	color: var(--white);
}
.hero-button {
	margin-top: calc(var(--gap) * 2);
}




.tariffs-carousel {
	position: relative;
	z-index: 1;
}
.tariffs-swiper {
	position: relative;
	overflow: hidden;
	margin: -6px 0 -14px;
	padding: 0 20px;
	z-index: 1;
}
.tariffs-item {
	padding: 6px 10px 14px;
}
.tariffs-item__wrap {
	position: relative;
	overflow: hidden;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	background: var(--bg);
	z-index: 1;
}
.tariffs-item__title {
	position: relative;
	background: var(--blue);
	color: var(--white);
	height: 86px;
	padding: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: var(--h3-size);
	font-weight: 600;
	margin-bottom: 0;
	z-index: 1;
}
.tariffs-item__title span {
	font-size: var(--h5-size);
}
.tariffs-item__body {
	position: relative;
	padding: 20px 15px 33px;
	z-index: 1;
}
.tariffs-item__image {
	position: absolute;
	bottom: 0;
	right: 0;
	background: url(images/tariff-bg-image.svg) no-repeat right bottom;
	background-size: contain;
	width: 243px;
	height: 225px;
	z-index: -1;
}
.tariffs-item__image span {
	position: absolute;
	clip-path: path("M0 206C0 92.2293 92.2293 0 206 0H238V206H0V206Z");
	width: 238px;
	height: 206px;
	right: 0;
	bottom: 0;
	z-index: 1;
}
.tariffs-item__speed {
	font-size: var(--h5-size);
	font-weight: 600;
	color: var(--blue);
	margin-bottom: calc(var(--gap) / 1.5);
	text-align: center;
}
.tariffs-item__short-desc {
	max-width: 295px;
	margin: 0 auto var(--gap);
	text-align: center;
}
.tariffs-item__price {
	margin-bottom: calc(var(--gap) * 1.7666);
}
.tariffs-item__price p {
	display: inline-flex;
	align-items: baseline;
	border: 1px solid var(--blue);
	-moz-border-radius: calc(var(--gap) * 1.5);
	-webkit-border-radius: calc(var(--gap) * 1.5);
	border-radius: calc(var(--gap) * 1.5);
	padding: 14px 20px;
	font-weight: 600;
	gap: 5px;
	color: var(--blue);
}
.tariffs-item__price p span {
	font-size: var(--h3-size);
	font-weight: 700;
}
.tariffs-item__toggle {
	position: relative;
	z-index: 9;
}
.tariffs-item__toggle button {
	width: 76px;
	height: 76px;
	background: var(--white);
	border: 1px solid #E6E8EB;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	padding: 0;
	outline: none;
	cursor: pointer;
	transition: .5s;
}
.tariffs-item__toggle button:hover {
	border-color: var(--blue);
	background: var(--blue);
}
.tariffs-item__toggle button: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(--blue);
	flex: 0 0 20px;
	max-width: 20px;
	width: 20px;
	height: 20px;
	transition: .5s;
}
.tariffs-item__toggle button:hover:before {
	background-color: var(--white);
}
.tariffs-item__toggle button.active:before {
	transform: rotate(180deg);
}
.tariffs-item__additional {
	display: none;
	position: relative;
	padding: var(--gap) calc(var(--gap) / 2);
	z-index: 1;
}
.tariffs-item__content {

}
.tariffs-item__button {
	text-align: center;
	margin-top: var(--gap);
}




.advantages-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.advantages-bg:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #373737;
	opacity: .7;
	z-index: 1;
}
.advantages-wrap {
	position: relative;
	padding-top: 50px;
	z-index: 1;
}
.advantages-items {
	padding: 0 var(--gap) calc(var(--gap) * 2);
	display: flex;
	flex-wrap: wrap;
	gap: calc(var(--gap) * 2);
	background: var(--white);
	-moz-border-radius: var(--radius) var(--radius) 0 0;
	-webkit-border-radius: var(--radius) var(--radius) 0 0;
	border-radius: var(--radius) var(--radius) 0 0;
}
.advantages-item {
	position: relative;
	flex: 0 0 calc((100% / 3) - (2 * calc(var(--gap) * 2) / 3));
	max-width: calc((100% / 3) - (2 * calc(var(--gap) * 2) / 3));
	z-index: 1;
}
.advantages-item:after {
	content: '';
	background: #E6E2D9;
	position: absolute;
	width: 1px;
	height: calc(100% - 50px - var(--gap));
	right: calc(var(--gap) * -1);
	bottom: 0;
	z-index: -1;
}
.advantages-item__wrap {
	position: relative;
	margin-top: -50px;
	z-index: 1;
}
.advantages-item__icon {
	width: 100px;
	height: 100px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--bg);
	margin: 0 auto var(--gap);
}
.advantages-item__content {
	position: relative;
	color: var(--grey);
	z-index: 1;
}
.advantages-item__content strong {
	color: var(--black);
}
.advantagesCTA {
	position: relative;
	background: var(--blue);
	color: var(--white);
	-moz-border-radius: 0 0 var(--radius) var(--radius);
	-webkit-border-radius: 0 0 var(--radius) var(--radius);
	border-radius: 0 0 var(--radius) var(--radius);
	padding: var(--gap) calc(var(--gap) * 2);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--gap);
	z-index: 1;
}
.advantagesCTA:before {
	content: '';
	background: url(images/cta-1.svg) no-repeat left center;
	background-size: contain;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.advantagesCTA:after {
	content: '';
	background: url(images/cta-2.png) no-repeat right center;
	background-size: contain;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.advantagesCTA-info {
	max-width: 680px;
}
.advantagesCTA-heading {
	margin-bottom: var(--gap);
	font-size: var(--h3-size);
	font-weight: 600;
	line-height: 1.2;
}
.advantagesCTA-button {
	flex: 0 0 auto;
}



.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;
	background: var(--white);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	height: 100%;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	z-index: 1;
}
.news-item__image {
	flex: 0 0 calc((var(--container) - var(--gap) * 2) / 3 / 1.64);
	max-height: calc((var(--container) - var(--gap) * 2) / 3 / 1.64);
}
.news-item__info {
	position: relative;
	flex: auto;
	display: flex;
	flex-direction: column;
	padding: calc(var(--gap) / 2) calc(var(--gap) / 1.5) calc(var(--gap) / 1.5);
	z-index: 1;
}
.news-item__date {
	position: relative;
	padding-bottom: 10px;
	margin-bottom: calc(var(--gap) / 2);
	border-bottom: 1px solid var(--blue);
	color: var(--grey);
}
.news-item__title {
	font-size: var(--text-size);
	font-weight: 400;
	margin-bottom: calc(var(--gap) / 1.5);
}
.news-item__title a {
	color: var(--black);
	text-decoration: none;
}
.news-item__title a:hover {
	color: var(--blue);
}
.news-item__button {
	text-align: right;
}


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


.coverageMap-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap);
}
.coverageMap-left,
.coverageMap-right {
	flex: 1;
}
.coverageMap-right {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: var(--gap);
	padding: var(--gap) 0;
}
.coverageMap-image {
	position: relative;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	height: 100%;
	overflow: hidden;
	min-height: 375px;
	z-index: 1;
}


.infoBlock-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap);
}
.infoBlock-content {
	flex: 7;
}
.infoBlock-image {
	flex: 5;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	overflow: hidden;
	min
}
.infoBlock_2-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap);
}
.infoBlock_2-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-size: var(--h5-size);
}
.infoBlock_2-image {
	flex: 1;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	overflow: hidden;
	min-height: 430px;
}
.particles-js {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}


.tabs-nav {
	position: relative;
	width: max-content;
	max-width: 100%;
	margin: 0 auto calc(var(--gap) * 2);
	padding: 0;
	list-style: none;
	display: flex;
	gap: calc(var(--gap) * 1.5);
	overflow: auto;
	z-index: 1;
}
.tabs-nav li {
	flex: 0 0 auto;
}
.tabs-nav li a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 250px;
	min-height: 60px;
	background: none;
	border: 1px solid var(--grey);
	-moz-border-radius: calc(var(--radius) * 1.5);
	-webkit-border-radius: calc(var(--radius) * 1.5);
	border-radius: calc(var(--radius) * 1.5);
	font-weight: 600;
	color: var(--grey);
	text-decoration: none;
	padding: 10px 30px;
}
.tabs-nav li a:hover,
.tabs-nav li.active a {
	color: var(--blue);
	border-color: var(--blue);
}
.tabs-block {
	display: none;
}
.tabs-block.active {
	display: block;
}



.infoCondition-content {
	max-width: 1080px;
	margin: 0 auto;
}



.banner-wrap {
	background: var(--blue);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	overflow: hidden;
	min-height: 672px;
	padding-left: calc(var(--gap) * 2);
	padding-right: calc(var(--gap) * 2);
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.banner-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.banner-info {
	max-width: 500px;
}
.banner-description {
	font-size: var(--h5-size);
	color: var(--white);
	margin-bottom: calc(var(--gap) * 2);
}
.banner-description:last-child {
	margin-bottom: 0;
}




.partnersTV-wrap {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: var(--gap);
}
.partnersTV-content,
.partnersTV-image {
	flex: 1;
}
.partnersTV-image {
	position: relative;
	height: calc((var(--container) - var(--gap) * 2) / 3 / 1.56);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	overflow: hidden;
	z-index: 1;
}
.partnersTV-content {
	font-size: var(--h5-size);
}



.offers-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.offers-item {
	flex: 0 0 50%;
	max-width: 50%;
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.offers-item__wrap {
	position: relative;
	background: #DFECFC;
	-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;
}
.offers-item__image {
	flex: 0 0 calc((var(--container) - var(--gap)) / 2 / 2);
	max-height: calc((var(--container) - var(--gap)) / 2 / 2);
}
.offers-item__info {
	flex: auto;
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 1.5) var(--gap);
	flex-wrap: wrap;
	padding: 30px;
	min-height: 136px;
}
.offers-item__title {
	flex: 0 0 100%;
	max-width: 100%;
	font-size: var(--h5-size);
	margin-bottom: 0;
}
.offers-item__title.with-content {
	flex: 0 0 calc(100% - 76px - var(--gap));
	max-width: calc(100% - 76px - var(--gap));
}
.offers-item__toggle button {
	width: 76px;
	height: 76px;
	background: var(--white);
	border: 1px solid #E6E8EB;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	padding: 0;
	outline: none;
	cursor: pointer;
	transition: .5s;
}
.offers-item__toggle button:hover {
	border-color: var(--blue);
	background: var(--blue);
}
.offers-item__toggle button: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(--blue);
	flex: 0 0 20px;
	max-width: 20px;
	width: 20px;
	height: 20px;
	transition: .5s;
}
.offers-item__toggle button:hover:before {
	background-color: var(--white);
}
.offers-item__toggle button.active:before {
	transform: rotate(180deg);
}
.offers-item__content {
	display: none;
}



.products-section {
	background: #f6f6f6;
}
.products-carousel {
	position: relative;
	z-index: 1;
}
.products-swiper {
	position: relative;
	overflow: hidden;
	margin: -4px 0 -8px;
	padding: 0 20px;
	z-index: 1;
}
.products-swiper .swiper-slide {
	height: auto;
}
.products-item {
	padding: 4px 4px 8px;
	height: 100%;
}
.products-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: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
	z-index: 1;
}
.products-item__wrap > a {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	text-decoration: none;
	z-index: 1;
}
.products-item__image {
	flex: 0 0 calc((var(--container) - 3 * var(--gap)) / 4 / 1.238);
	max-height: calc((var(--container) - 3 * var(--gap)) / 4 / 1.238);
	display: flex;
	align-items: center;
	justify-content: center;
}
.products-item__image img {
	max-height: calc((var(--container) - 3 * var(--gap)) / 4 / 1.238);
}
.woocommerce-loop-product__title {
	position: relative;
	flex: auto;
	padding: calc(var(--gap) / 2) calc(var(--gap) / 2) 0;
	margin-bottom: calc(var(--gap) / 3);
	font-size: var(--text-size);
	font-weight: 600;
	color: var(--black);
	text-align: center;
	transition: .5s;
}
.woocommerce-loop-product__title:hover {
	color: var(--blue);
}
.products-item__more {
	flex: 0 0 50px;
	max-height: 50px;
	width: 50px;
	margin: 0 calc(var(--gap) / 2) calc(var(--gap) / 2) auto;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--blue);
	transition: .5s;
}
.products-item__more:hover {
	background: var(--black);
}
.products-item__more: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/expand-down.svg);
	mask-image: url(images/expand-down.svg);
	background-color: var(--white);
	transform: rotate(-90deg);
	transition: .5s;
}




.services-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.services-bg:after {
	content: '';
	background: #161616;
	opacity: .8;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.services-items {
	-moz-column-count: 2;
	column-count: 2;
	-moz-column-gap: var(--gap);
	column-gap: var(--gap);
	margin-bottom: calc(var(--gap) * -1);
}
.services-item {
	page-break-inside: avoid;
	break-inside: avoid;
	margin-bottom: var(--gap);
}
.services-item__wrap {
	position: relative;
	background: var(--white);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	padding: var(--gap);
	z-index: 1;
}
.services-item__title {
	margin-bottom: calc(var(--gap) / 1.5);
	font-size: var(--h5-size);
	font-weight: 600;
	color: var(--blue);
}


.singleProduct-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 0 var(--gap);
}
.singleProduct-images {
	position: relative;
	flex: 0 0 calc(50% - var(--gap) / 2);
	max-width: calc(50% - var(--gap) / 2);
	z-index: 1;
}
.singleProductImagesMain-swiper {
	position: relative;
	width: 100%;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: var(--shadow);
	margin-bottom: var(--gap);
	overflow: hidden;
	z-index: 1;
}
.singleProductImagesMain-item__image {
	height: calc((var(--container) - var(--gap)) / 2 / 1.164);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.singleProductImagesMain-item__image img {
	max-height: calc((var(--container) - var(--gap)) / 2 / 1.164);
}
.singleProductImagesOther-swiper {
	position: relative;
	width: calc(100% + 20px);
	overflow: hidden;
	margin: -6px -10px -14px;
	z-index: 1;
}
.singleProductImagesOther-swiper .swiper-slide {
	opacity: .35;
	cursor: pointer;
	transition: .5s;
}
.singleProductImagesOther-swiper .swiper-slide-thumb-active,
.singleProductImagesOther-swiper .swiper-slide:hover {
	opacity: 1;
}
.singleProductImagesOther-item__image {
	margin: 6px 10px 14px;
	height: calc((((var(--container) - var(--gap)) / 2 / 1.164) - var(--gap) * 2) / 3);
	box-shadow: var(--shadow);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .5s;
}
.singleProductImagesOther-item__image img {
	max-height: calc((((var(--container) - var(--gap)) / 2 / 1.164) - var(--gap) * 2) / 3);
}
.singleProductImagesOther-swiper .swiper-slide-thumb-active .singleProductImagesOther-item__image {
	border-color: var(--blue);
}
.swiper-navigation-button.swiper-navigation-prev.singleProductImagesMain-swiper-navigation-prev {
	left: 10px;
}
.swiper-navigation-button.swiper-navigation-next.singleProductImagesMain-swiper-navigation-next {
	right: 10px;
}

.singleProduct-summary {
	flex: 0 0 calc(50% - var(--gap) / 2);
	max-width: calc(50% - var(--gap) / 2);
}
.singleProduct-title {
	font-size: var(--h3-size);
	font-weight: 600;
	border-bottom: 1px solid var(--grey-light);
	padding-bottom: calc(var(--gap) / 2);
	margin-bottom: calc(var(--gap) * 1.666);
}

.woocommerce-tabs {
	flex: 0 0 100%;
	max-width: 100%;
}
.woocommerce-tabs ul.tabs {
	position: relative;
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	gap: calc(var(--gap) * 1.333);
	overflow: auto;
	z-index: 1;
}
.woocommerce-tabs ul.tabs:after {
	content: '';
	background: #CBCBCB;
	position: absolute;
	width: 100%;
	height: 1px;
	left: 0;
	bottom: 0;
	z-index: -1;
}
.woocommerce-tabs ul.tabs li {
	flex: 0 0 auto;
}
.woocommerce-tabs ul.tabs li a {
	display: inline-flex;
	align-items: center;
	padding: 10px var(--gap);
	color: var(--black);
	text-decoration: none;
	border-bottom: 2px solid transparent;
	font-size: var(--h5-size);
}
.woocommerce-tabs ul.tabs li a:hover {
	color: var(--blue);
}
.woocommerce-tabs ul.tabs li.active a {
	color: var(--blue);
	border-color: var(--blue);
	font-weight: 600;
}
.woocommerce-Tabs-panel {
	position: relative;
	padding: var(--gap) calc(var(--gap) / 2) 0;
	z-index: 1;
}
.woocommerce-product-attributes {
	border-spacing: inherit;
	width: calc(100% + var(--gap));
	margin-left: calc(var(--gap) / -2);
}
.woocommerce-product-attributes th,
.woocommerce-product-attributes td {
	border-bottom: 1px solid var(--grey-light);
	padding: calc(var(--gap) / 2) 20px;
}
.woocommerce-product-attributes tr:first-child th,
.woocommerce-product-attributes tr:first-child td {
	padding-top: 0;
}
.woocommerce-product-attributes th {
	text-align: left;
	font-weight: 400;
	color: var(--grey);
	width: 35%;
}
.woocommerce-product-attributes td {
	color: var(--black);
}




.woocommerce-pagination,
.navigation.pagination {
	position: relative;
	margin-top: calc(var(--gap) * 2);
	z-index: 2;
}
ul.page-numbers,
.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;
}
ul.page-numbers li a,
ul.page-numbers li span,
.nav-links .page-numbers {
	min-width: 50px;
	height: 50px;
	font-size: var(--h5-size);
	font-weight: 400;
	color: var(--black);
	box-shadow: var(--shadow);
	background: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 10px;
	text-decoration: none;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}
ul.page-numbers li a:hover,
ul.page-numbers li span.current,
.nav-links .page-numbers:hover,
.nav-links .page-numbers.current {
	background: var(--blue);
	border-color: var(--blue);
	color: var(--white);
}



.singleBlog-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: calc(var(--gap) * 2) var(--gap);
}
.singleBlog-image {
	flex: 0 0 calc(50% - var(--gap) / 2);
	max-width: calc(50% - var(--gap) / 2);
}
.singleBlog-image img {
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}
.singleBlog-short {
	flex: 0 0 calc(50% - var(--gap) / 2);
	max-width: calc(50% - var(--gap) / 2);
	padding: var(--gap) 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: var(--gap);
}
.singleBlog-short-description,
.singleBlog-content {
	font-size: var(--h5-size);
}
.singleBlog-logo img {
	max-height: 80px;
}




.partners-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.partners-item {
	flex: calc(100% / 6);
	max-width: calc(100% / 6);
	margin: 0 0 calc(var(--gap));
	padding: 0 calc(var(--gap) / 2);
}
.partners-item__image {
	display: flex;
	align-items: center;
	justify-content: center;
	height: calc((var(--container) - var(--gap) * 5) / 6 / 1.2516);
	padding: 25px;
	box-shadow: var(--shadow);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
}
.partners-item__image img {
	max-height: calc((var(--container) - var(--gap) * 5) / 6 / 1.2516 - 50px);
}




.support-section {
	background: #05111D;
	color: var(--white);
}
.support-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap);
}
.support-left {
	flex: 0 0 calc(41% - var(--gap) / 2);
	max-width: calc(41% - var(--gap) / 2);
}
.support-image {
	margin-bottom: -100px;
}
.support-right {
	flex: 0 0 calc(59% - var(--gap) / 2);
	max-width: calc(59% - var(--gap) / 2);
}
.support-items {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.support-item__content {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.support-item__content > * {
	margin: 0 !important;
}
.soc-support li.soc-icon {
	display: none;
}
.support-item__content ul {
	padding-left: 0;
}
.soc-support {
	padding-left: 30px;
}
.support-item__content.page-content ul li:before {
	background-color: var(--white);
}
.support-contacts {
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 2);
	padding-left: var(--gap);
}
.support-contacts p {
	margin: 0;
	display: flex;
	align-items: center;
	gap: 6px;
}
.support-contacts p:before {
	content: '';
	flex: 0 0 24px;
	max-width: 24px;
	width: 24px;
	height: 24px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--blue);
}
.support-contacts p.phone:before {
	-webkit-mask-image: url(images/phone.svg);
	mask-image: url(images/phone.svg);
}
.support-contacts p a {
	color: var(--white);
	text-decoration: none;
}
.support-contacts p a:hover {
	color: var(--blue);
}



.networks-description {
	margin-bottom: calc(var(--gap) * 2);
}
.networks-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap);
}
.networks-left,
.networks-right {
	flex: 1;
}
.networks-right {
	padding: var(--gap) 0;
}
.networks-image {
	width: calc((100vw - var(--container)) / 2 + 100%);
	min-height: 555px;
	margin-left: calc((100vw - var(--container)) / -2);
	-moz-border-radius: 0 var(--radius) var(--radius) 0;
	-webkit-border-radius: 0 var(--radius) var(--radius) 0;
	border-radius: 0 var(--radius) var(--radius) 0;
	overflow: hidden;
	box-shadow: var(--shadow);
	height: 100%;
}
.networks-content.page-content ul {
	margin-top: 0;
}
.networks--button {
	margin-top: calc(var(--gap) * 2);
	text-align: center;
}


.advantagesIcons-heading {
	text-align: center;
	font-size: var(--h3-size);
	font-weight: 600;
	color: var(--black);
	margin-bottom: calc(var(--gap) * 2);
}
.advantagesIcons-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.advantagesIcons-item {
	flex: 0 0 25%;
	max-width: 25%;
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.advantagesIcons-item__icon {
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
}
.advantagesIcons-item__icon img {
	max-height: 100px;
}
.advantagesIcons-item__text {
	text-align: center;
}

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





.contacts_2-section {
	overflow: hidden;
}
.contacts_2-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap);
}
.contacts_2-left,
.contacts_2-right {
	flex: 1;
}
.contacts_2-map {
	width: calc((100vw - var(--container)) / 2 + 100%);
	height: 100%;
	min-height: 360px;
}
.contacts_2-map iframe {
	width: 100%;
	height: 100%;
	top: 0;
	border: 3px solid #B2B2B3 !important;
	-moz-border-radius: var(--radius) 0 0 var(--radius);
	-webkit-border-radius: var(--radius) 0 0 var(--radius);
	border-radius: var(--radius) 0 0 var(--radius);
	z-index: 1;
}
.contacts_2-items {
	display: flex;
	flex-direction: column;
	gap: var(--gap);
}
.contacts_2-item__label {
	font-size: var(--h5-size);
	font-weight: 600;
	margin-bottom: calc(var(--gap) / 2);
}
.contacts_2-item__value {
	display: flex;
	align-items: center;
	margin-bottom: calc(var(--gap) / 2);
	gap: 6px;
}
.contacts_2-item__value:before {
	content: '';
	flex: 0 0 24px;
	max-width: 24px;
	width: 24px;
	height: 24px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--blue);
}
.phone .contacts_2-item__value:before {
	-webkit-mask-image: url(images/phone.svg);
	mask-image: url(images/phone.svg);
}
.address .contacts_2-item__value:before {
	-webkit-mask-image: url(images/location.svg);
	mask-image: url(images/location.svg);
}
.contacts_2-item__value a {
	color: var(--black);
	text-decoration: none;
}
.contacts_2-item__value a:hover {
	color: var(--blue);
}



.files-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.files-bg:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #161616;
	opacity: .8;
	z-index: 1;
}
.files-items {
	position: relative;
	max-width: 930px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: var(--gap);
	z-index: 1;
}
.files-item__wrap {
	position: relative;
	background: var(--white);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--gap);
	text-decoration: none;
	color: var(--black);
	padding: var(--gap) calc(var(--gap) * 3.333);
	z-index: 1;
}
.files-item__wrap:hover {
	color: var(--blue);
}
.files-item__icon {
	flex: 0 0 60px;
	max-width: 60px;
	text-align: center;
}
.files-item__title {
	flex: auto;
	font-weight: 600;
}
.files-item__button {
	flex: 0 0 50px;
	max-width: 50px;
	width: 50px;
	height: 50px;
	background: var(--blue);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	padding: 0;
	outline: none;
	cursor: pointer;
	transition: .5s;
}
.files-item__button: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(--white);
	flex: 0 0 16px;
	max-width: 16px;
	width: 16px;
	height: 16px;
	transform: rotate(-90deg);
	transition: .5s;
}




.payment-blocks {
	display: flex;
	flex-direction: column;
	gap: 100px;
}
.payment-block__wrap {
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap);
}
.payment-block:nth-child(2n) .payment-block__wrap {
	flex-direction: row-reverse;
}
.payment-block__left,
.payment-block__right {
	flex: 1;
}
.payment-block__image {
	position: relative;
	height: 100%;
	min-height: 415px;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	z-index: 1;
}

.payment-items {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.soc-payment li.soc-icon {
	display: none;
}
.payment-block__content ul {
	padding-left: 0;
}
.soc-payment {
	padding-left: 30px;
}
.payment-contacts {
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 2);
	padding-left: var(--gap);
}
.payment-contacts p {
	margin: 0;
	display: flex;
	align-items: center;
	gap: 6px;
}
.payment-contacts p:before {
	content: '';
	flex: 0 0 24px;
	max-width: 24px;
	width: 24px;
	height: 24px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--blue);
}
.payment-contacts p.phone:before {
	-webkit-mask-image: url(images/phone.svg);
	mask-image: url(images/phone.svg);
}
.payment-contacts p a {
	color: var(--black);
	text-decoration: none;
}
.payment-contacts p a:hover {
	color: var(--blue);
}



@media (max-width: 1399px) {
	:root {
		--container: 1116px;
		--gap: 30px;
		--radius: 20px;
		--shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);

		--text-size: 16px;
		--text-size-sm: 14px;
		--h1-size: 40px;
		--h2-size: 30px;
		--h3-size: 24px;
		--h4-size: 21px;
		--h5-size: 18px;
		--h6-size: 16px;
	}
	.header-wrap {
		gap: var(--gap);
	}
	.main-menu {
		gap: var(--gap);
	}
	.hero-section {
		min-height: 460px;
	}
	.hero_xl-section {
		min-height: 680px;
	}
	.tariffs-item__image {
		width: 220px;
		height: 204px;
	}
	.tariffs-item__image span {
		width: 219px;
		height: 190px;
	}
	.page-header {
		min-height: 240px;
	}
}



@media (max-width: 1199px) {
	:root {
		--container: 916px;
		--gap: 30px;
		--radius: 20px;
		--shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);

		--text-size: 16px;
		--text-size-sm: 14px;
		--h1-size: 32px;
		--h2-size: 28px;
		--h3-size: 24px;
		--h4-size: 21px;
		--h5-size: 18px;
		--h6-size: 16px;
	}
	.soc-links {
		gap: calc(var(--gap) / 2);
	}
	.topbar-wrap {
		gap: var(--gap);
	}
	.topbar-account a {
		padding: 0 30px;
	}
	.header {
		padding: 10px 0;
	}
	.header-logo {
		max-width: 168px;
	}
	.main-menu {
		font-size: var(--text-size);
		gap: calc(var(--gap) / 1.5);
	}
	.header-button .btn {
		padding-left: 15px;
		padding-right: 15px;
	}
	.main-menu li a {
		gap: 4px;
	}
	.main-menu li.menu-item-has-children > a:after {
		flex: 0 0 12px;
		max-width: 12px;
		width: 12px;
		height: 12px;
	}
	.hero-description {
		font-size: var(--h2-size);
	}
	.main-menu ul li {
		padding: calc(var(--gap) / 2.5) calc(var(--gap) / 1.5);
	}
	.products-item__image {
		flex: 0 0 calc((var(--container) - 2 * var(--gap)) / 3 / 1.238);
		max-height: calc((var(--container) - 2 * var(--gap)) / 3 / 1.238);
	}
	.products-item__image img {
		max-height: calc((var(--container) - 2 * var(--gap)) / 3 / 1.238);
	}
	.woocommerce-tabs ul.tabs {
		gap: var(--gap);
	}
	.singleBlog-short,
	.coverageMap-right,
	.networks-right {
		padding: 0;
	}
	.coverageMap-logo img,
	.singleBlog-logo img {
		max-height: 60px;
	}
	.advantagesCTA {
		padding: var(--gap) calc(var(--gap) * 1.2);
	}
	.networks-image {
		min-height: 460px;
	}
	.advantagesIcons-item__icon {
		height: 80px;
	}
	.advantagesIcons-item__icon img {
		max-height: 80px;
	}
	.files-item__wrap {
		padding: var(--gap) calc(var(--gap) * 2);
	}
}



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

		--text-size: 16px;
		--text-size-sm: 14px;
		--h1-size: 32px;
		--h2-size: 28px;
		--h3-size: 24px;
		--h4-size: 21px;
		--h5-size: 18px;
		--h6-size: 16px;
	}
	input[type="text"], input[type="email"], input[type="tel"], input[type="password"], select, textarea {
		height: 50px;
		padding: 12px 24px;
		-moz-border-radius: calc(var(--radius) * 1.666);
		-webkit-border-radius: calc(var(--radius) * 1.666);
		border-radius: calc(var(--radius) * 1.666);
	}
	textarea {
		height: 120px;
	}
	.btn {
		min-height: 50px;
		padding: 10px 28px;
		-moz-border-radius: calc(var(--radius) * 1.666);
		-webkit-border-radius: calc(var(--radius) * 1.666);
		border-radius: calc(var(--radius) * 1.666);
	}
	.btn.btn-sm {
		min-height: 46px;
	}
	.section {
		padding-top: 65px;
		padding-bottom: 65px;
	}
	.heading {
		margin-bottom: calc(var(--gap) * 1.5);
	}
	.heading h2, .heading .h2 {
		font-size: var(--h2-size);
		padding-bottom: 6px;
	}
	.heading br {
		display: none;
	}
	.topbar {
		display: none;
	}
	.header-wrap {
		height: 36px;
	}
	.header-logo {
		flex: auto;
		max-width: 100%;
	}
	.header-logo img {
		max-height: 36px;
	}
	.main-menu {
		display: none;
	}
	.header-button {
		display: none;
	}

	.hero-section {
		min-height: 420px;
	}
	.hero_xl-section {
		min-height: 480px;
	}
	.page-header {
		min-height: 160px;
		padding-top: calc(var(--gap) * 3);
	}
	.hero-heading,
	.page-title {
		font-size: calc(var(--h1-size) * 1.5);
	}
	.hero-description {
		font-size: var(--h4-size);
	}
	.hero-button,
	.swiper-pagination,
	.news-button,
	.advantagesCTA_2-button,
	.networks--button {
		margin-top: calc(var(--gap) * 1.5);
	}
	.tariffs-item__body {
		padding-bottom: 60px;
	}
	.tariffs-item__price p {
		padding: 10px 16px;
	}
	.tariffs-item__toggle button {
		width: 56px;
		height: 56px;
	}
	.tariffs-item__toggle button:before {
		flex: 0 0 16px;
		max-width: 16px;
		width: 16px;
		height: 16px;
	}
	.modal-dialog {
		max-width: 600px;
	}
	.modal-content {
		padding: calc(var(--gap) * 2) calc(var(--gap) * 1.5) calc(var(--gap) * 1.5);
	}
	.advantages-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.advantages-item__wrap {
		margin-top: 0;
	}
	.advantages-item:first-child .advantages-item__wrap {
		margin-top: -40px;
	}
	.advantages-item__icon {
		width: 80px;
		height: 80px;
	}
	.advantages-item__icon img {
		max-height: 40px;
	}
	.advantagesCTA {
		flex-direction: column;
	}
	.advantagesCTA-info {
		max-width: 100%;
		text-align: center;
	}
	.advantagesCTA:after {
		display: none;
	}
	.home .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.64);
		max-height: calc((var(--container) - var(--gap)) / 2 / 1.64);
	}
	.coverageMap-right {
		flex: 0 0 100%;
		max-width: 100%;
		order: 1;
	}
	.coverageMap-left {
		flex: 0 0 100%;
		max-width: 100%;
		order: 2;
	}
	.coverageMap-logo {
		display: none;
	}
	.footer-wrap {
		flex-direction: column;
		gap: calc(var(--gap) * 1.5);
		align-items: center;
	}
	.footer-widget {
		flex: auto;
		max-width: 100%;
		order: 2;
		text-align: center;
	}
	.footer-widget.widget_wp_contacts_widget {
		order: 1;
	}
	.contacts-widget {
		gap: var(--gap);
	}
	.contacts-soc {
		justify-content: center;
	}
	.infoBlock-content,
	.infoBlock-image {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.infoBlock-image,
	.networks-image,
	.infoBlock_2-image,
	.contacts_2-map,
	.payment-block__image {
		height: calc(var(--container) / 1.56);
		min-height: auto;
	}
	.tabs-nav,
	.banner-description,
	.singleProduct-images,
	.networks-description {
		margin-bottom: calc(var(--gap) * 1.5);
	}
	.tabs-nav {
		gap: var(--gap);
	}
	.tabs-nav li a {
		min-height: 50px;
		min-width: 200px;
		-moz-border-radius: calc(var(--radius) * 1.666);
		-webkit-border-radius: calc(var(--radius) * 1.666);
		border-radius: calc(var(--radius) * 1.666);
		padding: 10px 24px;
	}
	.page-content.big-ol li {
		padding-left: 64px;
		min-height: 48px;
	}
	.page-content.big-ol li:before {
		width: 48px;
		height: 48px;
		font-size: var(--h3-size);
	}
	.banner-wrap {
		min-height: 420px;
	}
	.banner-bg:after {
		content: '';
		background: var(--black);
		opacity: .3;
		position: absolute;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		z-index: 1;
	}
	.banner-description {
		font-size: var(--text-size);
	}
	.partnersTV-content {
		font-size: var(--text-size);
		flex: 0 0 100%;
		max-width: 100%;
	}
	.partnersTV-image {
		flex: 0 0 calc(50% - var(--gap) / 2);
		max-width: calc(50% - var(--gap) / 2);
		height: calc((var(--container) - var(--gap)) / 2 / 1.56);
	}
	.offers-item__info {
		padding: calc(var(--gap) / 1.5);
	}
	.offers-item__toggle button {
		width: 56px;
		height: 56px;
	}
	.offers-item__toggle button:before {
		flex: 0 0 16px;
		max-width: 16px;
		height: 16px;
	}
	.offers-item__title.with-content {
		flex: 0 0 calc(100% - 56px - var(--gap));
		max-width: calc(100% - 56px - var(--gap));
	}
	.offers-item__info {
		min-height: 88px;
	}
	.products-item__image {
		flex: 0 0 calc((var(--container) - var(--gap)) / 2 / 1.238);
		max-height: calc((var(--container) - var(--gap)) / 2 / 1.238);
	}
	.products-item__image img {
		max-height: calc((var(--container) - var(--gap)) / 2 / 1.238);
	}
	.services-items {
		-moz-column-count: 1;
		column-count: 1;
	}
	.singleProduct-images,
	.singleProduct-summary {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.singleProduct-title {
		margin-bottom: calc(var(--gap));
	}
	.singleProductImagesMain-item__image {
		height: calc(var(--container) / 1.164);
	}
	.singleProductImagesMain-item__image img {
		max-height: calc(var(--container) / 1.164);
	}
	.singleProductImagesOther-item__image {
		height: calc(((var(--container) / 1.164) - var(--gap) * 2) / 3);
	}
	.singleProductImagesOther-item__image img {
		max-height: calc(((var(--container) / 1.164) - var(--gap) * 2) / 3);
	}
	.woocommerce-tabs ul.tabs li a {
		font-size: var(--text-size);
		padding: 10px 4px;
	}
	.partners-item {
		flex: 0 0 25%;
		max-width: 25%;
	}
	.partners-item__image {
		height: calc((var(--container) - var(--gap) * 3) / 4 / 1.2516);
		padding: 15px;
	}
	.partners-item__image img {
	    max-height: calc((var(--container) - var(--gap) * 3) / 4 / 1.2516 - 30px);
	}
	.modal-close {
		top: 15px;
		right: 15px;
	}
	.support-left {
		display: none;
	}
	.support-right, .networks-left, .networks-right, .infoBlock_2-image,
	.contacts_2-left, .contacts_2-right, .infoBlock_2-content {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.advantagesIcons-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.infoBlock_2-content {
		font-size: var(--text-size);
	}
	.contacts_2-item__label {
		font-size: var(--h6-size);
	}
	.files-item__wrap {
        padding: var(--gap);
    }
    .files-item__icon {
    	flex: 0 0 48px;
    	max-width: 48px;
    }
    .files-item__button {
    	flex: 0 0 40px;
    	max-width: 40px;
    	width: 40px;
    	height: 40px;
    }
    .files-item__button:before {
    	flex: 0 0 12px;
    	max-width: 12px;
    	width: 12px;
    	height: 12px;
    }
    .payment-blocks {
    	gap: calc(var(--gap) * 2);
    }
    .payment-block__left, .payment-block__right {
    	flex: 0 0 100%;
    	max-width: 100%;
    }
    .singleBlog-image,
    .singleBlog-short {
    	flex: 0 0 100%;
    	max-width: 100%;
    }
    .singleBlog-wrap {
    	gap: var(--gap);
    }
}



@media (max-width: 767px) {
	:root {
		--container: 516px;
		--gap: 24px;
		--radius: 15px;
		--shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);

		--text-size: 16px;
		--text-size-sm: 14px;
		--h1-size: 32px;
		--h2-size: 28px;
		--h3-size: 24px;
		--h4-size: 21px;
		--h5-size: 18px;
		--h6-size: 16px;
	}
	.tariffs-swiper .swiper-slide {
		opacity: 0;
		transition: .5s;
	}
	.tariffs-swiper .swiper-slide-active {
		opacity: 1;
	}
	.modal-dialog {
		max-width: var(--container);
	}
	.offers-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.offers-item__image {
		flex: 0 0 calc(var(--container) / 2);
		max-height: calc(var(--container) / 2);
	}
	.offers-item__info {
		min-height: auto;
	}
}



@media (max-width: 575px) {
	:root {
		--container: calc(100vw - 30px);
		--gap: 24px;
		--radius: 15px;
		--shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);

		--text-size: 16px;
		--text-size-sm: 14px;
		--h1-size: 28px;
		--h2-size: 24px;
		--h3-size: 22px;
		--h4-size: 20px;
		--h5-size: 18px;
		--h6-size: 16px;
	}
	.modal-content {
		padding: calc(var(--gap) * 2) calc(var(--gap) / 1.5) calc(var(--gap) * 1.5);
	}
	.hero-heading, .page-title {
		font-size: calc(var(--h1-size) * 1.2);
	}
	.hero-button, .swiper-pagination, .news-button, .advantagesCTA_2-button, .networks--button {
		margin-top: calc(var(--gap) * 1.2);
	}
	.tariffs-item__image {
		width: 200px;
		height: 185px;
	}
	.tariffs-item__image span {
        width: 206px;
        height: 179px;
    }
    .news-item {
    	flex: 0 0 100%;
    	max-width: 100%;
    }
	.news-item__image {
		flex: 0 0 calc(var(--container) / 1.64);
		max-height: calc(var(--container) / 1.64);
	}
	.banner-wrap {
		padding-left: var(--gap);
		padding-right: var(--gap);
	}
	.products-item__image {
		flex: 0 0 calc(var(--container) / 1.238);
		max-height: calc(var(--container) / 1.238);
	}
	.products-item__image img {
		max-height: calc(var(--container) / 1.238);
	}
	.partners-item {
		flex: 0 0 calc(100% / 3);
		max-width: calc(100% / 3);
	}
	.partners-item__image {
		height: calc((var(--container) - var(--gap) * 2) / 3 / 1.2516);
		padding: 10px;
	}
	.partners-item__image img {
	    max-height: calc((var(--container) - var(--gap) * 2) / 3 / 1.2516 - 20px);
	}
}