/*!
Theme Name: SOS Appliance Repair
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
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: sos-appliance-repair
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.

SOS Appliance Repair 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=Poppins:wght@400;500;600&display=swap');

:root {
	--container: 1848px;
	--gap: 24px;
	--radius: 20px;

	--header-height: 135px;

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

	--white: #FFFFFF;
	--text-color: #3A3A59;
	--heading-color: #000121;
	--violet: #5053F5;
	--orange: #FC8529;
}
*, ::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: 'Poppins', sans-serif;
	line-height: 1.333;
	color: var(--text-color);
	background: var(--white);
	letter-spacing: -.03em;
}
a {
	color: var(--violet);
	transition: .5s;
}
a:hover {
	text-decoration: none;
	color: var(--orange);
}
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: 'Poppins', sans-serif;
	font-weight: 600;
	margin: calc(var(--gap) * 1.5) 0 var(--gap);
	line-height: 1.125;
}
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: 600;
}
.form-fields {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.form-field {
	flex: 0 0 100%;
	max-width: 100%;
	padding: 0 calc(var(--gap) / 2);
	margin-bottom: calc(var(--gap));
}
.form-field-50 {
	flex: 0 0 50%;
	max-width: 50%;
}
.form-field > label {
	font-size: var(--text-size-sm);
	color: var(--text-color);
	opacity: .8;
	display: block;
	width: 100%;
	margin-bottom: 4px;
}
::-webkit-input-placeholder {
	color: rgba(36, 36, 36, .6);
}
::-moz-placeholder {
	color: rgba(36, 36, 36, .6);
}
:-ms-input-placeholder {
	color: rgba(36, 36, 36, .6);
}
:-moz-placeholder {
	color: rgba(36, 36, 36, .6);
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
	font-size: var(--text-size);
	font-weight: 400;
	font-family: 'Poppins', sans-serif;
	line-height: 1.5;
	width: 100%;
	background: #f4f4f4;
	border: none;
	color: var(--heading-color);
	-moz-border-radius: calc(var(--radius) / 1.667);
	-webkit-border-radius: calc(var(--radius) / 1.667);
	border-radius: calc(var(--radius) / 1.667);
	padding: calc(var(--gap) / 2) calc(var(--gap) / 1.2);
	height: 60px;
	outline: none;
	transition: .5s;
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url(images/chevron-down.svg);
	background-position: calc(100% - var(--gap) / 1.2) center;
	background-repeat: no-repeat;
	background-size: 16px;
	padding-right: calc(var(--gap) / 1.2 + 16px + var(--gap / 2));
	cursor: pointer;
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
textarea {
	height: 60px;
	resize: vertical;
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.form-field-button {
	margin-top: calc(var(--gap) / 4);
}
.form-field-button.center {
	text-align: center;
}
.form-field-button .btn span {
	min-width: 180px;
}
.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: var(--gap) 0 0;
	padding: calc(var(--gap) / 2) calc(var(--gap) / 1.2);
}
.form-field-required {
	font-size: 14px;
	font-style: italic;
}
input[name='your-name']{
	text-transform: capitalize;
}



.screen-reader-text {
	display: none;
}
.container {
	width: 100%;
	max-width: calc(var(--container) + var(--gap) * 1.5 * 2);
	margin-left: auto;
	margin-right: auto;
}
.container-inner {
	margin-left: calc(var(--gap) * 1.5);
	margin-right: calc(var(--gap) * 1.5);
}
.container-px {
	padding-left: calc(var(--gap) * 2);
	padding-right: calc(var(--gap) * 2);
}
.section-xl {
	position: relative;
	padding-top: 180px;
	padding-bottom: 180px;
	z-index: 1;
}
.section-lg {
	position: relative;
	padding-top: 140px;
	padding-bottom: 140px;
	z-index: 1;
}
.section {
	position: relative;
	padding-top: 90px;
	padding-bottom: 90px;
	z-index: 1;
}
.section-md {
	position: relative;
	padding-top: 60px;
	padding-bottom: 60px;
	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;
	}
}


.heading {
	margin-bottom: calc(var(--gap) * 2.333);
	color: #363636;
	letter-spacing: -.02em;
	font-weight: 500;
}
.heading h2 {
	color: var(--heading-color);
	font-size: var(--h1-size);
	line-height: 1.125;
	letter-spacing: -.04em;
	margin-bottom: calc(var(--gap) / 1.5);
}
.heading h2:last-child {
	margin-bottom: 0;
}
.heading.white,
.heading.white h2 {
	color: var(--white);
}
.heading h2 span[style*="#5053f5"],
.heading h2 span[style*="#fc8527"] {
	position: relative;
	background: none !important;
	color: var(--white) !important;
	z-index: -1;
}
.heading h2 span[style*="#5053f5"]:before,
.heading h2 span[style*="#fc8527"]:before {
	content: '';
	-moz-border-radius: calc(var(--radius) / 2);
	-webkit-border-radius: calc(var(--radius) / 2);
	border-radius: calc(var(--radius) / 2);
	position: absolute;
	width: calc(100% + 10px);
	height: calc(100% - 16px);
	bottom: 9px;
	left: -5px;
	z-index: -11;
}
.heading h2 span[style*="#5053f5"]:before {
	background: var(--violet);
}
.heading h2 span[style*="#fc8527"]:before {
	background: var(--orange);
}



.btn {
    position: relative;
    display: inline-flex;
    text-align: center;
    font-size: var(--text-size);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    line-height: 1.5;
    border: none;
    padding: 0;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    outline: none;
    min-height: 72px;
    cursor: pointer;
    text-decoration: none;
    z-index: 1;
    transition: .5s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
}
.btn.btn-sm {
	font-size: var(--text-size-sm);
	min-height: 60px;
}
.btn span {
	flex: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	-moz-border-radius: calc(var(--radius) / 1.667);
	-webkit-border-radius: calc(var(--radius) / 1.667);
	border-radius: calc(var(--radius) / 1.667);
	padding: calc(var(--gap) / 1.5) calc(var(--gap) * 1.1667);
	transition: .5s;
	height:72px;
}
.btn-primary span {
	background-color: var(--orange);
	border-color: var(--orange);
	color: var(--white);
}
.btn-primary:hover span {
	background-color: var(--text-color);
	border-color: var(--text-color);
	color: var(--white);
}
.btn-green span {
	background-color: #5053f5;
	border-color: #5053f5;
	color: var(--white);
}
.btn-green:hover span {
	background-color: var(--text-color);
	border-color: var(--text-color);
	color: var(--white);
}
.btn i {
	flex: 0 0 72px;
	max-width: 72px;
	width: 72px;
	height: 72px;
	display: flex;
	align-items: center;
	justify-content: center;
	-moz-border-radius: calc(var(--radius) / 1.667);
	-webkit-border-radius: calc(var(--radius) / 1.667);
	border-radius: calc(var(--radius) / 1.667);
	transition: .5s;
}
.btn i:before {
	content: '';
	flex: 0 0 48px;
	max-width: 48px;
	height: 48px;
	-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);
	transform: rotate(-45deg);
	transition: .5s;
}
.btn-primary i {
	background: var(--orange);
}
.btn-primary:hover i {
	background: var(--text-color);
}
.btn-primary i:before {
	background-color: var(--white);
}
.btn-green i {
	display:none;
}
/*.btn-secondary {
	background-color: var(--white);
	border-color: var(--white);
	color: var(--blue);
}
.btn-secondary:hover {
	background-color: var(--blue-dark);
	border-color: var(--blue-dark);
	color: var(--white);
}
.btn.btn-link {
	padding: 0;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	color: var(--blue);
	text-decoration: underline;
	text-decoration-style: dashed;
	text-underline-offset: 4px;
	min-height: inherit;
}
.btn.btn-link:hover {
	color: var(--blue-dark);
}


.swiper-pagination {
	position: relative !important;
	bottom: auto !important;
	top: auto !important;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: calc(var(--gap) * 1.5);
	gap: 8px;
}
.swiper-pagination-bullet {
	flex: 0 0 20px;
	max-width: 20px;
	width: 20px !important;
	height: 10px !important;
	background: #E2E5F0 !important;
	margin: 0 !important;
	opacity: 1 !important;
	-moz-border-radius: 0 !important;
	-webkit-border-radius: 0 !important;
	border-radius: 0 !important;
	transform: skew(-25deg);
}
.swiper-pagination.white .swiper-pagination-bullet {
	background: #ffffff !important;
	opacity: .4 !important;
}
.swiper-pagination-bullet-active {
	background: #019658 !important;
}
.swiper-pagination.white .swiper-pagination-bullet-active {
	background: #ffffff !important;
	opacity: 1 !important;
}*/

.swiper-navigation {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--gap);
	margin-top: calc(var(--gap) * 2);
	z-index: 9;
}
.swiper-navigation button {
	position: relative;
	flex: 0 0 52px;
	max-width: 52px;
	width: 52px;
	height: 52px;
	-moz-border-radius: calc(var(--radius) / 2);
	-webkit-border-radius: calc(var(--radius) / 2);
	border-radius: calc(var(--radius) / 2);
	border: none;
	background: var(--orange);
	display: flex;
	align-items: center;
	justify-content: center;
	outline: none;
	padding: 0;
	cursor: pointer;
	transition: .5s;
}
.swiper-navigation button:hover {
	background: var(--text-color);
}
.swiper-navigation button:disabled {
	background: var(--orange);
	opacity: .6;
	cursor: no-drop;
}
.swiper-navigation button:before {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/arrow-right-2.svg);
	mask-image: url(images/arrow-right-2.svg);
	background-color: var(--white);
	flex: 0 0 24px;
	max-width: 24px;
	width: 24px;
	height: 24px;
	transition: .5s;
	z-index: 1;
}
.swiper-navigation button.swiper-navigation-prev:before {
	transform: rotate(180deg);
}

.soc-links {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 3);
}
.soc-links li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	background: #F5F6FB;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}
.soc-links li a:hover {
	background: var(--orange);
}
.soc-links li a svg {
	flex: 0 0 24px;
	max-width: 24px;
	height: 24px;
}
.soc-links li a path {
	fill: var(--violet);
	transition: .5s;
}
.soc-links 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%;
	display: flex;
	flex-direction: column;
	transform: translateY(-100%);
	transition: .5s;
	overflow: auto;
	z-index: 1;
}
.modal-mobile.show .modal-mobile-wrap {
	transform: translateY(0);
}
.modal-mobile-header {
	position: relative;
	z-index: 1;
}
.modal-mobile-header-wrap {
	position: relative;
    height: var(--header-height);
    padding-top: calc(var(--gap) / 1.333);
    padding-bottom: calc(var(--gap) / 1.333);
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 1.5);
    transition: .5s;
    z-index: 1;
}
.modal-mobile-logo {
	flex: auto;
}
.modal-mobile-logo img {
	max-height: calc(var(--header-height) - var(--gap) / 1.333 * 2);
}
.modal-mobile-phone {
	display: flex;
	align-items: center;
	margin: 0;
	font-weight: 500;
}
.modal-mobile-phone a {
	color: var(--heading-color);
	text-decoration: none;
}
.modal-mobile-phone a:hover {
	color: var(--violet);
}
.modal-mobile-close {
	flex: 0 0 40px;
	max-width: 40px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--orange);
	-moz-border-radius: calc(var(--radius) / 2);
	-webkit-border-radius: calc(var(--radius) / 2);
	border-radius: calc(var(--radius) / 2);
	border: none;
	outline: none;
	padding: 0;
	cursor: pointer;
	transition: .5s;
}
.modal-mobile-close:hover {
	background: var(--violet);
}
.modal-mobile-close: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;
	-webkit-mask-image: url(images/close.svg);
	mask-image: url(images/close.svg);
	background-color: var(--white);
}
.modal-mobile-body {
	flex: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: calc(var(--gap) * 2);
}
.modal-mobile-body-wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: calc(var(--gap) * 2);
}
.mobile-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: calc(var(--gap) * 1.5);
	font-size: var(--h6-size);
	font-weight: 500;
	line-height: 1.5;
}
.mobile-menu li a {
	text-decoration: none;
	color: var(--heading-color);
}
.mobile-menu li:hover > a{
	color: var(--violet);
}
.modal-mobile-button {
	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: 680px;
	margin: 1.75rem auto;
	pointer-events: none;
	display: flex;
	align-items: center;
	min-height: calc(100% - 3.5rem);
}
.modal-content {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	pointer-events: auto;
	background-color: var(--white);
	background-clip: padding-box;
	outline: 0;
	padding: calc(var(--gap) * 2) calc(var(--gap) * 1.5) calc(var(--gap) * 1.5);
	-moz-border-radius: calc(var(--radius) / 1.667);
	-webkit-border-radius: calc(var(--radius) / 1.667);
	border-radius: calc(var(--radius) / 1.667);
	overflow: hidden;
	z-index: 1;
}
.modal-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1050;
	width: 100vw;
	height: 100vh;
	background-color: #000000;
	opacity: 0;
	z-index: -1;
}
.modal-backdrop.show {
	opacity: .7;
	z-index: 1049;
}
.modal-heading {
	position: relative;
	margin-bottom: calc(var(--gap) * 1.5);
}
.modal-heading h2 {
	font-size: var(--h2-size);
	color: var(--heading-color);
}
.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(--violet);
	width: 34px;
	height: 34px;
	top: 12px;
	right: 12px;
	border: none;
	cursor: pointer;
	padding: 0;
	transition: .5s;
	z-index: 9;
}
.modal-close:hover {
	background-color: var(--heading-color);
}



.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) + 2) 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-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;
}
.alignleft {
	float: left;
	margin-right: var(--gap);
	margin-bottom: var(--gap);
}
.alignright {
	float: right;
	margin-left: var(--gap);
	margin-bottom: var(--gap);
}
.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: var(--gap);
}
img.alignleft,
img.alignright,
img.aligncenter {
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
}




.wrapper {
	position: relative;
	/*max-width: 1920px;*/
	/*padding: 0 calc(var(--gap) * 1.5);*/
	margin: 0 auto;
	z-index: 1;
}


.header {
	position: sticky;
	top: 0;
	transition: .5s;
	z-index: 92;
}
.admin-bar .header {
	top: 32px;
}
.header-inner {
	position: relative;
	background: var(--white);
	height: var(--header-height);
	padding-top: calc(var(--gap) / 1.333);
	padding-bottom: calc(var(--gap) / 1.333);
	-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);
	transition: .5s;
	z-index: 1;
}
.header.fixed .header-inner {
	box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
}
.header-wrap {
	display: flex;
	gap: var(--gap);
}
.header-logo,
.header-right {
	flex: 0 0 350px;
	max-width: 350px;
}
.header-logo img {
	max-height: calc(var(--header-height) - var(--gap) / 1.333 * 2);
}
.main-menu {
	flex: auto;
	max-width: calc(100% - (350px + var(--gap)) * 2);
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: calc(var(--gap) * 1.333);
	font-size: var(--text-size-sm);
	font-weight: 500;
	line-height: 1.5;
}
.main-menu li a {
	text-decoration: none;
	color: var(--heading-color);
}
.main-menu li a:hover {
	color: var(--violet);
}
.header-right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: var(--gap);
}
.header-phone {
	flex: 0 0 auto;
	display: flex;
	margin: 0;
	font-weight: 500;
}
.header-phone a {
	color: var(--heading-color);
	text-decoration: none;
}
.header-phone a:hover {
	color: var(--violet);
}
.header-button .btn span {
	animation: pulse-btn 2s infinite;
}
@-webkit-keyframes pulse-btn {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(30, 30, 30, 0.1);
	}
	70% {
		-webkit-box-shadow: 0 0 0 20px rgba(30, 30, 30, 0);
	}
	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(30, 30, 30, 0);
	}
}
@keyframes pulse-btn {
	0% {
		-moz-box-shadow: 0 0 0 0 rgba(30, 30, 30, 0.1);
		box-shadow: 0 0 0 0 rgba(30, 30, 30, 0.1);
		transform: scale(1);
	}
	70% {
		-moz-box-shadow: 0 0 0 20px rgba(30, 30, 30, 0);
		box-shadow: 0 0 0 20px rgba(30, 30, 30, 0);
		transform: scale(1.02);
	}
	100% {
		-moz-box-shadow: 0 0 0 0 rgba(30, 30, 30, 0);
		box-shadow: 0 0 0 0 rgba(30, 30, 30, 0);
		transform: scale(1);
	}
}
.header-toggle {
	display: flex;
	align-items: center;
}
.header-toggle button {
	flex: 0 0 40px;
	max-width: 40px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--orange);
	-moz-border-radius: calc(var(--radius) / 2);
	-webkit-border-radius: calc(var(--radius) / 2);
	border-radius: calc(var(--radius) / 2);
	border: none;
	outline: none;
	padding: 0;
	cursor: pointer;
	transition: .5s;
}
.header-toggle button:hover {
	background: var(--violet);
}
.header-toggle button: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;
	-webkit-mask-image: url(images/menu.svg);
	mask-image: url(images/menu.svg);
	background-color: var(--white);
}



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



.footer {
	position: relative;
	/*width: calc(100% + var(--gap) * 1.5 * 2);
	margin-left: calc(var(--gap) * -1.5);*/
	background: linear-gradient(180deg, #6C6CF7 0%, #3E4BF5 100%);
	color: 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;
	padding: 80px 0;
	z-index: 1;
}
.footer-wrap {
	display: flex;
	justify-content: space-between;
	gap: calc(var(--gap) * 6);
}
.footer-widget {
	position: relative;
}
.footer-widget:first-child {
	flex: auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.footer-widget-title {
	font-size: var(--h6-size);
	font-weight: 600;
	line-height: 1.2;
	text-transform: uppercase;
	margin-bottom: calc(var(--gap) * 1.1667);
}
.footer-logo {
	margin-bottom: var(--gap);
}
.footer-logo img {
	max-height: 86px;
}
.footer-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 1.5);
	letter-spacing: -.02em;
	max-width: 120px;
}
.footer-menu li a {
	color: var(--white);
	text-decoration: none;
}
.footer-menu li a:hover {
	color: var(--orange);
}
.footer-contacts {
	display: flex;
	flex-direction: column;
	gap: var(--gap);
}
.footer-contacts-item {
	font-weight: 600;
	letter-spacing: -.02em;
}
.footer-contacts-item__label {
	font-size: var(--h6-size);
	line-height: 1.2;
	margin-bottom: calc(var(--gap) / 1.5);
	text-transform: uppercase;
}
.footer-contacts-item a {
	color: var(--white);
	text-decoration: none;
}
.footer-contacts-item a:hover {
	color: var(--orange);
}
.footer-rating {
	flex: auto;
	margin: 0 0 var(--gap);
	padding: 0;
	list-style: none;
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: calc(var(--gap) / 1.2);
}
.footer-rating li {
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 2);
}
.footer-rating-image {
	flex: 0 0 48px;
	max-width: 48px;
	width: 48px;
	height: 48px;
	padding: calc(var(--gap) / 2.5);
	background: var(--white);
	-moz-border-radius: calc(var(--radius) / 2);
	-webkit-border-radius: calc(var(--radius) / 2);
	border-radius: calc(var(--radius) / 2);
	display: flex;
	align-items: center;
	justify-content: center;
}
.footer-rating-image img {
	max-height: calc(48px - var(--gap) / 2.5 * 2);
}
.footer-rating-text {
	font-size: 14px;
}
.footer-rating-text strong {
	font-size: var(--h6-size);
	font-weight: 600;
	display: block;
}





.page-title {
	color: var(--heading-color);
	font-size: var(--h1-size);
	line-height: 1.125;
	letter-spacing: -.04em;
	text-align: center;
}
.page-body.section-xl {
	padding-top: 0px;
}

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




.hero-section-inner {
	position: relative;
	overflow: hidden;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	min-height: 840px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	z-index: 1;
}
.hero-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.hero-bg:after {
	content: '';
	background: linear-gradient(255.17deg, rgba(0, 0, 0, 0) 35.37%, rgba(0, 0, 0, 0.88) 88.24%);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.hero-wrap {
	max-width: 830px;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) * 2.5);
}
.hero-content {
	color: #CCCCCC;
	line-height: 1.222;
	letter-spacing: -.02em;
}
.hero-content h1,
.hero-content h2 {
	margin-top: 0;
	line-height: 1.0526;
	color: var(--white);
	font-size: calc(var(--h1-size) * 1.5833);
	letter-spacing: -.04em;
}
.hero-content h1 span[style*="#5053f5"],
.hero-content h2 span[style*="#5053f5"] {
	position: relative;
	background: none !important;
	z-index: -1;
}
.hero-content h1 span[style*="#5053f5"]:before,
.hero-content h2 span[style*="#5053f5"]:before {
	content: '';
	background: var(--violet);
	-moz-border-radius: calc(var(--radius) / 2);
	-webkit-border-radius: calc(var(--radius) / 2);
	border-radius: calc(var(--radius) / 2);
	position: absolute;
	width: calc(100% + 15px);
	height: calc(100% - 20px);
	bottom: 2px;
	left: -5px;
	z-index: -1;
}
.hero-content p:first-child {
	font-size: var(--h5-size);
	color: var(--white);
	line-height: 1.1667;
	letter-spacing: -.01em;
}
.hero-marquee.marquee {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.hero-anchor-link {
	position: absolute;
	background: rgba(255, 255, 255, .1);
	-moz-backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 120px;
	height: 64px;
	bottom: calc(var(--gap) * 2);
	right: calc(var(--gap) * 2);
	-moz-border-radius: calc(var(--radius) / 2);
	-webkit-border-radius: calc(var(--radius) / 2);
	border-radius: calc(var(--radius) / 2);
	z-index: 2;
}
.hero-anchor-link:hover {
	background: rgba(255, 255, 255, .35);
}
.hero-anchor-link:before {
	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: var(--white);
	flex: 0 0 32px;
	max-width: 32px;
	height: 32px;
	transition: .5s;
}
.hero-buttons-row{
	display: flex;
    gap: 30px;
    flex-wrap: wrap;
}


.heroBrands-section {
	position: relative;
	padding-top: calc(var(--gap) * 1.5);
	z-index: 1;
}
.heroBrands-wrap {
	display: flex;
	gap: var(--gap);
}
.heroBrands-left {
	flex: 0 0 240px;
	max-width: 240px;
}
.heroBrands-heading {
	font-weight: 500;
	line-height: 1.222;
	color: var(--heading-color);
}
.heroBrands-right {
	flex: 0 0 calc(100% - 240px - var(--gap));
	max-width: calc(100% - 240px - var(--gap));
}
.heroBrands-swiper {
	position: relative;
	overflow: hidden;
	width: calc((100vw - var(--container)) / 2 + 100% + calc(var(--gap) * 1.5));
	z-index: 1;
}
.heroBrands-swiper:before {
	content: '';
	background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
	position: absolute;
	width: 78px;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 3;
}
.heroBrands-swiper:after {
	content: '';
	background: linear-gradient(-90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
	position: absolute;
	width: 78px;
	height: 100%;
	top: 0;
	right: 0;
	z-index: 3;
}
.heroBrands-swiper .swiper-wrapper {
	transition-timing-function: linear !important;
}
.heroBrands-item.swiper-slide {
	width: auto;
	user-select: none;
}
.heroBrands-item__image {
	height: 52px;
	display: flex;
	align-items: center;
}
.heroBrands-item__image img {
	max-height: 52px;
}







.marquee {
	position: relative;
	background: var(--violet);
	color: var(--white);
	font-weight: 500;
	display: flex;
	padding: calc(var(--gap) / 1.65) 0;
	z-index: 1;
}
.marquee_text {
	height: 24px;
	overflow: hidden;
}
.marquee div span {
	position: relative;
	padding-right: 17px;
	margin-right: 12px;
	z-index: 1;
}
.marquee div span:after {
	content: '';
	position: absolute;
	right: 0;
	top: calc(50% - 2.5px);
	width: 5px;
	height: 5px;
	background: var(--white);
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	z-index: 1;
}



.services-section.section-xl {
	padding-bottom: 90px;
}
.services-swiper {
	position: relative;
	z-index: 1;
}
.services-swiper-before,
.services-swiper-after {
	position: absolute;
	width: calc((100vw - var(--container)) / 2 + var(--gap) * 2);
	height: calc(100% + 40px);
	top: -16px;
	z-index: 4;
}
.services-swiper-before {
	left: calc((100vw - var(--container)) / -2);
	transform: scale(-1, 1);
}
.services-swiper-after {
	right: calc((100vw - var(--container)) / -2);
}
.services-swiper-before:before,
.services-swiper-before:after,
.services-swiper-after:before,
.services-swiper-after:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	z-index: 1;
}
.services-swiper-after:before,
.services-swiper-before:before {
	background: linear-gradient(271.25deg, #FFFFFF 1.07%, rgba(255, 255, 255, 0) 63.76%);
	filter: blur(5.8px);
}
.services-swiper-after:after,
.services-swiper-before:after {
	background: linear-gradient(271.25deg, rgba(255, 255, 255, 0.3) 1.07%, rgba(255, 255, 255, 0) 63.76%);
	filter: blur(2px);
}
.services-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) * -2) calc(var(--gap) * -1);
}
.services-items .services-item {
	flex: 0 0 25%;
	max-width: 25%;
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.services-item__wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: calc(var(--gap) / 1.5);
	min-height: calc((var(--container) - var(--gap) / 4) / 5 / .775);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	overflow: hidden;
	text-decoration: none;
	z-index: 1;
}
.services-item__image {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.services-item__wrap:hover .services-item__image img {
	transform: scale(1.05);
}
.services-item__image:after {
	content: '';
	background: linear-gradient(222.7deg, rgba(0, 0, 0, 0) 47.06%, rgba(0, 0, 0, 0.6) 83.16%);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.services-item__title {
	font-size: var(--h4-size);
	font-weight: 600;
	line-height: 1.1428;
}
.services-item__title span {
	color: var(--heading-color);
	background: var(--white);
	padding: calc(var(--gap) / 2);
	-moz-border-radius: calc(var(--radius) / 1.667);
	-webkit-border-radius: calc(var(--radius) / 1.667);
	border-radius: calc(var(--radius) / 1.667);
	display: inline-block;
}


.issues-section-inner.section {
	padding-bottom: 160px;
	background: linear-gradient(180deg, #6C6CF6 0%, #3E4BF5 100%);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
}
.issues-section-inner:before {
	content: '';
	background: url(images/issues-el-1.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 88px;
	height: 106px;
	top: 53px;
	left: calc(var(--gap) * 2);
	z-index: -1;
}
.issues-section-inner:after {
	content: '';
	background: url(images/issues-el-2.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 88px;
	height: 102px;
	bottom: 40px;
	right: calc(var(--gap) * 2);
	z-index: -1;
}
.issues-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.issues-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.issues-item:nth-child(1),
.issues-item:nth-child(2),
.issues-item:nth-child(3),
.issues-item:nth-child(4) {
	flex: 0 0 25%;
	max-width: 25%;
}
.issues-item__wrap {
	position: relative;
	height: 100%;
	z-index: 1;
	background: #F4F4F4;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	overflow: hidden;
	z-index: ;
}
.issues-item__image {
	height: calc((var(--container) - var(--gap) * 2) / 3 / 2.08);
	-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);
	overflow: hidden;
}
.issues-item__title {
	position: relative;
	padding: calc(var(--gap) / 1.0909) calc(var(--gap) / 1.2);
	font-size: var(--h6-size);
	font-weight: 500;
	line-height: 1.2;
	color: var(--heading-color);
	text-align: center;
	z-index: 1;
}



.single-services .advantages-section:before {
	content: '';
	background: url(images/reviews-el-2.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 60px;
	height: 119px;
	top: 85px;
	right: calc(-32px + var(--gap) * 1.5);
	transform: rotate(40deg);
	z-index: 2;
}
.advantages-items {
	max-width: 960px;
	margin: auto;
	display: flex;
	flex-direction: column;
	gap: var(--gap);
}
.advantages-item__wrap {
	position: relative;
	background: #F4F4F4;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	overflow: hidden;
	display: flex;
	min-height: 295px;
	z-index: 1;
}
.advantages-item__left {
	flex: 0 0 52%;
	max-width: 52%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: calc(var(--gap) * 2);
}
.advantages-item__content h3 {
	color: var(--heading-color);
	font-size: var(--h3-size);
	line-height: 1.125;
}
.advantages-item__content h3 span[style*="#fc8527"] {
	position: relative;
	background: none !important;
	color: var(--white) !important;
	z-index: -1;
}
.advantages-item__content h3 span[style*="#fc8527"]:before {
	content: '';
	background: var(--orange);
	-moz-border-radius: calc(var(--radius) / 8);
	-webkit-border-radius: calc(var(--radius) / 8);
	border-radius: calc(var(--radius) / 8);
	position: absolute;
	width: calc(100% + 4px);
	height: calc(100% - 10px);
	bottom: 5px;
	left: -2px;
	z-index: -1;
}
.advantages-item__right {
	flex: 0 0 48%;
	max-width: 48%;
}
.advantages-item__image {
	height: 100%;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	overflow: hidden;
}

.advantages-marquee {
	width: 100vw;
	margin-left: calc((100vw - var(--container)) / -2 + var(--gap) * 1.5);
	margin-top: calc(var(--gap) * 4);
}
.advantages-marquee:before {
	content: '';
	background: url(images/advantages-el.png) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 442px;
	height: 358px;
	top: -240px;
	left: calc((100vw - var(--container)) / 2 - var(--gap) * 1.5);
	z-index: -1;
}



.reviews-section {
	position: relative;
	z-index: 1;
}
.reviews-section:before {
	content: '';
	background: url(images/reviews-el-2.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 60px;
	height: 119px;
	bottom: 38px;
	right: calc(-32px + var(--gap) * 1.5);
	transform: rotate(40deg);
	z-index: 2;
}
.reviews-section-inner {
	overflow: hidden;
	position: relative;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	background: linear-gradient(180deg, #6C6CF6 0%, #3E4BF5 100%);
	z-index: 1;
}
.reviews-section-inner:before {
	content: '';
	background: url(images/reviews-el-1.png) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 289px;
	height: 471px;
	bottom: -140px;
	right: -106px;
	transform: rotate(-32deg);
	z-index: -1;
}
.reviews-swiper {
	position: relative;
	overflow: hidden;
	margin: auto;
	z-index: 1;
}
.reviews-item.swiper-slide {
	width: calc((var(--container) - var(--gap) * 2 * 2) * .2665);
	position: relative;
	opacity: 0;
}
.reviews-item.swiper-slide.swiper-slide-visible {
	opacity: 1;
}
.reviews-item__wrap {
	position: relative;
	display: block;
	height: calc((var(--container) - var(--gap) * 2 * 2) * .2665 / .6174);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	overflow: hidden;
	z-index: 1;
}
.reviews-item__image {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.reviews-item__play {
	position: absolute;
	width: 96px;
	height: 96px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: var(--violet);
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}
.reviews-item__play:before {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/play.svg);
	mask-image: url(images/play.svg);
	background-color: var(--white);
	flex: 0 0 32px;
	max-width: 32px;
	height: 32px;
	margin-left: 10px;
	transition: .5s;
}
.reviews-item__wrap:hover .reviews-item__play {
	animation: pulse 2s infinite;
}
@-webkit-keyframes pulse {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(80, 83, 245, 0.65);
		transform: translate(-50%, -50%) scale(1);
	}
	70% {
		-webkit-box-shadow: 0 0 0 var(--gap) rgba(80, 83, 245, 0);
		transform: translate(-50%, -50%) scale(1.1);
	}
	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(80, 83, 245, 0);
		transform: translate(-50%, -50%) scale(1);
	}
}
@keyframes pulse {
	0% {
		-moz-box-shadow: 0 0 0 0 rgba(80, 83, 245, 0.65);
		box-shadow: 0 0 0 0 rgba(80, 83, 245, 0.65);
		transform: translate(-50%, -50%) scale(1);
	}
	70% {
		-moz-box-shadow: 0 0 0 var(--gap) rgba(80, 83, 245, 0);
		box-shadow: 0 0 0 var(--gap) rgba(80, 83, 245, 0);
		transform: translate(-50%, -50%) scale(1.1);
	}
	100% {
		-moz-box-shadow: 0 0 0 0 rgba(80, 83, 245, 0);
		box-shadow: 0 0 0 0 rgba(80, 83, 245, 0);
		transform: translate(-50%, -50%) scale(1);
	}
}




.benefits-section.section-xl {
	padding-top: 120px;
}
.benefits-section:before {
	content: '';
	background: url(images/reviews-el-2.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 60px;
	height: 119px;
	bottom: 37%;
	left: calc(var(--gap) * 2 - 60px - 16px + var(--gap) * 1.5);
	transform: rotate(-130deg);
	z-index: 2;
}
.benefits-wrap {
	position: relative;
	z-index: 1;
}
.benefits-items {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: calc(var(--gap) * 1.333) calc(var(--gap) * 3);
}
.benefits-item {
	flex: 0 0 calc(100% / 3);
	max-width: 550px;
}
.benefits-item__wrap {
	position: relative;
	height: 100%;
	background: #F4F4F4;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	padding: calc(var(--gap) * 1.333);
	z-index: 1;
}
.benefits-item__image {
	height: 68px;
	display: flex;
	align-items: center;
	margin-bottom: calc(var(--gap) * 1.875);
}
.benefits-item__image img {
	max-height: 68px;
}
.benefits-item__title {
	font-size: var(--h4-size);
	line-height: 1.1428;
	font-weight: 600;
	color: var(--heading-color);
	margin-top: 0;
	margin-bottom: calc(var(--gap) / 1.25);
}
.benefits-item__text {
	line-height: 1.375;
	font-size: var(--text-size-sm);
}
.benefits-item__info {
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap);
}
.benefits-item__info-item {
	flex: 0 0 calc(50% - var(--gap) / 2);
	max-width: calc(50% - var(--gap) / 2);
}
.benefits-item__info-item__title {
	font-weight: 600;
	color: var(--violet);
	margin-bottom: calc(var(--gap) / 3);
}
.benefits-image {
	position: absolute;
	width: 33%;
	height: 100%;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	z-index: -1;
}
.benefits-image img {
	width: 100%;
	max-width: 430px;
	height: 100%;
	object-fit: contain;
	object-position: center;
}




.video-section-inner {
	position: relative;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	background: linear-gradient(180deg, #6C6CF6 0%, #3E4BF5 100%);
	padding-top: calc(var(--gap) * 2);
	padding-bottom: calc(var(--gap) * 2);
	z-index: 1;
}
.video-wrap {
	position: relative;
	display: block;
	height: calc((var(--container) - var(--gap) * 2 * 2) / 2.1672);
	min-height: 360px;
	text-decoration: none;
	z-index: 1;
}
.video-image {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	-moz-border-radius: calc(var(--radius) / 1.25);
	-webkit-border-radius: calc(var(--radius) / 1.25);
	border-radius: calc(var(--radius) / 1.25);
	overflow: hidden;
	z-index: -1;
}
.video-image:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.video-play {
	position: absolute;
	width: 96px;
	height: 96px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: var(--violet);
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}
.video-play:before {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/play.svg);
	mask-image: url(images/play.svg);
	background-color: var(--white);
	flex: 0 0 32px;
	max-width: 32px;
	height: 32px;
	margin-left: 10px;
	transition: .5s;
}
.video-wrap:hover .video-play {
	animation: pulse 2s infinite;
}




.locations-wrap {
	position: relative;
	min-height: 966px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 1;
}
.locations-info {
	max-width: 1340px;
}
.locations-image {
	position: absolute;
	width: 100%;
	max-width: 1320px;
	height: 100%;
	top: 0;
	right: calc(var(--gap) * -2);
	z-index: -1;
}
.locations-image img {
	width: 100%;
	height: 100%;
	object-position: right top;
	object-fit: contain;
}
.locations-items {
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap);
	margin: 0;
	padding: 0;
	list-style: none;
}
.locations-items li {
	position: relative;
	padding: calc(var(--gap) * 1.1667) calc(var(--gap) * 1.5) calc(var(--gap) * 1.1667) calc(var(--gap) * 2.375);
	background: var(--violet);
	-moz-border-radius: calc(var(--radius) / 1.667);
	-webkit-border-radius: calc(var(--radius) / 1.667);
	border-radius: calc(var(--radius) / 1.667);
	font-size: var(--h2-size);
	line-height: 1.111;
	font-weight: 600;
	color: var(--white);
	z-index: 1;
}
.locations-items li:before {
	content: '';
	position: absolute;
	width: 9px;
	height: 9px;
	top: calc(var(--gap) * 1.791);
	left: calc(var(--gap) * 1.333);
	background: var(--white);
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	z-index: 1;
}



.googleReviews-wrap {
	width: calc((100vw - var(--container)) / 2 + 100% + var(--gap) * 1.5);
}



.banner-section-inner.section-md {
	position: relative;
	padding-top: 50px;
	background: linear-gradient(5.68deg, #3F4CF5 6.96%, #6A6BF7 95.43%);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	overflow: hidden;
	z-index: 1;
}
.banner-image {
	position: absolute;
	width: 100%;
	max-width: 942px;
	height: 100%;
	min-height: 606px;
	top: 55%;
	right: 0;
	transform: translateY(-50%);
	z-index: -1;
}
.banner-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: bottom right;
}
.banner-wrap {
	position: relative;
	max-width: 1012px;
	z-index: 1;
}
.banner-wrap .heading h2 {
	font-size: calc(var(--h1-size) * 1.333);
	letter-spacing: -.015em;
}

.banner-wrap .heading.small h2 {
	font-size: var(--h1-size);
	letter-spacing: -.015em;
}
.banner-button .btn span {
	min-width: 276px;
}
.banner-wrap:before {
    content: '';
    background: url(images/issues-el-2.svg) no-repeat center;
    background-size: contain;
    display: block;
    width: 58px;
    height: 68px;
    margin-bottom: calc(var(--gap) * 1.1667);
}



.blog-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.blog-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.blog-item__wrap {
	position: relative;
	background: #F4F4F4;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
	z-index: 1;
}
.blog-item__image {
	flex: 0 0 calc((var(--container) - var(--gap) * 2) / 3 / 1.8);
	max-height: calc((var(--container) - var(--gap) * 2) / 3 / 1.8);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	overflow: hidden;
}
.blog-item__image:hover img {
	transform: scale(1.05);
}
.blog-item__more {
	position: absolute;
	top: calc(var(--gap) / 1.5);
	right: calc(var(--gap) / 1.5);
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #F8F7F7;
	border-radius: calc(var(--radius) / 1.667);
	-moz-border-radius: calc(var(--radius) / 1.667);
	-webkit-border-radius: calc(var(--radius) / 1.667);
	transition: .5s;
	z-index: 1;
}
.blog-item__more:hover {
	background: var(--violet);
}
.blog-item__more:before {
	content: '';
	flex: 0 0 42px;
	max-width: 42px;
	height: 42px;
	-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(--heading-color);
	transform: rotate(-45deg);
	transition: .5s;
}
.blog-item__more:hover:before {
	background-color: var(--white);
}
.blog-item__info {
	position: relative;
	flex: auto;
	padding: calc(var(--gap) * 1.1667) calc(var(--gap) * 1.25) var(--gap);
	min-height: 167px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	z-index: 1;
}
.blog-item__title {
	font-size: var(--h5-size);
	font-weight: 500;
	color: var(--heading-color);
	margin-bottom: var(--gap);
}
.blog-item__title a {
	color: var(--heading-color);
	text-decoration: none;
}
.blog-item__title a:hover {
	color: var(--orange);
}
.blog-item__date {
	color: #363636;
	font-weight: 500;
	letter-spacing: -.02em;
}




.navigation.pagination {
	position: relative;
	margin-top: calc(var(--gap) * 2);
	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:not(.dots) {
	min-width: 60px;
	height: 60px;
	font-weight: 500;
	color: var(--heading-color);
	border: 1px solid #f9f9f9;
	background: var(--white);
	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:not(.dots):hover,
.nav-links .page-numbers:not(.dots).current {
	background: var(--orange);
	border-color: var(--orange);
	color: var(--white);
}
.nav-links .page-numbers.dots {
	font-weight: 500;
	color: var(--heading-color);
	min-width: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}




.team-section-inner.section {
	background: linear-gradient(180deg, #6C6CF6 0%, #3E4BF5 100%);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	overflow: hidden;
}
.team-section-inner:before {
	content: '';
	background: url(images/issues-el-1.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 88px;
	height: 106px;
	top: 53px;
	left: calc(var(--gap) * 2);
	z-index: -1;
}
.team-section-inner:after {
	content: '';
	background: url(images/issues-el-2.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 88px;
	height: 102px;
	bottom: 40px;
	right: calc(var(--gap) * 2);
	z-index: -1;
}
.team-item.swiper-slide {
	width: calc((var(--container) - var(--gap) * 2) * .245);
}
.team-item__wrap {
	position: relative;	
	background: #F4F4F4;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	z-index: 1;
}
.team-item__image {
	flex: calc(((var(--container) - var(--gap) * 2) * .245) / .8554);
	max-height: calc(((var(--container) - var(--gap) * 2) * .245) / .8554);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	overflow: hidden;
}
.team-item__name {
	min-height: 100px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	padding: var(--gap) calc(var(--gap) * 1.333);
	font-size: var(--h4-size);
	font-weight: 500;
	color: var(--heading-color);
	line-height: 1.1428;
}




.faq-section.section {
	padding-bottom: 180px;
}
.faq-wrap {
	display: flex;
	align-items: flex-end;
	gap: calc(var(--gap) * 2);
}
.faq-left,
.faq-right {
	flex: 0 0 calc(50% - var(--gap));
	max-width: calc(50% - var(--gap));
}
.faq-image {
	position: sticky;
	top: calc(var(--header-height) + var(--gap));
	text-align: center;
	z-index: 1;
}
.faq-items {
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 1.2);
	max-width: 960px;
	margin: auto;
}
.faq-item {
	position: relative;
	background: #F4F4F4;
	border: 1px solid #F4F4F4;
	-moz-border-radius: calc(var(--radius) / 1.667);
	-webkit-border-radius: calc(var(--radius) / 1.667);
	border-radius: calc(var(--radius) / 1.667);
	transition: .5s;
	z-index: 1;
}
.faq-item.active {
	border-color: rgba(236, 138, 65, 0.4);
	background: #FFFDFA;
}
.faq-item__head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: calc(var(--gap) / 1.5);
	min-height: 92px;
	font-size: var(--h5-size);
	font-weight: 500;
	line-height: 1.1667;
	letter-spacing: -.04em;
	color: var(--heading-color);
	margin: 0;
	padding: calc(var(--gap) / 1.2) calc(var(--gap) / 1.5) calc(var(--gap) / 1.2) calc(var(--gap) * 1.333);
	cursor: pointer;
	transition: .5s;
}
.faq-item__toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 48px;
	max-width: 48px;
	width: 48px;
	height: 48px;
	-moz-border-radius: calc(var(--radius) / 3.333);
	-webkit-border-radius: calc(var(--radius) / 3.333);
	border-radius: calc(var(--radius) / 3.333);
	transition: .5s;
}
.active .faq-item__toggle {
	background: var(--orange);
}
.faq-item__toggle:before {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/chevron-down.svg);
	mask-image: url(images/chevron-down.svg);
	background-color: #676767;
	flex: 0 0 24px;
	max-width: 24px;
	width: 24px;
	height: 24px;
	transition: .5s;
}
.active .faq-item__toggle:before {
	background-color: var(--white);
	transform: rotate(180deg);
}
.faq-item__body {
	font-size: var(--h6-size);
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: -.04em;
	padding: 0 calc(var(--gap) / 1.5 + 48px + var(--gap) / 1.5) calc(var(--gap) * 1.333) calc(var(--gap) * 1.333);
}
.faq-button {
	margin-top: calc(var(--gap) * 1.5);
}




.info-section-inner.section {
	background: linear-gradient(180deg, #6C6CF6 0%, #3E4BF5 100%);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	padding-top: calc(var(--gap) * 2);
	padding-bottom: calc(var(--gap) * 2);
}
.info-wrap {
	display: flex;
	gap: calc(var(--gap) * 2);
}
.info-left {
	flex: 0 0 calc(50% - var(--gap));
	max-width: calc(50% - var(--gap));
}
.info-image {
	position: relative;
	height: 100%;
	-moz-border-radius: calc(var(--radius) / 1.667);
	-webkit-border-radius: calc(var(--radius) / 1.667);
	border-radius: calc(var(--radius) / 1.667);
	overflow: hidden;
	z-index: 1;
}
.info-right {
	flex: 0 0 calc(50% - var(--gap));
	max-width: calc(50% - var(--gap));
	padding-bottom: calc(var(--gap) * 2);
}
.info-right:before {
	content: '';
	background: url(images/info-el-1.svg) no-repeat center;
	background-size: contain;
	display: block;
	width: 65px;
	height: 75px;
	margin-bottom: calc(var(--gap) * 2.5);
}
.info-content {
	font-size: var(--h5-size);
	font-weight: 500;
	color: var(--white);
	line-height: 1.1667;
}



.devices-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.devices-item {
	flex: 0 0 20%;
	max-width: 20%;
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.devices-item__wrap {
	position: relative;
	height: 100%;
	border: 1px solid rgba(0, 0, 0, 0.2);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	padding: var(--gap);
	z-index: 1;
}
.devices-item__image {
	height: calc(((var(--container) - var(--gap) * 4) / 5 - var(--gap) * 2 - 2px) / .88);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: var(--gap);
}
.devices-item__image img {
	max-height: calc(((var(--container) - var(--gap) * 4) / 5 - var(--gap) * 2 - 2px) / .88);
}
.devices-item__title {
	padding: 0 calc(var(--gap) / 3);
	font-size: var(--h4-size);
	font-weight: 600;
	line-height: 1.1428;
	color: var(--heading-color);
}



.brands-items {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.brands-item {
	flex: 0 0 calc(100% / 6);
	max-width: calc(100% / 6);
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.brands-item__image {
	position: relative;
	/*background: #F4F4F4;*/*
	background: #fff;
    border: 2px solid #F4F4F4;
	height: calc((var(--container) - var(--gap) * 5) / 6);
	padding: var(--gap);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}
.brands-item__image img {
	max-height: calc((var(--container) - var(--gap) * 5) / 6 - var(--gap) * 2);
}



.savings-section-inner.section {
	background: linear-gradient(180deg, #6C6CF6 0%, #3E4BF5 100%);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	overflow: hidden;
}
.savings-section-inner:before {
	content: '';
	background: url(images/man.png) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 289px;
	height: 471px;
	top: 5px;
	right: -120px;
	transform: rotate(-32deg);
	z-index: -1;
}
.savings-item.swiper-slide {
	width: calc((var(--container) - var(--gap) * 2) * .245);
}
.savings-item__wrap {
	position: relative;	
	background: #F4F4F4;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	z-index: 1;
}
.savings-item__image {
	flex: calc(((var(--container) - var(--gap) * 2) * .245) / 1.5363);
	max-height: calc(((var(--container) - var(--gap) * 2) * .245) / 1.5363);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	overflow: hidden;
}
.savings-item__text {
	min-height: 100px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	padding: var(--gap) calc(var(--gap) * 1.333);
	font-size: var(--h5-size);
	font-weight: 600;
	color: var(--heading-color);
	line-height: 1.1428;
}



.singleBlog-wrap:after {
	content: '';
	clear: both;
	display: block;
}
.singleBlog-image {
	float: right;
	margin: 0 0 calc(var(--gap) * 1.5) calc(var(--gap) * 1.5);
	max-width: 680px;
}
.singleBlog-image img {
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
}



.seo-content {
	font-size: var(--text-size-sm);
}
.seo-content h1 {
	font-size: var(--h2-size);
}
.seo-content h2 {
	font-size: var(--h3-size);
}
.seo-content h3 {
	font-size: var(--h4-size);
}
.seo-content h4 {
	font-size: var(--h5-size);
}
.seo-content h5 {
	font-size: var(--h6-size);
}
.seo-content h6 {
	font-size: var(--text-size);
}



.modalSchedule-phone {
	text-align: center;
	font-size: var(--h4-size);
	font-weight: 600;
	margin-bottom: calc(var(--gap) / 2);
}
.modalSchedule-phone a {
	display: inline-flex;
	align-items: center;
	gap: calc(var(--gap) / 3);
	color: var(--violet);
	text-decoration: none;
}
.modalSchedule-phone a:hover {
	color: var(--orange);
}
.modalSchedule-phone a:before {
	content: '';
	flex: 0 0 36px;
	max-width: 36px;
	width: 36px;
	height: 36px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/phone.svg);
	mask-image: url(images/phone.svg);
	background-color: var(--violet);
	transition: .5s;
}
.modalSchedule-phone a:hover:before {
	background-color: var(--orange);
}
.modalSchedule-sep {
	text-align: center;
	font-size: var(--text-size-sm);
	opacity: .5;
	margin-bottom: var(--gap);
}




.fixedContacts {
	position: fixed;
	bottom: 50px;
	right: 65px;
	z-index: 90;
}
.fixedContacts-main {
	display: flex;
	align-items: center;
	gap: var(--gap);
}
.fixedContacts-label {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	background: var(--heading-color);
	opacity: .8;
	color: var(--white);
	font-size: 14px;
	padding: 10px 10px 10px 16px;
	z-index: 1;
}
.fixedContacts-label:after {
	content: '';
	border-top: 20px solid transparent;
	border-bottom: 20px solid transparent;
	border-left: 15px solid var(--heading-color);
	position: absolute;
	left: calc(100%);
	top: 0;
	z-index: 1;
}
.fixedContacts-button {
	position: relative;
	flex: 0 0 60px;
	max-width: 60px;
	width: 60px;
	height: 60px;
	background: #1cbe68;
	box-shadow: 0 0 20px 0 rgba(0,0,0,.3);
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	border: none;
	outline: none;
	cursor: pointer;
	animation: pulse-fixed-contacts 2s infinite;
	animation-timing-function: linear;
	transition: 0.5s;
	z-index: 1;
}
@-webkit-keyframes pulse-fixed-contacts {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(0,0,0,.3);
	}
	70% {
		-webkit-box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
	}
	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	}
}
@keyframes pulse-fixed-contacts {
	0% {
		-moz-box-shadow: 0 0 0 0 rgba(0,0,0,.3);
		box-shadow: 0 0 0 0 rgba(0,0,0,.3);
		transform: scale(1);
	}
	70% {
		-moz-box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
		box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
		transform: scale(1.08);
	}
	100% {
		-moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
		transform: scale(1);
	}
}
.fixedContacts-button:hover {
	animation: none;
	box-shadow: none;
}
.active .fixedContacts-button {
	background: var(--white);
	animation: none;
	box-shadow: 0 0 20px 0 rgba(0,0,0,.3);
}
.fixedContacts-button svg.open {
	position: absolute;
	width: 35px;
	height: 35px;
	top: 50%;
	left: 50%;
	opacity: 1;
	transform: translate(-50%, -50%);
	transition: .5s;
}
.fixedContacts-button svg.close {
	position: absolute;
	width: 18px;
	height: 18px;
	top: 50%;
	left: 50%;
	opacity: 0;
	transform: translate(-50%, -50%);
	transition: .5s;
}
.active .fixedContacts-button svg.open {
	opacity: 0;
}
.active .fixedContacts-button svg.close {
	opacity: 1;
}
.fixedContacts-sub {
	position: absolute;
	bottom: calc(100% + var(--gap) / 1.5);
	right: 5px;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: calc(var(--gap) / 2);
	visibility: hidden;
	opacity: 0;
	transform: translateY(20px);
	transition: .5s;
	z-index: -1;
}
.active .fixedContacts-sub {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
	z-index: 1;
}
.fixedContacts-sub a {
	display: flex;
	align-items: center;
	gap: var(--gap);
	text-decoration: none;
}
.fixedContacts-sub a i {
	flex: 0 0 50px;
	max-width: 50px;
	width: 50px;
	height: 50px;
	box-shadow: 0 0 20px 0 rgba(0,0,0,.3);
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}
.fixedContacts-sub a.phone i {
	background: #ffffff;
}
.fixedContacts-sub a.sms i {
	background: #FE5B2C;
}
.fixedContacts-sub a.schedule i {
	background:#1cbe68;
}
.fixedContacts-sub a span {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	background: var(--heading-color);
	opacity: .8;
	color: var(--white);
	font-size: 14px;
	padding: 10px 10px 10px 16px;
	opacity: 0;
	transition: .5s;
	z-index: 1;
}
.fixedContacts-sub a:hover span {
	opacity: 1;
}
.fixedContacts-sub a span:after {
	content: '';
	border-top: 20px solid transparent;
	border-bottom: 20px solid transparent;
	border-left: 15px solid var(--heading-color);
	position: absolute;
	left: calc(100%);
	top: 0;
	z-index: 1;
}
@media screen and (min-width:1000px){
	.fixedContacts-label {
		position: relative;
		display: inline-flex;
		align-items: center;
		min-height: 50px;
		background: var(--heading-color);
		opacity: .8;
		color: var(--white);
		font-size: 20px;
		padding: 20px 20px 20px 24px;
		z-index: 1;
	}
	.fixedContacts-label:after {
		content: '';
		border-top: 34px solid transparent;
		border-bottom: 34px solid transparent;
		border-left: 18px solid var(--heading-color);
		position: absolute;
		left: calc(100%);
		top: 0;
		z-index: 1;
	}
}



.ti-widget.ti-goog .ti-widget-container {
	margin: 0 !important;
}


/* contact page */

.contact-section.section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-section .container {
    position: relative;
    height: 100%;
}
.contact-wrap {
    padding-bottom: 70px;
    max-height: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-around;
}
.contact-wrap > div{
	flex:50% 0 0;
}
.contact__item address,
.contact__item .contact__phone a,
.contact__item .contact__email a,
.contact__item .contact__schedule{
	font-size:var(--h5-size);
}

.contact__item .contact__phone a,
.contact__item .contact__email a{
	color:var(--violet);
	text-decoration: none;
}
.contact-content{
	display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    row-gap: 40px;
}
@media screen and (max-width:1099px){
	.contact-content{
		grid-template-columns: repeat(1, 1fr);
		column-gap: 20px;
		row-gap: 20px;
	}
}
@media screen and (max-width:899px){
	.contact-content{
		grid-template-columns: repeat(2, 1fr);
	}
	.contact-wrap{
		flex-wrap:wrap;
		gap:100px;
	}
	.contact-wrap > div {
		flex: 100% 0 0;
	}
}
@media screen and (max-width:599px){
	.contact-content {
        grid-template-columns: repeat(1, 1fr);
    }
	.contact_heading {
    	margin-bottom: 5px;
	}
}
.contact__item.contact_item_map{
	 grid-column: 1 / -1;
	
}
.contact_heading{
    margin-bottom: 20px;
    font-size: var(--h6-size);
    font-weight: 500;
}
.contact-subheading{
	margin: 50px 0 0;
	font-size: var(--h4-size);
	font-weight: 300;
	line-height: 150%;
}
.contact-text{
	margin:20px 0 var(--gap);
	white-space: pre-wrap;
	font-size: var(--h6-size);
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
}
.contact-button{
	margin-top:var(--gap);
}
.soc-links.contact-soc{
	margin-top:10px;
}
.contact__phone a,
.contact__email a{
	font-size: var(--h6-size);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: var(--text-color);
}
.contact__email a{
	text-decoration: underline;
}
.contact__phone a:hover,
.contact__email a:hover{
	color:var(--primary-color)
}
.contact__phone span,
.contact__email span{
	margin-right:10px;
	width:24px;
	line-height:0;
}
.contact__phone span svg,
.contact__email span svg{
	width:21px;
	fill:var(--primary-color);
}
.contact-content .soc-links ul li a {
    background-color: var(--primary-color);
}
.contact-content .soc-links ul li a:hover svg path {
    fill: var(--white);
}
.contact-content .soc-links ul li a:hover {
    background-color: var(--bg-grey);
}
.contact-form{
	padding-left:var(--gap)
}
.contact-form .modal-heading{
	margin-bottom:var(--gap);	
}
.contact-form form{
	margin:0 auto;
	max-width:600px;
}
.contact-form .form-field-button{
	text-align: center;
}

body:not(.single-services) .service-only{
	display:none
}

.modal-indicator.hidden-form > :is(.modalSchedule-sep, .modalSchedule-phone, .modal-heading){
	display:none
}

.cf7-block-message{
	margin: 0 auto;
    text-align: center;
    max-width: 500px;
}

.cf7-block-image{
	margin: 0 auto;
	max-width:200px;
}

@media (max-width: 1949px ) {
	:root {
		--container: calc(100vw - var(--gap) * 1.5 * 2);
		--gap: 24px;
		--radius: 20px;

		--header-height: 108px;

		--text-size: 18px;
		--text-size-sm: 16px;
		--h1-size: 48px;
		--h2-size: 36px;
		--h3-size: 32px;
		--h4-size: 28px;
		--h5-size: 24px;
		--h6-size: 20px;
	}
	.hero-content h1, .hero-content h2 {
		font-size: calc(var(--h1-size) * 1.5);
	}
	.services-item__title {
		font-size: var(--h5-size);
	}
	.locations-items li {
		font-size: var(--h3-size);
	}
	.banner-wrap .heading h2 {
		font-size: calc(var(--h1-size) * 1.2);
	}
	.footer-wrap {
		gap: calc(var(--gap) * 4);
	}
}




@media (max-width: 1799px ) {
	:root {
		--container: calc(100vw - var(--gap) * 1.5 * 2);
		--gap: 24px;
		--radius: 20px;

		--header-height: 108px;

		--text-size: 18px;
		--text-size-sm: 16px;
		--h1-size: 44px;
		--h2-size: 36px;
		--h3-size: 32px;
		--h4-size: 28px;
		--h5-size: 24px;
		--h6-size: 20px;
	}
	.hero-wrap {
		max-width: 680px;
	}
	.reviews-item.swiper-slide {
		width: calc((var(--container) - var(--gap) * 2 * 2) * .25);
	}
	.banner-image {
		max-width: 760px;
	}
}



@media (max-width: 1599px ) {
	:root {
		--container: calc(100vw - var(--gap) * 1.5 * 2);
		--gap: 24px;
		--radius: 20px;

		--header-height: 108px;

		--text-size: 18px;
		--text-size-sm: 16px;
		--h1-size: 44px;
		--h2-size: 36px;
		--h3-size: 32px;
		--h4-size: 28px;
		--h5-size: 24px;
		--h6-size: 20px;
	}
	.section-xl {
		padding-top: 140px;
		padding-bottom: 140px;
	}
	.section-lg {
		padding-top: 100px;
		padding-bottom: 100px;
	}
	.section {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.section-md {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.container-px {
		padding-left: calc(var(--gap) * 1.5);
		padding-right: calc(var(--gap) * 1.5);
	}
	.header-logo {
		flex: 0 0 auto;
		max-width: 180px;
	}
	.header-right {
		flex: 0 0 auto;
	}
	.main-menu {
		max-width: 100%;
	}
	.hero-section-inner {
		min-height: 720px;
	}
	.services-item__wrap {
		min-height: calc((var(--container) - var(--gap) / 3) / 4 / .775);
	}
	.services-swiper-before, .services-swiper-after {
		width: calc((100vw - var(--container)) / 2);
	}
	.footer-wrap {
		gap: var(--gap);
	}
	.footer-widget:first-child {
		max-width: 480px;
	}
	.team-item__name {
		min-height: 80px;
		font-size: var(--h5-size);
	}
	.faq-item__head {
		font-size: var(--h6-size);
		min-height: 84px;
	}
	.faq-item__body {
		font-size: var(--text-size);
	}
	.info-section-inner.section,
	.video-section-inner {
		padding-top: calc(var(--gap) * 1.5);
		padding-bottom: calc(var(--gap) * 1.5);
	}
	.faq-section.section {
		padding-bottom: 140px;
	}
	.blog-item__title {
		font-size: var(--h6-size);
	}
	.blog-item__date {
		font-size: var(--text-size-sm);
	}
	.hero-anchor-link {
		bottom: calc(var(--gap) * 1.5);
		right: calc(var(--gap) * 1.5);
	}
}



@media (max-width: 1399px ) {
	:root {
		--container: calc(100vw - var(--gap) * 1.5 * 2);
		--gap: 20px;
		--radius: 16px;

		--header-height: 92px;

		--text-size: 16px;
		--text-size-sm: 14px;
		--h1-size: 38px;
		--h2-size: 32px;
		--h3-size: 28px;
		--h4-size: 24px;
		--h5-size: 20px;
		--h6-size: 18px;
	}
	.btn {
		min-height: 60px;
	}
	.btn.btn-sm {
		min-height: 52px;
	}
	.btn span{
		height: 60px;
	}
	.btn i {
		flex: 0 0 60px;
		max-width: 60px;
		width: 60px;
		height: 60px;
	}
	.btn i:before {
		flex: 0 0 42px;
		max-width: 42px;
		height: 42px;
	}
	.section-xl {
		padding-top: 120px;
		padding-bottom: 120px;
	}
	.section-lg {
		padding-top: 90px;
		padding-bottom: 90px;
	}
	.section {
		padding-top: 70px;
		padding-bottom: 70px;
	}
	.section-md {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.main-menu {
		font-size: var(--text-size);
	}
	.hero-section-inner {
		min-height: 650px;
	}
	.hero-wrap {
		gap: calc(var(--gap) * 1.5);
		max-width: 580px;
	}
	.hero-content h1, .hero-content h2 {
        font-size: calc(var(--h1-size) * 1.35);
    }
    .hero-content h1 span[style*="#5053f5"]:before, .hero-content h2 span[style*="#5053f5"]:before {
    	height: calc(100% - 15px);
    }
    .heroBrands-item__image {
    	height: 46px;
    }
    .heroBrands-item__image img {
    	max-height: 46px;
    }
    .hero-anchor-link {
    	width: 90px;
    	height: 60px;
    }
	.marquee_text {
		height: 22px;
	}
    .issues-section-inner:before,
    .issues-section-inner:after,
    .team-section-inner:before,
    .team-section-inner:after {
    	width: 66px;
    	height: 80px;
    }
    .issues-section-inner:before,
    .team-section-inner:before {
    	top: 48px;
    }
    .issues-section-inner:after,
    .team-section-inner:after {
    	bottom: 20px;
    }
    .issues-section-inner.section {
    	padding-bottom: 120px;
    }
    .advantages-item__left {
    	padding: calc(var(--gap) * 1.5);
    }
    .advantages-marquee:before {
		width: 350px;
		height: 285px;
		top: -190px;
	}
	.reviews-item__play,
	.video-play {
		width: 80px;
		height: 80px;
	}
	.reviews-section-inner:before {
		width: 240px;
		height: 390px;
		right: -80px;
	}
	.reviews-section:before {
		width: 48px;
		height: 86px;
		right: calc(-28px + var(--gap) * 1.5);
	}
	.benefits-section:before {
		width: 48px;
		height: 86px;
		left: calc(var(--gap) * 2 - 48px - 8px + var(--gap) * 1.5);
	}
	.benefits-item__image {
		height: 60px;
		margin-bottom: calc(var(--gap) * 1.25);
	}
	.benefits-item__image img {
		max-height: 60px;
	}
	.benefits-item__title {
		font-size: var(--h5-size);
	}
	.benefits-image {
		width: 28%;
	}
	.locations-image {
		max-width: 80%;
	}
	.locations-wrap {
		min-height: 620px;
	}
	.locations-info {
		max-width: 920px;
	}
	.locations-items li {
		font-size: var(--h5-size);
		padding: var(--gap) calc(var(--gap) * 1.25) var(--gap) calc(var(--gap) * 2);
	}
	.locations-items li:before {
		width: 8px;
		height: 8px;
		top: calc(var(--gap) * 1.36);
		left: var(--gap);
	}
	.banner-wrap .heading h2 {
		font-size: var(--h1-size);
	}
	.banner-image {
        max-width: 42%;
        min-height: auto;
        top: 52%;
    }
    .banner-wrap:before {
    	width: 50px;
    	height: 58px;
    }
    .blog-item__info {
    	min-height: 145px;
    }
    .footer-logo img {
    	max-height: 68px;
    }
    .footer-rating-image {
		flex: 0 0 42px;
		max-width: 42px;
		width: 42px;
		height: 42px;
	}
	.soc-links li a {
		width: 44px;
		height: 44px;
	}
	.fixedContacts {
		bottom: 30px;
		right: 45px;
	}
	.fixedContacts-button {
		flex: 0 0 54px;
		max-width: 54px;
		width: 54px;
		height: 54px;
	}
	.fixedContacts-button svg.open {
		width: 28px;
		height: 28px;
	}
	.fixedContacts-sub a i {
		flex: 0 0 47px;
		max-width: 47px;
		width: 47px;
		height: 47px;
	}
	.heading h2 span[style*="#5053f5"], .heading h2 span[style*="#fc8527"] {
		display: inline-block;
	}
	.heading h2 span[style*="#5053f5"]:before, .heading h2 span[style*="#fc8527"]:before {
		height: 100%;
		bottom: 0;
	}
	.info-content {
		font-size: var(--h6-size);
	}
	.devices-item__title {
		font-size: var(--h6-size);
	}
	.benefits-item__info {
		flex-direction: column;
	}
	.benefits-item__info-item {
		flex: auto;
		max-width: 100%;
	}
	.banner-wrap {
		max-width: 820px;
	}
	.banner-button .btn span {
		min-width: 180px;
	}
	.single-services .advantages-section:before {
		width: 48px;
		height: 86px;
	}
	.savings-section-inner:before {
		width: 240px;
		height: 390px;
		right: -90px;
	}
	.savings-item__text {
		font-size: var(--h6-size);
	}
	.faq-item__head {
		min-height: 80px;
	}
	.faq-section.section {
		padding-bottom: 90px;
	}
	.singleBlog-image {
		max-width: 50%;
	}
	.info-right:before {
		width: 52px;
		height: 60px;
		margin-bottom: calc(var(--gap) * 1.5);
	}
}



@media (max-width: 1199px ) {
	:root {
		--container: calc(100vw - var(--gap) * 1.5 * 2);
		--gap: 20px;
		--radius: 16px;

		--header-height: 92px;

		--text-size: 16px;
		--text-size-sm: 14px;
		--h1-size: 38px;
		--h2-size: 32px;
		--h3-size: 28px;
		--h4-size: 24px;
		--h5-size: 20px;
		--h6-size: 18px;
	}
	.main-menu {
		gap: var(--gap);
		font-size: var(--text-size-sm);
	}
	.header-phone {
		font-size: var(--text-size-sm);
	}
	.locations-wrap {
		min-height: inherit;
	}
	.footer {
		padding: 60px 0 40px;
	}
	.footer-widget:first-child {
		max-width: 220px;
	}
	.banner-wrap {
        max-width: 65%;
    }
	.team-item__name {
		min-height: 60px;
		font-size: var(--h6-size);
	}
    .issues-section-inner:before,
    .issues-section-inner:after,
    .team-section-inner:before,
    .team-section-inner:after {
    	width: 66px;
    	height: 60px;
    }
    .issues-section-inner:before,
    .team-section-inner:before {
    	top: 20px;
    }
    .issues-section-inner:after,
    .team-section-inner:after {
    	bottom: 20px;
    }
	.googleReviews-wrap {
		width: 100%;
	}
}



@media (max-width: 991px ) {
	:root {
		--container: calc(100vw - var(--gap) * 1.5 * 2);
		--gap: 16px;
		--radius: 12px;

		--header-height: 68px;

		--text-size: 16px;
		--text-size-sm: 14px;
		--h1-size: 34px;
		--h2-size: 28px;
		--h3-size: 24px;
		--h4-size: 22px;
		--h5-size: 20px;
		--h6-size: 18px;
	}
	.heading br {
		display: none;
	}
	.section-xl {
		padding-top: 100px;
		padding-bottom: 100px;
	}
	.section-lg {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.section {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.section-md {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.container-inner {
		margin-left: var(--gap);
		margin-right: var(--gap);
	}
	.container-px {
		padding-left: var(--gap);
		padding-right: var(--gap);
	}
	.header-wrap {
		gap: calc(var(--gap) * 1.5);
	}
	.header-logo {
		flex: auto;
		max-width: 100%;
	}
	.main-menu {
		display: none;
	}
	.header-button {
		display: none;
	}
	.hero-section-inner {
		min-height: 480px;
	}
	.hero-wrap {
		max-width: 100%;
	}
	.hero-anchor-link {
		display: none;
	}
	.heroBrands-wrap {
		flex-direction: column;
	}
	.heroBrands-left {
		flex: auto;
		max-width: 100%;
	}
	.heroBrands-heading {
		text-align: center;
	}
	.heroBrands-heading br {
		display: none;
	}
	.heroBrands-right {
		flex: auto;
		max-width: 100%;
	}
	.heroBrands-swiper {
		width: 100vw;
		margin-left: calc((100vw - var(--container)) / -2 - var(--gap));
	}
	.services-section.section-xl {
		padding-bottom: 60px;
	}
	.services-item__wrap {
		min-height: calc((var(--container) - var(--gap) / 2) / 3 / .775);
	}
	.issues-section-inner:before, .team-section-inner:before {
		left: var(--gap);
		top: 5px;
	}
	.issues-section-inner:after, .team-section-inner:after {
		right: var(--gap);
	}
	.issues-section-inner .heading {
		padding-left: 40px;
		padding-right: 40px;
	}
	.issues-section-inner.section {
		padding-bottom: 100px;
	}
	.issues-item:nth-child(1), .issues-item:nth-child(2), .issues-item:nth-child(3), .issues-item:nth-child(4) {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.issues-item__image {
		height: calc((var(--container) - var(--gap)) / 2 / 2.08);
	}
	.advantages-item__wrap {
		flex-direction: column-reverse;
		min-height: inherit;
	}
	.advantages-item__image {
		height: calc(var(--container) / 1.75);
	}
	.advantages-item__left,
	.advantages-item__right {
		flex: auto;
		max-width: 100%;
	}
	.advantages-item__content br {
		display: none;
	}
	.advantages-marquee {
		margin-top: 100px;
		margin-left: calc((100vw - var(--container)) / -2 + var(--gap));
	}
	.reviews-item.swiper-slide {
        width: calc((var(--container) - var(--gap) * 2 * 2) * .37);
    }
    .reviews-item__wrap {
    	height: calc((var(--container) - var(--gap) * 2 * 2) * .38 / .6174);
    }
    .benefits-image {
    	display: none;
    }
    .benefits-items {
    	gap: var(--gap);
    }
    .benefits-item {
    	flex: 0 0 calc(50% - var(--gap) / 2);
    	max-width: calc(50% - var(--gap) / 2);
    }
    .benefits-section:before {
    	display: none;
    }
    .locations-image {
        max-width: 50%;
    }
    .banner-wrap {
    	max-width: 100%;
    }
    .banner-image {
    	display: none;
    }
    .banner-section-inner.section-md {
    	padding-top: 30px;
    }
    .blog-items {
    	justify-content: center;
    }
    .blog-item {
    	flex: 0 0 50%;
    	max-width: 50%;
    }
	.blog-item__image {
		flex: 0 0 calc((var(--container) - var(--gap)) / 2 / 1.8);
		max-height: calc((var(--container) - var(--gap)) / 2 / 1.8);
	}
	.blog-item__info {
		min-height: inherit;
	}
	.footer-wrap {
		flex-wrap: wrap;
		gap: calc(var(--gap) * 2) calc(var(--gap) * 1.5);
	}
	.footer-widget {
		flex: 0 0 calc(50% - var(--gap) * 1.5 / 2);
		max-width: calc(50% - var(--gap) * 1.5 / 2);
	}
	.footer-widget:first-child {
		max-width: 100%;
		flex: 0 0 100%;
	}
	.info-section-inner.section, .video-section-inner {
		padding-top: var(--gap);
		padding-bottom: var(--gap);
	}
	.info-wrap {
		flex-direction: column;
		gap: calc(var(--gap) * 1.5);
	}
	.info-left,
	.info-right {
		flex: auto;
		max-width: 100%;
		padding: 0;
	}
	.info-image {
		height: calc(var(--container) / 1.75);
		min-height: 360px;
	}
	.info-content {
		font-size: var(--text-size);
	}
	.devices-items {
		justify-content: center;
	}
	.devices-item {
		flex: 0 0 calc(100% / 3);
		max-width: calc(100% / 3);
	}
	.devices-item__image {
		height: calc(((var(--container) - var(--gap) * 2) / 3 - var(--gap) * 2 - 2px) / .88);
	}
	.devices-item__image img {
		max-height: calc(((var(--container) - var(--gap) * 2) / 3 - var(--gap) * 2 - 2px) / .88);
	}
	.brands-item {
		flex: 0 0 calc(100% / 4);
		max-width: calc(100% / 4);
	}
	.brands-item__image {
		height: calc((var(--container) - var(--gap) * 3) / 4);
	}
	.brands-item__image img {
		max-height: calc((var(--container) - var(--gap) * 3) / 4 - var(--gap) * 2);
	}
	.savings-item.swiper-slide {
		width: calc((var(--container) - var(--gap) * 2) * .33);
	}
	.savings-item__image {
	    flex: calc(((var(--container) - var(--gap) * 2) * .33) / 1.5363);
	    max-height: calc(((var(--container) - var(--gap) * 2) * .33) / 1.5363);
	}
	.savings-section-inner:before {
		top: calc(100% - 160px);
	}
	.faq-left {
		display: none;
	}
	.faq-right {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.team-item.swiper-slide {
		width: calc((var(--container) - var(--gap) * 2) * .33);
	}
	.team-item__image {
		flex: calc(((var(--container) - var(--gap) * 2) * .33) / .8554);
		max-height: calc(((var(--container) - var(--gap) * 2) * .33) / .8554);
	}
	.error-404-button .btn {
		width: auto;
	}
	.modalSchedule-phone a:before {
		flex: 0 0 30px;
		max-width: 30px;
		width: 30px;
		height: 30px;
	}
	.benefits-item__title br {
		display: none;
	}
	.benefits-section.section-xl {
		padding-top: 100px;
	}
	
	.hero-content h1, .hero-content h2 {
		line-height: 1.2;
	}
}



@media (max-width: 767px ) {
	:root {
		--container: calc(100vw - var(--gap) * 1.5 * 2);
		--gap: 16px;
		--radius: 12px;

		--header-height: 68px;

		--text-size: 16px;
		--text-size-sm: 14px;
		--h1-size: 34px;
		--h2-size: 28px;
		--h3-size: 24px;
		--h4-size: 22px;
		--h5-size: 20px;
		--h6-size: 18px;
	}
	.header,
	.admin-bar .header {
		top: 0;
	}
	.services-item__wrap {
        min-height: calc((var(--container) - var(--gap)) / 2 / .775);
    }
    .issues-item {
    	flex: 0 0 50% !important;
    	max-width: 50% !important;
    }
    .issues-item:first-child {
    	flex: 0 0 100% !important;
    	max-width: 100% !important;
	}
	.issues-item__image {
		height: calc((var(--container) - var(--gap)) / 2 / 2.08) !important;
	}
	.issues-item:first-child .issues-item__image {
		height: calc(var(--container) / 2.08) !important;
	}
	.reviews-section-inner:before,
	.savings-section-inner:before {
        width: 180px;
        height: 300px;
        right: -80px;
        bottom: -130px;
    }
    .reviews-section:before {
    	display: none;
    }
    .locations-items li {
    	font-size: var(--h6-size);
    }
    .ti-widget.ti-goog .ti-col-1 .ti-reviews-container, .ti-widget.ti-goog .ti-col-1 .ti-footer {
    	margin-bottom: 0 !important;
    }
    .modal-dialog {
    	max-width: var(--container);
    }
    .form-field-50 {
    	flex: 0 0 100%;
    	max-width: 100%;
    }
    .devices-item {
		flex: 0 0 calc(100% / 2);
		max-width: calc(100% / 2);
	}
	.devices-item__image {
		height: calc(((var(--container) - var(--gap)) / 2 - var(--gap) * 2 - 2px) / .88);
	}
	.devices-item__image img {
		max-height: calc(((var(--container) - var(--gap)) / 2 - var(--gap) * 2 - 2px) / .88);
	}
	.brands-item {
		flex: 0 0 calc(100% / 3);
		max-width: calc(100% / 3);
	}
	.brands-item__image {
		height: calc((var(--container) - var(--gap) * 2) / 3);
	}
	.brands-item__image img {
		max-height: calc((var(--container) - var(--gap) * 2) / 3 - var(--gap) * 2);
	}
	.single-services .advantages-section:before {
		top: 10px;
	}
	.savings-item.swiper-slide {
		width: calc((var(--container) - var(--gap) * 2) * .52);
	}
	.savings-item__image {
	    flex: calc(((var(--container) - var(--gap) * 2) * .52) / 1.5363);
	    max-height: calc(((var(--container) - var(--gap) * 2) * .52) / 1.5363);
	}
	.locations-image {
		max-width: 100%;
	}
	body:not(.home) .locations-wrap.section-xl {
		padding-bottom: 0;
	}
	.team-item.swiper-slide {
		width: calc((var(--container) - var(--gap) * 2) * .52);
	}
	.team-item__image {
		flex: calc(((var(--container) - var(--gap) * 2) * .52) / .8554);
		max-height: calc(((var(--container) - var(--gap) * 2) * .52) / .8554);
	}
	.singleBlog-image {
		max-width: 100%;
		float: none;
		margin: 0 0 calc(var(--gap) * 1.5);
	}
	.error-404-number {
		font-size: calc(var(--h1-size) * 4);
	}
}



@media (max-width: 575px) {
	:root {
		--container: calc(100vw - var(--gap) * 1.5 * 2);
		--gap: 16px;
		--radius: 12px;

		--header-height: 68px;

		--text-size: 16px;
		--text-size-sm: 14px;
		--h1-size: 32px;
		--h2-size: 28px;
		--h3-size: 24px;
		--h4-size: 22px;
		--h5-size: 20px;
		--h6-size: 18px;
	}
	.hero-buttons-row {
    gap: 12px;
	}
	.btn {
		width: 100%;
	}
	.heading {
		margin-bottom: calc(var(--gap) * 2);
	}
	.heading h2 {
		font-size: var(--h2-size);
	}
	.hero-content h1, .hero-content h2 {
		font-size: var(--h1-size);
	}
	.hero-content h1 span[style*="#5053f5"]:before, .hero-content h2 span[style*="#5053f5"]:before {
		display: inline-block;
		height: calc(100% - 4px);
		bottom: 2px;
		width: 100%;
		left: 0;
	}
	.heroBrands-item__image {
		height: 40px;
	}
	.heroBrands-item__image img {
		max-height: 40px;
	}
	.marquee_text {
		line-height: 1.25;
		height: 20px;
	}
	.services-swiper .swiper-slide {
		width: calc(var(--container) * .95) !important;
	}
	.services-item__wrap {
        min-height: calc(var(--container) * .95 / .775);
    }
    .issues-section-inner .heading {
    	padding: 0;
    }
	.issues-item {
		flex: 0 0 100% !important;
		max-width: 100% !important;
	}
	.issues-item__image {
        height: calc(var(--container) / 2.08) !important;
    	min-height: 160px;
    }
    .issues-item__title {
    	font-size: var(--text-size);
    	padding: calc(var(--gap) / 1.0909) calc(var(--gap) / 1.5);
    }
    .advantages-marquee:before {
        width: 300px;
        height: 250px;
        top: -168px;
    }
    .reviews-item.swiper-slide {
        width: calc((var(--container) - var(--gap) * 2 * 2) * 0.58);
    }
    .reviews-item__wrap {
        height: calc((var(--container) - var(--gap) * 2 * 2) * .58 / .6174);
    }
    .benefits-item {
    	flex: 0 0 100%;
    	max-width: 100%;
    }
    .benefits-item__image {
    	height: 48px;
    }
    .benefits-item__image img {
    	max-height: 48px;
    }
    .reviews-item__play, .video-play {
    	width: 60px;
    	height: 60px;
    }
    .reviews-item__play:before,
    .video-play:before {
    	flex: 0 0 24px;
    	max-width: 24px;
    	height: 24px;
    }
    .advantages-section .container-px,
    .benefits-section .container-px,
    .locations-section .container-px,
    .googleReviews-section .container-px,
    .faq-section .container-px,
    .seo-section .container-px {
    	padding-left: 0;
    	padding-right: 0;
    }
    .advantages-item__left {
    	padding: var(--gap);
    }
    .advantages-item__content h3 {
    	font-size: var(--h4-size);
    }
    .advantages-item__content h3 span[style*="#fc8527"] {
    	display: inline-block;
    }
    .advantages-item__content h3 span[style*="#fc8527"]:before {
    	height: 100%;
    	bottom: 0;
    }
    .benefits-item__wrap {
    	padding: var(--gap);
    }
    .locations-items {
    	gap: calc(var(--gap) / 3);
	}
	.locations-items li {
		font-size: var(--text-size);
		padding: calc(var(--gap) / 1.2) var(--gap) calc(var(--gap) / 1.2) calc(var(--gap) * 1.75);
	}
	.locations-items li:before {
		width: 6px;
		height: 6px;
		top: calc(var(--gap) * 1.16);
		left: var(--gap);
	}
	.banner-wrap .heading h2,
	.banner-wrap .heading.small h2 {
		font-size: var(--h2-size);
	}
    .blog-item {
    	flex: 0 0 100%;
    	max-width: 100%;
    }
	.blog-item__image {
		flex: 0 0 calc(var(--container) / 1.8);
		max-height: calc(var(--container) / 1.8);
	}
	.blog-item__info {
		padding: var(--gap);
	}
	.blog-item__title {
		font-size: var(--text-size);
	}
	.footer-widget {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.fixedContacts {
        bottom: 24px;
        right: 24px;
    }
	.fixedContacts-main,
	.fixedContacts-sub a {
		gap: calc(var(--gap) * 1.25);
	}
	.fixedContacts-sub {
		right: 3px;
	}
    .header .container-inner {
    	margin: 0;
    }
    .header-inner {
    	-moz-border-radius: 0;
    	-webkit-border-radius: 0;
    	border-radius: 0;
    }
    .modal-heading h2 {
    	font-size: var(--h3-size);
    }
    .devices-item__title {
    	font-size: var(--text-size);
    }
    .brands-items {
    	margin: 0 calc(var(--gap) / 2 / -2) calc(var(--gap) / -2);
    }
    .brands-item {
    	margin: 0 0 calc(var(--gap) / 2);
    	padding: 0 calc(var(--gap) / 2 / 2);
    }
	.brands-item__image {
		height: calc((var(--container) - var(--gap) / 2 * 2) / 3);
	}
	.brands-item__image img {
		max-height: calc((var(--container) - var(--gap) / 2 * 2) / 3 - var(--gap) * 2);
	}
	.savings-item.swiper-slide {
		width: calc((var(--container) - var(--gap) * 2) * .95);
	}
	.savings-item__image {
	    flex: calc(((var(--container) - var(--gap) * 2) * .95) / 1.5363);
	    max-height: calc(((var(--container) - var(--gap) * 2) * .95) / 1.5363);
	}
	.team-item.swiper-slide {
		width: calc((var(--container) - var(--gap) * 2) * .95);
	}
	.team-item__image {
		flex: calc(((var(--container) - var(--gap) * 2) * .95) / .8554);
		max-height: calc(((var(--container) - var(--gap) * 2) * .95) / .8554);
	}
	.page-header-inner.container-px {
		padding-left: 0;
		padding-right: 0;
	}
	.post-template-default .page-body .container-px {
		padding-left: 0;
		padding-right: 0;
	}
	.hero-bg img {
		object-position: 70% center;
	}
}